Fix internal links to pages that do not exist - #44935
Open
husamemadH wants to merge 1 commit into
Open
Conversation
- MathML global attributes autofocus, class, id, nonce, style and tabindex have no MathML-specific page; point them at the HTML global attribute pages, as MathMLElement.nonce and the MathML dir page already do. - PreferenceObject.clearOverride(): colorScheme lives on PreferenceManager. - WebXR (4 pages): /WebXR_Device_API/Gamepads does not exist; point at the gamepad section of Inputs and input sources. - WebDriver Get Window Rect: Set Window Rect moved under Classic/Commands/. - XSLT <xsl:stylesheet>: for-each-group has no page under the current /Web/XML/XSLT/ path, so drop the link and keep the element as code.
husamemadH
requested review from
fred-wang and
sideshowbarker
and removed request for
a team
July 27, 2026 16:25
Contributor
Preview URLs (9 pages)
Flaws (6)Note! 8 documents with no flaws that don't need to be listed. 🎉 Found an unexpected or unresolvable flaw? Please report it here. URL:
|
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
Add this suggestion to a batch that can be applied as a single commit.This suggestion is invalid because no changes were made to the code.Suggestions cannot be applied while the pull request is closed.Suggestions cannot be applied while viewing a subset of changes.Only one suggestion per line can be applied in a batch.Add this suggestion to a batch that can be applied as a single commit.Applying suggestions on deleted lines is not supported.You must change the existing code in this line in order to create a valid suggestion.Outdated suggestions cannot be applied.This suggestion has been applied or marked resolved.Suggestions cannot be applied from pending reviews.Suggestions cannot be applied on multi-line comments.Suggestions cannot be applied while the pull request is queued to merge.Suggestion cannot be applied right now. Please check back later.
Description
Fixes 14 internal links across 9 pages that currently return a 404.
Motivation
Each broken link and its replacement, verified against the live site:
MathML global attributes (
Web/MathML/Reference/Global_attributes, 6 links, plus 1 onMathMLElement.tabIndex)autofocus,class,id,nonce,styleandtabindexare HTML global attributes that MathML elements inherit; MDN has no MathML-specific page for any of them, so all six links 404. They now point at the HTML global attribute pages, which all return 200. This matches what neighboring pages already do —MathMLElement.nonceand the MathMLdirpage both link to/Web/HTML/Reference/Global_attributes/…. The MathML-specific attributes on the same list (data-*,dir,displaystyle,mathbackground,mathcolor,mathsize,scriptlevel,href) do have pages and are left untouched.PreferenceObject.clearOverride()— linked to/Web/API/PreferenceObject/colorScheme(404). The property is onPreferenceManager, and/Web/API/PreferenceManager/colorSchemereturns 200.WebXR (4 pages) — the "See also" entry for gamepads pointed at
/Web/API/WebXR_Device_API/Gamepads, which does not exist and has no redirect. Retargeted to the section that covers this material, Advanced controllers using the gamepad object.WebDriver
Get Window Rect— the link to the Set Window Rect command used the pre-reorganization path/Web/WebDriver/Reference/SetWindowRect. The page is now at/Web/WebDriver/Reference/Classic/Commands/SetWindowRect.XSLT
<xsl:stylesheet>—<xsl:for-each-group>linked to/Web/XSLT/Element/for-each-group, a path from before XSLT moved under/Web/XML/. There is nofor-each-grouppage under the new path either, so the link is dropped and the element name kept as inline code; the adjacent<xsl:key>link in the same sentence already uses the current path.