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-10.html - WPT Dashboard Interop Dashboard
<head>
<link rel="match" href="cross-shadow-boundary-slot-10-ref.html"/>
</head>
<div id="host">
<template shadowrootmode="open">
<slot></slot>
</template>
<span>slotted</span>
</div>
<script>
// "slotted" is selected
window.getSelection().setBaseAndExtent(host, 0, host, host.childNodes.length);
</script>