9 background-color: blue;
10 transition-property: top;
11 transition-duration:
1s;
12 transition-duration:
0;
16 if (window
.testRunner
)
17 testRunner
.dumpAsText();
21 var box
= document
.getElementById('box');
22 var dur
= window
.getComputedStyle(box
).transitionDuration
;
23 document
.getElementById('result').innerHTML
= "Duration was " + dur
+ " (should be 1s): " + (dur
== "1s" ? "PASS" : "FAIL");
25 window
.addEventListener('load', test
, false)