blob: 5b7a8dff47e90cf2b0dc02688dd478deaf0a13fc (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
|
<!DOCTYPE html>
<html>
<head>
<meta charset="utf-8">
<title>fractions bar</title>
<style type="text/css">
#container {
position: absolute;
left: 10px;
top: 50px;
width: 150px;
height: 150px;
background: green;
}
</style>
</head>
<body>
<p>This test passes if you see a green square.</p>
<div id="container"></div>
</body>
</html>
|