mirror of
https://github.com/servo/servo.git
synced 2025-10-04 02:29:12 +01:00
15 lines
541 B
HTML
15 lines
541 B
HTML
<!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><div id="fallback">Should not be displayed</div></slot>'
|
|
|
|
document.body.offsetLeft;
|
|
host.appendChild(document.createElement('div'));
|
|
</script>
|