Source code

Revision control

Copy as Markdown

Other Tools

Test Info:

<!DOCTYPE html>
<html>
<head>
<meta charset="utf-8">
<title>CSS Transitions: getComputedStyle().transitionProperty</title>
<meta name="assert" content="transition-property keeps unrecognized properties.">
<script src="/resources/testharness.js"></script>
<script src="/resources/testharnessreport.js"></script>
<script src="/css/support/computed-testcommon.js"></script>
</head>
<body>
<div id="target"></div>
<script>
test_computed_value("transition-property", 'none');
test_computed_value("transition-property", 'all');
test_computed_value("transition-property", 'one');
test_computed_value("transition-property", 'one-two-three');
test_computed_value("transition-property", 'one, two, three');
test_computed_value("transition-property", 'width, all');
test_computed_value("transition-property", 'width, top, width');
test_computed_value("transition-property", 'all, top, all');
test_computed_value("transition-property", 'ALL, INVALID, SYNTAX, SRC', 'all, INVALID, SYNTAX, SRC');
test_computed_value("transition-property", "left, top, right, bottom");
</script>
</body>
</html>