From 637c9b1611c5a75a42048ee1c591521c7031751a Mon Sep 17 00:00:00 2001 From: justinrknowles Date: Sun, 18 Aug 2013 14:01:34 -0400 Subject: fix($sce): allow IE7 standards mode to pass non-quirks mode test Changes documentMode test version to 7 in order to support IE 8 in IE 7 standards mode while still protecting against quirks mode. documentMode returns the following values: 5 - quirks mode, 7 - IE 7 standards mode, 8 - IE 8 standards mode. Closes #3633 Closes #3646 --- test/ng/sceSpecs.js | 10 +++++++++- 1 file changed, 9 insertions(+), 1 deletion(-) (limited to 'test/ng/sceSpecs.js') diff --git a/test/ng/sceSpecs.js b/test/ng/sceSpecs.js index 75c1fbaa..c8a051e8 100644 --- a/test/ng/sceSpecs.js +++ b/test/ng/sceSpecs.js @@ -58,7 +58,11 @@ describe('SCE', function() { } it('should throw an exception when sce is enabled in quirks mode', function() { - runTest(true, 7, true); + runTest(true, 5, true); + }); + + it('should NOT throw an exception when sce is enabled and in IE7 standards mode', function() { + runTest(true, 7, false); }); it('should NOT throw an exception when sce is enabled and in standards mode', function() { @@ -70,6 +74,10 @@ describe('SCE', function() { }); it('should NOT throw an exception when sce is disabled even when in quirks mode', function() { + runTest(false, 5, false); + }); + + it('should NOT throw an exception when sce is disabled and in IE7 standards mode', function() { runTest(false, 7, false); }); -- cgit v1.2.3