diff options
author | Corey Farwell <coreyf@rwell.org> | 2015-09-20 16:48:27 -0400 |
---|---|---|
committer | Corey Farwell <coreyf@rwell.org> | 2015-09-21 07:12:17 -0400 |
commit | d8da5c20f6f989ced1d40b59612a80c9914b5937 (patch) | |
tree | 1da68d13ad29301e9999487a7064ddd36f97fe79 /components/script/dom/testbindingproxy.rs | |
parent | 6c6c6663ab21e35224f1070c6dca477cc023e8c4 (diff) | |
download | servo-d8da5c20f6f989ced1d40b59612a80c9914b5937.tar.gz servo-d8da5c20f6f989ced1d40b59612a80c9914b5937.zip |
Remove deprecated 'creator' WebIDL attribute
According to @Ms2ger, the 'creator' attribute was merged into 'setter'
Diffstat (limited to 'components/script/dom/testbindingproxy.rs')
-rw-r--r-- | components/script/dom/testbindingproxy.rs | 2 |
1 files changed, 0 insertions, 2 deletions
diff --git a/components/script/dom/testbindingproxy.rs b/components/script/dom/testbindingproxy.rs index 5ca27eae735..079e7656f68 100644 --- a/components/script/dom/testbindingproxy.rs +++ b/components/script/dom/testbindingproxy.rs @@ -23,12 +23,10 @@ impl TestBindingProxyMethods for TestBindingProxy { fn SetItem(&self, _: u32, _: DOMString) -> () {} fn RemoveItem(&self, _: DOMString) -> () {} fn Stringifier(&self) -> DOMString { "".to_owned() } - fn NamedCreator(&self, _: DOMString, _: DOMString) -> () {} fn IndexedGetter(&self, _: u32, _: &mut bool) -> DOMString { "".to_owned() } fn NamedDeleter(&self, _: DOMString) -> () {} fn IndexedSetter(&self, _: u32, _: DOMString) -> () {} fn NamedSetter(&self, _: DOMString, _: DOMString) -> () {} - fn IndexedCreator(&self, _: u32, _: DOMString) -> () {} fn NamedGetter(&self, _: DOMString, _: &mut bool) -> DOMString { "".to_owned() } } |