summaryrefslogtreecommitdiffstats
path: root/testing/web-platform/tests/editing/crashtests/delete-at-start-of-first-li-in-ol-in-video.html
blob: 43baf25a86645b90f3fad29979d1b0634d460cf0 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
<!doctype html>
<html>
<head>
<meta charset="utf-8">
<script>
addEventListener("DOMContentLoaded", () => {
  getSelection().collapse(document.querySelector("ol"), 0);
  document.execCommand("delete");
});
</script>
</head>
<body>
<details open contenteditable>
<map>
<video>
<source></source>
<ol>
<li>a</li>
</ol>
</video>
</map>
</details>
</body>
</html>