diff options
Diffstat (limited to 'components/script/dom/htmlfieldsetelement.rs')
-rw-r--r-- | components/script/dom/htmlfieldsetelement.rs | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/components/script/dom/htmlfieldsetelement.rs b/components/script/dom/htmlfieldsetelement.rs index c4c2f5a86f9..1e381e721db 100644 --- a/components/script/dom/htmlfieldsetelement.rs +++ b/components/script/dom/htmlfieldsetelement.rs @@ -52,7 +52,7 @@ impl HTMLFieldSetElement { } impl HTMLFieldSetElementMethods for HTMLFieldSetElement { - // https://www.whatwg.org/html/#dom-fieldset-elements + // https://html.spec.whatwg.org/multipage#dom-fieldset-elements fn Elements(&self) -> Root<HTMLCollection> { #[derive(JSTraceable, HeapSizeOf)] struct ElementsFilter; @@ -75,10 +75,10 @@ impl HTMLFieldSetElementMethods for HTMLFieldSetElement { ValidityState::new(window.r()) } - // https://www.whatwg.org/html/#dom-fieldset-disabled + // https://html.spec.whatwg.org/multipage#dom-fieldset-disabled make_bool_getter!(Disabled); - // https://www.whatwg.org/html/#dom-fieldset-disabled + // https://html.spec.whatwg.org/multipage#dom-fieldset-disabled make_bool_setter!(SetDisabled, "disabled"); // https://html.spec.whatwg.org/multipage#dom-fae-form |