diff options
author | Eli Friedman <eli.friedman@gmail.com> | 2015-11-27 12:19:29 -0800 |
---|---|---|
committer | Eli Friedman <eli.friedman@gmail.com> | 2015-11-27 15:42:34 -0800 |
commit | c02c0576c821a95fa4a68c29d410566e99487dc9 (patch) | |
tree | 463220c6095eafc255f4b2e804fd2c67496afe07 /components/script/dom/htmloptgroupelement.rs | |
parent | 3720e4d5ef09d710deaf846c74356ccea8d7afce (diff) | |
download | servo-c02c0576c821a95fa4a68c29d410566e99487dc9.tar.gz servo-c02c0576c821a95fa4a68c29d410566e99487dc9.zip |
Compute attribute name atoms at compile-time.
Diffstat (limited to 'components/script/dom/htmloptgroupelement.rs')
-rw-r--r-- | components/script/dom/htmloptgroupelement.rs | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/components/script/dom/htmloptgroupelement.rs b/components/script/dom/htmloptgroupelement.rs index 80bbab1f36a..3b146e62091 100644 --- a/components/script/dom/htmloptgroupelement.rs +++ b/components/script/dom/htmloptgroupelement.rs @@ -43,7 +43,7 @@ impl HTMLOptGroupElement { impl HTMLOptGroupElementMethods for HTMLOptGroupElement { // https://html.spec.whatwg.org/multipage/#dom-optgroup-disabled - make_bool_getter!(Disabled); + make_bool_getter!(Disabled, "disabled"); // https://html.spec.whatwg.org/multipage/#dom-optgroup-disabled make_bool_setter!(SetDisabled, "disabled"); |