blob: d04ab0273b42853a175a5b43b12db0e6111fcbfc (
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
|
<!DOCTYPE html>
<html>
<head>
<meta http-equiv="content-type" content="text/html; charset=UTF-8">
<meta charset="utf-8">
<title>Retained display list test</title>
<style type="text/css">
.container {
position: fixed;
top: 0px;
left: 0px;
width: 400px;
height: 400px;
background-color: green;
}
</style>
</head>
<body>
<div class="container">
</div>
</body>
</html>
|