blob: e6e8747c93a1e8d3e6c18d5d3aa440f5b818c0e3 [file] [log] [blame]
<!DOCTYPE html>
<meta charset="utf-8" >
<meta name="author" title="Di Zhang" href="mailto:dizhangg@chromium.org">
<meta name="assert" content="Child nodes in host are default assigned to unnamed slot, when dynamically created.">
<title>Shadow DOM: Slots and fallback contents</title>
<link rel="match" href="slot-fallback-content-001-ref.html">
<p>Test passes if there are two lines of text "A", "B" below.</p>
<div id="host">
<slot id="slot1">FAIL</slot>
<div id="A">A</div>
<div id="A">B</div>
</div>
<script>
// Both divs A and B overwrite fallback contents of default slot
const shadowRoot = host.attachShadow({ mode: "open" });
shadowRoot.appendChild(slot1);
</script>