~ubuntu-branches/ubuntu/precise/kompozer/precise

« back to all changes in this revision

Viewing changes to mozilla/layout/html/tests/table/bugs/bug15544.html

  • Committer: Bazaar Package Importer
  • Author(s): Anthony Yarusso
  • Date: 2007-08-27 01:11:03 UTC
  • Revision ID: james.westby@ubuntu.com-20070827011103-2jgf4s6532gqu2ka
Tags: upstream-0.7.10
ImportĀ upstreamĀ versionĀ 0.7.10

Show diffs side-by-side

added added

removed removed

Lines of Context:
 
1
<table border="0" cellspacing="0" cellpadding="0" width="80">
 
2
<!-- notice below   width="31" for an img with  width="30" --> 
 
3
<tr><td rowspan="3" width="31" height="93"><img width="30" height="93" src="../images/leftbit.jpg"></td>
 
4
    <td width="50" height="28"><img width="25" src="../images/1.jpg"><img width="25" src="../images/2.jpg"></td></tr>
 
5
<tr><td width="50" height="25"><img width="25" src="../images/5.jpg"><img width="25" src="../images/6.jpg"></td></tr>
 
6
<tr><td width="50" height="40"><img width="25" src="../images/9empty.jpg"><img width="25" src="../images/10empty.jpg"></td></tr>
 
7
</table>
 
8
 
 
9
Here's the same table without the off-by-one error.
 
10
 
 
11
<table border="0" cellspacing="0" cellpadding="0" width="80"> 
 
12
<!-- and here       width="30" correctly. -->
 
13
<tr><td rowspan="3" width="30" height="93"><img width="30" height="93" src="../images/leftbit.jpg"></td>
 
14
    <td width="50" height="28"><img width="25" src="../images/1.jpg"><img width="25" src="../images/2.jpg"></td></tr>
 
15
<tr><td width="50" height="25"><img width="25" src="../images/5.jpg"><img width="25" src="../images/6.jpg"></td></tr>
 
16
<tr><td width="50" height="40"><img width="25" src="../images/9empty.jpg"><img width="25" src="../images/10empty.jpg"></td></tr>
 
17
</table>
 
18
 
 
19
</body>