content/base/test/file_bug326337_inner.html

Thu, 22 Jan 2015 13:21:57 +0100

author
Michael Schloh von Bennewitz <michael@schloh.com>
date
Thu, 22 Jan 2015 13:21:57 +0100
branch
TOR_BUG_9701
changeset 15
b8a032363ba2
permissions
-rw-r--r--

Incorporate requested changes from Mozilla in review:
https://bugzilla.mozilla.org/show_bug.cgi?id=1123480#c6

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>

mercurial