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

« back to all changes in this revision

Viewing changes to mozilla/layout/html/tests/table/marvin/x_td_align_left.xml

  • 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 XHTML 1.0 Transitional//EN"
 
2
 
 
3
    "http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd">
 
4
 
 
5
<html xmlns="http://www.w3.org/1999/xhtml">
 
6
 
 
7
<head>
 
8
 
 
9
<meta name="generator"
 
10
 
 
11
content="HTML Tidy for Mac OS, see www.w3.org" />
 
12
 
 
13
<title>td_align_left</title>
 
14
 
 
15
<!-- Modified: Changed doctype to xhtml 1.0 transitional Author: Chris Petersen Date: 1/31/01 -->
 
16
 
 
17
<!-- 
 
18
 
 
19
   - The contents of this file are subject to the Mozilla Public
 
20
 
 
21
   - License Version 1.1 (the "License"); you may not use this file
 
22
 
 
23
   - except in compliance with the License. You may obtain a copy of
 
24
 
 
25
   - the License at http://www.mozilla.org/MPL/
 
26
 
 
27
   - 
 
28
 
 
29
   - Software distributed under the License is distributed on an "AS
 
30
 
 
31
   - IS" basis, WITHOUT WARRANTY OF ANY KIND, either express or
 
32
 
 
33
   - implied. See the License for the specific language governing
 
34
 
 
35
   - rights and limitations under the License.
 
36
 
 
37
   - 
 
38
 
 
39
   - The Original Code is Mozilla Communicator Test Cases.
 
40
 
 
41
   - 
 
42
 
 
43
   - The Initial Developer of the Original Code is Netscape Communications
 
44
 
 
45
   - Corp.  Portions created by Netscape Communications Corp. are 
 
46
 
 
47
   - Copyright (C) 1999 Netscape Communications Corp.  All
 
48
 
 
49
   - Rights Reserved.
 
50
 
 
51
   - 
 
52
 
 
53
   - Contributor(s):Christine Dreckman   Date: 5/10/99
 
54
 
 
55
 
 
56
 
 
57
            Chris Petersen   Date: 5/19/99
 
58
 
 
59
 
 
60
 
 
61
            Christine Dreckman   Date 9/6/2000 
 
62
 
 
63
  -->
 
64
 
 
65
</head>
 
66
 
 
67
<body>
 
68
 
 
69
<p>TEST: td align="left"</p>
 
70
 
 
71
 
 
72
 
 
73
<p><b>Example 1.</b><br />
 
74
 
 
75
Table width=100%</p>
 
76
 
 
77
 
 
78
 
 
79
<table border="1" width="100%">
 
80
 
 
81
<tr>
 
82
 
 
83
<td align="left">Cell text should be left aligned</td>
 
84
 
 
85
</tr>
 
86
 
 
87
</table>
 
88
 
 
89
 
 
90
 
 
91
<p><b>Example 2.</b><br />
 
92
 
 
93
No specific table width; text in second row exceeds text in first
 
94
 
 
95
row</p>
 
96
 
 
97
 
 
98
 
 
99
<table border="1">
 
100
 
 
101
<tr>
 
102
 
 
103
<td align="left">Cell text should be left aligned</td>
 
104
 
 
105
</tr>
 
106
 
 
107
 
 
108
 
 
109
<tr>
 
110
 
 
111
<td>xxx xxx xxx xxx xxx xxx xxx xxx xxx xxx xxx xxx xxx xxx xxx xxx
 
112
 
 
113
xxx xxx xxx xxx</td>
 
114
 
 
115
</tr>
 
116
 
 
117
</table>
 
118
 
 
119
</body>
 
120
 
 
121
</html>
 
122
 
 
123
 
 
124