trisquel-icecat/icecat/testing/web-platform/mozilla/tests/selection/cross-shadow-boundary-slot-in-nested-shadow-dom-ref.html
2025-10-06 02:35:48 -06:00

13 lines
318 B
HTML

<!doctype html>
<span id="outer">Outer</span>
<div id="host">
<span id="inner">Inner</span>
<div id="innerHost">
<span id="inner">Inner2</span>
<span id="slotted">Slotted</span>
</div>
</div>
<script>
window.getSelection()
.setBaseAndExtent(outer.firstChild, 3, slotted.firstChild, 5);
</script>