diff options
Diffstat (limited to 'testing/web-platform/tests/css/css-transitions/CSSTransition-transitionProperty.tentative.html')
-rw-r--r-- | testing/web-platform/tests/css/css-transitions/CSSTransition-transitionProperty.tentative.html | 28 |
1 files changed, 28 insertions, 0 deletions
diff --git a/testing/web-platform/tests/css/css-transitions/CSSTransition-transitionProperty.tentative.html b/testing/web-platform/tests/css/css-transitions/CSSTransition-transitionProperty.tentative.html new file mode 100644 index 0000000000..8eb284107d --- /dev/null +++ b/testing/web-platform/tests/css/css-transitions/CSSTransition-transitionProperty.tentative.html @@ -0,0 +1,28 @@ +<!doctype html> +<meta charset=utf-8> +<title>CSSTransition.transitionProperty</title> +<link rel="help" href="https://drafts.csswg.org/css-transitions-2/#dom-csstransition-transitionproperty"> +<script src="/resources/testharness.js"></script> +<script src="/resources/testharnessreport.js"></script> +<script src="support/helper.js"></script> +<div id="log"></div> +<script> +'use strict'; + +test(t => { + const div = addDiv(t); + + div.style.left = '0px'; + getComputedStyle(div).transitionProperty; + div.style.transition = 'all 100s'; + div.style.left = '100px'; + + assert_equals( + div.getAnimations()[0].transitionProperty, + 'left', + 'The transitionProperty for the returned transition corresponds to the' + + ' specific property being transitioned' + ); +}, 'CSSTransition.transitionProperty'); + +</script> |