Skip to content

Commit 00e7da2

Browse files
author
Andy Patterson
committed
test(booleanAttrsSpec): add unit test for IE11 URL parsing failure
IE11/10/Edge fail when setting a href to a URL containing a % that isn't a valid escape sequence Reference: angular#13388
1 parent d2b08a0 commit 00e7da2

File tree

1 file changed

+10
-0
lines changed

1 file changed

+10
-0
lines changed

test/ng/directive/booleanAttrsSpec.js

+10
Original file line numberDiff line numberDiff line change
@@ -283,6 +283,16 @@ describe('ngHref', function() {
283283
expect(element.attr('href')).toEqual(undefined);
284284
}));
285285

286+
if (msie) {
287+
it('should throw error if ng-href contains a percent sign', inject(function ($rootScope, $compile) {
288+
element = $compile('<a ng-href="http://www.google.com/{{\'a%link\'}}">')($rootScope);
289+
290+
expect(function() {
291+
$rootScope.$digest();
292+
}).toThrow();
293+
}));
294+
}
295+
286296
if (isDefined(window.SVGElement)) {
287297
describe('SVGAElement', function() {
288298
it('should interpolate the expression and bind to xlink:href', inject(function($compile, $rootScope) {

0 commit comments

Comments
 (0)