Skip to content

Commit b9e4c10

Browse files
authored
[Fizz] Implement all the DOM attributes and special cases (#21153)
* Implement DOM format config structure * Styles * Input warnings * Textarea special cases * Select special cases * Option special cases We read the currently selected value from the FormatContext. * Warning for non-lower case HTML We don't change to lower case at runtime anymore but keep the warning. * Pre tags innerHTML needs to be prefixed This is because if you do the equivalent on the client using innerHTML, this is the effect you'd get. * Extract errors
1 parent 0e96bdd commit b9e4c10

File tree

6 files changed

+1142
-44
lines changed

6 files changed

+1142
-44
lines changed

packages/react-dom/src/__tests__/ReactDOMFizzServer-test.js

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -428,7 +428,7 @@ describe('ReactDOMFizzServer', () => {
428428
}
429429

430430
function AsyncCol({className}) {
431-
return <col className={readText(className)}>{[]}</col>;
431+
return <col className={readText(className)} />;
432432
}
433433

434434
function AsyncPath({id}) {

0 commit comments

Comments
 (0)