See the description in this changeset's parent which describes why we do this in two steps. MozReview-Commit-ID: GtO0SCb0UOF
27 lines
691 B
HTML
27 lines
691 B
HTML
<!doctype html>
|
|
<meta charset=utf-8>
|
|
<script src="/resources/testharness.js"></script>
|
|
<script src="/resources/testharnessreport.js"></script>
|
|
<script src="../testcommon.js"></script>
|
|
<body>
|
|
<div id="log"></div>
|
|
<script>
|
|
'use strict';
|
|
|
|
test(function(t) {
|
|
var div = addDiv(t);
|
|
|
|
// Add a transition
|
|
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 corresponds to the specific ' +
|
|
'property being transitioned');
|
|
}, 'CSSTransition.transitionProperty');
|
|
|
|
</script>
|
|
</body>
|