summaryrefslogtreecommitdiffstats
path: root/layout/reftests/css-sizing/min-intrinsic-with-percents-across-elements.html
blob: b733025a19d3e525784c07e5a255f5809c96f9d4 (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
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
<!DOCTYPE HTML>
<title>Tests for bug 823483</title>
<style>

body, input { font-size: 10px }
body { line-height: 1.5 }
input { padding: 0 1px; border: 1px solid maroon; font-family: monospace }

td:first-child {
   background: aqua;
   border: thin solid;
   padding: 1px 0;
}

td:nth-child(2) {
  width: 100%;
}

td:nth-child(1) > * { vertical-align: bottom }

canvas {
  background: blue
}

</style>

<table><tr>
  <td><img></td>
  <td>img, unstyled</td>
</tr></table>

<table><tr>
  <td><img style="width: 50%"></td>
  <td>img, width: 50%</td>
</tr></table>

<table><tr>
  <td><img style="max-width: 50%"></td>
  <td>img, max-width: 50%</td>
</tr></table>

<table><tr>
  <td><canvas height="10" width="10"></canvas></td>
  <td>canvas, unstyled</td>
</tr></table>

<table><tr>
  <td><canvas style="width: 50%" height="10" width="10"></canvas></td>
  <td>canvas, width: 50%</td>
</tr></table>

<table><tr>
  <td><canvas style="max-width: 50%" height="10" width="10"></canvas></td>
  <td>canvas, max-width: 50%</td>
</tr></table>

<table><tr>
  <td><iframe height="10" width="10"></iframe></td>
  <td>iframe, almost unstyled</td>
</tr></table>

<table><tr>
  <td><iframe style="width: 50%" height="10" width="10"></iframe></td>
  <td>iframe, width: 50%</td>
</tr></table>

<table><tr>
  <td><iframe style="max-width: 50%" height="10" width="10"></iframe></td>
  <td>iframe, max-width: 50%</td>
</tr></table>

<table><tr>
  <td><input type="text"></td>
  <td>input type="text", unstyled</td>
</tr></table>

<table><tr>
  <td><input type="text" style="width: 50%"></td>
  <td>input type="text", width: 50%</td>
</tr></table>

<table><tr>
  <td><input type="text" style="max-width: 50%; visibility: hidden"></td>
  <td>input type="text", max-width: 50%</td>
</tr></table>

<table><tr>
  <td><input type="button"></td>
  <td>empty input type="button", unstyled</td>
</tr></table>

<table><tr>
  <td><input type="button" style="width: 50%"></td>
  <td>empty input type="button", width: 50%</td>
</tr></table>

<table><tr>
  <td><input type="button" style="max-width: 50%"></td>
  <td>empty input type="button", max-width: 50%</td>
</tr></table>

<table><tr>
  <td><input type="button" value="Button"></td>
  <td>nonempty input type="button", unstyled</td>
</tr></table>

<table><tr>
  <td><input type="button" value="Button" style="width: 50%; visibility: hidden"></td>
  <td>nonempty input type="button", width: 50%</td>
</tr></table>

<table><tr>
  <td><input type="button" value="Button" style="max-width: 50%; visibility: hidden"></td>
  <td>nonempty input type="button", max-width: 50%</td>
</tr></table>

<script>

var images = document.getElementsByTagName("img");
for (var i = 0; i < images.length; ++i) {
  var image = images[i];
  image.src = "data:image/png;base64,iVBORw0KGgoAAAANSUhEUgAAACAAAAAgCAIAAAD8GO2jAAAAAXNSR0IArs4c6QAAAChJREFUSMftzUEBAAAEBLCjf2dK8NsKrJLJp84zgUAgEAgEAoFAcGUBocYBP+pqhN4AAAAASUVORK5CYII=";
}

</script>