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

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

mercurial