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

« back to all changes in this revision

Viewing changes to mozilla/layout/html/tests/table/bugs/bug3454.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
<html><head>
 
2
<style type="text/css">
 
3
TABLE   { margin: 1em; width: auto; }
 
4
</style>
 
5
</head>
 
6
<body>
 
7
 
 
8
<table border class="two">
 
9
 <tr>
 
10
  <th>Header One</th>
 
11
  <th>Header Two</th>
 
12
  <th>Header Three</th>
 
13
 </tr>
 
14
 <tr>
 
15
  <td>
 
16
   This table uses the separated borders model.
 
17
  </td>
 
18
  <td>
 
19
   This means that elements within the cell have border-spacing of 1em.
 
20
  </td>
 
21
  <td>
 
22
   The borders on the header cells,
 
23
   on all sides, should be medium solid purple.
 
24
  </td>
 
25
 </tr>
 
26
</table>
 
27
 
 
28
</body></html>