mirror of
https://github.com/servo/servo.git
synced 2025-08-12 17:05:33 +01:00
Update web-platform-tests to revision 6aef6676d2f95c29de17666cc70d61b517939fbf
This commit is contained in:
parent
cd0e7e7ebb
commit
3ebfea9f10
250 changed files with 2846 additions and 702 deletions
|
@ -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>
|
Loading…
Add table
Add a link
Reference in a new issue