Wed, 31 Dec 2014 06:09:35 +0100
Cloned upstream origin tor-browser at tor-browser-31.3.0esr-4.5-1-build1
revision ID fc1c9ff7c1b2defdbc039f12214767608f46423f for hacking purpose.
1 <html xmlns="http://www.w3.org/1999/xhtml">
2 <head>
3 <script type="text/javascript">
5 function boom()
6 {
7 var div1 = document.createElement("div");
8 div1.style.counterIncrement = "chicken";
9 div1.contentEditable = "true";
11 var div2 = document.createElement("div");
12 div2.style.counterIncrement = "chicken";
14 document.body.style.content = "'A'";
16 div1.appendChild(div2);
17 document.body.appendChild(div1);
18 div1.removeChild(div2);
19 }
21 </script>
23 </head>
25 <body onload="boom();">
27 </body>
28 </html>