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

« back to all changes in this revision

Viewing changes to mozilla/layout/html/tests/table/bugs/bug30332-1.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
<!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.0 Transitional//EN" "http://www.w3.org/TR/REC-html40/loose.dtd">
 
2
<html>
 
3
<head>
 
4
   <meta http-equiv="Content-Type" content="text/html; charset=iso-8859-1">
 
5
   <meta name="GENERATOR" content="Mozilla/4.72 [en] (Win98; I) [Netscape]">
 
6
   <title>ROWSPAN = "0" Test Case</title>
 
7
</head>
 
8
 
 
9
<body>
 
10
 
 
11
BAD:<br><br>
 
12
  <center>
 
13
    <table BORDER = "5" COLS=1 WIDTH="100%" >
 
14
      <tr>
 
15
        <td ROWSPAN = "0">One</td>
 
16
      </tr>
 
17
 
 
18
      <tr>
 
19
        <td>Two</td>
 
20
      </tr>
 
21
    </table>
 
22
  </center>
 
23
 
 
24
<br>
 
25
<br>
 
26
 
 
27
GOOD:<br><br>
 
28
  <center>
 
29
    <table BORDER = "5"COLS=1 WIDTH="100%" >
 
30
      <tr>
 
31
        <td>One</td>
 
32
      </tr>
 
33
 
 
34
      <tr>
 
35
        <td>Two</td>
 
36
      </tr>
 
37
    </table>
 
38
  </center>
 
39
 
 
40
</body>
 
41
</html>