summaryrefslogtreecommitdiffstats
path: root/testing/web-platform/tests/shadow-dom/slot-fallback-content-001.html
blob: e6e8747c93a1e8d3e6c18d5d3aa440f5b818c0e3 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
<!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>