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/domstringmap.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/domstringmap.rs')
-rw-r--r-- | components/script/dom/domstringmap.rs | 5 |
1 files changed, 0 insertions, 5 deletions
diff --git a/components/script/dom/domstringmap.rs b/components/script/dom/domstringmap.rs index 771ee21a35c..11068b99259 100644 --- a/components/script/dom/domstringmap.rs +++ b/components/script/dom/domstringmap.rs @@ -35,11 +35,6 @@ impl DOMStringMap { // https://html.spec.whatwg.org/#domstringmap impl DOMStringMapMethods for DOMStringMap { - // https://html.spec.whatwg.org/multipage/#dom-domstringmap-additem - fn NamedCreator(&self, name: DOMString, value: DOMString) -> ErrorResult { - self.NamedSetter(name, value) - } - // https://html.spec.whatwg.org/multipage/#dom-domstringmap-removeitem fn NamedDeleter(&self, name: DOMString) { let element = self.element.root(); |