blob: e0aadd17548cb86f7fcb3aa795771669c61e7e4d [file] [log] [blame]
<!DOCTYPE html>
<div id='host'>
<div slot='s1'>c1</div>
<div slot='s2'>c2</div>
</div>
<script>
'use strict';
document.body.offsetLeft;
const slot = document.createElement('slot');
slot.setAttribute('name', 's1');
host.attachShadow({mode: 'open'}).appendChild(slot);
</script>