summaryrefslogtreecommitdiffstats
path: root/dom/tests
diff options
context:
space:
mode:
authorMoonchild <moonchild@palemoon.org>2020-06-11 23:20:52 +0000
committerMoonchild <moonchild@palemoon.org>2020-06-11 23:20:52 +0000
commite97a29a6569fac73e81cf46a0e682ac926ea3456 (patch)
tree65cb4710bb2b14f6ebdbcc92fb90604b1174a20e /dom/tests
parent1620ec19653125db78f380043a52b6da6a34c281 (diff)
downloadUXP-e97a29a6569fac73e81cf46a0e682ac926ea3456.tar
UXP-e97a29a6569fac73e81cf46a0e682ac926ea3456.tar.gz
UXP-e97a29a6569fac73e81cf46a0e682ac926ea3456.tar.lz
UXP-e97a29a6569fac73e81cf46a0e682ac926ea3456.tar.xz
UXP-e97a29a6569fac73e81cf46a0e682ac926ea3456.zip
Issue #1587 - Part 7: Rename FetchController to AbortController
Also renames FetchSignal to AbortSignal. Includes renaming the various controlling prefs to enable.
Diffstat (limited to 'dom/tests')
-rw-r--r--dom/tests/mochitest/fetch/file_fetch_observer.html8
1 files changed, 4 insertions, 4 deletions
diff --git a/dom/tests/mochitest/fetch/file_fetch_observer.html b/dom/tests/mochitest/fetch/file_fetch_observer.html
index a172a18dc..668e609ec 100644
--- a/dom/tests/mochitest/fetch/file_fetch_observer.html
+++ b/dom/tests/mochitest/fetch/file_fetch_observer.html
@@ -19,7 +19,7 @@ function testObserver() {
}
function testObserveAbort() {
- var fc = new FetchController();
+ var fc = new AbortController();
fetch('http://mochi.test:8888/tests/dom/tests/mochitest/fetch/slow.sjs', {
signal: fc.signal,
@@ -37,7 +37,7 @@ function testObserveAbort() {
}
function testObserveComplete() {
- var fc = new FetchController();
+ var fc = new AbortController();
fetch('http://mochi.test:8888/tests/dom/tests/mochitest/fetch/slow.sjs', {
signal: fc.signal,
@@ -54,7 +54,7 @@ function testObserveComplete() {
}
function testObserveErrored() {
- var fc = new FetchController();
+ var fc = new AbortController();
fetch('foo: bar', {
signal: fc.signal,
@@ -71,7 +71,7 @@ function testObserveErrored() {
}
function testObserveResponding() {
- var fc = new FetchController();
+ var fc = new AbortController();
fetch('http://mochi.test:8888/tests/dom/tests/mochitest/fetch/slow.sjs', {
signal: fc.signal,