blob: 3d01c87816c97eb378bb82249c38552f7a2341b4 [file] [log] [blame]
<!DOCTYPE html>
<style>
body {
background: url('a'), url('b');
animation: test 1s;
}
@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>