chromium/third_party/blink/web_tests/fast/box-sizing/panels-two.html

<?xml version="1.0" encoding="UTF-8"?>
<!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Strict//EN"
    "http://www.w3.org/TR/xhtml1/DTD/xhtml1-strict.dtd">
<html xmlns="http://www.w3.org/1999/xhtml" lang="en" xml:lang="en">
<head>
    <meta http-equiv="Content-Type" content="text/html; charset=utf-8"/>
    <title>Panelset</title>
    <style type="text/css">
        /* <![CDATA */

        html { height: 100%; }
        body{ margin: 0; height: 100%; }

        .panel{
            -moz-box-sizing: border-box;
            -webkit-box-sizing: border-box;
            box-sizing: border-box;
            overflow: auto;
            position: absolute;
            height: 100%;
            width: 100%;
        }
        
        /* ]]> */
    </style>
</head>
<body>
    <div style="padding: 130px 0px 0px;" id="outerPanelSet" class="panel">
        <div style="background-color: pink; height: 40px; top: 0px;" id="headerPanel" class="panel">Header</div>
        <div style="background-color: salmon; height: 30px; top: 40px;" id="infoPanel" class="panel">Info</div>
        <div style="background-color: fuchsia; height: 60px; top: 70px;" id="contextPanel" class="panel">Context</div>

        <div style="padding: 0px 0px 0px 135px; position: relative;" id="contentPanelSet" class="panel">
            <div style="background-color: Purple; width: 135px; left: 0px;" id="navPanel" class="panel">Navigation</div>
            <div style="padding: 44px 0px 45px; position: relative;" id="contentPanelset" class="panel">
                <div style="background-color: indigo; height: 44px; top: 0px;" id="contentHeaderPanel" class="panel">Content Header</div>
                <div style="background-color: salmon; position: relative;" id="contentPanel" class="panel">Content</div>
                <div style="background-color: cornflowerblue; height: 45px; bottom: 0px; left: 0px;" id="contentFooterPanel" class="panel">Content Footer</div>
            </div>
        </div>
    </div>
</body>
</html>