-
Notifications
You must be signed in to change notification settings - Fork 27.4k
fix(ngSrcset): ignore undefined ng-srcset directive #14493
Conversation
@@ -28,5 +28,12 @@ describe('ngSrcset', function() { | |||
$rootScope.$digest(); | |||
expect(element.attr('srcset')).toBe('http://example.com/image1.png 1x,unsafe:javascript:doEvilStuff() 2x'); | |||
})); | |||
|
|||
it('should not throw an error if undefined', inject(function($rootScope, $compile) { |
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.
I didn't try it, but I am pretty sure this test passes without the fix.
Can you confirm that's inded tha case and change the test, so it fails without the fix ?
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.
Yes, you're right @gkalpak. That test wasn't testing the fix.
I've updated the test and verified that it fails without the fix.
Thx @rphv for working on this. |
Test updated. On Fri, Apr 22, 2016 at 3:57 AM, Georgios Kalpakas <notifications@github.com
|
@rphv, since this is not (Also, you don't have to use |
Thank you for your advice and attention. I'm not sure if the new test I added is in the right place or in the On Mon, Apr 25, 2016 at 11:01 AM, Georgios Kalpakas <
|
Tweaked the test a bit and merged. |
What kind of change does this PR introduce? (Bug fix, feature, docs update, ...)
This is a bug fix.
What is the current behavior? (You can also link to an open issue here)
Currently, a TypeError is thrown when data-ng-attr-srcset is undefined.
What is the new behavior (if this is a feature change)?
Now, the attribute is ignored if it's undefined.
Does this PR introduce a breaking change?
No.
Please check if the PR fulfills these requirements
Other information:
Closes #14470