diff options
author | Brian Smith <brian@dbsoft.org> | 2023-09-28 19:35:59 -0500 |
---|---|---|
committer | Brian Smith <brian@dbsoft.org> | 2023-09-28 19:35:59 -0500 |
commit | 8a452389082e9b99cc14fd645daf3a40d310d9b1 (patch) | |
tree | d868324dbb8773754273ea708a2ebadc57be0251 /dom/bindings | |
parent | c9020fed9cd5bb829bbee959e94b2e58e91bf6a5 (diff) | |
download | uxp-8a452389082e9b99cc14fd645daf3a40d310d9b1.tar.gz |
Issue #1442 - Part 14 - Starting body consuming and passing the JSContext down
from the binding entrypoints to where the ReadableStream could be read.
https://bugzilla.mozilla.org/show_bug.cgi?id=1128959
Diffstat (limited to 'dom/bindings')
-rw-r--r-- | dom/bindings/Bindings.conf | 4 |
1 files changed, 3 insertions, 1 deletions
diff --git a/dom/bindings/Bindings.conf b/dom/bindings/Bindings.conf index 2624ab9e77..17bbed79d5 100644 --- a/dom/bindings/Bindings.conf +++ b/dom/bindings/Bindings.conf @@ -103,11 +103,13 @@ DOMInterfaces = { }, 'Cache': { - 'implicitJSContext': [ 'add', 'addAll' ], + 'implicitJSContext': [ 'add', 'addAll', 'match', 'matchAll', 'put', + 'delete', 'keys' ], 'nativeType': 'mozilla::dom::cache::Cache', }, 'CacheStorage': { + 'implicitJSContext': [ 'match' ], 'nativeType': 'mozilla::dom::cache::CacheStorage', }, |