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

20 lines
516 B
HTML

<!doctype html>
<head>
<link rel="match" href="cross-shadow-boundary-slot-4-ref.html"/>
</head>
<span id="outer">Outer</span>
<div id="host">
<template shadowrootmode="open">
<slot></slot>
<span id="inner">Inner</span>
</template>
<span id="slotted">Slotted</span>
</div>
<script>
// Selected contents are:
// er
// Slotted Inner
const inner = host.shadowRoot.getElementById("inner");
window.getSelection()
.setBaseAndExtent(outer.firstChild, 3, inner.firstChild, 5);
</script>