aboutsummaryrefslogtreecommitdiffstats
path: root/test
diff options
context:
space:
mode:
authorMike Sherov <mike.sherov@gmail.com>2012-05-22 10:11:47 -0400
committerDave Methvin <dave.methvin@gmail.com>2012-05-22 10:11:47 -0400
commit551f8510d516753a803f8d231138f82544dcb45a (patch)
tree154b2e9557beec2f7b855a54352296ac4ac92f6b /test
parente0151e5827d7091f311c82d9f951aaaa2688ba8c (diff)
downloadjquery-551f8510d516753a803f8d231138f82544dcb45a.tar.gz
jquery-551f8510d516753a803f8d231138f82544dcb45a.zip
Fix #11443 #11441, shut up Chrome 19 and Safari 5.0.x. Closes gh-790.
checkClone and appendChecked test failures in Chrome 19; reliableMarginRight failures in Safari 5.
Diffstat (limited to 'test')
-rw-r--r--test/unit/support.js6
1 files changed, 3 insertions, 3 deletions
diff --git a/test/unit/support.js b/test/unit/support.js
index 8a229f435..bb4887921 100644
--- a/test/unit/support.js
+++ b/test/unit/support.js
@@ -40,7 +40,7 @@ var userAgent = window.navigator.userAgent;
// These tests do not have to stay
// They are here to help with upcoming support changes for 1.8
-if ( /chrome\/16\.0/i.test(userAgent) ) {
+if ( /chrome\/19\.0/i.test(userAgent) ) {
test("Verify that the support tests resolve as expected per browser", function() {
var i,
expected = {
@@ -223,8 +223,8 @@ if ( /chrome\/16\.0/i.test(userAgent) ) {
"noCloneChecked":true,
"optDisabled":true,
"radioValue":true,
- "checkClone":true,
- "appendChecked":true,
+ "checkClone":false,
+ "appendChecked":false,
"boxModel":true,
"reliableHiddenOffsets":true,
"ajax":true,