Merge Chromium + Blink git repositories
[chromium-blink-merge.git] / third_party / WebKit / LayoutTests / fast / block / basic / 021.html
blob022a9ac06fcd8cf0d0cf71f55593e7eac559a709
1 <!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.01//EN" "http://www.w3.org/TR/html4/strict.dtd">
3 <html>
5 <head>
7 <title>Slashdot Layout Bug Testcase</title>
9 <style type="text/css">
10 /* These rules cause the layout issue */
11 #yellow{ height: 100%; }
12 #blue { height: 100%; }
13 /* #green { height: 100%; } /* */
15 /* These rules are to demonstrate the layout issue */
16 #yellow { border: 3px solid yellow; }
17 #blue { border: 3px solid blue; }
18 #green { border: 3px solid green; }
19 #red { border: 3px solid red; }
20 #navy { border: 3px solid navy; }
21 </style>
23 </head>
25 <body>
27 <div id="yellow">Yellow
28 <div id="blue">Blue
29 <div id="green">Green</div>
30 <div id="red">Red</div>
31 </div>
32 </div>
34 <div id="navy">
35 <div>Navy</div>
36 </div>
38 </body>
39 </html>