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.
michael@0 | 1 | <!DOCTYPE html> |
michael@0 | 2 | <html> |
michael@0 | 3 | <head> |
michael@0 | 4 | <script> |
michael@0 | 5 | |
michael@0 | 6 | var f1, f2; |
michael@0 | 7 | |
michael@0 | 8 | function b1() |
michael@0 | 9 | { |
michael@0 | 10 | f1 = document.getElementById("f1"); |
michael@0 | 11 | f2 = document.getElementById("f2"); |
michael@0 | 12 | f1.contentWindow.document.write("11"); |
michael@0 | 13 | f1.contentWindow.history.back(); |
michael@0 | 14 | setTimeout(b2, 0); |
michael@0 | 15 | } |
michael@0 | 16 | |
michael@0 | 17 | function b2() |
michael@0 | 18 | { |
michael@0 | 19 | f2.contentWindow.history.forward(); |
michael@0 | 20 | f2.contentWindow.location.reload(); |
michael@0 | 21 | f1.parentNode.removeChild(f1); |
michael@0 | 22 | } |
michael@0 | 23 | |
michael@0 | 24 | </script> |
michael@0 | 25 | |
michael@0 | 26 | |
michael@0 | 27 | </script> |
michael@0 | 28 | </head> |
michael@0 | 29 | |
michael@0 | 30 | <body onload="setTimeout(b1, 0);"> |
michael@0 | 31 | |
michael@0 | 32 | <iframe id="f1" src="data:text/html,1"></iframe> |
michael@0 | 33 | <iframe id="f2" src="data:text/html,2"></iframe> |
michael@0 | 34 | |
michael@0 | 35 | </body> |
michael@0 | 36 | </html> |