blob: 7f76b435e643f3711f80488df3481eb2b687b20f (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
|
<html>
<head>
<style type="text/css">
.failure {
background: red;
border: 0px solid black;
height: 16px;
width: 16px;
}
</style>
</head>
<body style="margin: 0px;">
<div>Two green 16x16 pixel squares should appear below stacked vertically.</div>
<div class="failure">
<img src="resources/favicon.ico">
</div>
<iframe src="resources/favicon.ico" class="failure"></iframe>
</body>
</html>
|