diff options
author | Corey Farwell <coreyf@rwell.org> | 2015-04-16 21:37:56 -0400 |
---|---|---|
committer | Corey Farwell <coreyf@rwell.org> | 2015-04-16 22:39:25 -0400 |
commit | 8b08c6f43fd93c381d843ccce4e9fbaec9d3fa28 (patch) | |
tree | 6e757659a603705ab3db36ebeeb7de503af84bc4 /components/script/dom/workerlocation.rs | |
parent | 4fd4370a9680f4845f05efd43ce9cb26c7433f05 (diff) | |
download | servo-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/workerlocation.rs')
-rw-r--r-- | components/script/dom/workerlocation.rs | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/components/script/dom/workerlocation.rs b/components/script/dom/workerlocation.rs index 0d82fc79098..c8aa09cd750 100644 --- a/components/script/dom/workerlocation.rs +++ b/components/script/dom/workerlocation.rs @@ -13,7 +13,7 @@ use dom::workerglobalscope::WorkerGlobalScope; use url::Url; -// https://html.spec.whatwg.org/multipage/workers.html#worker-locations +// https://html.spec.whatwg.org/multipage/#worker-locations #[dom_struct] pub struct WorkerLocation { reflector_: Reflector, |