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 }
</style>
<table><tr>
<td><input type="text" style="width: 0"></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" style="width: 0"></td>
<td>input type="file"</td>
</tr></table>
<table><tr>
<td><input type="radio" style="width: 0"></td>
<td>input type="radio"</td>
</tr></table>
<table><tr>
<td><input type="checkbox" style="width: 0"></td>
<td>input type="checkbox"</td>
</tr></table>
<table><tr>
<td><input type="image" src="data:image/png;base64,iVBORw0KGgoAAAANSUhEUgAAACAAAAAgCAIAAAD8GO2jAAAAAXNSR0IArs4c6QAAAChJREFUSMftzUEBAAAEBLCjf2dK8NsKrJLJp84zgUAgEAgEAoFAcGUBocYBP+pqhN4AAAAASUVORK5CYII=" style="width: 0"></td>
<td>input type="image"</td>
</tr></table>
<table><tr>
<td><select style="width: 0"><option>One</option><option>Two</option></select></td>
<td>select</td>
</tr></table>
<table><tr>
<td><select size="2" style="width: 0"><option>One</option><option>Two</option></select></td>
<td>select size="2"</td>
</tr></table>
<table><tr>
<td><meter max="10" value="5" style="width: 0"></meter></td>
<td>meter</td>
</tr></table>
<table><tr>
<td><input type="number" style="width: 0"></td>
<td>input type="number"</td>
</tr></table>
<table><tr>
<td><progress style="width: 0"></progress></td>
<td>progress</td>
</tr></table>
<table><tr>
<td><input type="range" style="width: 0"></td>
<td>input type="range"</td>
</tr></table>
<table><tr>
<td><textarea style="width: 0"></textarea></td>
<td>textarea</td>
</tr></table>
|