diff options
Diffstat (limited to 'components/script/dom/htmlbuttonelement.rs')
-rw-r--r-- | components/script/dom/htmlbuttonelement.rs | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/components/script/dom/htmlbuttonelement.rs b/components/script/dom/htmlbuttonelement.rs index 3968ec5918e..a1056554361 100644 --- a/components/script/dom/htmlbuttonelement.rs +++ b/components/script/dom/htmlbuttonelement.rs @@ -76,13 +76,13 @@ impl HTMLButtonElementMethods for HTMLButtonElement { ValidityState::new(window.r()) } - // https://html.spec.whatwg.org/multipage#dom-fe-disabled + // https://html.spec.whatwg.org/multipage/#dom-fe-disabled make_bool_getter!(Disabled); - // https://html.spec.whatwg.org/multipage#dom-fe-disabled + // https://html.spec.whatwg.org/multipage/#dom-fe-disabled make_bool_setter!(SetDisabled, "disabled"); - // https://html.spec.whatwg.org/multipage#dom-fae-form + // https://html.spec.whatwg.org/multipage/#dom-fae-form fn GetForm(&self) -> Option<Root<HTMLFormElement>> { self.form_owner() } |