diff options
-rw-r--r-- | test/unit/support.js | 17 |
1 files changed, 17 insertions, 0 deletions
diff --git a/test/unit/support.js b/test/unit/support.js index a62e57c73..a661843c3 100644 --- a/test/unit/support.js +++ b/test/unit/support.js @@ -127,6 +127,23 @@ testIframeWithCallback( "radioValue": true, "reliableMarginLeft": true }; + } else if ( /9\.0(\.\d+|) safari/i.test( userAgent ) ) { + expected = { + "ajax": true, + "boxSizingReliable": true, + "checkClone": true, + "checkOn": true, + "clearCloneStyle": true, + "cors": true, + "createHTMLDocument": true, + "focusin": false, + "noCloneChecked": true, + "optSelected": true, + "pixelMarginRight": true, + "pixelPosition": false, + "radioValue": true, + "reliableMarginLeft": true + }; } else if ( /8\.0(\.\d+|) safari/i.test( userAgent ) ) { expected = { "ajax": true, |