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>
2 <head>
4 <script>
6 function init()
7 {
8 var y = document.getElementById("tt");
9 var z = y.firstChild;
10 y.removeChild(z);
11 z.text;
12 }
14 window.addEventListener("load", init, false);
16 </script>
18 </head>
20 <body>
22 <div id="tt"><a href="http://www.mozilla.org">Foo</a></div>
24 </body>
25 </html>