blob: 04d9de2a590ebaac8ca0c62711a7daec10f50f54 [file] [log] [blame]
<!DOCTYPE html><!-- webkit-test-runner [ experimental:WebAnimationsCSSIntegrationEnabled=false ] -->
<style>
body {
background: url('a'), url('b');
-webkit-animation: test 1s;
}
@-webkit-keyframes test {
to { background: url('a'), url('b'); }
}
</style>
<pre>This test passes if it does not crash.</pre>
<script>
if (window.testRunner) {
testRunner.dumpAsText();
testRunner.waitUntilDone();
requestAnimationFrame(function () {
testRunner.notifyDone();
});
}
</script>