diff options
author | Moonchild <moonchild@palemoon.org> | 2020-06-10 21:08:58 +0000 |
---|---|---|
committer | wolfbeast <mcwerewolf@wolfbeast.com> | 2020-06-13 11:51:18 +0200 |
commit | 2b41c85019bd5fd7e62556b5d5bf6ace2a6d6963 (patch) | |
tree | d439b6b7d71389b6ddad9ad76092276bed70b808 /dom/tests/mochitest/fetch/file_fetch_controller.html | |
parent | e9d41c99681e3a8d910e5490db61e9ff81f7a241 (diff) | |
download | UXP-2b41c85019bd5fd7e62556b5d5bf6ace2a6d6963.tar UXP-2b41c85019bd5fd7e62556b5d5bf6ace2a6d6963.tar.gz UXP-2b41c85019bd5fd7e62556b5d5bf6ace2a6d6963.tar.lz UXP-2b41c85019bd5fd7e62556b5d5bf6ace2a6d6963.tar.xz UXP-2b41c85019bd5fd7e62556b5d5bf6ace2a6d6963.zip |
Issue #1587 - Part 1: Implement FetchController/FetchSignal interface
Diffstat (limited to 'dom/tests/mochitest/fetch/file_fetch_controller.html')
-rw-r--r-- | dom/tests/mochitest/fetch/file_fetch_controller.html | 40 |
1 files changed, 40 insertions, 0 deletions
diff --git a/dom/tests/mochitest/fetch/file_fetch_controller.html b/dom/tests/mochitest/fetch/file_fetch_controller.html new file mode 100644 index 000000000..6efa2fe0a --- /dev/null +++ b/dom/tests/mochitest/fetch/file_fetch_controller.html @@ -0,0 +1,40 @@ +<script> +function ok(a, msg) { + parent.postMessage({ type: "check", status: !!a, message: msg }, "*"); +} + +function is(a, b, msg) { + ok(a === b, msg); +} + +function testWebIDL() { + ok("FetchController" in self, "We have a FetchController prototype"); + ok("FetchSignal" in self, "We have a FetchSignal prototype"); + + var fc = new FetchController(); + ok(!!fc, "FetchController can be created"); + ok(fc instanceof FetchController, "FetchController is a FetchController"); + + ok(!!fc.signal, "FetchController has a signal"); + ok(fc.signal instanceof FetchSignal, "fetchSignal is a FetchSignal"); + is(fc.signal.aborted, false, "By default FetchSignal.aborted is false"); + next(); +} + +var steps = [ + testWebIDL, +]; + +function next() { + if (!steps.length) { + parent.postMessage({ type: "finish" }, "*"); + return; + } + + var step = steps.shift(); + step(); +} + +next(); + +</script> |