Backed out 2 changesets (bug 1943998) for causing wd failures @ phases.py CLOSED...
[gecko.git] / editor / libeditor / crashtests / 1423767.html
blob777cf58036ff9144569f5ed4e13dc5ed6b3d70b9
1 <script>
2 function onLoad() {
3 const label = document.querySelector("label");
4 // For emulating the traditional behavior, collapse Selection to end of the
5 // <label> which is the last child of the <body>, i.e., at the comment node.
6 getSelection().collapse(label, label.childNodes.length);
7 label.addEventListener("DOMNodeRemoved", () => {
8 document.querySelector("a").innerText = "";
9 });
10 document.execCommand("indent");
12 </script>
13 <body onload="onLoad()">
14 <li contenteditable>
15 <a>
16 <label></br>
17 <!---