Skip to content
This repository was archived by the owner on Apr 12, 2024. It is now read-only.

Commit 99d2c46

Browse files
realitykingNarretz
authored andcommitted
refactor(): remove more bits and pieces related to Internet Explorer 8
Closes #12407
1 parent 929ec6b commit 99d2c46

File tree

7 files changed

+5
-25
lines changed

7 files changed

+5
-25
lines changed

src/ng/httpBackend.js

+1-1
Original file line numberDiff line numberDiff line change
@@ -58,7 +58,7 @@ function createHttpBackend($browser, createXhr, $browserDefer, callbacks, rawDoc
5858
xhr.onload = function requestLoaded() {
5959
var statusText = xhr.statusText || '';
6060

61-
// responseText is the old-school way of retrieving response (supported by IE8 & 9)
61+
// responseText is the old-school way of retrieving response (supported by IE9)
6262
// response/responseType properties were introduced in XHR Level2 spec (supported by IE10)
6363
var response = ('response' in xhr) ? xhr.response : xhr.responseText;
6464

src/ng/location.js

+1-1
Original file line numberDiff line numberDiff line change
@@ -316,7 +316,7 @@ function LocationHashbangInHtml5Url(appBase, appBaseNoFile, hashPrefix) {
316316
hash = this.$$hash ? '#' + encodeUriSegment(this.$$hash) : '';
317317

318318
this.$$url = encodePath(this.$$path) + (search ? '?' + search : '') + hash;
319-
// include hashPrefix in $$absUrl when $$url is empty so IE8 & 9 do not reload page because of removal of '#'
319+
// include hashPrefix in $$absUrl when $$url is empty so IE9 does not reload page because of removal of '#'
320320
this.$$absUrl = appBase + hashPrefix + this.$$url;
321321
};
322322

src/ng/urlUtils.js

+1-8
Original file line numberDiff line numberDiff line change
@@ -24,20 +24,13 @@ var originUrl = urlResolve(window.location.href);
2424
*
2525
* Implementation Notes for IE
2626
* ---------------------------
27-
* IE >= 8 and <= 10 normalizes the URL when assigned to the anchor node similar to the other
27+
* IE <= 10 normalizes the URL when assigned to the anchor node similar to the other
2828
* browsers. However, the parsed components will not be set if the URL assigned did not specify
2929
* them. (e.g. if you assign a.href = "foo", then a.protocol, a.host, etc. will be empty.) We
3030
* work around that by performing the parsing in a 2nd step by taking a previously normalized
3131
* URL (e.g. by assigning to a.href) and assigning it a.href again. This correctly populates the
3232
* properties such as protocol, hostname, port, etc.
3333
*
34-
* IE7 does not normalize the URL when assigned to an anchor node. (Apparently, it does, if one
35-
* uses the inner HTML approach to assign the URL as part of an HTML snippet -
36-
* http://stackoverflow.com/a/472729) However, setting img[src] does normalize the URL.
37-
* Unfortunately, setting img[src] to something like "javascript:foo" on IE throws an exception.
38-
* Since the primary usage for normalizing URLs is to sanitize such URLs, we can't use that
39-
* method and IE < 8 is unsupported.
40-
*
4134
* References:
4235
* http://developer.mozilla.org/en-US/docs/Web/API/HTMLAnchorElement
4336
* http://www.aptana.com/reference/html/api/HTMLAnchorElement.html

test/ng/httpBackendSpec.js

+1-1
Original file line numberDiff line numberDiff line change
@@ -252,7 +252,7 @@ describe('$httpBackend', function() {
252252

253253

254254
it('should read responseText if response was not defined', function() {
255-
// old browsers like IE8, don't support responseType, so they always respond with responseText
255+
// old browsers like IE9, don't support responseType, so they always respond with responseText
256256

257257
$backend('GET', '/whatever', null, callback, {}, null, null, 'blob');
258258

test/ng/sceSpecs.js

-6
Original file line numberDiff line numberDiff line change
@@ -2,12 +2,6 @@
22

33
describe('SCE', function() {
44

5-
// Work around an IE8 bug. Though window.inject === angular.mock.inject, if it's invoked the
6-
// window scope, IE8 loses the exception object that bubbles up and replaces it with a TypeError.
7-
// By using a local alias, it gets invoked on the global scope instead of window.
8-
// Ref: https://github.com/angular/angular.js/pull/4221#/issuecomment-25515813
9-
var inject = angular.mock.inject;
10-
115
describe('when disabled', function() {
126
beforeEach(function() {
137
module(function($sceProvider) {

test/ngMock/angular-mocksSpec.js

-6
Original file line numberDiff line numberDiff line change
@@ -719,8 +719,6 @@ describe('ngMock', function() {
719719

720720
it('should serialize scope that has overridden "hasOwnProperty"', inject(function($rootScope, $sniffer) {
721721
/* jshint -W001 */
722-
// MS IE8 just doesn't work for this kind of thing, since "for ... in" doesn't return
723-
// things like hasOwnProperty even if it is explicitly defined on the actual object!
724722
$rootScope.hasOwnProperty = 'X';
725723
expect(d($rootScope)).toMatch(/Scope\(.*\): \{/);
726724
expect(d($rootScope)).toMatch(/hasOwnProperty: "X"/);
@@ -906,10 +904,6 @@ describe('ngMock', function() {
906904
});
907905

908906

909-
// We don't run the following tests on IE8.
910-
// IE8 throws "Object does not support this property or method." error,
911-
// when thrown from a function defined on window (which `inject` is).
912-
913907
it('should not change thrown Errors', inject(function($sniffer) {
914908
expect(function() {
915909
inject(function() {

test/ngRoute/directive/ngViewSpec.js

+1-2
Original file line numberDiff line numberDiff line change
@@ -501,8 +501,7 @@ describe('ngView', function() {
501501

502502
$location.url('/foo');
503503
$rootScope.$digest();
504-
// using toMatch because in IE8+jquery the space doesn't get preserved. jquery bug?
505-
expect(element.text()).toMatch(/\s*WORKS/);
504+
expect(element.text()).toEqual(' \n WORKS');
506505

507506
var div = element.find('div');
508507
expect(div.parent()[0].nodeName.toUpperCase()).toBeOneOf('NG:VIEW', 'VIEW');

0 commit comments

Comments
 (0)