1
0
Fork 0
firefox/testing/web-platform/mozilla/tests/selection/cross-shadow-boundary-slot-in-nested-shadow-dom-ref.html
Daniel Baumann 5e9a113729
Adding upstream version 140.0.
Signed-off-by: Daniel Baumann <daniel.baumann@progress-linux.org>
2025-06-25 09:37:52 +02: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>