blob: 6215184e39bfefd2e1958887e49bba8adc6bb5b9 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
|
<!DOCTYPE html>
<html>
<head>
<title>Whitespace-only text over images should not receive backplates.</title>
<style>
div {
position: absolute;
}
.bg {
background-image: url("red.png");
height: 20px;
width: 20px;
}
</style>
</head>
<body>
<div class="bg"></div>
<div> </div>
</body>
</html>
|