[Release] Webkit-EFL Ver. 2.0_beta_118996_0.6.24
[framework/web/webkit-efl.git] / LayoutTests / fast / clip / 003.html
1 <!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.0//EN">
2 <html>
3 <head>
4 <style>
5 .green {
6   width: 100px;
7   height: 100px;
8   background-color: green;
9 }
10
11 .red {
12   width: 100px;
13   height: 100px;
14   margin-top: 100px;
15   margin-left: 100px;
16   background-color: red;
17 }
18
19 .overflow {
20   overflow: hidden;
21   width: 100px;
22   height: 100px;
23 }
24
25 .positioned {
26   position: absolute;
27   left:150px;
28   top: 100px;
29 }
30 </style>
31 <body>
32 You should see a 100x100 green square below.  If you see any red, the test
33 has failed.
34
35 <div class="overflow">
36 <div class="red"></div>
37 <div class="green positioned"></div>
38 </div>