aboutsummaryrefslogtreecommitdiffstats
path: root/components/script/dom/htmlfieldsetelement.rs
diff options
context:
space:
mode:
Diffstat (limited to 'components/script/dom/htmlfieldsetelement.rs')
-rw-r--r--components/script/dom/htmlfieldsetelement.rs8
1 files changed, 4 insertions, 4 deletions
diff --git a/components/script/dom/htmlfieldsetelement.rs b/components/script/dom/htmlfieldsetelement.rs
index 1e381e721db..5b55f62b175 100644
--- a/components/script/dom/htmlfieldsetelement.rs
+++ b/components/script/dom/htmlfieldsetelement.rs
@@ -52,7 +52,7 @@ impl HTMLFieldSetElement {
}
impl HTMLFieldSetElementMethods for HTMLFieldSetElement {
- // https://html.spec.whatwg.org/multipage#dom-fieldset-elements
+ // https://html.spec.whatwg.org/multipage/#dom-fieldset-elements
fn Elements(&self) -> Root<HTMLCollection> {
#[derive(JSTraceable, HeapSizeOf)]
struct ElementsFilter;
@@ -75,13 +75,13 @@ impl HTMLFieldSetElementMethods for HTMLFieldSetElement {
ValidityState::new(window.r())
}
- // https://html.spec.whatwg.org/multipage#dom-fieldset-disabled
+ // https://html.spec.whatwg.org/multipage/#dom-fieldset-disabled
make_bool_getter!(Disabled);
- // https://html.spec.whatwg.org/multipage#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
+ // https://html.spec.whatwg.org/multipage/#dom-fae-form
fn GetForm(&self) -> Option<Root<HTMLFormElement>> {
self.form_owner()
}