table regression tests
git-svn-id: svn://10.0.0.236/trunk@26311 18797224-902f-48f8-a5cc-f745e15eee43
This commit is contained in:
35
mozilla/layout/html/tests/table/bugs/bug1010.html
Normal file
35
mozilla/layout/html/tests/table/bugs/bug1010.html
Normal file
@@ -0,0 +1,35 @@
|
||||
<TABLE BORDER=1 WIDTH="100%">
|
||||
<tr>
|
||||
<TD VALIGN=TOP rowspan=2>
|
||||
<ul>
|
||||
<li><A href="500in1ul.html">500 list items in a single UL</a></li>
|
||||
<li><a href="500in25uls.html">500 list items in 25 top-level ULs</a></li>
|
||||
<li><a href="500in25nesteduls.html">500 list items in a 25-level nested
|
||||
UL</a></li>
|
||||
<li><a href="300textfields.html">300 text input form fields</a></li>
|
||||
<li><a href="test6.html">Massively nested tables</a></li>
|
||||
<li><a href="12nesteddivs.html">Massively nested DIVs with padding and
|
||||
borders</a></li>
|
||||
<li><a href="select.html">1000 OPTIONs in a single SELECT form element</a></li>
|
||||
<li><a href="wbtbltxt.html">10,000 cell table with text in each cell</a></li>
|
||||
<li><a href="wbtblclr.html">10,000 cell table with text and color in each
|
||||
cell</a></li>
|
||||
<li><a href="wblnks.html">A 713k HTML document packed full of links</a></li>
|
||||
<li><a href="wbbightm.html">Extraordinarily long HTML doc (approx 1
|
||||
Meg)</a></li>
|
||||
<li><a href="wbclrtxt.html">Another large HTML doc, with colored text</a></li>
|
||||
<li><a href="wbhtmmix.html">A relatively large (150k) document with an average
|
||||
mix of HTML
|
||||
content</a></li>
|
||||
</ul>
|
||||
</TD>
|
||||
<td>foo 1</td>
|
||||
<td>foo 2</td>
|
||||
</TR>
|
||||
<TR>
|
||||
<td>Foo 3</td>
|
||||
<td>Foo 4</td>
|
||||
</TR>
|
||||
</TABLE>
|
||||
</BODY>
|
||||
</HTML>
|
||||
31
mozilla/layout/html/tests/table/bugs/bug1067-1.html
Normal file
31
mozilla/layout/html/tests/table/bugs/bug1067-1.html
Normal file
@@ -0,0 +1,31 @@
|
||||
<HTML>
|
||||
<HEAD>
|
||||
<TITLE>Sony Computer Entertainment America Inc.</TITLE>
|
||||
</HEAD>
|
||||
<body bgcolor = "#FFFFFF" background="ruler.gif" LINK="#0000FF" ALINK="#FF3300"
|
||||
VLINK="#FF0000">
|
||||
|
||||
<TABLE CELLSPACING=0 CELLPADDING=10 BORDER=0 WIDTH=0>
|
||||
<TABLE>
|
||||
<TR>
|
||||
<TD VALIGN="TOP" width="110">
|
||||
|
||||
<TABLE CELLSPACING=0 CELLPADDING=4 BORDER=0 >
|
||||
<TR>
|
||||
<TD> </TD>
|
||||
</TR>
|
||||
|
||||
|
||||
</TABLE>
|
||||
|
||||
</TD>
|
||||
|
||||
<TD></TD><TD></TD><TD></TD><TD></TD><TD></TD>
|
||||
|
||||
<TD VALIGN="TOP" width="500">bull
|
||||
</TD>
|
||||
</TR>
|
||||
</TABLE></TABLE>
|
||||
|
||||
</BODY>
|
||||
</HTML>
|
||||
12
mozilla/layout/html/tests/table/bugs/bug1067-2.html
Normal file
12
mozilla/layout/html/tests/table/bugs/bug1067-2.html
Normal file
@@ -0,0 +1,12 @@
|
||||
<HTML>
|
||||
<body bgcolor = "#FFFFFF" LINK="#0000FF" ALINK="#FF3300" VLINK="#FF0000">
|
||||
<hr align=left width=110>
|
||||
<TABLE CELLSPACING=0 CELLPADDING=20 BORDER=0>
|
||||
<TR>
|
||||
<TD VALIGN="TOP" width="110" bgcolor=yellow>x</TD>
|
||||
<TD VALIGN="TOP" width="100" bgcolor=grey>bull</TD>
|
||||
</TR>
|
||||
</TABLE>
|
||||
|
||||
</BODY>
|
||||
</HTML>
|
||||
46
mozilla/layout/html/tests/table/bugs/bug1128.html
Normal file
46
mozilla/layout/html/tests/table/bugs/bug1128.html
Normal file
@@ -0,0 +1,46 @@
|
||||
<html>
|
||||
<head>
|
||||
<title>Table Column Proportional Width Contraints</title>
|
||||
</head>
|
||||
<body>
|
||||
<h2>HTML 4.0 Table Column Proportional Width Constraints</h2>
|
||||
<p>
|
||||
The table below is 350 pixels wide. The columns are assigned proportional widths using COLs
|
||||
as follows:
|
||||
</p>
|
||||
<tt>
|
||||
<col width=50><br>
|
||||
<col width=2*><br>
|
||||
<col width=1*><Br>
|
||||
<col width=3*>
|
||||
</tt>
|
||||
<p>
|
||||
This means the first column should be 50 pixels wide. The remaining width should be divided
|
||||
among the three remaining columns according to the proportional width statements into six
|
||||
(2+1+3)
|
||||
parts. Since the Table is 350 pixels wide, and the remaining width is 300 pixels (350-50),
|
||||
the remaining columns should be 100 (2*50), 50 (1*50) and 150 (3*50) pixels wide,
|
||||
respectively.
|
||||
</p>
|
||||
<table border=1 width=350>
|
||||
<colgroup>
|
||||
<col width=50>
|
||||
<col width=2*>
|
||||
<col width=1*>
|
||||
<col width=3*>
|
||||
</colgroup>
|
||||
<tr>
|
||||
<th>One
|
||||
<th>Two
|
||||
<th>Three
|
||||
<th>Four
|
||||
</tr>
|
||||
<tr>
|
||||
<td>Red
|
||||
<td>Green
|
||||
<td>Blue
|
||||
<td>Green
|
||||
</tr>
|
||||
</table>
|
||||
</body>
|
||||
</html>
|
||||
48
mozilla/layout/html/tests/table/bugs/bug1164.html
Normal file
48
mozilla/layout/html/tests/table/bugs/bug1164.html
Normal file
@@ -0,0 +1,48 @@
|
||||
<HTML>
|
||||
<head>
|
||||
<!-- testcase: table_abs.htm -->
|
||||
<!-- Author: Michael Cobbley, Date: 10/19/98 -->
|
||||
<!-- CONFIDENTIAL AND PROPRIETARY TEST SCRIPT OF NETSCAPE COMMUNICATIONS
|
||||
CORPORATION
|
||||
Copyright © 1998 Netscape Communications Corporation. All Rights Reserved. Use
|
||||
of this Test Script is
|
||||
subject to the terms of the applicable license agreement from Netscape
|
||||
Communications Corporation. -->
|
||||
<!-- Purpose: HTML 3.2 and HTML 4.0 To test the alignment of objects. -->
|
||||
<!-- Expected result: The ABS middle tag should center the nested table in the
|
||||
middle of cell one. This tag will not work in IE 4-->
|
||||
|
||||
<meta name="Author" content="Mike Cobbley">
|
||||
<meta name="GENERATOR" content="Mozilla/4.5 [en]C-NSCP (WinNT; I)
|
||||
[Netscape]">
|
||||
</head>
|
||||
<body>
|
||||
|
||||
<table BORDER COLS=2 WIDTH="50%" >
|
||||
<tr>
|
||||
<td><table ALIGN="ABSMIDDLE" BORDER COLS=2 WIDTH="5%" >
|
||||
<tr>
|
||||
<td>hello</td>
|
||||
|
||||
<td>hello</td>
|
||||
</tr>
|
||||
|
||||
<tr>
|
||||
<td>hello</td>
|
||||
|
||||
<td>hello</td>
|
||||
</tr>
|
||||
</table></td>
|
||||
|
||||
<td>hello</td>
|
||||
</tr>
|
||||
|
||||
<tr>
|
||||
<td>hello</td>
|
||||
|
||||
<td>hello</td>
|
||||
</tr>
|
||||
</table>
|
||||
|
||||
</body>
|
||||
</html>
|
||||
71
mozilla/layout/html/tests/table/bugs/bug1188.html
Normal file
71
mozilla/layout/html/tests/table/bugs/bug1188.html
Normal file
@@ -0,0 +1,71 @@
|
||||
<form>
|
||||
<hr align=left width=600>
|
||||
<TABLE WIDTH=600>
|
||||
<TR>
|
||||
<TD COLSPAN=3 ALIGN=CENTER>
|
||||
<IMG
|
||||
SRC="http://home.netscape.com/images/ns_netcenter_bar_new.gif" WIDTH=579
|
||||
HEIGHT=42 BORDER=0 ALT=Netcenter>
|
||||
</TD>
|
||||
</TR>
|
||||
<TR>
|
||||
<TD COLSPAN=3 ALIGN=CENTER HEIGHT=55 BGCOLOR="#99cccc">
|
||||
<FONT FACE=Arial SIZE=-1><B>Search the Web with</B></FONT>
|
||||
<SELECT NAME=cp>
|
||||
<OPTION VALUE="Netscape">Netscape
|
||||
</SELECT><INPUT SIZE=30 NAME=searchstring> <INPUT TYPE=submit
|
||||
VALUE=Search><BR>
|
||||
<small><A
|
||||
HREF="http://info.netscape.com/fwd/hom10scla/http://exciteclassifieds.netscape.c
|
||||
om/cgi-cls/display.exe?partner=netcenter&path=class&template=none&">Classifieds<
|
||||
/A> <A HREF="/escapes/search/netsearchv0.html?cp=hom10snet">Net
|
||||
Search</A> <A HREF="/directory/index.html?cp=hom10sdir">Find Web
|
||||
Sites</A>
|
||||
<A HREF="/netcenter/cool.html?cp=hom10scul">What's
|
||||
Cool</A> <A HREF="/netcenter/new.html?cp=hom10snew">What's New</A>
|
||||
<A HREF="/netcenter/whitepages.html?cp=hom10swhp">People Finder</A> <A
|
||||
HREF="/netcenter/yellowpages.html?cp=hom10sylp">Yellow Pages</A>
|
||||
</small>
|
||||
</TD>
|
||||
</TR>
|
||||
<TR>
|
||||
<TD ALIGN=CENTER WIDTH=135><A
|
||||
HREF="/computing/download/index.html?cp=hom10prt1"><FONT SIZE=2 FACE=Arial
|
||||
COLOR="#CC0033">Download Netscape Communicator 4.5</FONT></A><!-- Kipp, this is
|
||||
the spot --></TD><TD ALIGN=CENTER WIDTH=230>
|
||||
<A
|
||||
HREF="/event.ng/Type=click&RunID=6029&ProfileID=857&AdID=5212&GroupID=335&Family
|
||||
ID=1&TagValues=888.895.909&Redirect=http:%2F%2Fwww.consumerinfo.com%2Fn-cgi%2Fin
|
||||
dex.pl%3F00620001"><!-- MID-T11 --><IMG
|
||||
SRC="/inserts/images/coninf_250ihn_eyes_ad.gif" ALT="[Click Here]" WIDTH=230
|
||||
HEIGHT=33 BORDER=1><BR><FONT SIZE=1>Click Here!</FONT></A><!-- END-T11 --><BR>
|
||||
</TD><TD ALIGN=CENTER WIDTH=135><A
|
||||
HREF="/download/su1.html?cp=hom10prt2"><FONT SIZE=2 FACE=Arial
|
||||
COLOR="#0066FF">Hassle-Free Upgrades</FONT></A>
|
||||
</TD>
|
||||
</TR>
|
||||
<TR>
|
||||
<TD COLSPAN=3 ALIGN=CENTER>
|
||||
<A
|
||||
HREF="http://info.netscape.com/fwd/hom10ycon/http://contact.netscape.com/contact
|
||||
/"><FONT SIZE=2 COLOR="#0066FF"
|
||||
FACE=Arial><B>Contact</B></A></FONT> : <small><A
|
||||
HREF="http://info.netscape.com/fwd/hom10yadb/http://contact.netscape.com/contact
|
||||
/">Address Book</A> - <A
|
||||
HREF="http://form.netscape.com/directory/cgi-bin/community.cgi?cp=hom10ydis&SRC=
|
||||
PROCOM">Discussions</A> - <A
|
||||
HREF=http://info.netscape.com/fwd/hom10yaim/http://www.newaol.com/aim/netscape/a
|
||||
db00.html>Instant Messenger</A> - <A
|
||||
HREF="/qwest/long_distance/index.html?cp=hom10yqst">Long Distance</A> - <A
|
||||
HREF="http://info.netscape.com/fwd/hom10ymem/http://form.netscape.com/members/in
|
||||
dex.html">Members</A> - <A
|
||||
HREF=http://info.netscape.com/fwd/hom10ymal/http://webmail.netscape.com>WebMail<
|
||||
/A></small>
|
||||
</TD>
|
||||
</TR>
|
||||
<TR><TD COLSPAN=4 BGCOLOR="#99cccc">
|
||||
<table BORDER=0 cellspacing=0 cellpadding=0><tr><td height=1></td></tr>
|
||||
</table>
|
||||
</TD></TR>
|
||||
</TABLE>
|
||||
</form>
|
||||
30
mozilla/layout/html/tests/table/bugs/bug1220.html
Normal file
30
mozilla/layout/html/tests/table/bugs/bug1220.html
Normal file
@@ -0,0 +1,30 @@
|
||||
<HTML><BODY>
|
||||
|
||||
<TABLE CELLPADDING=0 CELLSPACING=0 WIDTH=602 BORDER=1>
|
||||
<TR>
|
||||
<TD COLSPAN="2" ROWSPAN=2 VALIGN=TOP BGCOLOR="#FFFFFF">
|
||||
<IMG
|
||||
src="http://register.microsoft.com/library/images/gifs/regwiz/wiz438sidebar.gif"
|
||||
ALT="" BORDER=0>
|
||||
</TD>
|
||||
</TR>
|
||||
|
||||
<!-- RICK: this is a parser problem Remove the script tag and the content
|
||||
doesn't get ejected from the table. -->
|
||||
<SCRIPT LANGUAGE=javascript>
|
||||
<!--
|
||||
function handleTrigger()
|
||||
{
|
||||
if (event.ctrlKey == true && event.shiftKey == true)
|
||||
document.all("E").value = "1";
|
||||
}
|
||||
document.onclick = handleTrigger;
|
||||
//-->
|
||||
</SCRIPT>
|
||||
|
||||
<TR>
|
||||
<TD COLSPAN=6 HEIGHT="45" ALIGN=RIGHT>xxx</TD>
|
||||
</TR>
|
||||
|
||||
</TABLE>
|
||||
</BODY></HTML>
|
||||
15
mozilla/layout/html/tests/table/bugs/bug1224.html
Normal file
15
mozilla/layout/html/tests/table/bugs/bug1224.html
Normal file
@@ -0,0 +1,15 @@
|
||||
<HEAD> and the page works.)
|
||||
|
||||
<html><head></head><body>
|
||||
<table border="1">
|
||||
<tr>
|
||||
<td>img-cap</td>
|
||||
<td rowspan="2">
|
||||
img-features<br>
|
||||
<!-- HEAD breaks the table -->
|
||||
<HEAD>
|
||||
img-holidays<br>
|
||||
</td></tr>
|
||||
<tr><td> img-projo.com </td></tr>
|
||||
</table>
|
||||
</body></html>
|
||||
18
mozilla/layout/html/tests/table/bugs/bug1261.html
Normal file
18
mozilla/layout/html/tests/table/bugs/bug1261.html
Normal file
@@ -0,0 +1,18 @@
|
||||
<html>
|
||||
<body>
|
||||
|
||||
<table border=5 bgcolor="#000000" cellpadding=1 cellspacing=0 hspace=2 vspace=2
|
||||
width=200 align=right>
|
||||
<tr><td>
|
||||
<table border=5 cellpadding=1 cellspacing=0 xwidth="100%">
|
||||
<tr align=center>
|
||||
<td bgcolor="#ffffcc">
|
||||
|
||||
xxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxQ
|
||||
</td>
|
||||
</tr>
|
||||
</table>
|
||||
</td></tr></table>
|
||||
|
||||
</body>
|
||||
</html
|
||||
55
mozilla/layout/html/tests/table/bugs/bug1296.html
Normal file
55
mozilla/layout/html/tests/table/bugs/bug1296.html
Normal file
@@ -0,0 +1,55 @@
|
||||
<BODY>
|
||||
<TABLE>
|
||||
<TR>
|
||||
<td>Let's put some space in here!</td>
|
||||
<TD>
|
||||
<TABLE>
|
||||
<TR>
|
||||
<TD>
|
||||
<TABLE>
|
||||
<TR
|
||||
BACKGROUND="http://my.netscape.com/mys/images/contact/90percent2x2screen.gif">
|
||||
<TD><IMG SRC="http://my.netscape.com/mys/images/w.gif" WIDTH=4
|
||||
HEIGHT=1><IMG
|
||||
SRC=http://my.netscape.com/mys/images/contact/contact_cookie_tb_yes.gif
|
||||
contact_cookie_tb_no.gif USEMAP="#toolbar" WIDTH=436 HEIGHT=35 ALT="button
|
||||
palette" BORDER=0 VSPACE=5 ISMAP>
|
||||
|
||||
<MAP NAME="toolbar">
|
||||
<AREA SHAPE=RECT COORDS="0,0,41,35" HREF="mailto:">
|
||||
<AREA SHAPE=RECT COORDS="41,0,124,35"
|
||||
HREF="http://form.netscape.com/directory/html/no_javascript.html"
|
||||
onClick="open_wname('http://my.netscape.com/mys/contact/comingsoon.html','search
|
||||
'); return false;">
|
||||
|
||||
<AREA SHAPE=RECT COORDS="124,0,164,35"
|
||||
HREF="/setup_frameset.tmpl?services=addressbook&mn=NO&dest=/contact/index.tmpl">
|
||||
<AREA SHAPE=RECT COORDS="164,0,222,35"
|
||||
HREF="http://form.netscape.com/directory/html/no_javascript.html"
|
||||
onClick="open_wname('http://form.netscape.com/directory/lookup/html/search_frame
|
||||
set.html','mdsearch'); return false;">
|
||||
<AREA SHAPE=RECT COORDS="309,0,352,35"
|
||||
HREF="http://ureg.netscape.com/iiop/UReg2/login/login?U2_SOURCE=ADDRESSBOOK&U2_E
|
||||
NDURL=http://home.netscape.com&U2_EXITURL=http://home.netscape.com&U2_BROWSER_OK
|
||||
=true&U2_LOGOUT=true">
|
||||
<AREA SHAPE=RECT COORDS="352,0,411,35"
|
||||
HREF="/setup_frameset.tmpl?services=addressbook&mn=NO&dest=/contact/index.tmpl">
|
||||
|
||||
<AREA SHAPE=RECT COORDS="309,0,352,35"
|
||||
HREF="http://ureg.netscape.com/iiop/UReg2/login/login?U2_SOURCE=ADDRESSBOOK&U2_E
|
||||
NDURL=http://contact.netscape.com/contact/&U2_EXITURL=http://home.netscape.com&U
|
||||
2_BROWSER_OK=true">
|
||||
<AREA SHAPE=RECT COORDS="352,0,411,35"
|
||||
HREF="http://ureg.netscape.com/iiop/UReg2/entrypoint/dispatch?U2_SOURCE=ADDRESSB
|
||||
OOK&U2_NEW_ENDURL=http://contact.netscape.com/setup_frameset.tmpl//&services=add
|
||||
ressbook//&mn=NO//&dest=/contact/index.tmpl&U2_EXITURL=http://home.netscape.com&
|
||||
U2_BROWSER_OK=true">
|
||||
<AREA SHAPE=RECT COORDS="411,0,436,35"
|
||||
HREF="http://my.netscape.com/mys/contact/help.html">
|
||||
</MAP>
|
||||
|
||||
|
||||
</td></tr></table>
|
||||
</td></tr></table>
|
||||
</td></tr></table>
|
||||
</body>
|
||||
34
mozilla/layout/html/tests/table/bugs/bug1318.html
Normal file
34
mozilla/layout/html/tests/table/bugs/bug1318.html
Normal file
@@ -0,0 +1,34 @@
|
||||
<TABLE BORDER=0 ALIGN=CENTER CELLPADDING=1 CELLSPACING=0>
|
||||
<FORM METHOD=POST ACTION="http://poll.cnn.com/poll?53061">
|
||||
<INPUT TYPE=HIDDEN NAME="Poll" VALUE="5306">
|
||||
<!-- Question 1 -->
|
||||
<TR>
|
||||
<TD ALIGN=CENTER COLSPAN=4>
|
||||
<INPUT TYPE=HIDDEN NAME="Question" VALUE="1"><BR>
|
||||
<FONT FACE="arial,helvetica,sans-serif" SIZE="3">The Supreme Court says
|
||||
Wisconsin can continue using tuition vouchers to help poor parents send their
|
||||
children to church-run schools. What's your stand? <BR><BR></FONT>
|
||||
</TD>
|
||||
</TR>
|
||||
<TR>
|
||||
<TD align=right ><FONT FACE="arial,helvetica,sans-serif" SIZE="2">
|
||||
I agree with the program</FONT>
|
||||
</TD>
|
||||
<TD align=left ><INPUT TYPE=RADIO NAME="Answer5307" VALUE=1></TD></TR><TR><TD
|
||||
align=right ><FONT FACE="arial,helvetica,sans-serif" SIZE="2">
|
||||
I think vouchers are wrong</FONT>
|
||||
</TD>
|
||||
<TD align=left ><INPUT TYPE=RADIO NAME="Answer5307" VALUE=2></TD>
|
||||
</TR>
|
||||
<!-- /end Question 1 -->
|
||||
<TR>
|
||||
<TD ALIGN=CENTER COLSPAN=2>
|
||||
<A HREF="http://poll.cnn.com/poll?53061"><FONT FACE="arial,helvetica,sans-serif"
|
||||
SIZE="-1">View Results</A>
|
||||
</TD>
|
||||
<TD ALIGN=CENTER COLSPAN=2>
|
||||
<INPUT TYPE=SUBMIT VALUE="vote">
|
||||
</TD>
|
||||
</FORM>
|
||||
</TR>
|
||||
</TABLE>
|
||||
68
mozilla/layout/html/tests/table/bugs/bug1430.html
Normal file
68
mozilla/layout/html/tests/table/bugs/bug1430.html
Normal file
@@ -0,0 +1,68 @@
|
||||
<BODY>
|
||||
Here's the HTML test case, extracted from the Netcenter Address Book page. At
|
||||
the top of the address book is a "tool bar" with options like "New,"
|
||||
"Directory," "Sign-out," "Customize," etc. These are areas in a client side
|
||||
image map. You should be able to click on these areas of the map, including the
|
||||
areas on the right side of the map. However, in NGLayout, the right side of the
|
||||
map isn't "clickable" -- the cursor doesn't change and the link cannot be
|
||||
"activated."
|
||||
|
||||
I think somewhere we're miscalculating where the imagemap's areas are, because
|
||||
the areas on the left still work, although clicking on them sometimes crashes.
|
||||
It's as though NGLayout thinks the Imagemap areas are located a few
|
||||
hundred pixels to the left.
|
||||
<BR>
|
||||
<TABLE>
|
||||
<TR>
|
||||
<td>Let's put some space in here!</td>
|
||||
<TD>
|
||||
<TABLE>
|
||||
<TR>
|
||||
<TD>
|
||||
<TABLE>
|
||||
<TR
|
||||
BACKGROUND="http://my.netscape.com/mys/images/contact/90percent2x2screen.gif">
|
||||
<TD><IMG SRC="http://my.netscape.com/mys/images/w.gif" WIDTH=4
|
||||
HEIGHT=1><IMG
|
||||
SRC=http://my.netscape.com/mys/images/contact/contact_cookie_tb_yes.gif
|
||||
contact_cookie_tb_no.gif USEMAP="#toolbar" WIDTH=436 HEIGHT=35 ALT="button
|
||||
palette" BORDER=0 VSPACE=5 ISMAP>
|
||||
|
||||
<MAP NAME="toolbar">
|
||||
<AREA SHAPE=RECT COORDS="0,0,41,35" HREF="mailto:">
|
||||
<AREA SHAPE=RECT COORDS="41,0,124,35"
|
||||
HREF="http://form.netscape.com/directory/html/no_javascript.html"
|
||||
onClick="open_wname('http://my.netscape.com/mys/contact/comingsoon.html','search
|
||||
'); return false;">
|
||||
|
||||
<AREA SHAPE=RECT COORDS="124,0,164,35"
|
||||
HREF="/setup_frameset.tmpl?services=addressbook&mn=NO&dest=/contact/index.tmpl">
|
||||
<AREA SHAPE=RECT COORDS="164,0,222,35"
|
||||
HREF="http://form.netscape.com/directory/html/no_javascript.html"
|
||||
onClick="open_wname('http://form.netscape.com/directory/lookup/html/search_frame
|
||||
set.html','mdsearch'); return false;">
|
||||
<AREA SHAPE=RECT COORDS="309,0,352,35"
|
||||
HREF="http://ureg.netscape.com/iiop/UReg2/login/login?U2_SOURCE=ADDRESSBOOK&U2_E
|
||||
NDURL=http://home.netscape.com&U2_EXITURL=http://home.netscape.com&U2_BROWSER_OK
|
||||
=true&U2_LOGOUT=true">
|
||||
<AREA SHAPE=RECT COORDS="352,0,411,35"
|
||||
HREF="/setup_frameset.tmpl?services=addressbook&mn=NO&dest=/contact/index.tmpl">
|
||||
|
||||
<AREA SHAPE=RECT COORDS="309,0,352,35"
|
||||
HREF="http://ureg.netscape.com/iiop/UReg2/login/login?U2_SOURCE=ADDRESSBOOK&U2_E
|
||||
NDURL=http://contact.netscape.com/contact/&U2_EXITURL=http://home.netscape.com&U
|
||||
2_BROWSER_OK=true">
|
||||
<AREA SHAPE=RECT COORDS="352,0,411,35"
|
||||
HREF="http://ureg.netscape.com/iiop/UReg2/entrypoint/dispatch?U2_SOURCE=ADDRESSB
|
||||
OOK&U2_NEW_ENDURL=http://contact.netscape.com/setup_frameset.tmpl//&services=add
|
||||
ressbook//&mn=NO//&dest=/contact/index.tmpl&U2_EXITURL=http://home.netscape.com&
|
||||
U2_BROWSER_OK=true">
|
||||
<AREA SHAPE=RECT COORDS="411,0,436,35"
|
||||
HREF="http://my.netscape.com/mys/contact/help.html">
|
||||
</MAP>
|
||||
|
||||
|
||||
</td></tr></table>
|
||||
</td></tr></table>
|
||||
</td></tr></table>
|
||||
</body>
|
||||
5
mozilla/layout/html/tests/table/bugs/bug1474.html
Normal file
5
mozilla/layout/html/tests/table/bugs/bug1474.html
Normal file
@@ -0,0 +1,5 @@
|
||||
<html><body>
|
||||
<TABLE WIDTH="80%" BORDER=1>
|
||||
<TR><td>one</td><td>two</td><td>three</td><td>four!</td></TR>
|
||||
</TABLE>
|
||||
</body></html>
|
||||
26
mozilla/layout/html/tests/table/bugs/bug1647.html
Normal file
26
mozilla/layout/html/tests/table/bugs/bug1647.html
Normal file
@@ -0,0 +1,26 @@
|
||||
<HTML><BODY BGCOLOR="#ffffff" LINK="#000099" VLINK="#660099" ALINK="#CC0033" TEXT="#000000">
|
||||
<TABLE CELLPADDING=0 CELLSPACING=0 BORDER=0>
|
||||
<TR VALIGN="TOP">
|
||||
<TD ROWSPAN=2 bgcolor="#CCCC9C">xxxxxxxxxxxx<BR></TD>
|
||||
<TD bgcolor=lightgrey WIDTH="1" HEIGHT="227"><hr WIDTH="1" HEIGHT="227" ALT="" BORDER="0"><BR></TD>
|
||||
<TD bgcolor=orange WIDTH="89" HEIGHT="234"><hr WIDTH="89" HEIGHT="68" ALT="" BORDER="0">
|
||||
<BR><hr WIDTH="89" HEIGHT="90" ALT="" BORDER="0"><BR><hr WIDTH="89" HEIGHT="68" ALT="" BORDER="0"><BR></TD>
|
||||
</TR>
|
||||
<TR>
|
||||
<TD colspan=5 valign=top><IMG src="http://home.netscape.com/holiday/images/sell_text1a.gif";
|
||||
WIDTH="446" HEIGHT="56" ALT="" BORDER="0"><BR></TD>
|
||||
</TR>
|
||||
<TR>
|
||||
<TD rowspan=2 valign=top><IMG src="http://home.netscape.com/holiday/images/sell_side.gif";
|
||||
WIDTH="152" HEIGHT="291" ALT="" BORDER="0"><BR></TD><TD colspan=5>
|
||||
<IMG src="http://home.netscape.com/holiday/images/sell_text2.gif"; WIDTH="446"
|
||||
HEIGHT="118" ALT="" BORDER="0"><BR></TD>
|
||||
</TR>
|
||||
<TR>
|
||||
<TD colspan=5><IMG src="http://home.netscape.com/holiday/images/sell_text3.gif";
|
||||
WIDTH="446" HEIGHT="173" ALT="" BORDER="0"><BR></TD>
|
||||
</TR>
|
||||
</TABLE>
|
||||
|
||||
</BODY>
|
||||
</HTML>
|
||||
60
mozilla/layout/html/tests/table/bugs/bug1725.html
Normal file
60
mozilla/layout/html/tests/table/bugs/bug1725.html
Normal file
@@ -0,0 +1,60 @@
|
||||
<html><body>
|
||||
<TABLE Border=0 Cellpadding=0 Cellspacing=0 bgcolor=pink>
|
||||
<TR>
|
||||
<TD COLSPAN=3 Width=600 Align=Left VAlign=Top bgcolor=yellow>1</TD>
|
||||
</TR>
|
||||
<TR>
|
||||
<TD ALIGN=LEFT Width=600 COLSPAN=3 bgcolor=red>2</TD>
|
||||
</TR>
|
||||
<TR>
|
||||
<TD Width=150 ROWSPAN=40 COLSPAN=1 Align=LEFT VAlign=TOP
|
||||
bgcolor=aqua>3</TD>
|
||||
</TR>
|
||||
<FORM action=/cyberhomes/templates/summary.cfm method="GET">
|
||||
<TR>
|
||||
<TD WIDTH=430 bgcolor=orange>
|
||||
<TABLE BORDER=0>
|
||||
<TR>
|
||||
<TD WIDTH=215><input type=submit VALUE="Submit Criteria"></TD>
|
||||
<TD align=left WIDTH=215>4</TD>
|
||||
</TR>
|
||||
</table>
|
||||
</TD>
|
||||
</TR>
|
||||
</FORM>
|
||||
<TR>
|
||||
<TD ALIGN=LEFT WIDTH=430 bgcolor=red>5</TD>
|
||||
</TR>
|
||||
<TR>
|
||||
<TD ALIGN=LEFT WIDTH=430 bgcolor=yellow>
|
||||
If you have entered your feature criteria,
|
||||
press the "Submit Criteria" button above.
|
||||
</TD>
|
||||
</TR>
|
||||
<TR>
|
||||
<TD ALIGN=LEFT WIDTH=430 bgcolor=lightgrey>6</TD>
|
||||
</TR>
|
||||
<TR>
|
||||
<TD ALIGN=LEFT WIDTH=430>
|
||||
If you want to do a radius search instead,
|
||||
press the "Radius Search" button.
|
||||
This will allow you to select a starting point
|
||||
and enter a radius with new feature criteria.
|
||||
</TD>
|
||||
</TR>
|
||||
<TR>
|
||||
<TD ALIGN=LEFT WIDTH=430>
|
||||
|
||||
</TD>
|
||||
</TR>
|
||||
<tr>
|
||||
<TD ALIGN=LEFT WIDTH=430>
|
||||
All information provided is deemed reliable but is not guaranteed and should be
|
||||
independently verified. The price shown may represent the top or bottom of a
|
||||
price range listing and not necessarily a fixed price offer.
|
||||
</TD>
|
||||
</TR>
|
||||
</TABLE>
|
||||
|
||||
</BODY>
|
||||
</HTML>
|
||||
10
mozilla/layout/html/tests/table/bugs/bug1800.html
Normal file
10
mozilla/layout/html/tests/table/bugs/bug1800.html
Normal file
@@ -0,0 +1,10 @@
|
||||
<table border>
|
||||
<tr><td>
|
||||
cell of outer table
|
||||
</td></tr>
|
||||
<tr><td>
|
||||
<table border>
|
||||
<tr><td> cell of nested table</td></tr>
|
||||
</table>
|
||||
</tr></td>
|
||||
</table>
|
||||
18
mozilla/layout/html/tests/table/bugs/bug1818-1.html
Normal file
18
mozilla/layout/html/tests/table/bugs/bug1818-1.html
Normal file
@@ -0,0 +1,18 @@
|
||||
<html>
|
||||
<head>
|
||||
</head>
|
||||
<body>
|
||||
|
||||
<TABLE BORDER=2 CELLSPACING=0 CELLPADDING=0 WIDTH="100%" height="50">
|
||||
|
||||
<TR>
|
||||
<TD WIDTH=400 BGCOLOR="#0000CC">
|
||||
|
||||
<TD WIDTH=6 BGCOLOR="#00CC00">
|
||||
|
||||
<TD BGCOLOR="#CC0000">
|
||||
|
||||
</TABLE>
|
||||
|
||||
</body>
|
||||
</html>
|
||||
21
mozilla/layout/html/tests/table/bugs/bug1818-2.html
Normal file
21
mozilla/layout/html/tests/table/bugs/bug1818-2.html
Normal file
@@ -0,0 +1,21 @@
|
||||
<html>
|
||||
<head>
|
||||
</head>
|
||||
<body>
|
||||
|
||||
<TABLE BORDER=2 CELLSPACING=0 CELLPADDING=0 WIDTH="100%" height="50">
|
||||
|
||||
<TR>
|
||||
<TD WIDTH=400 BGCOLOR="#0000CC"> </TD>
|
||||
|
||||
<TD WIDTH=6 BGCOLOR="#00CC00"> </TD>
|
||||
|
||||
<TD BGCOLOR="#CC0000"> </TD>
|
||||
|
||||
</TR>
|
||||
|
||||
</TABLE>
|
||||
|
||||
</body>
|
||||
</html>
|
||||
|
||||
18
mozilla/layout/html/tests/table/bugs/bug1818-3.html
Normal file
18
mozilla/layout/html/tests/table/bugs/bug1818-3.html
Normal file
@@ -0,0 +1,18 @@
|
||||
<html>
|
||||
<head>
|
||||
</head>
|
||||
<body>
|
||||
|
||||
<TABLE BORDER=2 CELLSPACING=0 CELLPADDING=0 WIDTH="100%" height="50">
|
||||
|
||||
<TR>
|
||||
<TD WIDTH=400 BGCOLOR="#0000CC">
|
||||
|
||||
<TD WIDTH=6 BGCOLOR="#00CC00">
|
||||
|
||||
<TD BGCOLOR="#CC0000">
|
||||
|
||||
</TABLE>
|
||||
|
||||
</body>
|
||||
</html>
|
||||
18
mozilla/layout/html/tests/table/bugs/bug1818-4.html
Normal file
18
mozilla/layout/html/tests/table/bugs/bug1818-4.html
Normal file
@@ -0,0 +1,18 @@
|
||||
<html>
|
||||
<head>
|
||||
</head>
|
||||
<body>
|
||||
|
||||
<TABLE BORDER=2 CELLSPACING=0 CELLPADDING=0 WIDTH="100%" height="50">
|
||||
|
||||
<TR>
|
||||
<TD WIDTH=400 BGCOLOR="#0000CC">
|
||||
|
||||
<TD WIDTH=6 BGCOLOR="#00CC00">
|
||||
|
||||
<TD BGCOLOR="#CC0000">
|
||||
|
||||
</TABLE>
|
||||
|
||||
</body>
|
||||
</html>
|
||||
11
mozilla/layout/html/tests/table/bugs/bug1818-5.html
Normal file
11
mozilla/layout/html/tests/table/bugs/bug1818-5.html
Normal file
@@ -0,0 +1,11 @@
|
||||
<TABLE BORDER=0 CELLSPACING=0 CELLPADDING=0 WIDTH="100%">
|
||||
|
||||
<TR>
|
||||
<TD WIDTH=400 BGCOLOR="#0000CC"> </TD>
|
||||
|
||||
<TD WIDTH=6 BGCOLOR="#00CC00"> </TD>
|
||||
|
||||
<TD BGCOLOR="#CC0000"> </TD>
|
||||
</TR>
|
||||
|
||||
</TABLE>
|
||||
11
mozilla/layout/html/tests/table/bugs/bug1818-6.html
Normal file
11
mozilla/layout/html/tests/table/bugs/bug1818-6.html
Normal file
@@ -0,0 +1,11 @@
|
||||
<TABLE BORDER=0 CELLSPACING=0 CELLPADDING=0 WIDTH="100%">
|
||||
|
||||
<TR>
|
||||
<TD WIDTH=400 BGCOLOR="#0000CC"></TD>
|
||||
|
||||
<TD WIDTH=6 BGCOLOR="#00CC00"></TD>
|
||||
|
||||
<TD BGCOLOR="#CC0000"></TD>
|
||||
</TR>
|
||||
|
||||
</TABLE>
|
||||
14
mozilla/layout/html/tests/table/bugs/bug1828.html
Normal file
14
mozilla/layout/html/tests/table/bugs/bug1828.html
Normal file
@@ -0,0 +1,14 @@
|
||||
<TABLE CELLSPACING=0 CELLPADDING=0 border>
|
||||
<TR ALIGN=LEFT VALIGN=TOP >
|
||||
<TD>
|
||||
<DT>
|
||||
Richard Pizzarro<rhp@netscape.com>
|
||||
</DT>
|
||||
</TD>
|
||||
</TR>
|
||||
<TR>
|
||||
<TD>
|
||||
Architect Rich's Home Page
|
||||
</TD>
|
||||
</TR>
|
||||
</TABLE>
|
||||
18
mozilla/layout/html/tests/table/bugs/bug2050.html
Normal file
18
mozilla/layout/html/tests/table/bugs/bug2050.html
Normal file
@@ -0,0 +1,18 @@
|
||||
<html><head></head><body>
|
||||
<!-- the BGCOLOR attribute is just to make the table breakage clear -->
|
||||
<table border="1" BGCOLOR="#ffcc00"><tr><td>
|
||||
<dl>
|
||||
|
||||
<FONT> <dt>Baz</dt> </FONT>
|
||||
<DD>foo foo foo foo foo foo foo foo foo</DD>
|
||||
|
||||
<!-- if either 1) the FONT tag, or
|
||||
2) the /FONT tag, or
|
||||
3) the DD tag
|
||||
is removed ... no problem ... i.e., no table breakage
|
||||
-->
|
||||
|
||||
</dl>
|
||||
|
||||
</td></tr></table>
|
||||
</body></html>
|
||||
24
mozilla/layout/html/tests/table/bugs/bug2065.html
Normal file
24
mozilla/layout/html/tests/table/bugs/bug2065.html
Normal file
@@ -0,0 +1,24 @@
|
||||
<HTML>
|
||||
<BODY>
|
||||
<TABLE BORDER WIDTH="100%">
|
||||
<TR>
|
||||
<TD WIDTH="50%">
|
||||
One
|
||||
</TD>
|
||||
<TD WIDTH="50%">
|
||||
<TABLE BORDER WIDTH="100%">
|
||||
<TR>
|
||||
<TD WIDTH="50%">
|
||||
Two
|
||||
</TD>
|
||||
<TD WIDTH="50%">
|
||||
Three
|
||||
</TD>
|
||||
</TR>
|
||||
</TABLE>
|
||||
</TD>
|
||||
</TR>
|
||||
</TABLE>
|
||||
</BODY>
|
||||
</HTML>
|
||||
|
||||
30
mozilla/layout/html/tests/table/bugs/bug2296.html
Normal file
30
mozilla/layout/html/tests/table/bugs/bug2296.html
Normal file
@@ -0,0 +1,30 @@
|
||||
<HTML>
|
||||
<BODY BGCOLOR="white">
|
||||
<TABLE WIDTH=600 CELLPADDING="0" CELLSPACING="0" BORDER="1">
|
||||
<TR>
|
||||
<TD COLSPAN="3">
|
||||
<TABLE BORDER="1" WIDTH="600" CELLSPACING="0" CELLPADDING="0">
|
||||
<TR>
|
||||
<TD WIDTH="120">
|
||||
<table width="100%" cellpadding=0 cellspacing=0 border=1>
|
||||
<tr bgcolor=red>
|
||||
<td>
|
||||
cell data
|
||||
<SCRIPT language="javascript"></SCRIPT>
|
||||
</TD>
|
||||
</tr>
|
||||
</table>
|
||||
</TD>
|
||||
</TR>
|
||||
</TABLE>
|
||||
</TD>
|
||||
</TR>
|
||||
<TR>
|
||||
<TD>
|
||||
cell data 2
|
||||
</td>
|
||||
|
||||
<!-- notice the missing close tags here: </TR></TABLE> -->
|
||||
|
||||
</body>
|
||||
</html>
|
||||
6
mozilla/layout/html/tests/table/bugs/bug2469.html
Normal file
6
mozilla/layout/html/tests/table/bugs/bug2469.html
Normal file
@@ -0,0 +1,6 @@
|
||||
<font face = "Helvetica, Arial">
|
||||
Blah, blah in Helvetica
|
||||
<table>
|
||||
<tr><td>Text here is in times, not Helvetica</td></tr>
|
||||
</table>
|
||||
</font>
|
||||
17
mozilla/layout/html/tests/table/bugs/bug2516.html
Normal file
17
mozilla/layout/html/tests/table/bugs/bug2516.html
Normal file
@@ -0,0 +1,17 @@
|
||||
<html>
|
||||
<body>
|
||||
<table border=1>
|
||||
<tr>
|
||||
<td valign=top>
|
||||
<table bgcolor=#ffcc99 border=0>
|
||||
<form action="http://www.dejanews.com/qs.xp" method="get">
|
||||
<tr align=left>
|
||||
<td bgcolor=#ff6600 nowrap>Find</td>
|
||||
<td>rick was here</td>
|
||||
</tr>
|
||||
</table>
|
||||
</td>
|
||||
</tr>
|
||||
</table>
|
||||
</body>
|
||||
</html>
|
||||
9
mozilla/layout/html/tests/table/bugs/bug2585.html
Normal file
9
mozilla/layout/html/tests/table/bugs/bug2585.html
Normal file
@@ -0,0 +1,9 @@
|
||||
<html>
|
||||
<body>
|
||||
<table align=left border=2>
|
||||
<tr><td>
|
||||
Testing 123
|
||||
</td></tr>
|
||||
</table>
|
||||
</body>
|
||||
</html>
|
||||
17
mozilla/layout/html/tests/table/bugs/bug2757.html
Normal file
17
mozilla/layout/html/tests/table/bugs/bug2757.html
Normal file
@@ -0,0 +1,17 @@
|
||||
<html><head></head><body>
|
||||
<table border cellspacing=2>
|
||||
<tr>
|
||||
<td>Click name to see
|
||||
<td rowspan=2 bgcolor=00ff00>Mac Clbr Opt
|
||||
</tr>
|
||||
<tr>
|
||||
<B> <!-- these bold tags break the table -->
|
||||
<td>Guilty
|
||||
</B>
|
||||
</tr>
|
||||
<tr>
|
||||
<td>
|
||||
<td bgcolor=yellow>L C
|
||||
</tr>
|
||||
</table>
|
||||
</body></html>
|
||||
15
mozilla/layout/html/tests/table/bugs/bug2962.html
Normal file
15
mozilla/layout/html/tests/table/bugs/bug2962.html
Normal file
@@ -0,0 +1,15 @@
|
||||
<table border="2" width="300" cellpadding="2" cellspacing="0"><tr>
|
||||
<td align="center" bgcolor="#FFFF00"><center>
|
||||
<a
|
||||
href="/event.ng/Type=click&ProfileID=1749&RunID=5792&AdID=2503&GroupID=315&Famil
|
||||
yID=345&TagValues=199.273.2191&Redirect=http:%2f%2fwww.acmecity.com"
|
||||
target="_new"><img
|
||||
src="http://ng3.ads.warnerbros.com/Archive/WBpromos/acmecity/acmeicon-35.gif"
|
||||
border=0 align=left></a>
|
||||
<a
|
||||
href="/event.ng/Type=click&ProfileID=1749&RunID=5792&AdID=2503&GroupID=315&Famil
|
||||
yID=345&TagValues=199.273.2191&Redirect=http:%2f%2fwww.acmecity.com"
|
||||
target="_new"><FONT COLOR="#000000">Free Homepage! Free Email!<BR>It's all
|
||||
yours at ACMEcity!</font></A></center></TD>
|
||||
</tr></table>
|
||||
|
||||
22
mozilla/layout/html/tests/table/bugs/bug3037-1.html
Normal file
22
mozilla/layout/html/tests/table/bugs/bug3037-1.html
Normal file
@@ -0,0 +1,22 @@
|
||||
<?xml version="1.0"?>
|
||||
<window xmlns:html="http://www.w3.org/TR/REC-html40">
|
||||
<window xmlns:xul
|
||||
="http://www.mozilla.org/keymaster/gatekeeper/there.is.only.xul">
|
||||
<!DOCTYPE window>
|
||||
|
||||
<window>
|
||||
<xul:toolbox>
|
||||
<xul:toolbar>
|
||||
<html:span style="display: table-cell">
|
||||
<html:button cmd="nsCmd:BrowserBack"
|
||||
style="background-color:rgb(192,192,192);">
|
||||
<html:img
|
||||
src="resource:/res/toolbar/TB_Back.gif"/><html:BR/>Back
|
||||
</html:button>
|
||||
</html:span>
|
||||
<html:span style="display: table-cell">
|
||||
<html:input style="width:325px;"></html:input>
|
||||
</html:span>
|
||||
</xul:toolbar>
|
||||
</xul:toolbox>
|
||||
</window>
|
||||
6
mozilla/layout/html/tests/table/bugs/bug3037-2.html
Normal file
6
mozilla/layout/html/tests/table/bugs/bug3037-2.html
Normal file
@@ -0,0 +1,6 @@
|
||||
<html>
|
||||
<body>
|
||||
<span style="display: table-cell">foo</span>
|
||||
<span style="display: table-cell">bar</span>
|
||||
</body>
|
||||
</html>
|
||||
29
mozilla/layout/html/tests/table/bugs/bug3105.html
Normal file
29
mozilla/layout/html/tests/table/bugs/bug3105.html
Normal file
@@ -0,0 +1,29 @@
|
||||
<HTML>
|
||||
<head>
|
||||
|
||||
</head>
|
||||
<body>
|
||||
|
||||
<table BORDER COLS=2 WIDTH="50%" >
|
||||
<tr>
|
||||
<td><table ALIGN="MIDDLE" BORDER COLS=2 WIDTH="5%" >
|
||||
<tr>
|
||||
<td>hello</td>
|
||||
|
||||
<td>hello</td>
|
||||
</tr>
|
||||
|
||||
<tr>
|
||||
<td>hello</td>
|
||||
|
||||
<td>hello</td>
|
||||
</tr>
|
||||
</table></td>
|
||||
|
||||
<td>hello</td>
|
||||
</tr>
|
||||
|
||||
</table>
|
||||
|
||||
</body>
|
||||
</html>
|
||||
32
mozilla/layout/html/tests/table/bugs/bug3260.html
Normal file
32
mozilla/layout/html/tests/table/bugs/bug3260.html
Normal file
@@ -0,0 +1,32 @@
|
||||
<html>
|
||||
<body>
|
||||
<table border=1 width=300>
|
||||
<tr align=center>
|
||||
<td>One</td>
|
||||
<td>Two</td>
|
||||
</tr>
|
||||
</table>
|
||||
<table border=1 width=300>
|
||||
<tr align=right>
|
||||
<td>One</td>
|
||||
<td>Two</td>
|
||||
</tr>
|
||||
</table>
|
||||
<table border=1>
|
||||
<tr align=center>
|
||||
<td>One</td>
|
||||
<td>Two</td>
|
||||
</tr>
|
||||
<tr>
|
||||
<td>----------Long One------------</td>
|
||||
<td>----------Long Two------------</td>
|
||||
</tr>
|
||||
</table>
|
||||
<table border=1 width=100%>
|
||||
<tr align=center>
|
||||
<td>One</td>
|
||||
<td>Two</td>
|
||||
</tr>
|
||||
</table>
|
||||
</body>
|
||||
</html>
|
||||
12
mozilla/layout/html/tests/table/bugs/bug3263.html
Normal file
12
mozilla/layout/html/tests/table/bugs/bug3263.html
Normal file
@@ -0,0 +1,12 @@
|
||||
<html>
|
||||
<body>
|
||||
|
||||
<TABLE border=1>
|
||||
<THEAD>
|
||||
<TR><TH>thead cell
|
||||
<tbody>
|
||||
<TR><TD>tbody cell
|
||||
</TABLE>
|
||||
|
||||
</body>
|
||||
</html>
|
||||
8
mozilla/layout/html/tests/table/bugs/bug3309-1.html
Normal file
8
mozilla/layout/html/tests/table/bugs/bug3309-1.html
Normal file
@@ -0,0 +1,8 @@
|
||||
<html><body><div align="center"><center><table BGCOLOR="#000000"
|
||||
CELLSPACING="5" width="80%" cellpadding="5"><TBODY>
|
||||
<tr><td width="30" BGCOLOR="#FFCC33" align="right">1<td BGCOLOR="#FFCC33"><a
|
||||
href="../SOUNDTRACK - LOLA RENNT - 01 - BELIEVE.MP3">Believe</a><td
|
||||
BGCOLOR="#FFCC33" width="41" align="right">4:53</tr>
|
||||
</TBODY></table></font><div align="right"><br><br><A HREF="../index.html"><font
|
||||
SIZE="3" FACE="Arial" COLOR="#FFCC33">Back to the
|
||||
index...</font></A></div></center></div></body></html>
|
||||
5
mozilla/layout/html/tests/table/bugs/bug3309-2.html
Normal file
5
mozilla/layout/html/tests/table/bugs/bug3309-2.html
Normal file
@@ -0,0 +1,5 @@
|
||||
<body>
|
||||
<center>
|
||||
<table border=1><tr><td>foo</tr></table>
|
||||
</center>
|
||||
</body>
|
||||
9
mozilla/layout/html/tests/table/bugs/bug3718.html
Normal file
9
mozilla/layout/html/tests/table/bugs/bug3718.html
Normal file
@@ -0,0 +1,9 @@
|
||||
<html><body>
|
||||
<table border=3 cellspacing=0 cellpadding=0>
|
||||
<tr>
|
||||
<td>
|
||||
<table border=1 cellspacing=0 cellpadding=0>
|
||||
Family Essentials
|
||||
<tr>
|
||||
<td>foo</td></tr></table></td></tr></table>
|
||||
</body></html>
|
||||
15
mozilla/layout/html/tests/table/bugs/bug4284.html
Normal file
15
mozilla/layout/html/tests/table/bugs/bug4284.html
Normal file
@@ -0,0 +1,15 @@
|
||||
this table should be center aligned
|
||||
<BR>
|
||||
<table align=center border=1>
|
||||
<tr><td>foo</td></tr>
|
||||
</table>
|
||||
|
||||
this div should be center aligned with an image and a table centered in it
|
||||
<BR>
|
||||
<DIV ALIGN=CENTER>
|
||||
<IMG width=50 height=50 SRC="file://s:/mozilla/dist/win32_d.obj/bin/res/samples/raptor.jpg">
|
||||
<TABLE border=1 WIDTH=600>
|
||||
<TR><TD>foo</TD></TR>
|
||||
</TABLE>
|
||||
</DIV>
|
||||
|
||||
1
mozilla/layout/html/tests/table/bugs/bug4294.css
Normal file
1
mozilla/layout/html/tests/table/bugs/bug4294.css
Normal file
@@ -0,0 +1 @@
|
||||
p {font-weight: bold;}
|
||||
28
mozilla/layout/html/tests/table/bugs/bug4294.html
Normal file
28
mozilla/layout/html/tests/table/bugs/bug4294.html
Normal file
@@ -0,0 +1,28 @@
|
||||
<!doctype HTML PUBLIC "-//W3C//DTD HTML 4.0 Transitional//EN" "http://www.w3.org/TR/REC-html40/loose.dtd">
|
||||
<html>
|
||||
<head>
|
||||
<title>test</title>
|
||||
<link rel=stylesheet href="bug4294.css" media=screen type="text/css">
|
||||
</head>
|
||||
<body>
|
||||
<p>A paragraph of text</p>
|
||||
<table border=1>
|
||||
<thead>
|
||||
<tr><th>column 1<th>column 2<th>column 3<th>column 4
|
||||
</thead>
|
||||
<tbody style="overflow: auto; height: 200px;">
|
||||
<tr><td>one<td>two<td>three<td>four
|
||||
<tr><td>one<td>two<td>three<td>four
|
||||
<tr><td>one<td>two<td>three<td>four
|
||||
<tr><td>one<td>two<td>three<td>four
|
||||
<tr><td>one<td>two<td>three<td>four
|
||||
<tr><td>one<td>two<td>three<td>four
|
||||
<tr><td>one<td>two<td>three<td>four
|
||||
<tr><td>one<td>two<td>three<td>four
|
||||
<tr><td>one<td>two<td>three<td>four
|
||||
<tr><td>one<td>two<td>three<td>four
|
||||
<tr><td>one<td>two<td>three<td>four
|
||||
<tr><td>one<td>two<td>three<td>four
|
||||
<tr><td>one<td>two<td>three<td>four
|
||||
</tbody>
|
||||
</table>
|
||||
27
mozilla/layout/html/tests/table/bugs/bug4382.html
Normal file
27
mozilla/layout/html/tests/table/bugs/bug4382.html
Normal file
@@ -0,0 +1,27 @@
|
||||
The select should not contain blank items
|
||||
<BR>
|
||||
<FORM NAME="SearchForm" ACTION="http://www.att.net/cgi-bin/srchall"
|
||||
METHOD="GET">
|
||||
<B>Search</B>
|
||||
<INPUT TYPE="text" SIZE="18" NAME="string" MAXLENGTH="40">
|
||||
<SELECT NAME="engine">
|
||||
<OPTION VALUE="EX" SELECTED>Excite
|
||||
<OPTION VALUE="IS"><!-- (#) -->Infoseek
|
||||
<OPTION VALUE="LY"><!-- (#) -->Lycos
|
||||
</SELECT>
|
||||
</form>
|
||||
|
||||
<BR>
|
||||
The select should not contain blank items
|
||||
<BR>
|
||||
<form>
|
||||
<SELECT NAME="target" ONCHANGE="GoUrl(this)">
|
||||
<OPTION VALUE="/goto-sony" selected>Quick Link</OPTION>
|
||||
<OPTION
|
||||
VALUE="/goto-sony">.........................................................</OP
|
||||
TION>
|
||||
<OPTION VALUE="/goto-sca">Sony Corporation of America</OPTION>
|
||||
<OPTION VALUE="/goto-press"> -- Press Releases</OPTION>
|
||||
<OPTION VALUE="/goto-jobs"> -- Jobs</OPTION>
|
||||
<OPTION VALUE="/goto-ads"> -- How to Advertise@Sony</OPTION>
|
||||
</form>
|
||||
7
mozilla/layout/html/tests/table/bugs/bug4429.html
Normal file
7
mozilla/layout/html/tests/table/bugs/bug4429.html
Normal file
@@ -0,0 +1,7 @@
|
||||
<FORM METHOD="GET" ACTION="http://search.yahoo.com/bin/search" NAME="searchform">
|
||||
<TABLE border=1>
|
||||
<TR>
|
||||
<td> <INPUT TYPE=HIDDEN NAME="zip2" VALUE = "">foo</td></tr>
|
||||
</table>
|
||||
<input type=submit name=submit>
|
||||
</form>
|
||||
7
mozilla/layout/html/tests/table/bugs/bug641-1.html
Normal file
7
mozilla/layout/html/tests/table/bugs/bug641-1.html
Normal file
@@ -0,0 +1,7 @@
|
||||
<html>
|
||||
<body>
|
||||
<table bgcolor=red height=300 width=100%><tr><td>
|
||||
Foo
|
||||
</td></tr></table>
|
||||
</body>
|
||||
</html>
|
||||
7
mozilla/layout/html/tests/table/bugs/bug641-2.html
Normal file
7
mozilla/layout/html/tests/table/bugs/bug641-2.html
Normal file
@@ -0,0 +1,7 @@
|
||||
<html>
|
||||
<body>
|
||||
<table bgcolor=red height=100% width=100%><tr><td>
|
||||
Foo
|
||||
</td></tr></table>
|
||||
</body>
|
||||
</html>
|
||||
22
mozilla/layout/html/tests/table/bugs/bug647.html
Normal file
22
mozilla/layout/html/tests/table/bugs/bug647.html
Normal file
@@ -0,0 +1,22 @@
|
||||
<HTML><BODY>
|
||||
<table border>
|
||||
<tr>
|
||||
<td valign=top>
|
||||
<center>
|
||||
<TABLE BORDER=1 WIDTH=100>
|
||||
<TR>
|
||||
<TD>
|
||||
<font size = "-2">
|
||||
<center>
|
||||
inside
|
||||
</font>
|
||||
</center>
|
||||
</td>
|
||||
</tr>
|
||||
</table>
|
||||
outside table
|
||||
</center>
|
||||
</td>
|
||||
</tr>
|
||||
</table>
|
||||
</BODY></HTML>
|
||||
6
mozilla/layout/html/tests/table/bugs/bug709.html
Normal file
6
mozilla/layout/html/tests/table/bugs/bug709.html
Normal file
@@ -0,0 +1,6 @@
|
||||
<table>
|
||||
<tr align="center">
|
||||
<td>The quick brown fox jumped over the lazy dog.</td>
|
||||
<td>Now is the time for all good men to come to the aid of their country.</td>
|
||||
</tr>
|
||||
</table>
|
||||
14
mozilla/layout/html/tests/table/bugs/bug727.html
Normal file
14
mozilla/layout/html/tests/table/bugs/bug727.html
Normal file
@@ -0,0 +1,14 @@
|
||||
<HTML>
|
||||
<BODY>
|
||||
<HR style="width:190px;">
|
||||
<TABLE border=1 WIDTH=350>
|
||||
<TR>
|
||||
<TD COLSPAN="2">
|
||||
MozillaZine.org Is Now Active!</TD></TR>
|
||||
<TR>
|
||||
<TD WIDTH="190"> </TD>
|
||||
<TD BGCOLOR="FF9900">
|
||||
Thursday September 17th, 1998></TD></TR>
|
||||
</TABLE></TD></TR>
|
||||
</BODY>
|
||||
</html>
|
||||
16
mozilla/layout/html/tests/table/bugs/bug963.html
Normal file
16
mozilla/layout/html/tests/table/bugs/bug963.html
Normal file
@@ -0,0 +1,16 @@
|
||||
The window needs to be resized smaller to see the bug
|
||||
<BR>
|
||||
|
||||
<table>
|
||||
<tr>
|
||||
<td>Back</td>
|
||||
<td>Forward</td>
|
||||
<td>Reload</td>
|
||||
<td>Home</td>
|
||||
<td>Search</td>
|
||||
<td>My Netscape</td>
|
||||
<td>Print</td>
|
||||
<td>Security</td>
|
||||
<td>Stop</td>
|
||||
</tr>
|
||||
</table>
|
||||
66
mozilla/layout/html/tests/table/bugs/file_list.txt
Normal file
66
mozilla/layout/html/tests/table/bugs/file_list.txt
Normal file
@@ -0,0 +1,66 @@
|
||||
file://s:/table_tests/bugs/bug1010.html
|
||||
file://s:/table_tests/bugs/bug1067-1.html
|
||||
file://s:/table_tests/bugs/bug1067-2.html
|
||||
file://s:/table_tests/bugs/bug1128.html
|
||||
file://s:/table_tests/bugs/bug1164.html
|
||||
file://s:/table_tests/bugs/bug1188.html
|
||||
file://s:/table_tests/bugs/bug1220.html
|
||||
file://s:/table_tests/bugs/bug1224.html
|
||||
file://s:/table_tests/bugs/bug1261.html
|
||||
file://s:/table_tests/bugs/bug1296.html
|
||||
file://s:/table_tests/bugs/bug1318.html
|
||||
file://s:/table_tests/bugs/bug1430.html
|
||||
file://s:/table_tests/bugs/bug1474.html
|
||||
file://s:/table_tests/bugs/bug1647.html
|
||||
file://s:/table_tests/bugs/bug1725.html
|
||||
file://s:/table_tests/bugs/bug1800.html
|
||||
file://s:/table_tests/bugs/bug1818-1.html
|
||||
file://s:/table_tests/bugs/bug1818-2.html
|
||||
file://s:/table_tests/bugs/bug1818-3.html
|
||||
file://s:/table_tests/bugs/bug1818-4.html
|
||||
file://s:/table_tests/bugs/bug1818-5.html
|
||||
file://s:/table_tests/bugs/bug1818-6.html
|
||||
file://s:/table_tests/bugs/bug1828.html
|
||||
file://s:/table_tests/bugs/bug2050.html
|
||||
file://s:/table_tests/bugs/bug2065.html
|
||||
file://s:/table_tests/bugs/bug2296.html
|
||||
file://s:/table_tests/bugs/bug2469.html
|
||||
file://s:/table_tests/bugs/bug2516.html
|
||||
file://s:/table_tests/bugs/bug2585.html
|
||||
file://s:/table_tests/bugs/bug2757.html
|
||||
file://s:/table_tests/bugs/bug2962.html
|
||||
file://s:/table_tests/bugs/bug3037-1.html
|
||||
file://s:/table_tests/bugs/bug3037-2.html
|
||||
file://s:/table_tests/bugs/bug3105.html
|
||||
file://s:/table_tests/bugs/bug3260.html
|
||||
file://s:/table_tests/bugs/bug3263.html
|
||||
file://s:/table_tests/bugs/bug3309-1.html
|
||||
file://s:/table_tests/bugs/bug3309-2.html
|
||||
file://s:/table_tests/bugs/bug3718.html
|
||||
file://s:/table_tests/bugs/bug4284.html
|
||||
file://s:/table_tests/bugs/bug4294.html
|
||||
file://s:/table_tests/bugs/bug4382.html
|
||||
file://s:/table_tests/bugs/bug4429.html
|
||||
file://s:/table_tests/bugs/bug641-1.html
|
||||
file://s:/table_tests/bugs/bug641-2.html
|
||||
file://s:/table_tests/bugs/bug647.html
|
||||
file://s:/table_tests/bugs/bug709.html
|
||||
file://s:/table_tests/bugs/bug727.html
|
||||
file://s:/table_tests/bugs/bug963.html
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
1
mozilla/layout/html/tests/table/marvin/body_col.html
Normal file
1
mozilla/layout/html/tests/table/marvin/body_col.html
Normal file
@@ -0,0 +1 @@
|
||||
<!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.0 Transitional//EN" >
|
||||
1
mozilla/layout/html/tests/table/marvin/body_tbody.html
Normal file
1
mozilla/layout/html/tests/table/marvin/body_tbody.html
Normal file
@@ -0,0 +1 @@
|
||||
<!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.0 Transitional//EN" >
|
||||
1
mozilla/layout/html/tests/table/marvin/body_tfoot.html
Normal file
1
mozilla/layout/html/tests/table/marvin/body_tfoot.html
Normal file
@@ -0,0 +1 @@
|
||||
<!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.0 Transitional//EN" >
|
||||
1
mozilla/layout/html/tests/table/marvin/body_thead.html
Normal file
1
mozilla/layout/html/tests/table/marvin/body_thead.html
Normal file
@@ -0,0 +1 @@
|
||||
<!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.0 Transitional//EN" >
|
||||
27
mozilla/layout/html/tests/table/marvin/col_span.html
Normal file
27
mozilla/layout/html/tests/table/marvin/col_span.html
Normal file
@@ -0,0 +1,27 @@
|
||||
<!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.0 Transitional//EN">
|
||||
<html>
|
||||
<head>
|
||||
<!-- test case: col_span.html -->
|
||||
<!-- description: HTML 4.0 COL element with SPAN attribute -->
|
||||
<!-- Author: Christine Dreckman Date: 2/19/99 -->
|
||||
<!-- CONFIDENTIAL AND PROPRIETARY TEST SCRIPT OF NETSCAPE COMMUNICATIONS CORPORATION
|
||||
Copyright © 1999 Netscape Communications Corporation. All Rights Reserved. Use of this Test Script is
|
||||
subject to the terms of the applicable license agreement from Netscape Communications Corporation -->
|
||||
<!-- Purpose: To test the SPAN attribute of the COL element tag-->
|
||||
<!-- Expected result: A table with two columns should be displayed. The heading should span across the two columns -->
|
||||
<title>col_span.html</title>
|
||||
</head>
|
||||
<body>
|
||||
<p>The COL element specifies attributes for a table column. In this test case, the COL element is used in conjunction with the SPAN attribute. </p>
|
||||
<table BORDER=1 >
|
||||
<col span="2">
|
||||
<tr>
|
||||
<th>This heading should span across the two columns in this table.</th>
|
||||
</tr>
|
||||
<tr>
|
||||
<td>This is column one.</td>
|
||||
<td>This is column two.</td>
|
||||
</tr>
|
||||
</table>
|
||||
</body>
|
||||
</html>
|
||||
@@ -0,0 +1,76 @@
|
||||
<!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.0 Transitional//EN">
|
||||
<html>
|
||||
<head>
|
||||
<!-- test case: colgroup_align_center.html -->
|
||||
<!-- description: HTML 4.0 COLGROUP element with ALIGN attribute. Value=center -->
|
||||
<!-- Author: Christine Dreckman Date: 2/19/99 -->
|
||||
<!-- CONFIDENTIAL AND PROPRIETARY TEST SCRIPT OF NETSCAPE COMMUNICATIONS CORPORATION
|
||||
Copyright © 1999 Netscape Communications Corporation. All Rights Reserved. Use of this Test Script is
|
||||
subject to the terms of the applicable license agreement from Netscape Communications Corporation -->
|
||||
<!-- Purpose: To test the ALIGN/center attribute/value of the COLGROUP element tag -->
|
||||
<!-- Expected result: A table with two distinct column groups should be displayed. The first column group has two columns and the second column group has three columns. Text in the cells should be center-aligned -->
|
||||
<title>colgroup_align_center.html</title>
|
||||
</head>
|
||||
<body>
|
||||
<p>Colgroups are used to identify column groups. The table below has two distinct column groups; 'Airport Location' and 'Car Rental Information'. The first column group contains two columns and the second column group contains three columns.</p>
|
||||
|
||||
<p>Text in the cells should be center-aligned.</p>
|
||||
<table BORDER >
|
||||
<colgroup width=100 align="center">
|
||||
<colgroup width=300 align="center">
|
||||
<tr>
|
||||
<th COLSPAN="2">Airport Location</th>
|
||||
<th COLSPAN="3">Car Rental information</th>
|
||||
</tr>
|
||||
|
||||
<tr>
|
||||
<th>Country</th>
|
||||
<th>City</th>
|
||||
<th>ABC Company</th>
|
||||
<th>EFG Company</th>
|
||||
<th>XYZ Company</th>
|
||||
</tr>
|
||||
|
||||
<tr>
|
||||
<td>France</td>
|
||||
<td>Paris</td>
|
||||
<td>yes</td>
|
||||
<td>yes</td>
|
||||
<td>yes</td>
|
||||
</tr>
|
||||
|
||||
<tr>
|
||||
<td>Germany</td>
|
||||
<td>Frankfurt</td>
|
||||
<td>yes</td>
|
||||
<td>yes</td>
|
||||
<td>yes</td>
|
||||
</tr>
|
||||
|
||||
<tr>
|
||||
<td>England</td>
|
||||
<td>London</td>
|
||||
<td>yes</td>
|
||||
<td>yes</td>
|
||||
<td>yes</td>
|
||||
</tr>
|
||||
|
||||
<tr>
|
||||
<td>Netherlands</td>
|
||||
<td>Amsterdam</td>
|
||||
<td>yes</td>
|
||||
<td>yes</td>
|
||||
<td>yes</td>
|
||||
</tr>
|
||||
|
||||
<tr>
|
||||
<td>USA</td>
|
||||
<td>New York</td>
|
||||
<td>yes</td>
|
||||
<td>yes</td>
|
||||
<td>yes</td>
|
||||
</tr>
|
||||
|
||||
</table>
|
||||
</body>
|
||||
</html>
|
||||
@@ -0,0 +1,76 @@
|
||||
<!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.0 Transitional//EN">
|
||||
<html>
|
||||
<head>
|
||||
<!-- test case: colgroup_align_justify.html -->
|
||||
<!-- description: HTML 4.0 COLGROUP element with ALIGN attribute. Value=justify -->
|
||||
<!-- Author: Christine Dreckman Date: 2/19/99 -->
|
||||
<!-- CONFIDENTIAL AND PROPRIETARY TEST SCRIPT OF NETSCAPE COMMUNICATIONS CORPORATION
|
||||
Copyright © 1999 Netscape Communications Corporation. All Rights Reserved. Use of this Test Script is
|
||||
subject to the terms of the applicable license agreement from Netscape Communications Corporation -->
|
||||
<!-- Purpose: To test the ALIGN/left attribute/value of the COLGROUP element tag -->
|
||||
<!-- Expected result: A table with two distinct column groups should be displayed. The first column group has two columns and the second column group has three columns. Text in the cells should be justified -->
|
||||
<title>colgroup_align_justify.html</title>
|
||||
</head>
|
||||
<body>
|
||||
<p>Colgroups are used to identify column groups. The table below has two distinct column groups; 'Airport Location' and 'Car Rental Information'. The first column group contains two columns and the second column group contains three columns.</p>
|
||||
|
||||
<p>Text in the cells should be justified.</p>
|
||||
<table BORDER >
|
||||
<colgroup width=100 align="justify">
|
||||
<colgroup width=300 align="justify">
|
||||
<tr>
|
||||
<th COLSPAN="2">Airport Location</th>
|
||||
<th COLSPAN="3">Car Rental information</th>
|
||||
</tr>
|
||||
|
||||
<tr>
|
||||
<th>Country</th>
|
||||
<th>City</th>
|
||||
<th>ABC Company</th>
|
||||
<th>EFG Company</th>
|
||||
<th>XYZ Company</th>
|
||||
</tr>
|
||||
|
||||
<tr>
|
||||
<td>France</td>
|
||||
<td>Paris</td>
|
||||
<td>yes</td>
|
||||
<td>yes</td>
|
||||
<td>yes</td>
|
||||
</tr>
|
||||
|
||||
<tr>
|
||||
<td>Germany</td>
|
||||
<td>Frankfurt</td>
|
||||
<td>yes</td>
|
||||
<td>yes</td>
|
||||
<td>yes</td>
|
||||
</tr>
|
||||
|
||||
<tr>
|
||||
<td>England</td>
|
||||
<td>London</td>
|
||||
<td>yes</td>
|
||||
<td>yes</td>
|
||||
<td>yes</td>
|
||||
</tr>
|
||||
|
||||
<tr>
|
||||
<td>Netherlands</td>
|
||||
<td>Amsterdam</td>
|
||||
<td>yes</td>
|
||||
<td>yes</td>
|
||||
<td>yes</td>
|
||||
</tr>
|
||||
|
||||
<tr>
|
||||
<td>USA</td>
|
||||
<td>New York</td>
|
||||
<td>yes</td>
|
||||
<td>yes</td>
|
||||
<td>yes</td>
|
||||
</tr>
|
||||
|
||||
</table>
|
||||
</body>
|
||||
</html>
|
||||
@@ -0,0 +1,76 @@
|
||||
<!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.0 Transitional//EN">
|
||||
<html>
|
||||
<head>
|
||||
<!-- test case: colgroup_align_left.html -->
|
||||
<!-- description: HTML 4.0 COLGROUP element with ALIGN attribute. Value=left -->
|
||||
<!-- Author: Christine Dreckman Date: 2/19/99 -->
|
||||
<!-- CONFIDENTIAL AND PROPRIETARY TEST SCRIPT OF NETSCAPE COMMUNICATIONS CORPORATION
|
||||
Copyright © 1999 Netscape Communications Corporation. All Rights Reserved. Use of this Test Script is
|
||||
subject to the terms of the applicable license agreement from Netscape Communications Corporation -->
|
||||
<!-- Purpose: To test the ALIGN/left attribute/value of the COLGROUP element tag -->
|
||||
<!-- Expected result: A table with two distinct column groups should be displayed. The first column group has two columns and the second column group has three columns. Text in the cells should be left-aligned -->
|
||||
<title>colgroup_align_left.html</title>
|
||||
</head>
|
||||
<body>
|
||||
<p>Colgroups are used to identify column groups. The table below has two distinct column groups; 'Airport Location' and 'Car Rental Information'. The first column group contains two columns and the second column group contains three columns.</p>
|
||||
|
||||
<p>Text in the cells should be left-aligned.</p>
|
||||
<table BORDER >
|
||||
<colgroup width=100 align="left">
|
||||
<colgroup width=300 align="left">
|
||||
<tr>
|
||||
<th COLSPAN="2">Airport Location</th>
|
||||
<th COLSPAN="3">Car Rental information</th>
|
||||
</tr>
|
||||
|
||||
<tr>
|
||||
<th>Country</th>
|
||||
<th>City</th>
|
||||
<th>ABC Company</th>
|
||||
<th>EFG Company</th>
|
||||
<th>XYZ Company</th>
|
||||
</tr>
|
||||
|
||||
<tr>
|
||||
<td>France</td>
|
||||
<td>Paris</td>
|
||||
<td>yes</td>
|
||||
<td>yes</td>
|
||||
<td>yes</td>
|
||||
</tr>
|
||||
|
||||
<tr>
|
||||
<td>Germany</td>
|
||||
<td>Frankfurt</td>
|
||||
<td>yes</td>
|
||||
<td>yes</td>
|
||||
<td>yes</td>
|
||||
</tr>
|
||||
|
||||
<tr>
|
||||
<td>England</td>
|
||||
<td>London</td>
|
||||
<td>yes</td>
|
||||
<td>yes</td>
|
||||
<td>yes</td>
|
||||
</tr>
|
||||
|
||||
<tr>
|
||||
<td>Netherlands</td>
|
||||
<td>Amsterdam</td>
|
||||
<td>yes</td>
|
||||
<td>yes</td>
|
||||
<td>yes</td>
|
||||
</tr>
|
||||
|
||||
<tr>
|
||||
<td>USA</td>
|
||||
<td>New York</td>
|
||||
<td>yes</td>
|
||||
<td>yes</td>
|
||||
<td>yes</td>
|
||||
</tr>
|
||||
|
||||
</table>
|
||||
</body>
|
||||
</html>
|
||||
@@ -0,0 +1,76 @@
|
||||
<!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.0 Transitional//EN">
|
||||
<html>
|
||||
<head>
|
||||
<!-- test case: colgroup_align_right.html -->
|
||||
<!-- description: HTML 4.0 COLGROUP element with ALIGN attribute. Value=right -->
|
||||
<!-- Author: Christine Dreckman Date: 2/19/99 -->
|
||||
<!-- CONFIDENTIAL AND PROPRIETARY TEST SCRIPT OF NETSCAPE COMMUNICATIONS CORPORATION
|
||||
Copyright © 1999 Netscape Communications Corporation. All Rights Reserved. Use of this Test Script is
|
||||
subject to the terms of the applicable license agreement from Netscape Communications Corporation -->
|
||||
<!-- Purpose: To test the ALIGN/right attribute/value of the COLGROUP element tag -->
|
||||
<!-- Expected result: A table with two distinct column groups should be displayed. The first column group has two columns and the second column group has three columns. Text in the cells should be right-aligned -->
|
||||
<title>colgroup_align_right.html</title>
|
||||
</head>
|
||||
<body>
|
||||
<p>Colgroups are used to identify column groups. The table below has two distinct column groups; 'Airport Location' and 'Car Rental Information'. The first column group contains two columns and the second column group contains three columns.</p>
|
||||
|
||||
<p>Text in the cells should be right-aligned.</p>
|
||||
<table BORDER >
|
||||
<colgroup width=100 align="right">
|
||||
<colgroup width=300 align="right">
|
||||
<tr>
|
||||
<th COLSPAN="2">Airport Location</th>
|
||||
<th COLSPAN="3">Car Rental information</th>
|
||||
</tr>
|
||||
|
||||
<tr>
|
||||
<th>Country</th>
|
||||
<th>City</th>
|
||||
<th>ABC Company</th>
|
||||
<th>EFG Company</th>
|
||||
<th>XYZ Company</th>
|
||||
</tr>
|
||||
|
||||
<tr>
|
||||
<td>France</td>
|
||||
<td>Paris</td>
|
||||
<td>yes</td>
|
||||
<td>yes</td>
|
||||
<td>yes</td>
|
||||
</tr>
|
||||
|
||||
<tr>
|
||||
<td>Germany</td>
|
||||
<td>Frankfurt</td>
|
||||
<td>yes</td>
|
||||
<td>yes</td>
|
||||
<td>yes</td>
|
||||
</tr>
|
||||
|
||||
<tr>
|
||||
<td>England</td>
|
||||
<td>London</td>
|
||||
<td>yes</td>
|
||||
<td>yes</td>
|
||||
<td>yes</td>
|
||||
</tr>
|
||||
|
||||
<tr>
|
||||
<td>Netherlands</td>
|
||||
<td>Amsterdam</td>
|
||||
<td>yes</td>
|
||||
<td>yes</td>
|
||||
<td>yes</td>
|
||||
</tr>
|
||||
|
||||
<tr>
|
||||
<td>USA</td>
|
||||
<td>New York</td>
|
||||
<td>yes</td>
|
||||
<td>yes</td>
|
||||
<td>yes</td>
|
||||
</tr>
|
||||
|
||||
</table>
|
||||
</body>
|
||||
</html>
|
||||
74
mozilla/layout/html/tests/table/marvin/colgroup_span.html
Normal file
74
mozilla/layout/html/tests/table/marvin/colgroup_span.html
Normal file
@@ -0,0 +1,74 @@
|
||||
<!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.0 Transitional//EN">
|
||||
<html>
|
||||
<head>
|
||||
<!-- test case: colgroup_span.html -->
|
||||
<!-- description: HTML 4.0 COLGROUP element with SPAN attribute -->
|
||||
<!-- Author: Christine Dreckman Date: 2/19/99 -->
|
||||
<!-- CONFIDENTIAL AND PROPRIETARY TEST SCRIPT OF NETSCAPE COMMUNICATIONS CORPORATION
|
||||
Copyright © 1999 Netscape Communications Corporation. All Rights Reserved. Use of this Test Script is
|
||||
subject to the terms of the applicable license agreement from Netscape Communications Corporation -->
|
||||
<!-- Purpose: To test the SPAN attribute of the COLGROUP element tag-->
|
||||
<!-- Expected result: A table with two distinct column groups should be displayed. The first column group has two columns and the second column group has three columns -->
|
||||
<title>colgroup_span.html</title>
|
||||
</head>
|
||||
<body>
|
||||
<p>Colgroups are used to identify column groups. In this test case, the COLGROUP element is used in conjunction with the SPAN attribute. The table below has two distinct column groups; 'Airport Location' and 'Car Rental Information'.</p>
|
||||
<table BORDER >
|
||||
<colgroup span=2>
|
||||
<colgroup span=3>
|
||||
<tr>
|
||||
<th COLSPAN="2">Airport Location</th>
|
||||
<th COLSPAN="3">Car Rental information</th>
|
||||
</tr>
|
||||
|
||||
<tr>
|
||||
<th>Country</th>
|
||||
<th>City</th>
|
||||
<th>ABC Company</th>
|
||||
<th>EFG Company</th>
|
||||
<th>XYZ Company</th>
|
||||
</tr>
|
||||
|
||||
<tr>
|
||||
<td>France</td>
|
||||
<td>Paris</td>
|
||||
<td>yes</td>
|
||||
<td>yes</td>
|
||||
<td>yes</td>
|
||||
</tr>
|
||||
|
||||
<tr>
|
||||
<td>Germany</td>
|
||||
<td>Frankfurt</td>
|
||||
<td>yes</td>
|
||||
<td>yes</td>
|
||||
<td>yes</td>
|
||||
</tr>
|
||||
|
||||
<tr>
|
||||
<td>England</td>
|
||||
<td>London</td>
|
||||
<td>yes</td>
|
||||
<td>yes</td>
|
||||
<td>yes</td>
|
||||
</tr>
|
||||
|
||||
<tr>
|
||||
<td>Netherlands</td>
|
||||
<td>Amsterdam</td>
|
||||
<td>yes</td>
|
||||
<td>yes</td>
|
||||
<td>yes</td>
|
||||
</tr>
|
||||
|
||||
<tr>
|
||||
<td>USA</td>
|
||||
<td>New York</td>
|
||||
<td>yes</td>
|
||||
<td>yes</td>
|
||||
<td>yes</td>
|
||||
</tr>
|
||||
|
||||
</table>
|
||||
</body>
|
||||
</html>
|
||||
@@ -0,0 +1,82 @@
|
||||
<!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.0 Transitional//EN">
|
||||
<html>
|
||||
<head>
|
||||
<!-- test case: colgroup_valign_baseline.html -->
|
||||
<!-- description: HTML 4.0 COLGROUP element with VALIGN attribute. Value=baseline -->
|
||||
<!-- Author: Christine Dreckman Date: 2/19/99 -->
|
||||
<!-- CONFIDENTIAL AND PROPRIETARY TEST SCRIPT OF NETSCAPE COMMUNICATIONS CORPORATION
|
||||
Copyright © 1999 Netscape Communications Corporation. All Rights Reserved. Use of this Test Script is
|
||||
subject to the terms of the applicable license agreement from Netscape Communications Corporation -->
|
||||
<!-- Purpose: To test the VALIGN/baseline attribute/value of the COLGROUP element tag -->
|
||||
<!-- Expected result: A table with two distinct column groups should be displayed. The first column group has two columns and the second column group has three columns. Text in the cells should be baseline-aligned -->
|
||||
<title>colgroup_valign_baseline.html</title>
|
||||
|
||||
<style type="text/css">
|
||||
TD { height: 50px }
|
||||
TH { height: 50px }
|
||||
</style>
|
||||
|
||||
</head>
|
||||
<body>
|
||||
<p>Colgroups are used to identify column groups. The table below has two distinct column groups; 'Airport Location' and 'Car Rental Information'. The first column group contains two columns and the second column group contains three columns.</p>
|
||||
|
||||
<p>In this test case, the cell text should be baseline-aligned.</p>
|
||||
<table BORDER >
|
||||
<colgroup valign="baseline">
|
||||
<colgroup valign="baseline">
|
||||
<tr>
|
||||
<th COLSPAN="2">Airport Location</th>
|
||||
<th COLSPAN="3">Car Rental information</th>
|
||||
</tr>
|
||||
|
||||
<tr>
|
||||
<th>Country</th>
|
||||
<th>City</th>
|
||||
<th>ABC Company</th>
|
||||
<th>EFG Company</th>
|
||||
<th>XYZ Company</th>
|
||||
</tr>
|
||||
|
||||
<tr>
|
||||
<td>France</td>
|
||||
<td>Paris</td>
|
||||
<td>yes</td>
|
||||
<td>yes</td>
|
||||
<td>yes</td>
|
||||
</tr>
|
||||
|
||||
<tr>
|
||||
<td>Germany</td>
|
||||
<td>Frankfurt</td>
|
||||
<td>yes</td>
|
||||
<td>yes</td>
|
||||
<td>yes</td>
|
||||
</tr>
|
||||
|
||||
<tr>
|
||||
<td>England</td>
|
||||
<td>London</td>
|
||||
<td>yes</td>
|
||||
<td>yes</td>
|
||||
<td>yes</td>
|
||||
</tr>
|
||||
|
||||
<tr>
|
||||
<td>Netherlands</td>
|
||||
<td>Amsterdam</td>
|
||||
<td>yes</td>
|
||||
<td>yes</td>
|
||||
<td>yes</td>
|
||||
</tr>
|
||||
|
||||
<tr>
|
||||
<td>USA</td>
|
||||
<td>New York</td>
|
||||
<td>yes</td>
|
||||
<td>yes</td>
|
||||
<td>yes</td>
|
||||
</tr>
|
||||
|
||||
</table>
|
||||
</body>
|
||||
</html>
|
||||
@@ -0,0 +1,82 @@
|
||||
<!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.0 Transitional//EN">
|
||||
<html>
|
||||
<head>
|
||||
<!-- test case: colgroup_valign_bottom.html -->
|
||||
<!-- description: HTML 4.0 COLGROUP element with VALIGN attribute. Value=bottom -->
|
||||
<!-- Author: Christine Dreckman Date: 2/19/99 -->
|
||||
<!-- CONFIDENTIAL AND PROPRIETARY TEST SCRIPT OF NETSCAPE COMMUNICATIONS CORPORATION
|
||||
Copyright © 1999 Netscape Communications Corporation. All Rights Reserved. Use of this Test Script is
|
||||
subject to the terms of the applicable license agreement from Netscape Communications Corporation -->
|
||||
<!-- Purpose: To test the VALIGN/bottom attribute/value of the COLGROUP element tag -->
|
||||
<!-- Expected result: A table with two distinct column groups should be displayed. The first column group has two columns and the second column group has three columns. Text in the cells should be bottom-aligned -->
|
||||
<title>colgroup_valign_bottom.html</title>
|
||||
|
||||
<style type="text/css">
|
||||
TD { height: 50px }
|
||||
TH { height: 50px }
|
||||
</style>
|
||||
|
||||
</head>
|
||||
<body>
|
||||
<p>Colgroups are used to identify column groups. The table below has two distinct column groups; 'Airport Location' and 'Car Rental Information'. The first column group contains two columns and the second column group contains three columns.</p>
|
||||
|
||||
<p>In this test case, the cell text should be bottom-aligned.</p>
|
||||
<table BORDER >
|
||||
<colgroup valign="bottom">
|
||||
<colgroup valign="bottom">
|
||||
<tr>
|
||||
<th COLSPAN="2">Airport Location</th>
|
||||
<th COLSPAN="3">Car Rental information</th>
|
||||
</tr>
|
||||
|
||||
<tr>
|
||||
<th>Country</th>
|
||||
<th>City</th>
|
||||
<th>ABC Company</th>
|
||||
<th>EFG Company</th>
|
||||
<th>XYZ Company</th>
|
||||
</tr>
|
||||
|
||||
<tr>
|
||||
<td>France</td>
|
||||
<td>Paris</td>
|
||||
<td>yes</td>
|
||||
<td>yes</td>
|
||||
<td>yes</td>
|
||||
</tr>
|
||||
|
||||
<tr>
|
||||
<td>Germany</td>
|
||||
<td>Frankfurt</td>
|
||||
<td>yes</td>
|
||||
<td>yes</td>
|
||||
<td>yes</td>
|
||||
</tr>
|
||||
|
||||
<tr>
|
||||
<td>England</td>
|
||||
<td>London</td>
|
||||
<td>yes</td>
|
||||
<td>yes</td>
|
||||
<td>yes</td>
|
||||
</tr>
|
||||
|
||||
<tr>
|
||||
<td>Netherlands</td>
|
||||
<td>Amsterdam</td>
|
||||
<td>yes</td>
|
||||
<td>yes</td>
|
||||
<td>yes</td>
|
||||
</tr>
|
||||
|
||||
<tr>
|
||||
<td>USA</td>
|
||||
<td>New York</td>
|
||||
<td>yes</td>
|
||||
<td>yes</td>
|
||||
<td>yes</td>
|
||||
</tr>
|
||||
|
||||
</table>
|
||||
</body>
|
||||
</html>
|
||||
@@ -0,0 +1,82 @@
|
||||
<!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.0 Transitional//EN">
|
||||
<html>
|
||||
<head>
|
||||
<!-- test case: colgroup_valign_middle.html -->
|
||||
<!-- description: HTML 4.0 COLGROUP element with VALIGN attribute. Value=middle -->
|
||||
<!-- Author: Christine Dreckman Date: 2/19/99 -->
|
||||
<!-- CONFIDENTIAL AND PROPRIETARY TEST SCRIPT OF NETSCAPE COMMUNICATIONS CORPORATION
|
||||
Copyright © 1999 Netscape Communications Corporation. All Rights Reserved. Use of this Test Script is
|
||||
subject to the terms of the applicable license agreement from Netscape Communications Corporation -->
|
||||
<!-- Purpose: To test the VALIGN/middle attribute/value of the COLGROUP element tag -->
|
||||
<!-- Expected result: A table with two distinct column groups should be displayed. The first column group has two columns and the second column group has three columns. Text in the cells should be middle-aligned -->
|
||||
<title>colgroup_valign_middle.html</title>
|
||||
|
||||
<style type="text/css">
|
||||
TD { height: 50px }
|
||||
TH { height: 50px }
|
||||
</style>
|
||||
|
||||
</head>
|
||||
<body>
|
||||
<p>Colgroups are used to identify column groups. The table below has two distinct column groups; 'Airport Location' and 'Car Rental Information'. The first column group contains two columns and the second column group contains three columns.</p>
|
||||
|
||||
<p>In this test case, the cell text should be middle-aligned.</p>
|
||||
<table BORDER >
|
||||
<colgroup valign="middle">
|
||||
<colgroup valign="middle">
|
||||
<tr>
|
||||
<th COLSPAN="2">Airport Location</th>
|
||||
<th COLSPAN="3">Car Rental information</th>
|
||||
</tr>
|
||||
|
||||
<tr>
|
||||
<th>Country</th>
|
||||
<th>City</th>
|
||||
<th>ABC Company</th>
|
||||
<th>EFG Company</th>
|
||||
<th>XYZ Company</th>
|
||||
</tr>
|
||||
|
||||
<tr>
|
||||
<td>France</td>
|
||||
<td>Paris</td>
|
||||
<td>yes</td>
|
||||
<td>yes</td>
|
||||
<td>yes</td>
|
||||
</tr>
|
||||
|
||||
<tr>
|
||||
<td>Germany</td>
|
||||
<td>Frankfurt</td>
|
||||
<td>yes</td>
|
||||
<td>yes</td>
|
||||
<td>yes</td>
|
||||
</tr>
|
||||
|
||||
<tr>
|
||||
<td>England</td>
|
||||
<td>London</td>
|
||||
<td>yes</td>
|
||||
<td>yes</td>
|
||||
<td>yes</td>
|
||||
</tr>
|
||||
|
||||
<tr>
|
||||
<td>Netherlands</td>
|
||||
<td>Amsterdam</td>
|
||||
<td>yes</td>
|
||||
<td>yes</td>
|
||||
<td>yes</td>
|
||||
</tr>
|
||||
|
||||
<tr>
|
||||
<td>USA</td>
|
||||
<td>New York</td>
|
||||
<td>yes</td>
|
||||
<td>yes</td>
|
||||
<td>yes</td>
|
||||
</tr>
|
||||
|
||||
</table>
|
||||
</body>
|
||||
</html>
|
||||
@@ -0,0 +1,82 @@
|
||||
<!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.0 Transitional//EN">
|
||||
<html>
|
||||
<head>
|
||||
<!-- test case: colgroup_valign_top.html -->
|
||||
<!-- description: HTML 4.0 COLGROUP element with VALIGN attribute. Value=top -->
|
||||
<!-- Author: Christine Dreckman Date: 2/19/99 -->
|
||||
<!-- CONFIDENTIAL AND PROPRIETARY TEST SCRIPT OF NETSCAPE COMMUNICATIONS CORPORATION
|
||||
Copyright © 1999 Netscape Communications Corporation. All Rights Reserved. Use of this Test Script is
|
||||
subject to the terms of the applicable license agreement from Netscape Communications Corporation -->
|
||||
<!-- Purpose: To test the VALIGN/top attribute/value of the COLGROUP element tag -->
|
||||
<!-- Expected result: A table with two distinct column groups should be displayed. The first column group has two columns and the second column group has three columns. Text in the cells should be top-aligned -->
|
||||
<title>colgroup_valign_top.html</title>
|
||||
|
||||
<style type="text/css">
|
||||
TD { height: 50px }
|
||||
TH { height: 50px }
|
||||
</style>
|
||||
|
||||
</head>
|
||||
<body>
|
||||
<p>Colgroups are used to identify column groups. The table below has two distinct column groups; 'Airport Location' and 'Car Rental Information'. The first column group contains two columns and the second column group contains three columns.</p>
|
||||
|
||||
<p>In this test case, the cell text should be top-aligned.</p>
|
||||
<table BORDER >
|
||||
<colgroup valign="top">
|
||||
<colgroup valign="top">
|
||||
<tr>
|
||||
<th COLSPAN="2">Airport Location</th>
|
||||
<th COLSPAN="3">Car Rental information</th>
|
||||
</tr>
|
||||
|
||||
<tr>
|
||||
<th>Country</th>
|
||||
<th>City</th>
|
||||
<th>ABC Company</th>
|
||||
<th>EFG Company</th>
|
||||
<th>XYZ Company</th>
|
||||
</tr>
|
||||
|
||||
<tr>
|
||||
<td>France</td>
|
||||
<td>Paris</td>
|
||||
<td>yes</td>
|
||||
<td>yes</td>
|
||||
<td>yes</td>
|
||||
</tr>
|
||||
|
||||
<tr>
|
||||
<td>Germany</td>
|
||||
<td>Frankfurt</td>
|
||||
<td>yes</td>
|
||||
<td>yes</td>
|
||||
<td>yes</td>
|
||||
</tr>
|
||||
|
||||
<tr>
|
||||
<td>England</td>
|
||||
<td>London</td>
|
||||
<td>yes</td>
|
||||
<td>yes</td>
|
||||
<td>yes</td>
|
||||
</tr>
|
||||
|
||||
<tr>
|
||||
<td>Netherlands</td>
|
||||
<td>Amsterdam</td>
|
||||
<td>yes</td>
|
||||
<td>yes</td>
|
||||
<td>yes</td>
|
||||
</tr>
|
||||
|
||||
<tr>
|
||||
<td>USA</td>
|
||||
<td>New York</td>
|
||||
<td>yes</td>
|
||||
<td>yes</td>
|
||||
<td>yes</td>
|
||||
</tr>
|
||||
|
||||
</table>
|
||||
</body>
|
||||
</html>
|
||||
@@ -0,0 +1,74 @@
|
||||
<!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.0 Transitional//EN">
|
||||
<html>
|
||||
<head>
|
||||
<!-- test case: colgroup_width_pct.html -->
|
||||
<!-- description: HTML 4.0 COLGROUP element with WIDTH attribute. Value=percentage. -->
|
||||
<!-- Author: Christine Dreckman Date: 2/19/99 -->
|
||||
<!-- CONFIDENTIAL AND PROPRIETARY TEST SCRIPT OF NETSCAPE COMMUNICATIONS CORPORATION
|
||||
Copyright © 1999 Netscape Communications Corporation. All Rights Reserved. Use of this Test Script is
|
||||
subject to the terms of the applicable license agreement from Netscape Communications Corporation -->
|
||||
<!-- Purpose: To test the WIDTH attribute of the COLGROUP element tag (pixel value) -->
|
||||
<!-- Expected result: A table with two distinct column groups should be displayed. The first column group has two columns and the second column group has three columns -->
|
||||
<title>colgroup_width_pct.html</title>
|
||||
</head>
|
||||
<body>
|
||||
<p>Colgroups are used to identify column groups. This table has two distinct column groups titled 'Airport Location' and 'Car Rental Information'. The first has a width of 20%; the second has a width of 40% pixels.</p>
|
||||
<table BORDER >
|
||||
<colgroup width="20%">
|
||||
<colgroup width="40%">
|
||||
<tr>
|
||||
<th COLSPAN=2>Airport Location</th>
|
||||
<th COLSPAN=3>Car Rental Information</th>
|
||||
</tr>
|
||||
|
||||
<tr>
|
||||
<th>Country</th>
|
||||
<th>City</th>
|
||||
<th>ABC Company</th>
|
||||
<th>EFG Company</th>
|
||||
<th>XYZ Company</th>
|
||||
</tr>
|
||||
|
||||
<tr>
|
||||
<td>France</td>
|
||||
<td>Paris</td>
|
||||
<td>yes</td>
|
||||
<td>yes</td>
|
||||
<td>yes</td>
|
||||
</tr>
|
||||
|
||||
<tr>
|
||||
<td>Germany</td>
|
||||
<td>Frankfurt</td>
|
||||
<td>yes</td>
|
||||
<td>yes</td>
|
||||
<td>yes</td>
|
||||
</tr>
|
||||
|
||||
<tr>
|
||||
<td>England</td>
|
||||
<td>London</td>
|
||||
<td>yes</td>
|
||||
<td>yes</td>
|
||||
<td>yes</td>
|
||||
</tr>
|
||||
|
||||
<tr>
|
||||
<td>Netherlands</td>
|
||||
<td>Amsterdam</td>
|
||||
<td>yes</td>
|
||||
<td>yes</td>
|
||||
<td>yes</td>
|
||||
</tr>
|
||||
|
||||
<tr>
|
||||
<td>USA</td>
|
||||
<td>New York</td>
|
||||
<td>yes</td>
|
||||
<td>yes</td>
|
||||
<td>yes</td>
|
||||
</tr>
|
||||
|
||||
</table>
|
||||
</body>
|
||||
</html>
|
||||
@@ -0,0 +1,74 @@
|
||||
<!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.0 Transitional//EN">
|
||||
<html>
|
||||
<head>
|
||||
<!-- test case: colgroup_width_px.html -->
|
||||
<!-- description: HTML 4.0 COLGROUP element with WIDTH attribute. Value=pixels. -->
|
||||
<!-- Author: Christine Dreckman Date: 2/19/99 -->
|
||||
<!-- CONFIDENTIAL AND PROPRIETARY TEST SCRIPT OF NETSCAPE COMMUNICATIONS CORPORATION
|
||||
Copyright © 1999 Netscape Communications Corporation. All Rights Reserved. Use of this Test Script is
|
||||
subject to the terms of the applicable license agreement from Netscape Communications Corporation -->
|
||||
<!-- Purpose: To test the WIDTH attribute of the COLGROUP element tag (pixel value) -->
|
||||
<!-- Expected result: A table with two distinct column groups should be displayed. The first column group has two columns and the second column group has three columns -->
|
||||
<title>colgroup_width_px.html</title>
|
||||
</head>
|
||||
<body>
|
||||
<p>Colgroups are used to identify column groups. This table has two distinct column groups titled 'Airport Location' and 'Car Rental Information'. The first has a width of 200 pixels; the second has a width of 400 pixels.</p>
|
||||
<table BORDER >
|
||||
<colgroup width=200>
|
||||
<colgroup width=400>
|
||||
<tr>
|
||||
<th COLSPAN=2>Airport Location</th>
|
||||
<th COLSPAN=3>Car Rental Information</th>
|
||||
</tr>
|
||||
|
||||
<tr>
|
||||
<th>Country</th>
|
||||
<th>City</th>
|
||||
<th>ABC Company</th>
|
||||
<th>EFG Company</th>
|
||||
<th>XYZ Company</th>
|
||||
</tr>
|
||||
|
||||
<tr>
|
||||
<td>France</td>
|
||||
<td>Paris</td>
|
||||
<td>yes</td>
|
||||
<td>yes</td>
|
||||
<td>yes</td>
|
||||
</tr>
|
||||
|
||||
<tr>
|
||||
<td>Germany</td>
|
||||
<td>Frankfurt</td>
|
||||
<td>yes</td>
|
||||
<td>yes</td>
|
||||
<td>yes</td>
|
||||
</tr>
|
||||
|
||||
<tr>
|
||||
<td>England</td>
|
||||
<td>London</td>
|
||||
<td>yes</td>
|
||||
<td>yes</td>
|
||||
<td>yes</td>
|
||||
</tr>
|
||||
|
||||
<tr>
|
||||
<td>Netherlands</td>
|
||||
<td>Amsterdam</td>
|
||||
<td>yes</td>
|
||||
<td>yes</td>
|
||||
<td>yes</td>
|
||||
</tr>
|
||||
|
||||
<tr>
|
||||
<td>USA</td>
|
||||
<td>New York</td>
|
||||
<td>yes</td>
|
||||
<td>yes</td>
|
||||
<td>yes</td>
|
||||
</tr>
|
||||
|
||||
</table>
|
||||
</body>
|
||||
</html>
|
||||
127
mozilla/layout/html/tests/table/marvin/file_list.txt
Normal file
127
mozilla/layout/html/tests/table/marvin/file_list.txt
Normal file
@@ -0,0 +1,127 @@
|
||||
file://s:/table_tests/marvin/body_col.html
|
||||
file://s:/table_tests/marvin/body_tbody.html
|
||||
file://s:/table_tests/marvin/body_tfoot.html
|
||||
file://s:/table_tests/marvin/body_thead.html
|
||||
file://s:/table_tests/marvin/col_span.html
|
||||
file://s:/table_tests/marvin/colgroup_align_center.html
|
||||
file://s:/table_tests/marvin/colgroup_align_justify.html
|
||||
file://s:/table_tests/marvin/colgroup_align_left.html
|
||||
file://s:/table_tests/marvin/colgroup_align_right.html
|
||||
file://s:/table_tests/marvin/colgroup_span.html
|
||||
file://s:/table_tests/marvin/colgroup_valign_baseline.html
|
||||
file://s:/table_tests/marvin/colgroup_valign_bottom.html
|
||||
file://s:/table_tests/marvin/colgroup_valign_middle.html
|
||||
file://s:/table_tests/marvin/colgroup_valign_top.html
|
||||
file://s:/table_tests/marvin/colgroup_width_pct.html
|
||||
file://s:/table_tests/marvin/colgroup_width_px.html
|
||||
file://s:/table_tests/marvin/table_frame_above.html
|
||||
file://s:/table_tests/marvin/table_frame_below.html
|
||||
file://s:/table_tests/marvin/table_frame_border.html
|
||||
file://s:/table_tests/marvin/table_frame_box.html
|
||||
file://s:/table_tests/marvin/table_frame_hsides.html
|
||||
file://s:/table_tests/marvin/table_frame_lhs.html
|
||||
file://s:/table_tests/marvin/table_frame_rhs.html
|
||||
file://s:/table_tests/marvin/table_frame_void.html
|
||||
file://s:/table_tests/marvin/table_frame_vsides.html
|
||||
file://s:/table_tests/marvin/table_row_align_center.html
|
||||
file://s:/table_tests/marvin/table_row_align_left.html
|
||||
file://s:/table_tests/marvin/table_row_align_right.html
|
||||
file://s:/table_tests/marvin/table_rules_all.html
|
||||
file://s:/table_tests/marvin/table_rules_cols.html
|
||||
file://s:/table_tests/marvin/table_rules_groups.html
|
||||
file://s:/table_tests/marvin/table_rules_none.html
|
||||
file://s:/table_tests/marvin/table_rules_rows.html
|
||||
file://s:/table_tests/marvin/tables_align_center.html
|
||||
file://s:/table_tests/marvin/tables_align_left.html
|
||||
file://s:/table_tests/marvin/tables_align_right.html
|
||||
file://s:/table_tests/marvin/tables_bgcolor_aqua.html
|
||||
file://s:/table_tests/marvin/tables_bgcolor_aqua_rgb.html
|
||||
file://s:/table_tests/marvin/tables_border_0.html
|
||||
file://s:/table_tests/marvin/tables_border_1.html
|
||||
file://s:/table_tests/marvin/tables_border_2.html
|
||||
file://s:/table_tests/marvin/tables_border_3.html
|
||||
file://s:/table_tests/marvin/tables_caption_align_bottom.html
|
||||
file://s:/table_tests/marvin/tables_caption_align_left.html
|
||||
file://s:/table_tests/marvin/tables_caption_align_right.html
|
||||
file://s:/table_tests/marvin/tables_caption_align_top.html
|
||||
file://s:/table_tests/marvin/tables_cellpadding.html
|
||||
file://s:/table_tests/marvin/tables_cellpadding_pct.html
|
||||
file://s:/table_tests/marvin/tables_cellspacing.html
|
||||
file://s:/table_tests/marvin/tables_cellspacing_pct.html
|
||||
file://s:/table_tests/marvin/tables_class.html
|
||||
file://s:/table_tests/marvin/tables_default.html
|
||||
file://s:/table_tests/marvin/tables_id.html
|
||||
file://s:/table_tests/marvin/tables_onblclick.html
|
||||
file://s:/table_tests/marvin/tables_onclick.html
|
||||
file://s:/table_tests/marvin/tables_ondblclick.html
|
||||
file://s:/table_tests/marvin/tables_onkeydown.html
|
||||
file://s:/table_tests/marvin/tables_onkeypress.html
|
||||
file://s:/table_tests/marvin/tables_onkeyup.html
|
||||
file://s:/table_tests/marvin/tables_onmousedown.html
|
||||
file://s:/table_tests/marvin/tables_onmousemove.html
|
||||
file://s:/table_tests/marvin/tables_onmouseout.html
|
||||
file://s:/table_tests/marvin/tables_onmouseover.html
|
||||
file://s:/table_tests/marvin/tables_onmouseup.html
|
||||
file://s:/table_tests/marvin/tables_row_th_nowrap.html
|
||||
file://s:/table_tests/marvin/tables_style.html
|
||||
file://s:/table_tests/marvin/tables_td_align_center.html
|
||||
file://s:/table_tests/marvin/tables_td_align_left.html
|
||||
file://s:/table_tests/marvin/tables_td_align_right.html
|
||||
file://s:/table_tests/marvin/tables_td_colspan.html
|
||||
file://s:/table_tests/marvin/tables_td_height.html
|
||||
file://s:/table_tests/marvin/tables_td_nowrap.html
|
||||
file://s:/table_tests/marvin/tables_td_rowspan.html
|
||||
file://s:/table_tests/marvin/tables_td_width.html
|
||||
file://s:/table_tests/marvin/tables_th_align_center.html
|
||||
file://s:/table_tests/marvin/tables_th_align_left.html
|
||||
file://s:/table_tests/marvin/tables_th_align_right.html
|
||||
file://s:/table_tests/marvin/tables_th_colspan.html
|
||||
file://s:/table_tests/marvin/tables_th_height.html
|
||||
file://s:/table_tests/marvin/tables_th_rowspan.html
|
||||
file://s:/table_tests/marvin/tables_th_width.html
|
||||
file://s:/table_tests/marvin/tables_width_percent.html
|
||||
file://s:/table_tests/marvin/tables_width_px.html
|
||||
file://s:/table_tests/marvin/tbody_align_center.html
|
||||
file://s:/table_tests/marvin/tbody_align_char.html
|
||||
file://s:/table_tests/marvin/tbody_align_justify.html
|
||||
file://s:/table_tests/marvin/tbody_align_left.html
|
||||
file://s:/table_tests/marvin/tbody_align_right.html
|
||||
file://s:/table_tests/marvin/tbody_char.html
|
||||
file://s:/table_tests/marvin/tbody_valign_baseline.html
|
||||
file://s:/table_tests/marvin/tbody_valign_bottom.html
|
||||
file://s:/table_tests/marvin/tbody_valign_middle.html
|
||||
file://s:/table_tests/marvin/tbody_valign_top.html
|
||||
file://s:/table_tests/marvin/td_valign_baseline.html
|
||||
file://s:/table_tests/marvin/td_valign_bottom.html
|
||||
file://s:/table_tests/marvin/td_valign_middle.html
|
||||
file://s:/table_tests/marvin/td_valign_top.html
|
||||
file://s:/table_tests/marvin/tfoot_align_center.html
|
||||
file://s:/table_tests/marvin/tfoot_align_char.html
|
||||
file://s:/table_tests/marvin/tfoot_align_justify.html
|
||||
file://s:/table_tests/marvin/tfoot_align_left.html
|
||||
file://s:/table_tests/marvin/tfoot_align_right.html
|
||||
file://s:/table_tests/marvin/tfoot_char.html
|
||||
file://s:/table_tests/marvin/tfoot_valign_baseline.html
|
||||
file://s:/table_tests/marvin/tfoot_valign_bottom.html
|
||||
file://s:/table_tests/marvin/tfoot_valign_middle.html
|
||||
file://s:/table_tests/marvin/tfoot_valign_top.html
|
||||
file://s:/table_tests/marvin/th_valign_baseline.html
|
||||
file://s:/table_tests/marvin/th_valign_bottom.html
|
||||
file://s:/table_tests/marvin/th_valign_middle.html
|
||||
file://s:/table_tests/marvin/th_valign_top.html
|
||||
file://s:/table_tests/marvin/thead_align_center.html
|
||||
file://s:/table_tests/marvin/thead_align_char.html
|
||||
file://s:/table_tests/marvin/thead_align_justify.html
|
||||
file://s:/table_tests/marvin/thead_align_left.html
|
||||
file://s:/table_tests/marvin/thead_align_right.html
|
||||
file://s:/table_tests/marvin/thead_char.html
|
||||
file://s:/table_tests/marvin/thead_valign_baseline.html
|
||||
file://s:/table_tests/marvin/thead_valign_bottom.html
|
||||
file://s:/table_tests/marvin/thead_valign_middle.html
|
||||
file://s:/table_tests/marvin/thead_valign_top.html
|
||||
file://s:/table_tests/marvin/tr_bgcolor_blue.html
|
||||
file://s:/table_tests/marvin/tr_bgcolor_blue_rgb.html
|
||||
file://s:/table_tests/marvin/tr_valign_baseline.html
|
||||
file://s:/table_tests/marvin/tr_valign_bottom.html
|
||||
file://s:/table_tests/marvin/tr_valign_middle.html
|
||||
file://s:/table_tests/marvin/tr_valign_top.html
|
||||
@@ -0,0 +1 @@
|
||||
<!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.0 Transitional//EN" >
|
||||
@@ -0,0 +1 @@
|
||||
<!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.0 Transitional//EN" >
|
||||
@@ -0,0 +1 @@
|
||||
<!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.0 Transitional//EN" >
|
||||
@@ -0,0 +1 @@
|
||||
<!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.0 Transitional//EN" >
|
||||
@@ -0,0 +1 @@
|
||||
<!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.0 Transitional//EN" >
|
||||
@@ -0,0 +1 @@
|
||||
<!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.0 Transitional//EN" >
|
||||
@@ -0,0 +1 @@
|
||||
<!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.0 Transitional//EN" >
|
||||
@@ -0,0 +1 @@
|
||||
<!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.0 Transitional//EN" >
|
||||
@@ -0,0 +1 @@
|
||||
<!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.0 Transitional//EN" >
|
||||
@@ -0,0 +1,36 @@
|
||||
<!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 3.2 Final//EN" >
|
||||
<html>
|
||||
<head>
|
||||
<!-- testcase: tables_row_align_center.html
|
||||
description: HTML Text Markup Element, TABLE/TR/ALIGN -->
|
||||
<!-- Author: Chris Petersen Date: 8/6/98 -->
|
||||
<!-- CONFIDENTIAL AND PROPRIETARY TEST SCRIPT OF NETSCAPE COMMUNICATIONS CORPORATION
|
||||
Copyright © 1998 Netscape Communications Corporation. All Rights Reserved. Use of this Test Script is
|
||||
subject to the terms of the applicable license agreement from Netscape Communications Corporation. -->
|
||||
<!-- Purpose:To test the TABLE/TR/ALIGN tag.-->
|
||||
<!-- Expected result: The contents of each cell should center aligned -->
|
||||
<title>Web Browser Web View (HTML): Document TABLE/TR/ALIGN</title>
|
||||
</head>
|
||||
<body>
|
||||
The table displayed is two rows by three columns. Each table row has been aligned
|
||||
left. The table has been assigned a width and border value so that it is easier to
|
||||
see the alignment.<br>
|
||||
<table width=300 border=1>
|
||||
<tr align=center>
|
||||
<td>Navigator</td>
|
||||
<td>Messenger</td>
|
||||
<td>Collabra</td>
|
||||
</tr>
|
||||
<tr align=center>
|
||||
<td>Composer</td>
|
||||
<td>Calendar</td>
|
||||
<td>Netcaster</td>
|
||||
</tr>
|
||||
</table>
|
||||
</body>
|
||||
</html>
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
@@ -0,0 +1,36 @@
|
||||
<!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 3.2 Final//EN" >
|
||||
<html>
|
||||
<head>
|
||||
<!-- testcase: tables_row_align_left.html
|
||||
description: HTML Text Markup Element, TABLE/TR/ALIGN -->
|
||||
<!-- Author: Chris Petersen Date: 8/6/98 -->
|
||||
<!-- CONFIDENTIAL AND PROPRIETARY TEST SCRIPT OF NETSCAPE COMMUNICATIONS CORPORATION
|
||||
Copyright © 1998 Netscape Communications Corporation. All Rights Reserved. Use of this Test Script is
|
||||
subject to the terms of the applicable license agreement from Netscape Communications Corporation. -->
|
||||
<!-- Purpose:To test the TABLE/TR/ALIGN tag.-->
|
||||
<!-- Expected result: The contents of each cell should left aligned -->
|
||||
<title>Web Browser Web View (HTML): Document TABLE/TR/ALIGN</title>
|
||||
</head>
|
||||
<body>
|
||||
The table displayed is two rows by three columns. Each table row has been aligned
|
||||
left. The table has been assigned a width and border value so that it is easier to
|
||||
see the alignment.<br>
|
||||
<table width=300 border=1>
|
||||
<tr align=left>
|
||||
<td>Navigator</td>
|
||||
<td>Messenger</td>
|
||||
<td>Collabra</td>
|
||||
</tr>
|
||||
<tr align=left>
|
||||
<td>Composer</td>
|
||||
<td>Calendar</td>
|
||||
<td>Netcaster</td>
|
||||
</tr>
|
||||
</table>
|
||||
</body>
|
||||
</html>
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
@@ -0,0 +1,36 @@
|
||||
<!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 3.2 Final//EN" >
|
||||
<html>
|
||||
<head>
|
||||
<!-- testcase: tables_row_align_right.html
|
||||
description: HTML Text Markup Element, TABLE/TR/ALIGN -->
|
||||
<!-- Author: Chris Petersen Date: 8/6/98 -->
|
||||
<!-- CONFIDENTIAL AND PROPRIETARY TEST SCRIPT OF NETSCAPE COMMUNICATIONS CORPORATION
|
||||
Copyright © 1998 Netscape Communications Corporation. All Rights Reserved. Use of this Test Script is
|
||||
subject to the terms of the applicable license agreement from Netscape Communications Corporation. -->
|
||||
<!-- Purpose:To test the TABLE/TR/ALIGN tag.-->
|
||||
<!-- Expected result: The contents of each cell should right aligned -->
|
||||
<title>Web Browser Web View (HTML): Document TABLE/TR/ALIGN</title>
|
||||
</head>
|
||||
<body>
|
||||
The table displayed is two rows by three columns. Each table row has been aligned
|
||||
right. The table has been assigned a width and border value so that it is easier to
|
||||
see the alignment.<br>
|
||||
<table width=300 border=1>
|
||||
<tr align=right>
|
||||
<td>Navigator</td>
|
||||
<td>Messenger</td>
|
||||
<td>Collabra</td>
|
||||
</tr>
|
||||
<tr align=right>
|
||||
<td>Composer</td>
|
||||
<td>Calendar</td>
|
||||
<td>Netcaster</td>
|
||||
</tr>
|
||||
</table>
|
||||
</body>
|
||||
</html>
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
@@ -0,0 +1 @@
|
||||
<!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.0 Transitional//EN" >
|
||||
@@ -0,0 +1 @@
|
||||
<!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.0 Transitional//EN" >
|
||||
@@ -0,0 +1 @@
|
||||
<!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.0 Transitional//EN" >
|
||||
@@ -0,0 +1 @@
|
||||
<!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.0 Transitional//EN" >
|
||||
@@ -0,0 +1 @@
|
||||
<!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.0 Transitional//EN" >
|
||||
@@ -0,0 +1,34 @@
|
||||
<!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 3.2 Final//EN" >
|
||||
<html>
|
||||
<head>
|
||||
<!-- test case: tables_align_center.html
|
||||
description: HTML Text Markup Element, TABLE -->
|
||||
<!-- Author: Chris Petersen Date: 8/5/98 -->
|
||||
<!-- CONFIDENTIAL AND PROPRIETARY TEST SCRIPT OF NETSCAPE COMMUNICATIONS CORPORATION
|
||||
Copyright © 1998 Netscape Communications Corporation. All Rights Reserved. Use of this Test Script is
|
||||
subject to the terms of the applicable license agreement from Netscape Communications Corporation. -->
|
||||
<!-- Purpose:To test the TABLE tag.-->
|
||||
<!-- Expected result: A table should be displayed in the window with center alignment.-->
|
||||
<title>Web Browser Web View (HTML): Document TABLE</title>
|
||||
</head>
|
||||
<body>
|
||||
The table displayed is two rows by three columns with center alignment.<br>
|
||||
<table align=center>
|
||||
<tr>
|
||||
<td>Navigator</td>
|
||||
<td>Messenger</td>
|
||||
<td>Collabra</td>
|
||||
</tr>
|
||||
<tr>
|
||||
<td>Composer</td>
|
||||
<td>Calendar</td>
|
||||
<td>Netcaster</td>
|
||||
</tr>
|
||||
</table>
|
||||
</body>
|
||||
</html>
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
@@ -0,0 +1,34 @@
|
||||
<!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 3.2 Final//EN" >
|
||||
<html>
|
||||
<head>
|
||||
<!-- test case: tables_align_left.html
|
||||
description: HTML Text Markup Element, TABLE -->
|
||||
<!-- Author: Chris Petersen Date: 8/6/98 -->
|
||||
<!-- CONFIDENTIAL AND PROPRIETARY TEST SCRIPT OF NETSCAPE COMMUNICATIONS CORPORATION
|
||||
Copyright © 1998 Netscape Communications Corporation. All Rights Reserved. Use of this Test Script is
|
||||
subject to the terms of the applicable license agreement from Netscape Communications Corporation. -->
|
||||
<!-- Purpose:To test the TABLE tag.-->
|
||||
<!-- Expected result: A table should be displayed in the window with left alignment -->
|
||||
<title>Web Browser Web View (HTML): Document TABLE</title>
|
||||
</head>
|
||||
<body>
|
||||
The table displayed is two rows by three columns with left alignment(default).<br>
|
||||
<table align=left>
|
||||
<tr>
|
||||
<td>Navigator</td>
|
||||
<td>Messenger</td>
|
||||
<td>Collabra</td>
|
||||
</tr>
|
||||
<tr>
|
||||
<td>Composer</td>
|
||||
<td>Calendar</td>
|
||||
<td>Netcaster</td>
|
||||
</tr>
|
||||
</table>
|
||||
</body>
|
||||
</html>
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
@@ -0,0 +1,34 @@
|
||||
<!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 3.2 Final//EN" >
|
||||
<html>
|
||||
<head>
|
||||
<!-- test case: tables_align_right.html
|
||||
description: HTML Text Markup Element, TABLE -->
|
||||
<!-- Author: Chris Petersen Date: 8/6/98 -->
|
||||
<!-- CONFIDENTIAL AND PROPRIETARY TEST SCRIPT OF NETSCAPE COMMUNICATIONS CORPORATION
|
||||
Copyright © 1998 Netscape Communications Corporation. All Rights Reserved. Use of this Test Script is
|
||||
subject to the terms of the applicable license agreement from Netscape Communications Corporation. -->
|
||||
<!-- Purpose:To test the TABLE tag.-->
|
||||
<!-- Expected result: A table should be displayed in the window with right alignment. -->
|
||||
<title>Web Browser Web View (HTML): Document TABLE</title>
|
||||
</head>
|
||||
<body>
|
||||
The table displayed is two rows by three columns with right alignment.<br>
|
||||
<table align=right>
|
||||
<tr>
|
||||
<td>Navigator</td>
|
||||
<td>Messenger</td>
|
||||
<td>Collabra</td>
|
||||
</tr>
|
||||
<tr>
|
||||
<td>Composer</td>
|
||||
<td>Calendar</td>
|
||||
<td>Netcaster</td>
|
||||
</tr>
|
||||
</table>
|
||||
</body>
|
||||
</html>
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
@@ -0,0 +1,40 @@
|
||||
<!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.0 Transitional//EN">
|
||||
<html>
|
||||
<head>
|
||||
<!-- test case: tables_bgcolor_aqua.html -->
|
||||
<!-- description: HTML 4.0 TABLE element/BGCOLOR attribute -->
|
||||
<!-- Author: Christine Dreckman Date: 1/11/98 -->
|
||||
<!-- CONFIDENTIAL AND PROPRIETARY TEST SCRIPT OF NETSCAPE COMMUNICATIONS CORPORATION
|
||||
Copyright © 1999 Netscape Communications Corporation. All Rights Reserved. Use of this Test Script is
|
||||
subject to the terms of the applicable license agreement from Netscape Communications Corporation -->
|
||||
<!-- Purpose: To test the BGCOLOR attribute of the TABLE element tag-->
|
||||
<!-- Expected result: An aqua table should be displayed -->
|
||||
<title>tables_bgcolor_aqua</title>
|
||||
</head>
|
||||
<body bgcolor="#FFFFFF">
|
||||
<p>Aqua table with a white body background</p>
|
||||
<table border bgcolor="aqua">
|
||||
<tr>
|
||||
<td> </td>
|
||||
<td> </td>
|
||||
<td> </td>
|
||||
</tr>
|
||||
<tr>
|
||||
<td> </td>
|
||||
<td> </td>
|
||||
<td> </td>
|
||||
</tr>
|
||||
</table>
|
||||
</body>
|
||||
</html>
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
@@ -0,0 +1,40 @@
|
||||
<!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.0 Transitional//EN">
|
||||
<html>
|
||||
<head>
|
||||
<!-- test case: tables_bgcolor_aqua_rgb.html -->
|
||||
<!-- description: HTML 4.0 TABLE element/BGCOLOR attribute -->
|
||||
<!-- Author: Christine Dreckman Date: 1/11/98 -->
|
||||
<!-- CONFIDENTIAL AND PROPRIETARY TEST SCRIPT OF NETSCAPE COMMUNICATIONS CORPORATION
|
||||
Copyright © 1999 Netscape Communications Corporation. All Rights Reserved. Use of this Test Script is
|
||||
subject to the terms of the applicable license agreement from Netscape Communications Corporation -->
|
||||
<!-- Purpose: To test the BGCOLOR attribute of the TABLE element tag-->
|
||||
<!-- Expected result: An aqua table should be displayed -->
|
||||
<title>tables_bgcolor_aqua_rgb</title>
|
||||
</head>
|
||||
<body bgcolor="#FFFFFF">
|
||||
<p>Aqua table with a white body background</p>
|
||||
<table border bgcolor="#00FFFF">
|
||||
<tr>
|
||||
<td> </td>
|
||||
<td> </td>
|
||||
<td> </td>
|
||||
</tr>
|
||||
<tr>
|
||||
<td> </td>
|
||||
<td> </td>
|
||||
<td> </td>
|
||||
</tr>
|
||||
</table>
|
||||
</body>
|
||||
</html>
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
@@ -0,0 +1,40 @@
|
||||
<!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.0 Transitional//EN">
|
||||
<html>
|
||||
<head>
|
||||
<!-- test case: tables_bgcolor_black.html -->
|
||||
<!-- description: HTML 4.0 TABLE element/BGCOLOR attribute -->
|
||||
<!-- Author: Christine Dreckman Date: 1/11/98 -->
|
||||
<!-- CONFIDENTIAL AND PROPRIETARY TEST SCRIPT OF NETSCAPE COMMUNICATIONS CORPORATION
|
||||
Copyright © 1999 Netscape Communications Corporation. All Rights Reserved. Use of this Test Script is
|
||||
subject to the terms of the applicable license agreement from Netscape Communications Corporation -->
|
||||
<!-- Purpose: To test the BGCOLOR attribute of the TABLE element tag-->
|
||||
<!-- Expected result: A black table should be displayed -->
|
||||
<title>tables_bgcolor_black</title>
|
||||
</head>
|
||||
<body bgcolor="#FFFFFF">
|
||||
<p>Black table with a white body background</p>
|
||||
<table border bgcolor="black">
|
||||
<tr>
|
||||
<td> </td>
|
||||
<td> </td>
|
||||
<td> </td>
|
||||
</tr>
|
||||
<tr>
|
||||
<td> </td>
|
||||
<td> </td>
|
||||
<td> </td>
|
||||
</tr>
|
||||
</table>
|
||||
</body>
|
||||
</html>
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
@@ -0,0 +1,40 @@
|
||||
<!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.0 Transitional//EN">
|
||||
<html>
|
||||
<head>
|
||||
<!-- test case: tables_bgcolor_black_rgb.html -->
|
||||
<!-- description: HTML 4.0 TABLE element/BGCOLOR attribute -->
|
||||
<!-- Author: Christine Dreckman Date: 1/11/98 -->
|
||||
<!-- CONFIDENTIAL AND PROPRIETARY TEST SCRIPT OF NETSCAPE COMMUNICATIONS CORPORATION
|
||||
Copyright © 1999 Netscape Communications Corporation. All Rights Reserved. Use of this Test Script is
|
||||
subject to the terms of the applicable license agreement from Netscape Communications Corporation -->
|
||||
<!-- Purpose: To test the BGCOLOR attribute of the TABLE element tag-->
|
||||
<!-- Expected result: A black table should be displayed -->
|
||||
<title>tables_bgcolor_black_rgb</title>
|
||||
</head>
|
||||
<body bgcolor="#FFFFFF">
|
||||
<p>Black table with a white body background</p>
|
||||
<table border bgcolor="#000000">
|
||||
<tr>
|
||||
<td> </td>
|
||||
<td> </td>
|
||||
<td> </td>
|
||||
</tr>
|
||||
<tr>
|
||||
<td> </td>
|
||||
<td> </td>
|
||||
<td> </td>
|
||||
</tr>
|
||||
</table>
|
||||
</body>
|
||||
</html>
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
@@ -0,0 +1,40 @@
|
||||
<!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.0 Transitional//EN">
|
||||
<html>
|
||||
<head>
|
||||
<!-- test case: tables_bgcolor_blue.html -->
|
||||
<!-- description: HTML 4.0 TABLE element/BGCOLOR attribute -->
|
||||
<!-- Author: Christine Dreckman Date: 1/11/98 -->
|
||||
<!-- CONFIDENTIAL AND PROPRIETARY TEST SCRIPT OF NETSCAPE COMMUNICATIONS CORPORATION
|
||||
Copyright © 1999 Netscape Communications Corporation. All Rights Reserved. Use of this Test Script is
|
||||
subject to the terms of the applicable license agreement from Netscape Communications Corporation -->
|
||||
<!-- Purpose: To test the BGCOLOR attribute of the TABLE element tag-->
|
||||
<!-- Expected result: A blue table should be displayed -->
|
||||
<title>tables_bgcolor_blue</title>
|
||||
</head>
|
||||
<body bgcolor="#FFFFFF">
|
||||
<p>Blue table with a white body background</p>
|
||||
<table border bgcolor="blue">
|
||||
<tr>
|
||||
<td> </td>
|
||||
<td> </td>
|
||||
<td> </td>
|
||||
</tr>
|
||||
<tr>
|
||||
<td> </td>
|
||||
<td> </td>
|
||||
<td> </td>
|
||||
</tr>
|
||||
</table>
|
||||
</body>
|
||||
</html>
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
@@ -0,0 +1,40 @@
|
||||
<!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.0 Transitional//EN">
|
||||
<html>
|
||||
<head>
|
||||
<!-- test case: tables_bgcolor_blue_rgb.html -->
|
||||
<!-- description: HTML 4.0 TABLE element/BGCOLOR attribute -->
|
||||
<!-- Author: Christine Dreckman Date: 1/11/98 -->
|
||||
<!-- CONFIDENTIAL AND PROPRIETARY TEST SCRIPT OF NETSCAPE COMMUNICATIONS CORPORATION
|
||||
Copyright © 1999 Netscape Communications Corporation. All Rights Reserved. Use of this Test Script is
|
||||
subject to the terms of the applicable license agreement from Netscape Communications Corporation -->
|
||||
<!-- Purpose: To test the BGCOLOR attribute of the TABLE element tag-->
|
||||
<!-- Expected result: A blue table should be displayed -->
|
||||
<title>tables_bgcolor_blue_rgb</title>
|
||||
</head>
|
||||
<body bgcolor="#FFFFFF">
|
||||
<p>Blue table with a white body background</p>
|
||||
<table border bgcolor="#0000FF">
|
||||
<tr>
|
||||
<td> </td>
|
||||
<td> </td>
|
||||
<td> </td>
|
||||
</tr>
|
||||
<tr>
|
||||
<td> </td>
|
||||
<td> </td>
|
||||
<td> </td>
|
||||
</tr>
|
||||
</table>
|
||||
</body>
|
||||
</html>
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
@@ -0,0 +1,40 @@
|
||||
<!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.0 Transitional//EN">
|
||||
<html>
|
||||
<head>
|
||||
<!-- test case: tables_bgcolor_fuchsia.html -->
|
||||
<!-- description: HTML 4.0 TABLE element/BGCOLOR attribute -->
|
||||
<!-- Author: Christine Dreckman Date: 1/11/98 -->
|
||||
<!-- CONFIDENTIAL AND PROPRIETARY TEST SCRIPT OF NETSCAPE COMMUNICATIONS CORPORATION
|
||||
Copyright © 1999 Netscape Communications Corporation. All Rights Reserved. Use of this Test Script is
|
||||
subject to the terms of the applicable license agreement from Netscape Communications Corporation -->
|
||||
<!-- Purpose: To test the BGCOLOR attribute of the TABLE element tag-->
|
||||
<!-- Expected result: A fuchsia table should be displayed -->
|
||||
<title>tables_bgcolor_fuchsia</title>
|
||||
</head>
|
||||
<body bgcolor="#FFFFFF">
|
||||
<p>Fuchsia table with a white body background</p>
|
||||
<table border bgcolor="fuchsia">
|
||||
<tr>
|
||||
<td> </td>
|
||||
<td> </td>
|
||||
<td> </td>
|
||||
</tr>
|
||||
<tr>
|
||||
<td> </td>
|
||||
<td> </td>
|
||||
<td> </td>
|
||||
</tr>
|
||||
</table>
|
||||
</body>
|
||||
</html>
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
@@ -0,0 +1,40 @@
|
||||
<!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.0 Transitional//EN">
|
||||
<html>
|
||||
<head>
|
||||
<!-- test case: tables_bgcolor_fuchsia_rgb.html -->
|
||||
<!-- description: HTML 4.0 TABLE element/BGCOLOR attribute -->
|
||||
<!-- Author: Christine Dreckman Date: 1/11/98 -->
|
||||
<!-- CONFIDENTIAL AND PROPRIETARY TEST SCRIPT OF NETSCAPE COMMUNICATIONS CORPORATION
|
||||
Copyright © 1999 Netscape Communications Corporation. All Rights Reserved. Use of this Test Script is
|
||||
subject to the terms of the applicable license agreement from Netscape Communications Corporation -->
|
||||
<!-- Purpose: To test the BGCOLOR attribute of the TABLE element tag-->
|
||||
<!-- Expected result: A fuchsia table should be displayed -->
|
||||
<title>tables_bgcolor_fuchsia_rgb</title>
|
||||
</head>
|
||||
<body bgcolor="#FFFFFF">
|
||||
<p>Fuchsia table with a white body background</p>
|
||||
<table border bgcolor="#FF00FF">
|
||||
<tr>
|
||||
<td> </td>
|
||||
<td> </td>
|
||||
<td> </td>
|
||||
</tr>
|
||||
<tr>
|
||||
<td> </td>
|
||||
<td> </td>
|
||||
<td> </td>
|
||||
</tr>
|
||||
</table>
|
||||
</body>
|
||||
</html>
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
@@ -0,0 +1,40 @@
|
||||
<!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.0 Transitional//EN">
|
||||
<html>
|
||||
<head>
|
||||
<!-- test case: tables_bgcolor_gray.html -->
|
||||
<!-- description: HTML 4.0 TABLE element/BGCOLOR attribute -->
|
||||
<!-- Author: Christine Dreckman Date: 1/11/98 -->
|
||||
<!-- CONFIDENTIAL AND PROPRIETARY TEST SCRIPT OF NETSCAPE COMMUNICATIONS CORPORATION
|
||||
Copyright © 1999 Netscape Communications Corporation. All Rights Reserved. Use of this Test Script is
|
||||
subject to the terms of the applicable license agreement from Netscape Communications Corporation -->
|
||||
<!-- Purpose: To test the BGCOLOR attribute of the TABLE element tag-->
|
||||
<!-- Expected result: A gray table should be displayed -->
|
||||
<title>tables_bgcolor_gray</title>
|
||||
</head>
|
||||
<body bgcolor="#FFFFFF">
|
||||
<p>Gray table with a white body background</p>
|
||||
<table border bgcolor="gray">
|
||||
<tr>
|
||||
<td> </td>
|
||||
<td> </td>
|
||||
<td> </td>
|
||||
</tr>
|
||||
<tr>
|
||||
<td> </td>
|
||||
<td> </td>
|
||||
<td> </td>
|
||||
</tr>
|
||||
</table>
|
||||
</body>
|
||||
</html>
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
@@ -0,0 +1,40 @@
|
||||
<!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.0 Transitional//EN">
|
||||
<html>
|
||||
<head>
|
||||
<!-- test case: tables_bgcolor_gray_rgb.html -->
|
||||
<!-- description: HTML 4.0 TABLE element/BGCOLOR attribute -->
|
||||
<!-- Author: Christine Dreckman Date: 1/11/98 -->
|
||||
<!-- CONFIDENTIAL AND PROPRIETARY TEST SCRIPT OF NETSCAPE COMMUNICATIONS CORPORATION
|
||||
Copyright © 1999 Netscape Communications Corporation. All Rights Reserved. Use of this Test Script is
|
||||
subject to the terms of the applicable license agreement from Netscape Communications Corporation -->
|
||||
<!-- Purpose: To test the BGCOLOR attribute of the TABLE element tag-->
|
||||
<!-- Expected result: A gray table should be displayed -->
|
||||
<title>tables_bgcolor_gray_rgb</title>
|
||||
</head>
|
||||
<body bgcolor="#FFFFFF">
|
||||
<p>Gray table with a white body background</p>
|
||||
<table border bgcolor="#808080">
|
||||
<tr>
|
||||
<td> </td>
|
||||
<td> </td>
|
||||
<td> </td>
|
||||
</tr>
|
||||
<tr>
|
||||
<td> </td>
|
||||
<td> </td>
|
||||
<td> </td>
|
||||
</tr>
|
||||
</table>
|
||||
</body>
|
||||
</html>
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
@@ -0,0 +1,40 @@
|
||||
<!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.0 Transitional//EN">
|
||||
<html>
|
||||
<head>
|
||||
<!-- test case: tables_bgcolor_green.html -->
|
||||
<!-- description: HTML 4.0 TABLE element/BGCOLOR attribute -->
|
||||
<!-- Author: Christine Dreckman Date: 1/11/98 -->
|
||||
<!-- CONFIDENTIAL AND PROPRIETARY TEST SCRIPT OF NETSCAPE COMMUNICATIONS CORPORATION
|
||||
Copyright © 1999 Netscape Communications Corporation. All Rights Reserved. Use of this Test Script is
|
||||
subject to the terms of the applicable license agreement from Netscape Communications Corporation -->
|
||||
<!-- Purpose: To test the BGCOLOR attribute of the TABLE element tag-->
|
||||
<!-- Expected result: A green table should be displayed -->
|
||||
<title>tables_bgcolor_green</title>
|
||||
</head>
|
||||
<body bgcolor="#FFFFFF">
|
||||
<p>Green table with a white body background</p>
|
||||
<table border bgcolor="green">
|
||||
<tr>
|
||||
<td> </td>
|
||||
<td> </td>
|
||||
<td> </td>
|
||||
</tr>
|
||||
<tr>
|
||||
<td> </td>
|
||||
<td> </td>
|
||||
<td> </td>
|
||||
</tr>
|
||||
</table>
|
||||
</body>
|
||||
</html>
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
@@ -0,0 +1,40 @@
|
||||
<!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.0 Transitional//EN">
|
||||
<html>
|
||||
<head>
|
||||
<!-- test case: tables_bgcolor_green_rgb.html -->
|
||||
<!-- description: HTML 4.0 TABLE element/BGCOLOR attribute -->
|
||||
<!-- Author: Christine Dreckman Date: 1/11/98 -->
|
||||
<!-- CONFIDENTIAL AND PROPRIETARY TEST SCRIPT OF NETSCAPE COMMUNICATIONS CORPORATION
|
||||
Copyright © 1999 Netscape Communications Corporation. All Rights Reserved. Use of this Test Script is
|
||||
subject to the terms of the applicable license agreement from Netscape Communications Corporation -->
|
||||
<!-- Purpose: To test the BGCOLOR attribute of the TABLE element tag-->
|
||||
<!-- Expected result: A green table should be displayed -->
|
||||
<title>tables_bgcolor_green_rgb</title>
|
||||
</head>
|
||||
<body bgcolor="#FFFFFF">
|
||||
<p>Green table with a white body background</p>
|
||||
<table border bgcolor="#008000">
|
||||
<tr>
|
||||
<td> </td>
|
||||
<td> </td>
|
||||
<td> </td>
|
||||
</tr>
|
||||
<tr>
|
||||
<td> </td>
|
||||
<td> </td>
|
||||
<td> </td>
|
||||
</tr>
|
||||
</table>
|
||||
</body>
|
||||
</html>
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
Some files were not shown because too many files have changed in this diff Show More
Reference in New Issue
Block a user