We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent d2b08a0 commit 00e7da2Copy full SHA for 00e7da2
test/ng/directive/booleanAttrsSpec.js
@@ -283,6 +283,16 @@ describe('ngHref', function() {
283
expect(element.attr('href')).toEqual(undefined);
284
}));
285
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
296
if (isDefined(window.SVGElement)) {
297
describe('SVGAElement', function() {
298
it('should interpolate the expression and bind to xlink:href', inject(function($compile, $rootScope) {
0 commit comments