Source code
Revision control
Copy as Markdown
Other Tools
Test Info:
- This WPT test may be referenced by the following Test IDs:
- /selection/crashtests/selection-add-range-collapsed-in-unassigned-node-and-shadow-has-no-content.html - WPT Dashboard Interop Dashboard
<!doctype html>
<html>
<head>
<meta charset="utf-8">
<script>
"use strict";
addEventListener("DOMContentLoaded", () => {
getSelection().selectAllChildren(
document.querySelector("a")
);
const range = document.createRange();
range.setStartAfter(
document.querySelector("legend")
);
getSelection().addRange(range);
}, {once: true});
</script>
</head>
<body>
<form>
<legend></legend>
</form>
<template shadowrootmode="open"></template>
<a></a>
</body>
</html>