diff options
author | Bruno de Oliveira Abinader <bruno.d@partner.samsung.com> | 2014-10-21 14:00:48 -0400 |
---|---|---|
committer | Bruno de Oliveira Abinader <bruno.d@partner.samsung.com> | 2014-10-22 11:13:58 -0400 |
commit | bbab8831e0286be7ebf0c2dc964d6a6b6c30d65f (patch) | |
tree | b525d0f5b04bc318b79c4f00f36ba4aaba44e9b9 /components/script/dom/htmltablecellelement.rs | |
parent | f5e8df9dac9330f2818906c471ed05f5975828c6 (diff) | |
download | servo-bbab8831e0286be7ebf0c2dc964d6a6b6c30d65f.tar.gz servo-bbab8831e0286be7ebf0c2dc964d6a6b6c30d65f.zip |
Usage of JSRef<Attr> in before_remove_attr & after_set_attr
JSRef<Attr> does not require allocating a DOMString for value, which are
unused in most cases. It also provides more access to Attr data.
Diffstat (limited to 'components/script/dom/htmltablecellelement.rs')
-rw-r--r-- | components/script/dom/htmltablecellelement.rs | 27 |
1 files changed, 14 insertions, 13 deletions
diff --git a/components/script/dom/htmltablecellelement.rs b/components/script/dom/htmltablecellelement.rs index 18795031400..cee07540301 100644 --- a/components/script/dom/htmltablecellelement.rs +++ b/components/script/dom/htmltablecellelement.rs @@ -2,6 +2,8 @@ * License, v. 2.0. If a copy of the MPL was not distributed with this * file, You can obtain one at http://mozilla.org/MPL/2.0/. */ +use dom::attr::Attr; +use dom::attr::AttrHelpers; use dom::bindings::codegen::InheritTypes::{HTMLElementCast, HTMLTableCellElementDerived}; use dom::bindings::js::JSRef; use dom::bindings::utils::{Reflectable, Reflector}; @@ -16,7 +18,6 @@ use dom::virtualmethods::VirtualMethods; use servo_util::str::{AutoLpa, DOMString, LengthOrPercentageOrAuto}; use servo_util::str; use std::cell::Cell; -use string_cache::Atom; #[dom_struct] pub struct HTMLTableCellElement { @@ -64,27 +65,27 @@ impl<'a> VirtualMethods for JSRef<'a, HTMLTableCellElement> { Some(htmlelement as &VirtualMethods) } - fn after_set_attr(&self, name: &Atom, value: DOMString) { + fn after_set_attr(&self, attr: JSRef<Attr>) { match self.super_type() { - Some(ref s) => s.after_set_attr(name, value.clone()), - _ => {} + Some(ref s) => s.after_set_attr(attr), + _ => () } - match name.as_slice() { - "width" => self.width.set(str::parse_length(value.as_slice())), - _ => {} + match attr.local_name() { + &atom!("width") => self.width.set(str::parse_length(attr.value().as_slice())), + _ => () } } - fn before_remove_attr(&self, name: &Atom, value: DOMString) { + fn before_remove_attr(&self, attr: JSRef<Attr>) { match self.super_type() { - Some(ref s) => s.before_remove_attr(name, value), - _ => {} + Some(ref s) => s.before_remove_attr(attr), + _ => () } - match name.as_slice() { - "width" => self.width.set(AutoLpa), - _ => {} + match attr.local_name() { + &atom!("width") => self.width.set(AutoLpa), + _ => () } } } |