aboutsummaryrefslogtreecommitdiffstats
path: root/components/script/dom/htmlobjectelement.rs
diff options
context:
space:
mode:
authorCorey Farwell <coreyf@rwell.org>2015-04-16 21:37:56 -0400
committerCorey Farwell <coreyf@rwell.org>2015-04-16 22:39:25 -0400
commit8b08c6f43fd93c381d843ccce4e9fbaec9d3fa28 (patch)
tree6e757659a603705ab3db36ebeeb7de503af84bc4 /components/script/dom/htmlobjectelement.rs
parent4fd4370a9680f4845f05efd43ce9cb26c7433f05 (diff)
downloadservo-8b08c6f43fd93c381d843ccce4e9fbaec9d3fa28.tar.gz
servo-8b08c6f43fd93c381d843ccce4e9fbaec9d3fa28.zip
Don't link to specific WHATWG multipage page
"Links to the multipage version of the specification are unfortunately likely to break over time." -- https://html.spec.whatwg.org/multipage/asefij.html This commit removes all references to the specific pages when viewing WHATWG using multipage mode. I went through all these links and they redirect fine. Regex used to generate this commit: `s_whatwg.org/multipage/.*#_whatwg.org/multipage/#_g`
Diffstat (limited to 'components/script/dom/htmlobjectelement.rs')
-rw-r--r--components/script/dom/htmlobjectelement.rs4
1 files changed, 2 insertions, 2 deletions
diff --git a/components/script/dom/htmlobjectelement.rs b/components/script/dom/htmlobjectelement.rs
index ae730c102ac..6b82c63ea82 100644
--- a/components/script/dom/htmlobjectelement.rs
+++ b/components/script/dom/htmlobjectelement.rs
@@ -87,10 +87,10 @@ impl<'a> HTMLObjectElementMethods for JSRef<'a, HTMLObjectElement> {
ValidityState::new(window.r())
}
- // https://html.spec.whatwg.org/multipage/embedded-content.html#dom-object-type
+ // https://html.spec.whatwg.org/multipage/#dom-object-type
make_getter!(Type);
- // https://html.spec.whatwg.org/multipage/embedded-content.html#dom-object-type
+ // https://html.spec.whatwg.org/multipage/#dom-object-type
make_setter!(SetType, "type");
}