blob: b2626e7556c9c2e37f5f9bca80ba4358c7195900 [file] [log] [blame]
<script>
if (window.testRunner)
testRunner.waitUntilDone();
</script>
<style>
@keyframes frames {
from { transform: translate(-10px, -10px) }
to { transform: rotate(-90deg) }
}
div { animation: frames 0.1s forwards }
</style>
<div onanimationend="if (window.testRunner) testRunner.notifyDone()">This should animate sideways</div>