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