Commit 8cd1801d authored by Rafael Weinstein's avatar Rafael Weinstein

Fix Animations, Remove Compostior Animations.

This patch (re)hooks up animations so they start and removes the infrastructure required by blink to synchronize the compositor and main threads.

R=ojan@chromium.org

Review URL: https://codereview.chromium.org/772673002
parent 76ef4db5
<sky>
<div id="test">
Hello, Sky
</div>
<script>
window.addEventListener('load', function() {
var div = document.getElementById('test');
div.animate([
{ backgroundColor: 'red', opacity: 1 },
{ backgroundColor: 'green', opacity: 0}],
{
duration: 1000,
iterations: 2
});
});
</script>
</sky>
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment