aboutsummaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
-rw-r--r--test/unit/css.js7
1 files changed, 6 insertions, 1 deletions
diff --git a/test/unit/css.js b/test/unit/css.js
index 8747ca9dc..67bd332a4 100644
--- a/test/unit/css.js
+++ b/test/unit/css.js
@@ -776,7 +776,12 @@ test("Do not append px (#9548, #12990)", function() {
var $div = jQuery("<div>").appendTo("#qunit-fixture");
$div.css( "fill-opacity", 1 );
- equal( $div.css("fill-opacity"), 1, "Do not append px to 'fill-opacity'" );
+ // Support: Android 2.3 (no support for fill-opacity)
+ if ( $div.css( "fill-opacity" ) ) {
+ equal( $div.css( "fill-opacity" ), 1, "Do not append px to 'fill-opacity'" );
+ } else {
+ ok( true, "No support for fill-opacity CSS property" );
+ }
$div.css( "column-count", 1 );
if ( $div.css("column-count") ) {