Skip to content
Permalink
Browse files
"pixelPosition" should be "true" in 28 >= Chrome
  • Loading branch information
markelog committed Aug 7, 2013
1 parent 3484a68 commit e253c65
Showing 1 changed file with 2 additions and 1 deletion.
@@ -33,6 +33,7 @@ testIframeWithCallback( "box-sizing does not affect jQuery.support.shrinkWrapBlo
userAgent = window.navigator.userAgent;

if ( /chrome/i.test( userAgent ) ) {
version = userAgent.match( /chrome\/(\d+)/i )[ 1 ];
expected = {
"checkOn":true,
"optSelected":true,
@@ -47,7 +48,7 @@ testIframeWithCallback( "box-sizing does not affect jQuery.support.shrinkWrapBlo
"clearCloneStyle": true,
"boxSizing": true,
"boxSizingReliable": true,
"pixelPosition": false
"pixelPosition": version >= 28
};
} else if ( /opera.*version\/12\.1/i.test( userAgent ) ) {
expected = {

0 comments on commit e253c65

Please sign in to comment.