react/fixtures/dom
Jack Pope 476f53879e
Add getClientRects to fragment instances (#32660)
Adds `getClientRects()` to fragment instances with a fixture test case.
`Element.getClientRect` returns a collection of `DOMRect`s (see example
of multiline span returning two `DOMRect` boxes).
`fragmentInstance.getClientRects` here flattens those collections into
an array of rects.
2025-03-18 13:54:26 -04:00
..
public [fix] replace polyfill.io with cloudflare equivalent (#30123) 2024-06-28 10:26:28 +02:00
src Add getClientRects to fragment instances (#32660) 2025-03-18 13:54:26 -04:00
.gitignore act() - s / flushPassiveEffects / Scheduler.unstable_flushWithoutYielding (#15591) 2019-05-16 17:12:36 +01:00
package.json Fix local react usage in DOM fixture (#32080) 2025-01-16 10:33:24 -05:00
README.md [UMD] Remove umd builds (#28735) 2024-04-17 11:15:27 -07:00
yarn.lock Fix local react usage in DOM fixture (#32080) 2025-01-16 10:33:24 -05:00

DOM Fixtures

A set of DOM test cases for quickly identifying browser issues.

Setup

To reference a local build of React, first run yarn build at the root of the React project. Then:

cd fixtures/dom
yarn
yarn dev

The dev command runs a script that copies over the local build of react into the public directory.