mirror of
https://github.com/servo/servo.git
synced 2025-08-05 13:40:08 +01:00
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`
This commit is contained in:
parent
4fd4370a96
commit
8b08c6f43f
24 changed files with 57 additions and 57 deletions
|
@ -475,7 +475,7 @@ impl<'a> DocumentHelpers<'a> for JSRef<'a, Document> {
|
|||
node.set_focus_state(true);
|
||||
}
|
||||
// TODO: Update the focus state for all elements in the focus chain.
|
||||
// https://html.spec.whatwg.org/multipage/interaction.html#focus-chain
|
||||
// https://html.spec.whatwg.org/multipage/#focus-chain
|
||||
}
|
||||
|
||||
/// Handles any updates when the document's title has changed.
|
||||
|
@ -552,7 +552,7 @@ impl<'a> DocumentHelpers<'a> for JSRef<'a, Document> {
|
|||
|
||||
// https://dvcs.w3.org/hg/dom3events/raw-file/tip/html/DOM3-Events.html#trusted-events
|
||||
event.set_trusted(true);
|
||||
// https://html.spec.whatwg.org/multipage/interaction.html#run-authentic-click-activation-steps
|
||||
// https://html.spec.whatwg.org/multipage/#run-authentic-click-activation-steps
|
||||
el.r().authentic_click_activation(event);
|
||||
|
||||
self.commit_focus_transaction();
|
||||
|
@ -908,7 +908,7 @@ impl<'a> DocumentMethods for JSRef<'a, Document> {
|
|||
self.url().serialize()
|
||||
}
|
||||
|
||||
// https://html.spec.whatwg.org/multipage/interaction.html#dom-document-activeelement
|
||||
// https://html.spec.whatwg.org/multipage/#dom-document-activeelement
|
||||
fn GetActiveElement(self) -> Option<Temporary<Element>> {
|
||||
// TODO: Step 2.
|
||||
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue