File: min-intrinsic-with-width-percents-across-form-controls.html

package info (click to toggle)
thunderbird 1%3A143.0.1-1
  • links: PTS, VCS
  • area: main
  • in suites: experimental
  • size: 4,703,968 kB
  • sloc: cpp: 7,770,492; javascript: 5,943,842; ansic: 3,918,754; python: 1,418,263; xml: 653,354; asm: 474,045; java: 183,079; sh: 111,238; makefile: 20,410; perl: 14,359; objc: 13,059; yacc: 4,583; pascal: 3,405; lex: 1,720; ruby: 999; exp: 762; sql: 715; awk: 580; php: 436; lisp: 430; sed: 69; csh: 10
file content (95 lines) | stat: -rw-r--r-- 1,966 bytes parent folder | download | duplicates (34)
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
<!DOCTYPE HTML>
<title>Tests for bug 823483 / bug 1247929</title>
<style>

body, input { font-size: 10px }
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) > * { visibility: hidden; vertical-align: bottom; width: 100% }

</style>

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

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

<table><tr>
  <td><button>Button</button></td>
  <td>button</td>
</tr></table>

<table><tr>
  <td><fieldset>Fieldset</fieldset></td>
  <td>fieldset</td>
</tr></table>

<table><tr>
  <td><input type="file"></td>
  <td>input type="file"</td>
</tr></table>

<table><tr>
  <td><input type="radio"></td>
  <td>input type="radio"</td>
</tr></table>

<table><tr>
  <td><input type="checkbox"></td>
  <td>input type="checkbox"</td>
</tr></table>

<table><tr>
  <td><input type="image" src="data:image/png;base64,iVBORw0KGgoAAAANSUhEUgAAACAAAAAgCAIAAAD8GO2jAAAAAXNSR0IArs4c6QAAAChJREFUSMftzUEBAAAEBLCjf2dK8NsKrJLJp84zgUAgEAgEAoFAcGUBocYBP+pqhN4AAAAASUVORK5CYII="></td>
  <td>input type="image"</td>
</tr></table>

<table><tr>
  <td><select><option>One</option><option>Two</option></select></td>
  <td>select</td>
</tr></table>

<table><tr>
  <td><select size="2"><option>One</option><option>Two</option></select></td>
  <td>select size="2"</td>
</tr></table>

<table><tr>
  <td><meter max="10" value="5"></meter></td>
  <td>meter</td>
</tr></table>

<table><tr>
  <td><input type="number"></td>
  <td>input type="number"</td>
</tr></table>

<table><tr>
  <td><progress></progress></td>
  <td>progress</td>
</tr></table>

<table><tr>
  <td><input type="range"></td>
  <td>input type="range"</td>
</tr></table>

<table><tr>
  <td><textarea></textarea></td>
  <td>textarea</td>
</tr></table>