File: bug42043.html

package info (click to toggle)
iceweasel 2.0.0.19-0etch1
  • links: PTS
  • area: main
  • in suites: etch
  • size: 298,784 kB
  • ctags: 317,912
  • sloc: cpp: 1,796,902; ansic: 987,677; xml: 109,036; makefile: 47,777; asm: 35,201; perl: 26,983; sh: 20,879; cs: 6,232; java: 5,513; python: 3,249; pascal: 459; lex: 306; php: 244; csh: 132; objc: 97; yacc: 79; ada: 49; awk: 14; sql: 4; sed: 4
file content (43 lines) | stat: -rw-r--r-- 1,272 bytes parent folder | download | duplicates (10)
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
<html>
<body>
<p>(1) Table with 2 columns. Relative width value for first column is "1*" and for column 2 is "3*". Table width is 100%. The first column should span 1/4 of the window width and the second column should span 3/4 of the window width. <b>5.0 renders this correctly.</b></p>
 
<table width="100%" border="1">
<colgroup>
<col width="1*">
<col width="3*">
</colgroup>
<tr>
  <td>Test</td>
  <td>Test</td>
</tr>
</table>
<br><br>
<p>(2) Table with 1 column. Relative width value for column is "0*" with table width of 100%. The column should span the minimum width necessary to hold the column's contents. <b>Problem.</b></p>

<table width="100%" border="1">
<colgroup>
<col width="0*">
</colgroup>
<tr>
  <td>Test</td>
</tr>
</table>

<br><br>
<p>(3) Table with 2 columns. Relative width value for first column is "0*" and for column 2 is "3*". Table width is 100%. The first column should span the minimum width necessary to hold the column's contents. The second column should ????<b>The first column is rendered properly, but there seems to be a problem with the width of the second column.</b></p>

<table width="100%" border="1">
<colgroup>
<col width="0*">
<col width="3*">
</colgroup>
<tr>
  <td>Test</td>
  <td>Test</td>
</tr>
</table>


</body>
</html>