Wed, 31 Dec 2014 06:55:50 +0100
Added tag UPSTREAM_283F7C6 for changeset ca08bd8f51b2
1 <html>
2 <head>
3 <script>
5 // Document must not have a doctype to trigger the bug
7 function boom()
8 {
9 var root = document.documentElement;
10 while (root.firstChild) { root.removeChild(root.firstChild); }
11 root.contentEditable = "true";
12 document.removeChild(root);
13 document.appendChild(root);
14 window.getSelection().collapse(root, 0);
15 window.getSelection().extend(document, 1);
16 document.removeChild(root);
17 }
19 </script>
20 </head>
22 <body onload="boom();"></body>
23 </html>