| <!DOCTYPE html> |
| |
| <html> |
| <head> |
| <style type="text/css" media="screen"> |
| ul { |
| list-style-image: url('foopy.png'); |
| background-image: url('foopy1.png'); |
| -webkit-border-image: url('foopy2.png'); |
| -webkit-mask-box-image: url('foopy3.png'); |
| -webkit-mask: below url('foopy4.png'); |
| } |
| |
| ul { |
| list-style-image: none; |
| background-image: none; |
| -webkit-border-image: none; |
| -webkit-mask-box-image: none; |
| -webkit-mask: below none; |
| } |
| |
| .box { |
| content: url('foopy5.png') url('foopy6.png'); |
| } |
| |
| .box { |
| content: none url(''); |
| } |
| |
| |
| </style> |
| <script type="text/javascript" charset="utf-8"> |
| if (window.testRunner) |
| testRunner.dumpAsText(); |
| </script> |
| </head> |
| <body> |
| <ul> |
| <li>This test passes if it does not crash.</li> |
| </ul> |
| <div class="box"> |
| </div> |
| </body> |
| </html> |