Uh oh!
There was an error while loading. Please reload this page.
[react-dom] Add support for onFullscreenChange and onFullscreenError events - #34621
Conversation
Comparing: 61db53c...ac58801 Critical size changesIncludes critical production bundles, as well as any change greater than 2%:
Significant size changesIncludes any change greater than 0.2%: (No significant changes) |
eps1lon
commented
Sep 28, 2025
I suspect |
This pull request has been automatically marked as stale. If this pull request is still relevant, please leave any comment (for example, "bump"), and we'll keep it open. We are sorry that we haven't been able to prioritize reviewing it yet. Your contribution is very much appreciated. |
onFullscreenChange and onFullscreenError eventsfda4b13 to
ac58801CompareUh oh!
There was an error while loading. Please reload this page.
…or` events (react#34621) DiffTrain build for [4842fbe](react@4842fbe)
…or` events (react#34621) DiffTrain build for [4842fbe](react@4842fbe)
Summary
This adds support for the
fullscreenchangeandfullscreenerrorevents.These events are currently supported in Chrome and Firefox(see browser compatibility table). You can read more about these events here.
https://github.com/facebook/react/blob/2622487a7495b2ded000e1ad8b2e292d01bdd126/packages/react-dom-bindings/src/events/ReactDOMEventListener.js#L364-L366
I omit
fullscreenerrorhere so it falls back to default below.How did you test this change?
Added unit tests.