-
Notifications
You must be signed in to change notification settings - Fork 23
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
fix: Always apply form elements value property as an attribute (#227)
* Add failing test for inputs with already present value attributes * Apply form elements value _property_ as an _attribute always There's no reason for us to check to see if the value attribute exists on a DOM node already. This was probably a check to prevent us from modifying the customers DOM when we were mutating in place. Now we're only modifying the clone, so it's safe to _always_ set the attribute from the DOM elements property. * Fix textarea integration test
- Loading branch information
Showing
3 changed files
with
20 additions
and
10 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters