tizen beta release
[framework/web/webkit-efl.git] / LayoutTests / fast / css / pending-images-crash.html
1 <!DOCTYPE html>
2
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');
12     }
13     
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;
20     }
21     
22     .box {
23       content: url('foopy5.png') url('foopy6.png');
24     }
25     
26     .box {
27       content: none url('');
28     }
29     
30     
31   </style>
32   <script type="text/javascript" charset="utf-8">
33     if (window.layoutTestController)
34       layoutTestController.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>