summaryrefslogtreecommitdiffstats
path: root/testing/web-platform/tests/selection/shadow-dom/cross-shadow-boundary-6-ref.html
blob: b7441c7bbcae8dcd7a111dd02b967bbfaa80b25f (plain)
1
2
3
4
5
6
7
8
9
10
11
12
<!doctype html>
<span id="span">Start
<div>
  <span id="inner1">inner1</p>
  <span id="inner2">inner2</p>
</div>
</span>
<script>
  const start = document.getElementById("span").firstChild;
  const end = document.getElementById("inner2");
  window.getSelection().setBaseAndExtent(start, 3, end.firstChild, 3);
</script>