Merge Chromium + Blink git repositories
[chromium-blink-merge.git] / third_party / WebKit / LayoutTests / animations / background-shorthand-crash.html
blobf1da6d76298f30e5373977e39eb6d0dfd3a157ed
1 <!DOCTYPE html>
2 <style>
3 body {
4 background: url('a'), url('b');
5 -webkit-animation: test 1s;
8 @-webkit-keyframes test {
9 to { background: url('a'), url('b'); }
11 </style>
12 <pre>This test passes if it does not crash.</pre>
13 <script>
14 if (window.testRunner) {
15 testRunner.dumpAsText();
16 testRunner.waitUntilDone();
17 requestAnimationFrame(function () {
18 testRunner.notifyDone();
19 });
21 </script>