aboutsummaryrefslogtreecommitdiffstats
path: root/test/ng/httpSpec.js
diff options
context:
space:
mode:
authorChirayu Krishnappa2013-07-15 12:26:46 -0700
committerChirayu Krishnappa2013-07-19 01:44:57 -0700
commitb99d064b6ddbcc9f59ea45004279833e9ea82928 (patch)
tree94406ce1926027de90a43b4abf4a7c7c8b0651c6 /test/ng/httpSpec.js
parent715d97d5c87c9250f8ac8b5801b8c7f3b197e815 (diff)
downloadangular.js-b99d064b6ddbcc9f59ea45004279833e9ea82928.tar.bz2
fix(core): parse URLs using the browser's DOM API
Diffstat (limited to 'test/ng/httpSpec.js')
-rw-r--r--test/ng/httpSpec.js21
1 files changed, 0 insertions, 21 deletions
diff --git a/test/ng/httpSpec.js b/test/ng/httpSpec.js
index cefc88e1..ec1cb7f1 100644
--- a/test/ng/httpSpec.js
+++ b/test/ng/httpSpec.js
@@ -1476,25 +1476,4 @@ describe('$http', function() {
$httpBackend.verifyNoOutstandingExpectation = noop;
});
-
- describe('isSameDomain', function() {
- it('should support various combinations of urls', function() {
- expect(isSameDomain('path/morepath',
- 'http://www.adomain.com')).toBe(true);
- expect(isSameDomain('http://www.adomain.com/path',
- 'http://www.adomain.com')).toBe(true);
- expect(isSameDomain('//www.adomain.com/path',
- 'http://www.adomain.com')).toBe(true);
- expect(isSameDomain('//www.adomain.com/path',
- 'https://www.adomain.com')).toBe(true);
- expect(isSameDomain('//www.adomain.com/path',
- 'http://www.adomain.com:1234')).toBe(false);
- expect(isSameDomain('https://www.adomain.com/path',
- 'http://www.adomain.com')).toBe(false);
- expect(isSameDomain('http://www.adomain.com:1234/path',
- 'http://www.adomain.com')).toBe(false);
- expect(isSameDomain('http://www.anotherdomain.com/path',
- 'http://www.adomain.com')).toBe(false);
- });
- });
});