From e99a3ac7066226d00ff5828de596d4a4b3818c0c Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Micha=C5=82=20Go=C5=82=C4=99biowski?= Date: Sun, 18 Oct 2015 17:26:56 -0400 Subject: [PATCH] Tests: Add Safari 9 support tests results --- test/unit/support.js | 17 +++++++++++++++++ 1 file changed, 17 insertions(+) diff --git a/test/unit/support.js b/test/unit/support.js index a62e57c73f..a661843c3c 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,