https://github.com/mozilla/gecko-dev
Raw File
Tip revision: 79ba7034e36d46efc3aa060cbd4e61a37bb97264 authored by ffxbld on 20 December 2013, 01:38:10 UTC
Added FENNEC_26_0_1_RELEASE FENNEC_26_0_1_BUILD2 tag(s) for changeset 855c01ab6bf0. DONTBUILD CLOSED TREE a=release
Tip revision: 79ba703
box-sizing-1.html
<!DOCTYPE html>
<html lang="en-US">
<head>
  <title>test of -moz-box-sizing</title>
  <meta http-equiv="Content-Type" content="text/html; charset=UTF-8">
  <meta http-equiv="Content-Style-Type" content="text/css">
  <style type="text/css">

    body { font-size: 10px; line-height: 1; }
    table { border-spacing: 0; margin: 0; }
    td { border: 1px solid; padding: 1px; }

    td > div { width: 100px; }

    td#bscontent > div > div { -moz-box-sizing: content-box; }
    td#bspadding > div > div { -moz-box-sizing: padding-box; }
    td#bsborder > div > div { -moz-box-sizing: border-box; }

    td > div > div {
      margin-left: 1px;
      border-left: 2px solid;
      padding-left: 4px;
      padding-right: 8px;
      border-right: 16px solid;
      margin-right: 32px;

      background: yellow;
      margin-bottom: 1px;
    }

  </style>
</head>
<body>

<table><tr>

<td id="bscontent"><div>

<!-- -moz-box-sizing: content-box -->
<div style="width: auto">A B</div>
<div style="width: -moz-max-content">A B</div>
<div style="width: -moz-min-content">A B</div>
<div style="width: -moz-fit-content">A B</div>
<div style="width: -moz-available">A B</div>
<div style="width: 50px">A B</div>
<div style="width: 60%">A B</div>

</div></td>

<td id="bspadding"><div>
<!-- -moz-box-sizing: padding-box -->
<div style="width: auto">A B</div>
<div style="width: -moz-max-content">A B</div>
<div style="width: -moz-min-content">A B</div>
<div style="width: -moz-fit-content">A B</div>
<div style="width: -moz-available">A B</div>
<div style="width: 50px">A B</div>
<div style="width: 60%">A B</div>

</div></td>

<td id="bsborder"><div>
<!-- -moz-box-sizing: border-box -->
<div style="width: auto">A B</div>
<div style="width: -moz-max-content">A B</div>
<div style="width: -moz-min-content">A B</div>
<div style="width: -moz-fit-content">A B</div>
<div style="width: -moz-available">A B</div>
<div style="width: 50px">A B</div>
<div style="width: 60%">A B</div>

</div></td>

</tr></table>

</body>
</html>
back to top