aboutsummaryrefslogtreecommitdiffstats
path: root/components/script/dom/htmltableelement.rs
diff options
context:
space:
mode:
authorEli Friedman <eli.friedman@gmail.com>2015-11-27 12:19:29 -0800
committerEli Friedman <eli.friedman@gmail.com>2015-11-27 15:42:34 -0800
commitc02c0576c821a95fa4a68c29d410566e99487dc9 (patch)
tree463220c6095eafc255f4b2e804fd2c67496afe07 /components/script/dom/htmltableelement.rs
parent3720e4d5ef09d710deaf846c74356ccea8d7afce (diff)
downloadservo-c02c0576c821a95fa4a68c29d410566e99487dc9.tar.gz
servo-c02c0576c821a95fa4a68c29d410566e99487dc9.zip
Compute attribute name atoms at compile-time.
Diffstat (limited to 'components/script/dom/htmltableelement.rs')
-rw-r--r--components/script/dom/htmltableelement.rs4
1 files changed, 2 insertions, 2 deletions
diff --git a/components/script/dom/htmltableelement.rs b/components/script/dom/htmltableelement.rs
index f2053d8aff4..b4c87d54866 100644
--- a/components/script/dom/htmltableelement.rs
+++ b/components/script/dom/htmltableelement.rs
@@ -111,13 +111,13 @@ impl HTMLTableElementMethods for HTMLTableElement {
}
// https://html.spec.whatwg.org/multipage/#dom-table-bgcolor
- make_getter!(BgColor);
+ make_getter!(BgColor, "bgcolor");
// https://html.spec.whatwg.org/multipage/#dom-table-bgcolor
make_setter!(SetBgColor, "bgcolor");
// https://html.spec.whatwg.org/multipage/#dom-table-width
- make_getter!(Width);
+ make_getter!(Width, "width");
// https://html.spec.whatwg.org/multipage/#dom-table-width
make_dimension_setter!(SetWidth, "width");