Skip to content

Commit

Permalink
Tests: Add iOS 9 support tests results
Browse files Browse the repository at this point in the history
  • Loading branch information
mgol committed Oct 30, 2015
1 parent cbe5b2b commit 1c2b536
Showing 1 changed file with 17 additions and 0 deletions.
17 changes: 17 additions & 0 deletions test/unit/support.js
Expand Up @@ -195,6 +195,23 @@ testIframeWithCallback(
"radioValue": true, "radioValue": true,
"reliableMarginLeft": false "reliableMarginLeft": false
}; };
} else if ( /iphone os 9/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 ( /iphone os 8/i.test( userAgent ) ) { } else if ( /iphone os 8/i.test( userAgent ) ) {
expected = { expected = {
"ajax": true, "ajax": true,
Expand Down

0 comments on commit 1c2b536

Please sign in to comment.