diff options
author | Moonchild <moonchild@palemoon.org> | 2020-06-11 23:20:52 +0000 |
---|---|---|
committer | wolfbeast <mcwerewolf@wolfbeast.com> | 2020-06-13 11:52:30 +0200 |
commit | 21403c31e0288ad3c1921019f6f6185a0019a9a4 (patch) | |
tree | bff457beb30b4756147a78d6c3b9f6e0f0e1baf8 /dom/webidl/AbortController.webidl | |
parent | 29bca891d5ca243774a7355fc3a6a68903f0d596 (diff) | |
download | UXP-21403c31e0288ad3c1921019f6f6185a0019a9a4.tar UXP-21403c31e0288ad3c1921019f6f6185a0019a9a4.tar.gz UXP-21403c31e0288ad3c1921019f6f6185a0019a9a4.tar.lz UXP-21403c31e0288ad3c1921019f6f6185a0019a9a4.tar.xz UXP-21403c31e0288ad3c1921019f6f6185a0019a9a4.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.webidl | 15 |
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); +}; |