diff options
Diffstat (limited to 'components/script/dom/htmlselectelement.rs')
-rw-r--r-- | components/script/dom/htmlselectelement.rs | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/components/script/dom/htmlselectelement.rs b/components/script/dom/htmlselectelement.rs index 8c6b73c564b..f5754a9610f 100644 --- a/components/script/dom/htmlselectelement.rs +++ b/components/script/dom/htmlselectelement.rs @@ -68,10 +68,10 @@ impl HTMLSelectElementMethods for HTMLSelectElement { fn Add(&self, _element: HTMLOptionElementOrHTMLOptGroupElement, _before: Option<HTMLElementOrLong>) { } - // https://www.whatwg.org/html/#dom-fe-disabled + // https://html.spec.whatwg.org/multipage#dom-fe-disabled make_bool_getter!(Disabled); - // https://www.whatwg.org/html/#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 |