editor/libeditor/html/crashtests/761861.html

Wed, 31 Dec 2014 06:55:50 +0100

author
Michael Schloh von Bennewitz <michael@schloh.com>
date
Wed, 31 Dec 2014 06:55:50 +0100
changeset 2
7e26c7da4463
permissions
-rw-r--r--

Added tag UPSTREAM_283F7C6 for changeset ca08bd8f51b2

     1 <!doctype html>
     2 <script>
     3 function boom() {
     4   var r = document.documentElement;
     5   while (r.firstChild) {
     6     r.removeChild(r.firstChild);
     7   }
     9   document.documentElement.contentEditable = "true";
    10   document.documentElement.appendChild(document.createElement("span"));
    11   document.documentElement.firstChild.appendChild(document.createTextNode("_"));
    12   document.execCommand("forwarddelete");
    13 }
    14 </script>
    15 <body onload="boom()">

mercurial