diff options
author | Smitty <me@iter.ca> | 2024-05-04 11:00:01 -0400 |
---|---|---|
committer | GitHub <noreply@github.com> | 2024-05-04 15:00:01 +0000 |
commit | 7fce850cffb72a6fbcf763a40164a9b35b7fa833 (patch) | |
tree | 2342569949c867084cdea1b763f14a8457646b60 /components/script/dom/bindings/codegen/Configuration.py | |
parent | 383607d01e97076283752c880ca6ac7cc6dfa2db (diff) | |
download | servo-7fce850cffb72a6fbcf763a40164a9b35b7fa833.tar.gz servo-7fce850cffb72a6fbcf763a40164a9b35b7fa833.zip |
script: implement AbortController (#31361)
* Implement AbortController
Signed-off-by: syvb <me@iter.ca>
* Update WPT tests
Signed-off-by: syvb <me@iter.ca>
* Address review comments
* Fix duplicate import generation
* Update WPT test expectations
* Change expectation to FAIL for flaky test
---------
Signed-off-by: syvb <me@iter.ca>
Diffstat (limited to 'components/script/dom/bindings/codegen/Configuration.py')
-rw-r--r-- | components/script/dom/bindings/codegen/Configuration.py | 1 |
1 files changed, 1 insertions, 0 deletions
diff --git a/components/script/dom/bindings/codegen/Configuration.py b/components/script/dom/bindings/codegen/Configuration.py index e49afb42b67..d96106a26dd 100644 --- a/components/script/dom/bindings/codegen/Configuration.py +++ b/components/script/dom/bindings/codegen/Configuration.py @@ -232,6 +232,7 @@ class Descriptor(DescriptorProvider): self.register = desc.get('register', True) self.path = desc.get('path', pathDefault) self.inRealmMethods = [name for name in desc.get('inRealms', [])] + self.ifaceName = ifaceName self.bindingPath = f"crate::dom::bindings::codegen::Bindings::{ifaceName}Binding::{ifaceName}_Binding" self.outerObjectHook = desc.get('outerObjectHook', 'None') self.proxy = False |