diff options
author | Josh Matthews <josh@joshmatthews.net> | 2015-08-28 12:09:32 -0400 |
---|---|---|
committer | Josh Matthews <josh@joshmatthews.net> | 2015-08-28 13:15:16 -0400 |
commit | 40806977b5caa10d4ea0cc423af25c486a3a6468 (patch) | |
tree | 88b10b6921454d6ad5faa33ace1501cad03820d6 /components/script/dom/testbinding.rs | |
parent | 6431e8da43817e8a6b1e4757afbcf45c1a629707 (diff) | |
download | servo-40806977b5caa10d4ea0cc423af25c486a3a6468.tar.gz servo-40806977b5caa10d4ea0cc423af25c486a3a6468.zip |
Add infrastructure for supporting dashed CSS property names on CSSStyleDeclaration.
Diffstat (limited to 'components/script/dom/testbinding.rs')
-rw-r--r-- | components/script/dom/testbinding.rs | 4 |
1 files changed, 4 insertions, 0 deletions
diff --git a/components/script/dom/testbinding.rs b/components/script/dom/testbinding.rs index 335e261634b..e050f799c8f 100644 --- a/components/script/dom/testbinding.rs +++ b/components/script/dom/testbinding.rs @@ -120,6 +120,10 @@ impl TestBindingMethods for TestBinding { fn SetBinaryRenamedAttribute(&self, _: DOMString) {} fn ForwardedAttribute(&self) -> Root<TestBinding> { Root::from_ref(self) } fn BinaryRenamedAttribute(&self) -> DOMString { "".to_owned() } + fn SetBinaryRenamedAttribute2(&self, _: DOMString) {} + fn BinaryRenamedAttribute2(&self) -> DOMString { "".to_owned() } + fn Attr_to_automatically_rename(&self) -> DOMString { "".to_owned() } + fn SetAttr_to_automatically_rename(&self, _: DOMString) {} fn GetEnumAttributeNullable(&self) -> Option<TestEnum> { Some(_empty) } fn GetInterfaceAttributeNullable(&self) -> Option<Root<Blob>> { let global = self.global.root(); |