summaryrefslogtreecommitdiffstats
path: root/layout/reftests/box-properties/box-sizing-3.html
blob: ca346e538f6ab4632a5934285c13b5cb2cd07632 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
<!DOCTYPE html>
<html lang="en-US">
<head>
  <title>test of 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 solid; }

    td > div { width: 100px; }

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

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

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

  </style>
</head>
<body>

<table><tr>

<td id="bscontent"><div>

<!-- box-sizing: content-box -->
<div style="width: auto">A B</div>
<div style="width: max-content">A B</div>
<div style="width: 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>
<!-- box-sizing: border-box -->
<div style="width: auto">A B</div>
<div style="width: max-content">A B</div>
<div style="width: 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>