Skip to content

Commit ca76938

Browse files
masayuki-nakanomoz-wptsync-bot
authored andcommitted
Add the reported testcase into editing/crashtests of WPT
The bug itself has gone because the legacy white-space normalizer was removed in bug 1951038. Differential Revision: https://phabricator.services.mozilla.com/D257800 bugzilla-url: https://bugzilla.mozilla.org/show_bug.cgi?id=1951153 gecko-commit: 7a760699489bd744e8b09659fe02430ec61101ab gecko-reviewers: dom-core, edgar
1 parent 039e736 commit ca76938

File tree

1 file changed

+24
-0
lines changed

1 file changed

+24
-0
lines changed
Lines changed: 24 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,24 @@
1+
<!doctype html>
2+
<html>
3+
<head>
4+
<meta charset="utf-8">
5+
<script>
6+
"use strict";
7+
8+
addEventListener("DOMContentLoaded", () => {
9+
document.execCommand("selectAll");
10+
document.getSelection().extend(document.getElementById("li"));
11+
document.designMode = "on";
12+
document.execCommand("insertHorizontalRule");
13+
});
14+
</script>
15+
</head><body><progress>
16+
<q>
17+
<ol contenteditable="true">
18+
<li id="li">
19+
</li>
20+
</ol>
21+
</q></progress>
22+
<select></select>
23+
<!-- COMMENT -->
24+
</body></html>

0 commit comments

Comments
 (0)