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

12 lines
317 B
HTML

<!doctype html>
<span id="outer">Outer</span>
<div id="host">
<span id="inner">Inner</span>
<span id="first">First</span>
<span>Second</span>
</div>
<script>
// select "First" shouldn't select "Second"
window.getSelection()
.setBaseAndExtent(outer.firstChild, 3, first.firstChild, 2);
</script>