diff options
author | Moonchild <moonchild@palemoon.org> | 2020-06-11 12:43:17 +0000 |
---|---|---|
committer | wolfbeast <mcwerewolf@wolfbeast.com> | 2020-06-13 11:52:17 +0200 |
commit | 29bca891d5ca243774a7355fc3a6a68903f0d596 (patch) | |
tree | ec5a36a57a179b811642c0ee5636ffd3005adc67 /dom/tests/mochitest/fetch/test_fetch_controller.html | |
parent | bb7060582934f087b71702d1e83f762d5fd6f0af (diff) | |
download | UXP-29bca891d5ca243774a7355fc3a6a68903f0d596.tar UXP-29bca891d5ca243774a7355fc3a6a68903f0d596.tar.gz UXP-29bca891d5ca243774a7355fc3a6a68903f0d596.tar.lz UXP-29bca891d5ca243774a7355fc3a6a68903f0d596.tar.xz UXP-29bca891d5ca243774a7355fc3a6a68903f0d596.zip |
Issue #1587 - Part 6: Move FetchController/Signal to its own dir
Since it is specced separately from fetch.
Diffstat (limited to 'dom/tests/mochitest/fetch/test_fetch_controller.html')
-rw-r--r-- | dom/tests/mochitest/fetch/test_fetch_controller.html | 40 |
1 files changed, 0 insertions, 40 deletions
diff --git a/dom/tests/mochitest/fetch/test_fetch_controller.html b/dom/tests/mochitest/fetch/test_fetch_controller.html deleted file mode 100644 index 812fb9161..000000000 --- a/dom/tests/mochitest/fetch/test_fetch_controller.html +++ /dev/null @@ -1,40 +0,0 @@ -<!-- - Any copyright is dedicated to the Public Domain. - http://creativecommons.org/publicdomain/zero/1.0/ ---> -<!DOCTYPE HTML> -<html> -<head> - <title>Test FetchController</title> - <script type="text/javascript" src="/tests/SimpleTest/SimpleTest.js"></script> - <link rel="stylesheet" type="text/css" href="/tests/SimpleTest/test.css" /> -</head> -<body> -<script class="testbody" type="text/javascript"> - -SpecialPowers.pushPrefEnv({"set": [["dom.fetchController.enabled", true ]]}, () => { - let ifr = document.createElement('iframe'); - ifr.src = "file_fetch_controller.html"; - document.body.appendChild(ifr); - - onmessage = function(e) { - if (e.data.type == "finish") { - SimpleTest.finish(); - return; - } - - if (e.data.type == "check") { - ok(e.data.status, e.data.message); - return; - } - - ok(false, "Something when wrong."); - } -}); - -SimpleTest.waitForExplicitFinish(); - -</script> -</body> -</html> - |