Skip to content

File tree

6 files changed

+6
-6
lines changed

6 files changed

+6
-6
lines changed

fixtures/dom/src/components/fixtures/suspense/index.js

+1-1
Original file line numberDiff line numberDiff line change
@@ -213,7 +213,7 @@ class TextInputFixtures extends React.Component {
213213

214214
<Fixture>
215215
<SuspendyTree>
216-
<img src="https://upload.wikimedia.org/wikipedia/commons/e/ee/Atom_%282%29.png" />
216+
<img src="https://upload.wikimedia.org/wikipedia/commons/1/1b/Atom.png" />
217217
React is cool
218218
</SuspendyTree>
219219
</Fixture>

packages/react-devtools-shared/src/devtools/cache.js

+1-1
Original file line numberDiff line numberDiff line change
@@ -15,7 +15,7 @@ import {createContext} from 'react';
1515
// TODO (cache) Remove this cache; it is outdated and will not work with newer APIs like startTransition.
1616

1717
// Cache implementation was forked from the React repo:
18-
// https://github.com/facebook/react/blob/main/packages/react-cache/src/ReactCache.js
18+
// https://github.com/facebook/react/blob/main/packages/react-cache/src/ReactCacheOld.js
1919
//
2020
// This cache is simpler than react-cache in that:
2121
// 1. Individual items don't need to be invalidated.

packages/react-devtools-timeline/src/view-base/Surface.js

+1-1
Original file line numberDiff line numberDiff line change
@@ -21,7 +21,7 @@ export type ViewRefs = {
2121
hoveredView: View | null,
2222
};
2323

24-
// hidpi canvas: https://www.html5rocks.com/en/tutorials/canvas/hidpi/
24+
// hidpi canvas: https://web.dev/articles/canvas-hidipi
2525
function configureRetinaCanvas(
2626
canvas: HTMLCanvasElement,
2727
height: number,

packages/react-devtools-timeline/src/view-base/utils/normalizeWheel.js

+1-1
Original file line numberDiff line numberDiff line change
@@ -7,7 +7,7 @@
77
* @flow
88
*/
99

10-
// Adapted from: https://github.com/facebookarchive/fixed-data-table/blob/main/src/vendor_upstream/dom/normalizeWheel.js
10+
// Adapted from: https://github.com/facebookarchive/fixed-data-table/blob/master/src/vendor_upstream/dom/normalizeWheel.js
1111

1212
export type NormalizedWheelDelta = {
1313
deltaX: number,

packages/react-dom-bindings/src/server/ReactFizzConfigDOM.js

+1-1
Original file line numberDiff line numberDiff line change
@@ -3710,7 +3710,7 @@ export function pushStartInstance(
37103710
return pushSelfClosing(target, props, type);
37113711
}
37123712
// These are reserved SVG and MathML elements, that are never custom elements.
3713-
// https://w3c.github.io/webcomponents/spec/custom/#custom-elements-core-concepts
3713+
// https://html.spec.whatwg.org/multipage/custom-elements.html#custom-elements-core-concepts
37143714
case 'annotation-xml':
37153715
case 'color-profile':
37163716
case 'font-face':

packages/react-dom-bindings/src/shared/isCustomElement.js

+1-1
Original file line numberDiff line numberDiff line change
@@ -15,7 +15,7 @@ function isCustomElement(tagName: string, props: Object): boolean {
1515
// These are reserved SVG and MathML elements.
1616
// We don't mind this list too much because we expect it to never grow.
1717
// The alternative is to track the namespace in a few places which is convoluted.
18-
// https://w3c.github.io/webcomponents/spec/custom/#custom-elements-core-concepts
18+
// https://html.spec.whatwg.org/multipage/custom-elements.html#custom-elements-core-concepts
1919
case 'annotation-xml':
2020
case 'color-profile':
2121
case 'font-face':

0 commit comments

Comments
 (0)