summaryrefslogtreecommitdiffstats
path: root/testing/web-platform/tests/selection/shadow-dom/cross-shadow-boundary-2.html
blob: e0d3a14f489bca7aaedb3f822153355c64e5f11b (plain)
1
2
3
4
5
6
7
8
9
10
11
<!doctype html>
<head>
<link rel="match" href="cross-shadow-boundary-2-ref.html" />
</head>
OuterText
<div id="host"></div>
OuterText
<script>
  document.getElementById("host").attachShadow({ mode: "open" }).innerHTML = "innerText";
  getSelection().selectAllChildren(document.body);
</script>