Skip to content

Commit

Permalink
[Fizz] Implement all the DOM attributes and special cases (#21153)
Browse files Browse the repository at this point in the history
* 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
  • Loading branch information
sebmarkbage committed Apr 1, 2021
1 parent 0e96bdd commit b9e4c10
Show file tree
Hide file tree
Showing 6 changed files with 1,142 additions and 44 deletions.
Expand Up @@ -428,7 +428,7 @@ describe('ReactDOMFizzServer', () => {
}

function AsyncCol({className}) {
return <col className={readText(className)}>{[]}</col>;
return <col className={readText(className)} />;
}

function AsyncPath({id}) {
Expand Down

0 comments on commit b9e4c10

Please sign in to comment.