blob: d337c3c405360c9089adac491640908162e1b23e (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
|
<!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.layoutTestController)
layoutTestController.dumpAsText();
</script>
</head>
<body>
<ul>
<li>This test passes if it does not crash.</li>
</ul>
<div class="box">
</div>
</body>
</html>
|