summaryrefslogtreecommitdiffstats
path: root/dom/tests/mochitest/ajax/lib/AJAX_setup.js
diff options
context:
space:
mode:
authorDaniel Baumann <daniel.baumann@progress-linux.org>2024-04-07 09:22:09 +0000
committerDaniel Baumann <daniel.baumann@progress-linux.org>2024-04-07 09:22:09 +0000
commit43a97878ce14b72f0981164f87f2e35e14151312 (patch)
tree620249daf56c0258faa40cbdcf9cfba06de2a846 /dom/tests/mochitest/ajax/lib/AJAX_setup.js
parentInitial commit. (diff)
downloadfirefox-upstream.tar.xz
firefox-upstream.zip
Adding upstream version 110.0.1.upstream/110.0.1upstream
Signed-off-by: Daniel Baumann <daniel.baumann@progress-linux.org>
Diffstat (limited to 'dom/tests/mochitest/ajax/lib/AJAX_setup.js')
-rw-r--r--dom/tests/mochitest/ajax/lib/AJAX_setup.js35
1 files changed, 35 insertions, 0 deletions
diff --git a/dom/tests/mochitest/ajax/lib/AJAX_setup.js b/dom/tests/mochitest/ajax/lib/AJAX_setup.js
new file mode 100644
index 0000000000..e94531db06
--- /dev/null
+++ b/dom/tests/mochitest/ajax/lib/AJAX_setup.js
@@ -0,0 +1,35 @@
+var AJAXtests = [];
+
+function runAJAXTest() {
+ if (AJAXtests.length == 0) {
+ SimpleTest.finish();
+ return;
+ }
+
+ var test = AJAXtests.shift();
+ var testframe = document.getElementById("testframe");
+ testframe.src = test;
+}
+
+function onManifestLoad(manifest) {
+ if (manifest.testcases) {
+ AJAXtests = manifest.testcases;
+ runAJAXTest();
+ } else {
+ ok(false, "manifest check", "no manifest!?!");
+ SimpleTest.finish();
+ }
+}
+
+function fetchManifest() {
+ var d = loadJSONDoc("manifest.json");
+ d.addBoth(onManifestLoad);
+}
+
+// Double timeout duration. Since this test case takes longer than 300 seconds
+// on B2G emulator.
+// See bug 968783.
+SimpleTest.requestLongerTimeout(2);
+
+SimpleTest.waitForExplicitFinish();
+addLoadEvent(fetchManifest);