summaryrefslogtreecommitdiffstats
path: root/testing/web-platform/tests/shadow-dom/layout-slot-no-longer-assigned.html
blob: dfcac99da023ec2bbd94835f71efaef952a62341 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
<!DOCTYPE html>
<title>Layout using slot elements</title>
<link rel="author" title="Hayato Ito" href="mailto:hayato@google.com"/>
<link rel="help" href="https://dom.spec.whatwg.org/#shadow-tree-slots">
<link rel="match" href="reference/empty.html"/>
<div id="host"></div>
<script>
const host = document.querySelector('#host');
const sr = host.attachShadow({ mode: 'open' });
sr.innerHTML = '<slot name=s1></slot>'
host.innerHTML = '<div id=d1 slot=s1></div>';

document.body.offsetLeft;
document.querySelector('#d1').setAttribute('slot', 's2');
</script>