diff options
author | timmywil <timmywillisn@gmail.com> | 2011-08-04 18:41:34 -0400 |
---|---|---|
committer | timmywil <timmywillisn@gmail.com> | 2011-08-04 18:41:34 -0400 |
commit | 5c4a9cc001fcd803efa65ff95571c72cbdafbe69 (patch) | |
tree | 23fbbcd92cac7c2ba859ab8d16feab8fea04c716 /src/support.js | |
parent | 700c16b0859a8c982869d5501934bed9e51d3662 (diff) | |
download | jquery-5c4a9cc001fcd803efa65ff95571c72cbdafbe69.tar.gz jquery-5c4a9cc001fcd803efa65ff95571c72cbdafbe69.zip |
Add back the background: none setting to avoid any possible crashes in IE from the support testElement. Fixes #9823.
Diffstat (limited to 'src/support.js')
-rw-r--r-- | src/support.js | 3 |
1 files changed, 2 insertions, 1 deletions
diff --git a/src/support.js b/src/support.js index ec639348c..2784cf90b 100644 --- a/src/support.js +++ b/src/support.js @@ -146,7 +146,8 @@ jQuery.support = (function() { width: 0, height: 0, border: 0, - margin: 0 + margin: 0, + background: "none" }; if ( body ) { jQuery.extend( testElementStyle, { |