From 60cc6c9fbf9188eb3ce45f0cd97e8af7f9f54263 Mon Sep 17 00:00:00 2001 From: =?utf8?q?Micha=C5=82=20Go=C5=82e=CC=A8biowski-Owczarek?= Date: Mon, 20 Nov 2017 23:46:31 +0100 Subject: [PATCH] Tests: Add iOS 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 0f0354b58..312173207 100644 --- a/test/unit/support.js +++ b/test/unit/support.js @@ -187,6 +187,24 @@ testIframe( "reliableMarginLeft": false, "scrollboxSize": true }; + } else if ( /iphone os 11_/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 ( /iphone os (?:9|10)_/i.test( userAgent ) ) { expected = { "ajax": true, -- 2.39.5