diff options
author | Simon Sapin <simon.sapin@exyr.org> | 2019-07-26 21:54:42 +0200 |
---|---|---|
committer | Simon Sapin <simon.sapin@exyr.org> | 2019-07-29 17:37:03 +0200 |
commit | f1300bb98b0267b552a3f12e64e30f2f414213a3 (patch) | |
tree | 901681da27bf4d8733d205476c08963656555113 /components/script/dom/bindings/codegen/parser | |
parent | 447ae1eae6e21017d2afd8d6b17a9f8ab889dd3f (diff) | |
download | servo-f1300bb98b0267b552a3f12e64e30f2f414213a3.tar.gz servo-f1300bb98b0267b552a3f12e64e30f2f414213a3.zip |
Auto-generate CSSStyleDeclaration.webidl for CSS properties based on the style crate
Diffstat (limited to 'components/script/dom/bindings/codegen/parser')
-rw-r--r-- | components/script/dom/bindings/codegen/parser/WebIDL.py | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/components/script/dom/bindings/codegen/parser/WebIDL.py b/components/script/dom/bindings/codegen/parser/WebIDL.py index 7ea8423e860..edfdcf9d745 100644 --- a/components/script/dom/bindings/codegen/parser/WebIDL.py +++ b/components/script/dom/bindings/codegen/parser/WebIDL.py @@ -3344,7 +3344,7 @@ class IDLBuiltinType(IDLType): [self.location, attribute.location]) assert not self.nullable() if not attribute.hasValue(): - raise WebIDLError("[TreatNullAs] must take an identifier argument" + raise WebIDLError("[TreatNullAs] must take an identifier argument", [attribute.location]) value = attribute.value() if value != 'EmptyString': |