Source code
Revision control
Copy as Markdown
Other Tools
Test Info:
- This WPT test may be referenced by the following Test IDs:
- /selection/select-unselectable-span-1.html - WPT Dashboard Interop Dashboard
<!doctype html>
<html>
<head>
<meta charset="utf-8">
<link rel="match" href="select-unselectable-span-1-ref.html">
</head>
<body>
<!-- Accessible carets should be put around the <span> having big padding -->
<div><span style="user-select:none;padding:100px">ABC</span></span></div>
<script>
getSelection().selectAllChildren(document.querySelector("div"));
</script>
</body>
</html>