mirror of
https://github.com/facebook/react.git
synced 2025-11-01 09:12:30 +00:00
* Do not set selection when prior selection is undefined (#12062) `restoreSelection` did not account for input elements that have changed type after the commit phase. The new `text` input supported selection but the old `email` did not and `setSelection` was incorrectly trying to restore `null` selection state. We also extend input type check in selection capabilities to cover cases where input type is `search`, `tel`, `url`, or `password`. * Add link to HTML spec for element types and selection * Add reset button to ReplaceEmailInput This commit adds a button to restore the original state of the ReplaceEmailInput fixture so that it can be run multiple times without refreshing the page.
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 start
The start command runs a script that copies over the local build of react into
the public directory.