| <!doctype html> |
| <html> |
| <head> |
| <style> |
| #standard-target { |
| background: image-set( |
| url(images/noise.png) 1x, |
| url(images/noise@2x.png) 2x |
| ), #ff0000; |
| } |
| |
| #prefixed-target { |
| background: -webkit-image-set( |
| url(images/noise.png) 1x, |
| url(images/noise@2x.png) 2x |
| ), #ff0000; |
| } |
| </style> |
| |
| <script> |
| if (window.testRunner) |
| testRunner.dumpAsText(); |
| </script> |
| </head> |
| |
| <body> |
| <div> |
| [bug 108409] |
| <a href="https://bugs.webkit.org/show_bug.cgi?id=108409"> |
| https://bugs.webkit.org/show_bug.cgi?id=108409 |
| </a> |
| Making -webkit-image-set() the first value of background property causes crash. |
| </div> |
| <div>If this test passed, no crash occurs.</div> |
| <div id="standard-target">PASS</div> |
| <div id="prefixed-target">PASS</div> |
| </body> |
| </html> |