aboutsummaryrefslogtreecommitdiffstats
path: root/components/script/dom/htmlformelement.rs
diff options
context:
space:
mode:
authorCorey Farwell <coreyf@rwell.org>2015-12-10 22:06:05 -0500
committerCorey Farwell <coreyf@rwell.org>2015-12-10 23:47:25 -0500
commit4accaf50b21a6344e9ee7518f7ab07c1dde7c36c (patch)
tree36d486ba0e57440a7a69e14829814e7ad5006712 /components/script/dom/htmlformelement.rs
parent996c0a60b81e7d7e0fbfea81a546771ea9327df6 (diff)
downloadservo-4accaf50b21a6344e9ee7518f7ab07c1dde7c36c.tar.gz
servo-4accaf50b21a6344e9ee7518f7ab07c1dde7c36c.zip
Pass around event types as Atoms instead of Strings
`Event` internally stores the `type` as an `Atom`, and we're `String`s everywhere, which can cause unnecessary allocations to occur since they'll end up as `Atom`s anyways.
Diffstat (limited to 'components/script/dom/htmlformelement.rs')
-rw-r--r--components/script/dom/htmlformelement.rs4
1 files changed, 2 insertions, 2 deletions
diff --git a/components/script/dom/htmlformelement.rs b/components/script/dom/htmlformelement.rs
index dda93487caf..f7c3b7272a7 100644
--- a/components/script/dom/htmlformelement.rs
+++ b/components/script/dom/htmlformelement.rs
@@ -162,7 +162,7 @@ impl HTMLFormElement {
// TODO: Handle browsing contexts
// TODO: Handle validation
let event = Event::new(GlobalRef::Window(win.r()),
- DOMString::from("submit"),
+ atom!("submit"),
EventBubbles::Bubbles,
EventCancelable::Cancelable);
event.fire(self.upcast());
@@ -315,7 +315,7 @@ impl HTMLFormElement {
let win = window_from_node(self);
let event = Event::new(GlobalRef::Window(win.r()),
- DOMString::from("reset"),
+ atom!("reset"),
EventBubbles::Bubbles,
EventCancelable::Cancelable);
event.fire(self.upcast());