Source code
Revision control
Copy as Markdown
Other Tools
Test Info:
- This WPT test may be referenced by the following Test IDs:
- /shadow-dom/layout-slot-no-longer-fallback.html - WPT Dashboard Interop Dashboard
<!DOCTYPE html>
<title>Layout using slot elements</title>
<link rel="author" title="Hayato Ito" href="mailto:hayato@google.com"/>
<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>