assert.equal( jQuery( "<div/>" ).append( valueObj( "option<area/>" ) )[ 0 ].childNodes.length, 2, "HTML-string with leading text should be processed correctly" );
}
-QUnit.test( "append(String|Element|Array<Element>|jQuery)", function( assert ) {
- testAppend( manipulationBareObj, assert );
-} );
+// Support: Android 2.3 only
+// Android 2.3 fails a lot of these tests and we accept it.
+// See https://github.com/jquery/jquery/issues/1785
+QUnit[ /android 2\.3/i.test( navigator.userAgent ) ? "skip" : "test" ](
+ "append(String|Element|Array<Element>|jQuery)",
+ function( assert ) {
+ testAppend( manipulationBareObj, assert );
+ }
+);
QUnit.test( "append(Function)", function( assert ) {
testAppend( manipulationFunctionReturningObj, assert );
// test jQuery using parent window/document
// jQuery reference here is in the iframe
+ // Support: Android 2.3 only
+ // Android 2.3 is sometimes off by a few pixels.
window.scrollTo( 0, 0 );
- assert.equal( $( window ).scrollTop(), 0, "jQuery(window).scrollTop() other window" );
+ if ( /android 2\.3/i.test( navigator.userAgent ) ) {
+ assert.ok(
+ Math.abs( $( window ).scrollTop() ) < 5,
+ "jQuery(window).scrollTop() other window"
+ );
+ } else {
+ assert.equal( $( window ).scrollTop(), 0, "jQuery(window).scrollTop() other window" );
+ }
assert.equal( $( window ).scrollLeft(), 0, "jQuery(window).scrollLeft() other window" );
- assert.equal( $( document ).scrollTop(), 0, "jQuery(window).scrollTop() other document" );
+ if ( /android 2\.3/i.test( navigator.userAgent ) ) {
+ assert.ok(
+ Math.abs( $( window ).scrollTop() ) < 5,
+ "jQuery(window).scrollTop() other document"
+ );
+ } else {
+ assert.equal( $( document ).scrollTop(), 0, "jQuery(window).scrollTop() other document" );
+ }
assert.equal( $( document ).scrollLeft(), 0, "jQuery(window).scrollLeft() other document" );
// Tests scrollTop/Left with empty jquery objects
"boxSizing": true,
"boxSizingReliable": true,
"change": true,
- "checkClone": false,
+ "checkClone": true,
"checkOn": false,
- "clearCloneStyle": true,
+ "clearCloneStyle": false,
"cors": true,
"createHTMLDocument": true,
"cssFloat": true,
"noCloneChecked": true,
"noCloneEvent": true,
"opacity": true,
- "optDisabled": true,
+ "optDisabled": false,
"optSelected": true,
"ownFirst": true,
- "pixelMarginRight": false,
+ "pixelMarginRight": true,
"pixelPosition": false,
"radioValue": true,
"reliableHiddenOffsets": true,
- "reliableMarginRight": true,
- "reliableMarginLeft": false,
+ "reliableMarginRight": false,
+ "reliableMarginLeft": true,
"shrinkWrapBlocks": false,
"style": true,
"submit": true,