'use strict'; describe('a', function() { var element, $compile, $rootScope; beforeEach(module(function($compileProvider) { $compileProvider. directive('linkTo', valueFn({ restrict: 'A', template: '
', replace: true, scope: { destination: '@linkTo' } })). directive('linkNot', valueFn({ restrict: 'A', template: '', replace: true, scope: { destination: '@linkNot' } })); })); beforeEach(inject(function(_$compile_, _$rootScope_) { $compile = _$compile_; $rootScope = _$rootScope_; })); afterEach(function() { dealoc(element); }); it('should prevent default action to be executed when href is empty', function() { var orgLocation = window.document.location.href, preventDefaultCalled = false, event; element = $compile('empty link')($rootScope); event = window.document.createEvent('MouseEvent'); event.initMouseEvent( 'click', true, true, window, 0, 0, 0, 0, 0, false, false, false, false, 0, null); event.preventDefaultOrg = event.preventDefault; event.preventDefault = function() { preventDefaultCalled = true; if (this.preventDefaultOrg) this.preventDefaultOrg(); }; element[0].dispatchEvent(event); expect(preventDefaultCalled).toEqual(true); expect(window.document.location.href).toEqual(orgLocation); }); it('should prevent IE for changing text content when setting attribute', function() { // see issue #1949 element = jqLite('hello@you'); $compile(element); element.attr('href', 'bye@me'); expect(element.text()).toBe('hello@you'); }); it('should not link and hookup an event if href is present at compile', function() { var jq = jQuery || jqLite; element = jq('hello@you'); var linker = $compile(element); spyOn(jq.prototype, 'on'); linker($rootScope); expect(jq.prototype.on).not.toHaveBeenCalled(); }); it('should not preventDefault if anchor element is replaced with href-containing element', function() { spyOn(jqLite.prototype, 'on').and.callThrough(); element = $compile('')($rootScope); $rootScope.$digest(); var child = element.children('a'); var preventDefault = jasmine.createSpy('preventDefault'); child.triggerHandler({ type: 'click', preventDefault: preventDefault }); expect(preventDefault).not.toHaveBeenCalled(); }); it('should preventDefault if anchor element is replaced with element without href attribute', function() { spyOn(jqLite.prototype, 'on').and.callThrough(); element = $compile('')($rootScope); $rootScope.$digest(); var child = element.children('a'); var preventDefault = jasmine.createSpy('preventDefault'); child.triggerHandler({ type: 'click', preventDefault: preventDefault }); expect(preventDefault).toHaveBeenCalled(); }); if (isDefined(window.SVGElement)) { describe('SVGAElement', function() { it('should prevent default action to be executed when href is empty', function() { var orgLocation = window.document.location.href, preventDefaultCalled = false, event, child; element = $compile('')($rootScope); child = element.children('a'); event = window.document.createEvent('MouseEvent'); event.initMouseEvent( 'click', true, true, window, 0, 0, 0, 0, 0, false, false, false, false, 0, null); event.preventDefaultOrg = event.preventDefault; event.preventDefault = function() { preventDefaultCalled = true; if (this.preventDefaultOrg) this.preventDefaultOrg(); }; child[0].dispatchEvent(event); expect(preventDefaultCalled).toEqual(true); expect(window.document.location.href).toEqual(orgLocation); }); it('should not link and hookup an event if xlink:href is present at compile', function() { var jq = jQuery || jqLite; element = jq(''); var linker = $compile(element); spyOn(jq.prototype, 'on'); linker($rootScope); expect(jq.prototype.on).not.toHaveBeenCalled(); }); }); } });