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-modify-line-from-optgroup-in-video-to-details-without-summary.html - WPT Dashboard Interop Dashboard
<!doctype html>
<html>
<head>
<meta charset="utf-8">
<style>
details {
-webkit-text-stroke: 1px red;
}
</style>
<script>
"use strict";
addEventListener("DOMContentLoaded", () => {
getSelection().selectAllChildren(
document.querySelector("video > optgroup")
);
getSelection().modify("move", "forward", "line");
}, {once: true});
</script>
</head>
<body>
<video>
<optgroup></optgroup>
</video>
<details open>
<select></select>
</details>
</body>
</html>