diff options
author | Moonchild <moonchild@palemoon.org> | 2020-07-24 11:09:54 +0000 |
---|---|---|
committer | Moonchild <moonchild@palemoon.org> | 2020-07-24 11:09:54 +0000 |
commit | 84cb854842cb4aecc2a3bee93c7a2698715643c8 (patch) | |
tree | f28ffddfafdd5da6139e8a33151c8358e35d6b86 /dom/webidl/Request.webidl | |
parent | 1e0bb1d355ffd55311f9544b35cff2a58b0340a8 (diff) | |
download | uxp-84cb854842cb4aecc2a3bee93c7a2698715643c8.tar.gz |
Issue #1587 Part 11 (followup 1): Implement multithreaded signals for workers.
Diffstat (limited to 'dom/webidl/Request.webidl')
-rw-r--r-- | dom/webidl/Request.webidl | 4 |
1 files changed, 4 insertions, 0 deletions
diff --git a/dom/webidl/Request.webidl b/dom/webidl/Request.webidl index fe6a63ec0d..57bea5db61 100644 --- a/dom/webidl/Request.webidl +++ b/dom/webidl/Request.webidl @@ -27,6 +27,10 @@ interface Request { readonly attribute RequestRedirect redirect; readonly attribute DOMString integrity; + [Func="AbortController::IsEnabled", + BinaryName="getOrCreateSignal"] + readonly attribute AbortSignal signal; + [Throws, NewObject] Request clone(); |