blob: 72b6b98007be7fc687fd9ccd2facaee5f1d76d54 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
|
<html>
<head>
<style>
.absent {
background: #fff url(foo.png) no-repeat left 4px;
}
body {
background: #fff;
}
</style>
<script>
if (window.testRunner)
window.testRunner.dumpAsText();
document.styleSheets[0].rules[1].style.background;
</script>
</head>
<body>
This test passes if it doesn't ASSERT.
</body>
</html>
|