Merge Chromium + Blink git repositories
[chromium-blink-merge.git] / third_party / WebKit / LayoutTests / fast / clip / 002.html
blobd7ed4d2cf9d51e5c7fdbed9fa330d6f18defcd7b
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;
11 .red {
12 width: 100px;
13 height: 100px;
14 background-color: red;
15 margin-top:100px;
18 .overflow {
19 overflow: hidden;
21 </style>
22 <body>
23 You should see a 100x100 green square below. If you see any red, the test
24 has failed.
26 <div class="green overflow"><div class="red"></div></div>