Source code
Revision control
Copy as Markdown
Other Tools
Test Info:
- This WPT test may be referenced by the following Test IDs:
- /selection/select-text-and-invisible-br.html - WPT Dashboard Interop Dashboard
<!doctype html>
<html>
<head>
<meta charset="utf-8">
<link rel="match" href="select-text-ref.html">
</head>
<body>
<div>ABC<br></div>
<script>
getSelection().selectAllChildren(document.querySelector("div"));
</script>
</body>
</html>