Source code
Revision control
Copy as Markdown
Other Tools
Test Info:
- This WPT test may be referenced by the following Test IDs:
            - /selection/cross-shadow-boundary-slot-5.html - WPT Dashboard Interop Dashboard
 
<!doctype html>
<head>
<link rel="match" href="cross-shadow-boundary-slot-5-ref.html"/>
</head>
<span id="outer">Outer</span>
<div id="host">
  <template shadowrootmode="open">
    <span id="inner">Inner</span>
    <slot></slot>
  </template>
  <span id="slotted">Slotted</span>
</div>
<script>
  // Selected contents are:
  //   ter
  //   Inner Slotted
  window.getSelection()
      .setBaseAndExtent(slotted.firstChild, 3, outer.firstChild, 2);
</script>