diff options
author | timmywil <timmywillisn@gmail.com> | 2011-08-04 18:56:49 -0400 |
---|---|---|
committer | timmywil <timmywillisn@gmail.com> | 2011-08-04 18:56:49 -0400 |
commit | e18cad6f88c7b3151722d5b58616badbea75ddf6 (patch) | |
tree | 0acfed16c77eeb99142dcf0b4f0c3c6942e09bf5 /test/data/support | |
parent | 5c4a9cc001fcd803efa65ff95571c72cbdafbe69 (diff) | |
download | jquery-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/data/support')
-rw-r--r-- | test/data/support/testElementCrash.html | 19 |
1 files changed, 19 insertions, 0 deletions
diff --git a/test/data/support/testElementCrash.html b/test/data/support/testElementCrash.html new file mode 100644 index 000000000..db2c45500 --- /dev/null +++ b/test/data/support/testElementCrash.html @@ -0,0 +1,19 @@ +<!DOCTYPE html> +<html lang="en"> +<head> + <meta http-equiv="Content-Type" content="text/html; charset=utf-8"> + <style> + body { + background: url('http://s1.postimage.org/2d2r8xih0/body_background.png'); + } + </style> + <script src="../../../src/core.js"></script> + <script src="../../../src/deferred.js"></script> + <script src="../../../src/support.js"></script> +</head> +<body> + <script> + window.parent.supportCallback(); + </script> +</body> +</html> |