blob: 314db15ba855c9a03eaac52277aacbcc2aab7e54 [file] [log] [blame]
<style>
div#test { position: absolute; top: 0; left: 0; color: green; border: 50px solid; width: 0; -webkit-transition-duration: 1ms; }
div#test.orange { border-color: orange; }
</style>
<div style="position: relative; background-color: red; width: 100px; height: 100px;">
<div id="test" class="orange"></div>
</div>
<script>
if (window.testRunner)
testRunner.waitUntilDone();
document.getElementById("test").addEventListener('webkitTransitionEnd', function() {
if (window.testRunner)
setTimeout("testRunner.notifyDone()", 0);
}, false);
document.getElementById("test").className = "";
</script>