Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Fix Broken Links In Documentation #28321

Merged
merged 8 commits into from
Mar 3, 2024
Prev Previous commit
Next Next commit
https://www.w3.org/TR/custom-elements/
  • Loading branch information
justindhillon committed Feb 13, 2024
commit bc1caa48af535538ce8acc9db9385bc20f36232c
2 changes: 1 addition & 1 deletion packages/react-dom-bindings/src/shared/isCustomElement.js
Original file line number Diff line number Diff line change
Expand Up @@ -15,7 +15,7 @@ function isCustomElement(tagName: string, props: Object): boolean {
// These are reserved SVG and MathML elements.
// We don't mind this list too much because we expect it to never grow.
// The alternative is to track the namespace in a few places which is convoluted.
// https://w3c.github.io/webcomponents/spec/custom/#custom-elements-core-concepts
// https://www.w3.org/TR/custom-elements/
case 'annotation-xml':
case 'color-profile':
case 'font-face':
Expand Down