aboutsummaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorMichał Gołębiowski <m.goleb@gmail.com>2017-03-07 16:36:28 +0100
committerMichał Gołębiowski <m.goleb@gmail.com>2017-03-07 16:36:28 +0100
commitfc34dbc27124a49ba5e3d492de0bfc50fe75ba61 (patch)
tree9e37c7be1e9fd80d6819fa9958e6d9f7ed21f5b2
parentbcec54ee7271e2d0e427bcb246e3d2009a8f84f9 (diff)
downloadjquery-fc34dbc27124a49ba5e3d492de0bfc50fe75ba61.tar.gz
jquery-fc34dbc27124a49ba5e3d492de0bfc50fe75ba61.zip
Tests: Clean up after the CSS Custom Properties support test
Ref bcec54ee7271e2d0e427bcb246e3d2009a8f84f9 Ref 619bf98d5b479f9582dbc40259b666f1c5a83146
-rw-r--r--test/unit/css.js6
1 files changed, 4 insertions, 2 deletions
diff --git a/test/unit/css.js b/test/unit/css.js
index d080a5fe0..b6bb95584 100644
--- a/test/unit/css.js
+++ b/test/unit/css.js
@@ -1558,10 +1558,12 @@ QUnit.test( "Do not throw on frame elements from css method (#15098)", function(
( function() {
var supportsCssVars,
- div = jQuery( "<div>" ).appendTo( "#qunit-fixture" )[ 0 ];
+ elem = jQuery( "<div>" ).appendTo( document.body ),
+ div = elem[ 0 ];
div.style.setProperty( "--prop", "value" );
- supportsCssVars = getComputedStyle( div ).getPropertyValue( "--prop" );
+ supportsCssVars = !!getComputedStyle( div ).getPropertyValue( "--prop" );
+ elem.remove();
QUnit[ supportsCssVars ? "test" : "skip" ]( "css(--customProperty)", function( assert ) {
jQuery( "#qunit-fixture" ).append(