parser/htmlparser/tests/crashtests/650501-1.xhtml

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

     2 <html xmlns="http://www.w3.org/1999/xhtml"> 
     3 <head> 
     4 <script> 
     5 <![CDATA[
     7 function boom()
     8 {
     9   var a = document.createElement("div");
    10   a.innerHTML = "<script>1;<\/script>";
    12   var b = document.createElement("div")
    13   try { b.innerHTML = "<"; } catch (invalidXML) { }
    15   document.documentElement.appendChild(a);
    16 }
    18 ]]>
    19 </script> 
    20 </head> 
    21 <body onload="boom();"></body> 
    22 </html>

mercurial