From d8da5c20f6f989ced1d40b59612a80c9914b5937 Mon Sep 17 00:00:00 2001 From: Corey Farwell Date: Sun, 20 Sep 2015 16:48:27 -0400 Subject: Remove deprecated 'creator' WebIDL attribute According to @Ms2ger, the 'creator' attribute was merged into 'setter' --- components/script/dom/domstringmap.rs | 5 ----- 1 file changed, 5 deletions(-) (limited to 'components/script/dom/domstringmap.rs') 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(); -- cgit v1.2.3