-
Notifications
You must be signed in to change notification settings - Fork 26.2k
fix(common): A null value should remove the style on IE #21679
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
Conversation
You can preview 08db567 at https://pr21679-08db567.ngbuilds.io/. |
@@ -61,6 +61,19 @@ import {ComponentFixture, TestBed, async} from '@angular/core/testing'; | |||
expectNativeEl(fixture).not.toHaveCssStyle('max-width'); | |||
})); | |||
|
|||
// https://github.com/angular/angular/issues/21064 | |||
it('should add and remove styles which names are not dash-cased', async(() => { |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
Wrong description
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
Why ?
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
Could swear it was repeated. False alarm I guess o:
This issue has been automatically locked due to inactivity. Read more about our automatic conversation locking policy. This action has been performed automatically by a bot. |
fixes #21064
Kudos to @ericmartinezr for a very detailed analysis of the issue in #21064
(The added test is failing on IE without the fix)