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 | <!-- |
michael@0 | 4 | https://bugzilla.mozilla.org/show_bug.cgi?id=326337 |
michael@0 | 5 | --> |
michael@0 | 6 | <head> |
michael@0 | 7 | <title>Inner file for Bug 326337</title> |
michael@0 | 8 | </head> |
michael@0 | 9 | <body> |
michael@0 | 10 | <script> |
michael@0 | 11 | |
michael@0 | 12 | document.domain = "example.com"; |
michael@0 | 13 | |
michael@0 | 14 | runTest(); |
michael@0 | 15 | |
michael@0 | 16 | var xhr; |
michael@0 | 17 | |
michael@0 | 18 | function runTest() { |
michael@0 | 19 | xhr = new XMLHttpRequest(); |
michael@0 | 20 | xhr.open("GET", "file_bug326337.xml", true); |
michael@0 | 21 | xhr.onreadystatechange = function() { |
michael@0 | 22 | if (xhr.readyState == 4) { |
michael@0 | 23 | check(xhr.responseXML.documentElement.getAttribute("root")); |
michael@0 | 24 | SpecialPowers.wrap(parent).location.hash = "#done"; |
michael@0 | 25 | } |
michael@0 | 26 | } |
michael@0 | 27 | xhr.send(null); |
michael@0 | 28 | } |
michael@0 | 29 | |
michael@0 | 30 | function check(attr) { |
michael@0 | 31 | if (attr != "yes") { |
michael@0 | 32 | SpeciaPowers.wrap(parent).location.hash = "#fail"; |
michael@0 | 33 | throw 1; |
michael@0 | 34 | } |
michael@0 | 35 | } |
michael@0 | 36 | |
michael@0 | 37 | </script> |
michael@0 | 38 | </pre> |
michael@0 | 39 | </body> |
michael@0 | 40 | </html> |