File: bug8950.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 (102 lines) | stat: -rw-r--r-- 2,235 bytes parent folder | download | duplicates (20)
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
<html>
<HEAD>
<STYLE TYPE="text/css">
<!--
a:hover       {color: red;}
-->
</STYLE>
</head>
<body>

<table border=1 width=653>
 <tr>
  <td colspan=6 width=653>
   <table border=1 width=620>
    <tr>
     <td width=620 height=4> foo </td>
    </tr>
    <tr>
     <td valign=top>
      <table border=1 width=39>
       <tr>
        <td width=39 height=47 valign=top> bar </tD>
        <td valign=middle align=center> baz </tD>
       </tr>
       <tr>
        <td width=5 valign=top> faz </td>
        <td valign=top>
         <table border=1 width=581>
          <TR>
           <td colspan=2 width=581>
            <table border=1 width=581 border=0>
             <tr>
              <td valign=top align=left width=120> frip </td>
              <td align=center valign=top width=480>
               Feel free to browse ...
               <P>
               <CENTER>
               <TABLE BORDER=1 WIDTH="273">
                <TR>
                 <TD><a href="">Holiday</A></TD>
                 <TD><a href="">Cars</A></TD>
                </TR>
                <TR>
                 <TD><a href="">Sports</A></TD>
                 <TD><a href="">Animals</A></TD>
                </TR>
                <TR>
                 <TD><a href="">Computers</A></TD>
                 <TD><a href="">Cartoons</A></TD>
                </TR>
               </TABLE>
               </CENTER>
              </td>
             </tr>
            </TABLE>
           </td>
          </tr>
         </TABLE>
        </td>
       </tr>
      </TABLE>
     </td>
    </tr>
   </TABLE>
  </td>
 </tr>
</TABLE>
<BR>

<p>The second (nested) table below has fixed widths 300px, 500px, 200px (outer to inner).<br>
When the <code>a:hover</code> for 'Holiday' gets <code>'onMouseOver'</code>,
the outer table reflows to 300px,<br>
clipping the middle (500px) table in the process.</p>

<table border=1 width=300>
 <TR>
  <td>
300px wide for comparison
  </td>
 </tr>
</TABLE>

<br>
   
<table border=1 width=300>
 <TR>
  <td>
   <table border=1 width=500>
    <tr>
     <td>
      <TABLE BORDER=1 WIDTH=200>
       <TR>
        <TD><a href="">Holiday</A></TD>
       </TR>
      </TABLE>
     </td>
    </tr>
   </TABLE>
  </td>
 </tr>
</TABLE>
</body></html>