mirror of
https://repo.dactyloidae.xyz/Dactyloidae/UXP.git
synced 2026-09-27 19:07:31 +09:00
import FIREFOX_52_6_0esr_RELEASE from mozilla-esr52 hg repo
This commit is contained in:
commit
dcd9973243
150858 changed files with 23884658 additions and 0 deletions
40
dom/base/test/file_bug326337_inner.html
Normal file
40
dom/base/test/file_bug326337_inner.html
Normal file
|
|
@ -0,0 +1,40 @@
|
|||
<!DOCTYPE HTML>
|
||||
<html>
|
||||
<!--
|
||||
https://bugzilla.mozilla.org/show_bug.cgi?id=326337
|
||||
-->
|
||||
<head>
|
||||
<title>Inner file for Bug 326337</title>
|
||||
</head>
|
||||
<body>
|
||||
<script>
|
||||
|
||||
document.domain = "example.com";
|
||||
|
||||
runTest();
|
||||
|
||||
var xhr;
|
||||
|
||||
function runTest() {
|
||||
xhr = new XMLHttpRequest();
|
||||
xhr.open("GET", "file_bug326337.xml", true);
|
||||
xhr.onreadystatechange = function() {
|
||||
if (xhr.readyState == 4) {
|
||||
check(xhr.responseXML.documentElement.getAttribute("root"));
|
||||
SpecialPowers.wrap(parent).location.hash = "#done";
|
||||
}
|
||||
}
|
||||
xhr.send(null);
|
||||
}
|
||||
|
||||
function check(attr) {
|
||||
if (attr != "yes") {
|
||||
SpeciaPowers.wrap(parent).location.hash = "#fail";
|
||||
throw 1;
|
||||
}
|
||||
}
|
||||
|
||||
</script>
|
||||
</pre>
|
||||
</body>
|
||||
</html>
|
||||
Loading…
Add table
Add a link
Reference in a new issue