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>
3 <script>
5 // Document must not have a doctype to trigger the bug
7 function boom()
8 {
9 var root = document.documentElement;
10 while (root.firstChild) { root.removeChild(root.firstChild); }
11 root.contentEditable = "true";
12 document.removeChild(root);
13 document.appendChild(root);
14 window.getSelection().collapse(root, 0);
15 window.getSelection().extend(document, 1);
16 document.removeChild(root);
17 }
19 </script>
20 </head>
22 <body onload="boom();"></body>
23 </html>