@@ -152,20 +152,28 @@ $.mobile.browser.oldIE = (function() {
152
152
153
153
154
154
$ . extend ( $ . support , {
155
- cssTransitions : "WebKitTransitionEvent" in window || validStyle ( 'transition' , 'height 100ms linear' , [ "Webkit" , "Moz" , "" ] ) && ! $ . mobile . browser . oldIE && ! opera ,
155
+ cssTransitions : "WebKitTransitionEvent" in window ||
156
+ validStyle ( 'transition' , 'height 100ms linear' , [ "Webkit" , "Moz" , "" ] ) &&
157
+ ! $ . mobile . browser . oldIE && ! opera ,
158
+
156
159
// Note, Chrome for iOS has an extremely quirky implementation of popstate.
157
160
// We've chosen to take the shortest path to a bug fix here for issue #5426
158
161
// See the following link for information about the regex chosen
159
162
// https://developers.google.com/chrome/mobile/docs/user-agent#chrome_for_ios_user-agent
160
163
pushState : "pushState" in history &&
161
164
"replaceState" in history &&
162
165
( window . navigator . userAgent . search ( / C r i O S / ) === - 1 ) ,
166
+
163
167
mediaquery : $ . mobile . media ( "only all" ) ,
164
168
cssPseudoElement : ! ! propExists ( "content" ) ,
165
169
touchOverflow : ! ! propExists ( "overflowScrolling" ) ,
166
170
cssTransform3d : transform3dTest ( ) ,
167
171
boxShadow : ! ! propExists ( "boxShadow" ) && ! bb ,
168
- scrollTop : ( "pageXOffset" in window || "scrollTop" in document . documentElement || "scrollTop" in fakeBody [ 0 ] ) && ! webos && ! operamini ,
172
+
173
+ scrollTop : ( "pageXOffset" in window ||
174
+ "scrollTop" in document . documentElement ||
175
+ "scrollTop" in fakeBody [ 0 ] ) && ! webos && ! operamini ,
176
+
169
177
dynamicBaseTag : baseTagTest ( ) ,
170
178
cssPointerEvents : cssPointerEventsTest ( ) ,
171
179
boundingRect : boundingRect ( )
0 commit comments