aboutsummaryrefslogtreecommitdiffstats
path: root/test/unit
diff options
context:
space:
mode:
authortimmywil <timmywillisn@gmail.com>2011-08-04 18:56:49 -0400
committertimmywil <timmywillisn@gmail.com>2011-08-04 18:56:49 -0400
commite18cad6f88c7b3151722d5b58616badbea75ddf6 (patch)
tree0acfed16c77eeb99142dcf0b4f0c3c6942e09bf5 /test/unit
parent5c4a9cc001fcd803efa65ff95571c72cbdafbe69 (diff)
downloadjquery-e18cad6f88c7b3151722d5b58616badbea75ddf6.tar.gz
jquery-e18cad6f88c7b3151722d5b58616badbea75ddf6.zip
Add test page for crashing IE8 when the testElement in support has a background (will run from the test suite). Supplements #9823.
Diffstat (limited to 'test/unit')
-rw-r--r--test/unit/support.js5
1 files changed, 5 insertions, 0 deletions
diff --git a/test/unit/support.js b/test/unit/support.js
index b87e0919f..4733b2529 100644
--- a/test/unit/support.js
+++ b/test/unit/support.js
@@ -53,3 +53,8 @@ supportIFrameTest( "body background is not lost if set prior to loading jQuery (
}
ok( passed, "Same support properties" );
});
+
+supportIFrameTest( "A background on the testElement does not cause IE8 to crash (#9823)", "testElementCrash", function() {
+ expect(1);
+ ok( true, "IE8 does not crash" );
+});