summaryrefslogtreecommitdiffstats
path: root/layout/reftests/flexbox/flexbox-intrinsic-sizing-horiz-1b.xhtml
blob: 0d0b1dd34c989d11848b77032715a53cf2967a90 (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
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
<?xml version="1.0" encoding="UTF-8"?>
<!--
     Any copyright is dedicated to the Public Domain.
     http://creativecommons.org/publicdomain/zero/1.0/
-->
<!--
     This test has a number of tables, each with 2 flexboxes side-by-side,
     whose "width" values depend on the flexbox's min and/or pref widths.

     There's not enough space for both flexboxes to fit side-by-side, so their
     width preferences must be balanced. This exercises
     nsFlexContainerFrame::GetPrefWidth() & ::GetMinWidth().

     IN EACH CASE, div.a has these intrinsic widths:
       Pref width: 2*40 + 1*50 + 2*10 = 150px   (2*aaaa + 1*aaaaa + 2*space)
       Min width: 50px  (width of "aaaaa")
     and div.b has these intrinsic widths:
       Pref width: 5*20 + 3*10 + 7*10 = 200px   (5*bb + 3*b + 7*space)
       Min width: 20px  (width "bb")
-->
<html xmlns="http://www.w3.org/1999/xhtml">
  <head>
    <link rel="stylesheet" type="text/css" href="ahem.css" />
    <style>
      table {
        width: 300px;
        font: 10px Ahem;
        margin-bottom: 2px;
        border: 1px dashed black;
      }

      div.a, div.b { display: flex; }

      div.a { background: lightgreen; }
      div.b { background: lightblue;  }

      <!-- helper-classes for assigning pref / min / auto-width to our divs -->
      div.prefWidth {
        width: max-content;
      }
      div.minWidth {
        width: min-content;
      }
      div.autoWidth {
        width: auto;
      }
  </style>
</head>
<body>
  <!-- both auto width -->
   <table cellpadding="0" cellspacing="0"><tr>
       <td><div class="a autoWidth"><div>aaaa aaaa aaaaa</div></div></td>
       <td><div class="b autoWidth"><div>bb bb b bb bb b bb b</div></div></td>
   </tr></table>

   <!-- MIXING MIN WIDTH & AUTO -->
   <!-- both min width -->
   <table cellpadding="0" cellspacing="0"><tr>
       <td><div class="a minWidth"><div>aaaa aaaa aaaaa</div></div></td>
       <td><div class="b minWidth"><div>bb bb b bb bb b bb b</div></div></td>
   </tr></table>
   <!-- min,auto -->
   <table cellpadding="0" cellspacing="0"><tr>
       <td><div class="a minWidth"><div>aaaa aaaa aaaaa</div></div></td>
       <td><div class="b autoWidth"><div>bb bb b bb bb b bb b</div></div></td>
   </tr></table>
   <!-- auto,min -->
   <table cellpadding="0" cellspacing="0"><tr>
       <td><div class="a autoWidth"><div>aaaa aaaa aaaaa</div></div></td>
       <td><div class="b minWidth"><div>bb bb b bb bb b bb b</div></div></td>
   </tr></table>

   <!-- MIXING PREF WIDTH & AUTO -->
   <!-- both prefWidth (NOTE: makes the table larger than it wants to be -->
   <table cellpadding="0" cellspacing="0"><tr>
       <td><div class="a prefWidth"><div>aaaa aaaa aaaaa</div></div></td>
       <td><div class="b prefWidth"><div>bb bb b bb bb b bb b</div></div></td>
   </tr></table>
   <!-- pref,auto -->
   <table cellpadding="0" cellspacing="0"><tr>
       <td><div class="a prefWidth"><div>aaaa aaaa aaaaa</div></div></td>
       <td><div class="b autoWidth"><div>bb bb b bb bb b bb b</div></div></td>
   </tr></table>
   <!-- auto,pref -->
   <table cellpadding="0" cellspacing="0"><tr>
       <td><div class="a autoWidth"><div>aaaa aaaa aaaaa</div></div></td>
       <td><div class="b prefWidth"><div>bb bb b bb bb b bb b</div></div></td>
   </tr></table>

   <!-- MIXING PREF WIDTH & MIN WIDTH -->
   <!-- min,pref -->
   <table cellpadding="0" cellspacing="0"><tr>
       <td><div class="a minWidth"><div>aaaa aaaa aaaaa</div></div></td>
       <td><div class="b prefWidth"><div>bb bb b bb bb b bb b</div></div></td>
   </tr></table>
   <!-- pref,min -->
   <table cellpadding="0" cellspacing="0"><tr>
       <td><div class="a prefWidth"><div>aaaa aaaa aaaaa</div></div></td>
       <td><div class="b minWidth"><div>bb bb b bb bb b bb b</div></div></td>
   </tr></table>
</body>
</html>