editor/libeditor/html/crashtests/767169.html

Thu, 22 Jan 2015 13:21:57 +0100

author
Michael Schloh von Bennewitz <michael@schloh.com>
date
Thu, 22 Jan 2015 13:21:57 +0100
branch
TOR_BUG_9701
changeset 15
b8a032363ba2
permissions
-rw-r--r--

Incorporate requested changes from Mozilla in review:
https://bugzilla.mozilla.org/show_bug.cgi?id=1123480#c6

     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>

mercurial