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

6 files changed

Lines changed: 1142 additions & 44 deletions

File tree

‎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
functionAsyncCol({className}){
431-
return<colclassName={readText(className)}>{[]}</col>;
431+
return<colclassName={readText(className)}/>;
432432
}
433433

434434
functionAsyncPath({id}){

0 commit comments

Comments
 (0)