layout/generic/crashtests/784600.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 class="reftest-wait">><class><address></address><children id=test1>><acronym id=test2></acronym><aside><iframe src=simple_blank.swf></iframe>
     4 </aside><script>
     5 setTimeout("boom()", 2000);
     6 function boom() {
     7 document.designMode = "on";
     8 document.execCommand("InsertHTML", false, "<dl>")
     9 r = document.createRange(); 
    10 window.getSelection().removeAllRanges();
    11 r.setStart(test1, 0);
    12 r.setEnd(test2, test2.childNodes.length);
    13 window.getSelection().addRange(r);
    14 document.execCommand("InsertHTML", false, " ")
    15 document.documentElement.removeAttribute("class");
    16 }
    17 </script>

mercurial