diff options
author | Corey Farwell <coreyf@rwell.org> | 2015-11-09 18:31:29 -0500 |
---|---|---|
committer | Corey Farwell <coreyf@rwell.org> | 2015-11-09 20:35:29 -0500 |
commit | 71aa2392f8632fd66d76a5460d5043e5cdd6b996 (patch) | |
tree | ed0aa948cb1af6bc294641dcb2f1e61b3b942d10 /components/script/dom/macros.rs | |
parent | 73314ab10ce27e2f0860520dadeee2ce6eb88f3c (diff) | |
download | servo-71aa2392f8632fd66d76a5460d5043e5cdd6b996.tar.gz servo-71aa2392f8632fd66d76a5460d5043e5cdd6b996.zip |
Remove HTMLTableElement::width struct field
Diffstat (limited to 'components/script/dom/macros.rs')
-rw-r--r-- | components/script/dom/macros.rs | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/components/script/dom/macros.rs b/components/script/dom/macros.rs index 007abac569d..f18cd35c941 100644 --- a/components/script/dom/macros.rs +++ b/components/script/dom/macros.rs @@ -238,7 +238,7 @@ macro_rules! make_dimension_setter( use dom::element::Element; use string_cache::Atom; let element = self.upcast::<Element>(); - let value = AttrValue::parse_dimension(value); + let value = AttrValue::from_dimension(value); // FIXME(pcwalton): Do this at compile time, not at runtime. element.set_attribute(&Atom::from_slice($htmlname), value) } |