aboutsummaryrefslogtreecommitdiffstats
path: root/components/script/dom/domstringmap.rs
diff options
context:
space:
mode:
authorbors-servo <metajack+bors@gmail.com>2015-09-21 05:45:30 -0600
committerbors-servo <metajack+bors@gmail.com>2015-09-21 05:45:30 -0600
commit291fa888326e743a1e59aa7c06d5288a0643cbb7 (patch)
tree1da68d13ad29301e9999487a7064ddd36f97fe79 /components/script/dom/domstringmap.rs
parentec9aa9ace024470363ff227b97fb442a400fe496 (diff)
parentd8da5c20f6f989ced1d40b59612a80c9914b5937 (diff)
downloadservo-291fa888326e743a1e59aa7c06d5288a0643cbb7.tar.gz
servo-291fa888326e743a1e59aa7c06d5288a0643cbb7.zip
Auto merge of #7691 - frewsxcv:rm-creator-webidl-attribute, r=nox
Remove deprecated 'creator' WebIDL attribute According to @Ms2ger, the 'creator' attribute was merged into 'setter' <!-- Reviewable:start --> [<img src="https://reviewable.io/review_button.png" height=40 alt="Review on Reviewable"/>](https://reviewable.io/reviews/servo/servo/7691) <!-- Reviewable:end -->
Diffstat (limited to 'components/script/dom/domstringmap.rs')
-rw-r--r--components/script/dom/domstringmap.rs5
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();