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

« back to all changes in this revision

Viewing changes to mozilla/layout/html/tests/table/marvin/th_valign_bottom.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">
 
2
 
 
3
<html>
 
4
 
 
5
<head>
 
6
 
 
7
<!-- testcase: th_valign_bottom.html --> 
 
8
 
 
9
<!-- description: TH element, VALIGN attribute, BOTTOM value --> 
 
10
 
 
11
<!-- Author: Chris Petersen Date: 8/7/98 -->
 
12
 
 
13
<!-- Modified: Christine Dreckman: 3/18/99 -->
 
14
 
 
15
 
 
16
<!-- ***** BEGIN LICENSE BLOCK *****
 
17
   - Version: MPL 1.1/GPL 2.0/LGPL 2.1
 
18
   -
 
19
   - The contents of this file are subject to the Mozilla Public License Version
 
20
   - 1.1 (the "License"); you may not use this file except in compliance with
 
21
   - the License. You may obtain a copy of the License at
 
22
   - http://www.mozilla.org/MPL/
 
23
   -
 
24
   - Software distributed under the License is distributed on an "AS IS" basis,
 
25
   - WITHOUT WARRANTY OF ANY KIND, either express or implied. See the License
 
26
   - for the specific language governing rights and limitations under the
 
27
   - License.
 
28
   -
 
29
   - The Original Code is table layout tests.
 
30
   -
 
31
   - The Initial Developer of the Original Code is
 
32
   - Netscape Communications Corp.
 
33
   - Portions created by the Initial Developer are Copyright (C) 1998
 
34
   - the Initial Developer. All Rights Reserved.
 
35
   -
 
36
   - Contributor(s):
 
37
   -
 
38
   - Alternatively, the contents of this file may be used under the terms of
 
39
   - either the GNU General Public License Version 2 or later (the "GPL"), or
 
40
   - the GNU Lesser General Public License Version 2.1 or later (the "LGPL"),
 
41
   - in which case the provisions of the GPL or the LGPL are applicable instead
 
42
   - of those above. If you wish to allow use of your version of this file only
 
43
   - under the terms of either the GPL or the LGPL, and not to allow others to
 
44
   - use your version of this file under the terms of the MPL, indicate your
 
45
   - decision by deleting the provisions above and replace them with the notice
 
46
   - and other provisions required by the LGPL or the GPL. If you do not delete
 
47
   - the provisions above, a recipient may use your version of this file under
 
48
   - the terms of any one of the MPL, the GPL or the LGPL.
 
49
   -
 
50
   - ***** END LICENSE BLOCK ***** -->
 
51
 
 
52
<!-- Purpose: To test the TH element with the VALIGN attribute, assigning a value of 'bottom'-->
 
53
 
 
54
<!-- Expected result: There is one row and 3 columns. The cell in the first column contains an image. The text in the second and third column cells should be vertically aligned to the bottom -->
 
55
 
 
56
<title>th_align_bottom</title>
 
57
 
 
58
</head>
 
59
 
 
60
<body>
 
61
 
 
62
TH VALIGN&#61;BOTTOM
 
63
 
 
64
<table border=1>
 
65
 
 
66
<tr>
 
67
 
 
68
<th><img SRC="../images/raptor.jpg" alt=image height=185 width=300></td>
 
69
 
 
70
<th valign=bottom>This text should be vertically aligned to the bottom</th>
 
71
 
 
72
<th valign=bottom>This text should be vertically aligned to the bottom</th>
 
73
 
 
74
</tr>
 
75
 
 
76
</table>
 
77
 
 
78
</body>
 
79
 
 
80
</html>
 
81
 
 
82
 
 
83
 
 
84
 
 
85
 
 
86
 
 
87
 
 
88
 
 
89
 
 
90
 
 
91
 
 
92
 
 
93
 
 
94
 
 
95
 
 
96
 
 
97
 
 
98
 
 
99
 
 
100
 
 
101
 
 
102
 
 
103