diff options
author | Daniel Baumann <daniel.baumann@progress-linux.org> | 2024-04-19 01:47:29 +0000 |
---|---|---|
committer | Daniel Baumann <daniel.baumann@progress-linux.org> | 2024-04-19 01:47:29 +0000 |
commit | 0ebf5bdf043a27fd3dfb7f92e0cb63d88954c44d (patch) | |
tree | a31f07c9bcca9d56ce61e9a1ffd30ef350d513aa /dom/tests/mochitest/ajax/lib | |
parent | Initial commit. (diff) | |
download | firefox-esr-0ebf5bdf043a27fd3dfb7f92e0cb63d88954c44d.tar.xz firefox-esr-0ebf5bdf043a27fd3dfb7f92e0cb63d88954c44d.zip |
Adding upstream version 115.8.0esr.upstream/115.8.0esr
Signed-off-by: Daniel Baumann <daniel.baumann@progress-linux.org>
Diffstat (limited to 'dom/tests/mochitest/ajax/lib')
-rw-r--r-- | dom/tests/mochitest/ajax/lib/AJAX_setup.js | 35 | ||||
-rw-r--r-- | dom/tests/mochitest/ajax/lib/test.css | 28 |
2 files changed, 63 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); diff --git a/dom/tests/mochitest/ajax/lib/test.css b/dom/tests/mochitest/ajax/lib/test.css new file mode 100644 index 0000000000..38a401402f --- /dev/null +++ b/dom/tests/mochitest/ajax/lib/test.css @@ -0,0 +1,28 @@ +.test_ok { + color: green; + display: none; +} +.test_not_ok { + color: red; + display: block; +} + +.test_ok, .test_not_ok { + border-bottom-width: 2px; + border-bottom-style: solid; + border-bottom-color: black; +} + +.all_pass { + background-color: lime; +} + +.some_fail { + background-color: red; +} + +.tests_report { + border-width: 2px; + border-style: solid; + width: 20em; +} |