From b2eb7ec0f0ee6f8a67680f024e778b960b05e722 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Micha=C5=82=20Go=C5=82e=CC=A8biowski?= Date: Mon, 27 Jan 2014 20:16:06 +0100 Subject: [PATCH] Support: Add iOS6 support tests results --- test/unit/support.js | 16 ++++++++++++++++ 1 file changed, 16 insertions(+) diff --git a/test/unit/support.js b/test/unit/support.js index 10defc5e93..feea7dd350 100644 --- a/test/unit/support.js +++ b/test/unit/support.js @@ -195,6 +195,22 @@ testIframeWithCallback( "Check CSP (https://developer.mozilla.org/en-US/docs/Sec "radioValue": true, "reliableMarginRight": true }; + } else if ( /iphone os 6_0/i.test( userAgent ) ) { + expected = { + "ajax": true, + "boxSizingReliable": true, + "checkClone": true, + "checkOn": true, + "clearCloneStyle": true, + "cors": true, + "focusinBubbles": false, + "noCloneChecked": true, + "optDisabled": true, + "optSelected": true, + "pixelPosition": false, + "radioValue": true, + "reliableMarginRight": true + }; } if ( expected ) {