Move parseFontFaceDescriptor to CSSPropertyParser.cpp
[chromium-blink-merge.git] / third_party / WebKit / LayoutTests / fast / css / pending-images-crash.html
blob4717394791ae0c91f1f1ec84bb9af4fadcd5d9f3
1 <!DOCTYPE html>
3 <html>
4 <head>
5 <style type="text/css" media="screen">
6 ul {
7 list-style-image: url('foopy.png');
8 background-image: url('foopy1.png');
9 -webkit-border-image: url('foopy2.png');
10 -webkit-mask-box-image: url('foopy3.png');
11 -webkit-mask: below url('foopy4.png');
14 ul {
15 list-style-image: none;
16 background-image: none;
17 -webkit-border-image: none;
18 -webkit-mask-box-image: none;
19 -webkit-mask: below none;
22 .box {
23 content: url('foopy5.png') url('foopy6.png');
26 .box {
27 content: none url('');
31 </style>
32 <script type="text/javascript" charset="utf-8">
33 if (window.testRunner)
34 testRunner.dumpAsText();
35 </script>
36 </head>
37 <body>
38 <ul>
39 <li>This test passes if it does not crash.</li>
40 </ul>
41 <div class="box">
42 </div>
43 </body>
44 </html>