diff options
author | Ms2ger <ms2ger@gmail.com> | 2014-09-14 10:27:42 +0200 |
---|---|---|
committer | Ms2ger <ms2ger@gmail.com> | 2014-09-14 10:27:42 +0200 |
commit | aa3ca283d427fe9e1e23025ba2a2fe50ddcdfeeb (patch) | |
tree | abeae55b4c197fb265b68a8c69d07f6efa362501 /components/script/dom/document.rs | |
parent | 97e068b1c27b2b2aa48e38550e6adbdc42bba8c3 (diff) | |
download | servo-aa3ca283d427fe9e1e23025ba2a2fe50ddcdfeeb.tar.gz servo-aa3ca283d427fe9e1e23025ba2a2fe50ddcdfeeb.zip |
Remove obsolete FIXME comment.
Diffstat (limited to 'components/script/dom/document.rs')
-rw-r--r-- | components/script/dom/document.rs | 1 |
1 files changed, 0 insertions, 1 deletions
diff --git a/components/script/dom/document.rs b/components/script/dom/document.rs index f8f83183dc2..8f8f8e5c607 100644 --- a/components/script/dom/document.rs +++ b/components/script/dom/document.rs @@ -569,7 +569,6 @@ impl<'a> DocumentMethods for JSRef<'a, Document> { let window = self.window.root(); match interface.as_slice().to_ascii_lower().as_slice() { - // FIXME: Implement CustomEvent (http://dom.spec.whatwg.org/#customevent) "uievents" | "uievent" => Ok(EventCast::from_temporary(UIEvent::new_uninitialized(&*window))), "mouseevents" | "mouseevent" => Ok(EventCast::from_temporary(MouseEvent::new_uninitialized(&*window))), "customevent" => Ok(EventCast::from_temporary(CustomEvent::new_uninitialized(&Window(*window)))), |