From 50e3395e7e25d3286ed3daa17ee5ae4d862b0602 Mon Sep 17 00:00:00 2001 From: =?utf8?q?Micha=C5=82=20Go=C5=82e=CC=A8biowski-Owczarek?= Date: Wed, 18 Oct 2017 17:59:22 +0200 Subject: [PATCH] Tests: Add Safari 11 support test results --- test/unit/support.js | 18 ++++++++++++++++++ 1 file changed, 18 insertions(+) diff --git a/test/unit/support.js b/test/unit/support.js index 98a24e782..0f0354b58 100644 --- a/test/unit/support.js +++ b/test/unit/support.js @@ -133,6 +133,24 @@ testIframe( "reliableMarginLeft": true, "scrollboxSize": true }; + } else if ( /\b11\.\d(\.\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, + "pixelBoxStyles": true, + "pixelPosition": true, + "radioValue": true, + "reliableMarginLeft": true, + "scrollboxSize": true + }; } else if ( /\b(?:9|10)\.\d(\.\d+)* safari/i.test( userAgent ) ) { expected = { "ajax": true, -- 2.39.5