summaryrefslogtreecommitdiffstats
path: root/dom/webidl/AbortController.webidl
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/webidl/AbortController.webidl
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/webidl/AbortController.webidl')
-rw-r--r--dom/webidl/AbortController.webidl15
1 files changed, 15 insertions, 0 deletions
diff --git a/dom/webidl/AbortController.webidl b/dom/webidl/AbortController.webidl
new file mode 100644
index 000000000..f5d8f317b
--- /dev/null
+++ b/dom/webidl/AbortController.webidl
@@ -0,0 +1,15 @@
+/* -*- Mode: IDL; tab-width: 2; indent-tabs-mode: nil; c-basic-offset: 2 -*- */
+/* This Source Code Form is subject to the terms of the Mozilla Public
+ * License, v. 2.0. If a copy of the MPL was not distributed with this file,
+ * You can obtain one at http://mozilla.org/MPL/2.0/.
+ */
+
+[Constructor(), Exposed=(Window,Worker),
+ Func="AbortController::IsEnabled"]
+interface AbortController {
+ readonly attribute AbortSignal signal;
+
+ void abort();
+ void follow(AbortSignal signal);
+ void unfollow(AbortSignal signal);
+};