mirror of
https://repo.dactyloidae.xyz/Dactyloidae/UXP.git
synced 2026-09-21 07:47:32 +09:00
Issue #1587 - Part 1: Implement FetchController/FetchSignal interface
This commit is contained in:
parent
21f87c85ec
commit
24087592ad
14 changed files with 416 additions and 0 deletions
13
dom/webidl/FetchSignal.webidl
Normal file
13
dom/webidl/FetchSignal.webidl
Normal file
|
|
@ -0,0 +1,13 @@
|
|||
/* -*- 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/.
|
||||
*/
|
||||
|
||||
[Exposed=(Window,Worker),
|
||||
Func="FetchController::IsEnabled"]
|
||||
interface FetchSignal : EventTarget {
|
||||
readonly attribute boolean aborted;
|
||||
|
||||
attribute EventHandler onabort;
|
||||
};
|
||||
Loading…
Add table
Add a link
Reference in a new issue