Merge Chromium + Blink git repositories
[chromium-blink-merge.git] / third_party / WebKit / LayoutTests / fast / box-sizing / panels-one.html
blob41296bd563e262e7304f16a52abe5fedef05edd0
1 <?xml version="1.0" encoding="UTF-8"?>
2 <!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Strict//EN"
3 "http://www.w3.org/TR/xhtml1/DTD/xhtml1-strict.dtd">
4 <html xmlns="http://www.w3.org/1999/xhtml" lang="en" xml:lang="en">
5 <head>
6 <meta http-equiv="Content-Type" content="text/html; charset=utf-8"/>
7 <title>Panelset</title>
8 <style type="text/css">
9 /* <![CDATA */
11 /* html { height: 100%; } */
12 body{ margin: 0; /* height: 100%; */ }
14 .panel{
15 -moz-box-sizing: border-box;
16 -webkit-box-sizing: border-box;
17 box-sizing: border-box;
18 overflow: auto;
19 position: absolute;
20 height: 100%;
21 width: 100%;
24 /* ]]> */
25 </style>
26 </head>
27 <body>
28 <div style="padding: 130px 0px 0px;" id="outerPanelSet" class="panel">
29 <div style="background-color: pink; height: 40px; top: 0px;" id="headerPanel" class="panel">Header</div>
30 <div style="background-color: salmon; height: 30px; top: 40px;" id="infoPanel" class="panel">Info</div>
31 <div style="background-color: fuchsia; height: 60px; top: 70px;" id="contextPanel" class="panel">Context</div>
33 <div style="padding: 0px 0px 0px 135px; position: relative;" id="contentPanelSet" class="panel">
34 <div style="background-color: Purple; width: 135px; left: 0px;" id="navPanel" class="panel">Navigation</div>
35 <div style="padding: 44px 0px 45px; position: relative;" id="contentPanelset" class="panel">
36 <div style="background-color: indigo; height: 44px; top: 0px;" id="contentHeaderPanel" class="panel">Content Header</div>
37 <div style="background-color: salmon; position: relative;" id="contentPanel" class="panel">Content</div>
38 <div style="background-color: cornflowerblue; height: 45px; bottom: 0px; left: 0px;" id="contentFooterPanel" class="panel">Content Footer</div>
39 </div>
40 </div>
41 </div>
42 </body>
43 </html>