moved to pub
git-svn-id: svn://10.0.0.236/trunk@165 18797224-902f-48f8-a5cc-f745e15eee43
This commit is contained in:
11
mozilla/htmlparser/tests/html/Table01.html
Normal file
11
mozilla/htmlparser/tests/html/Table01.html
Normal file
@@ -0,0 +1,11 @@
|
||||
first text
|
||||
<table border>
|
||||
<tr>
|
||||
<td>This is the first cell in the table
|
||||
<td>This is the second cell in the table
|
||||
<tr>
|
||||
<td>This is the third cell in the table
|
||||
<td>This is the fourth cell in the table
|
||||
</table>
|
||||
|
||||
last text
|
||||
14
mozilla/htmlparser/tests/html/Table02.html
Normal file
14
mozilla/htmlparser/tests/html/Table02.html
Normal file
@@ -0,0 +1,14 @@
|
||||
nested table, good syntax.
|
||||
<table border>
|
||||
<tr>
|
||||
<td>This is the first cell in the table
|
||||
<td>This is the second cell in the table
|
||||
<TABLE BORDER>
|
||||
<TR>
|
||||
<TD>inner cell
|
||||
</TABLE>
|
||||
<tr>
|
||||
<td>This is the third cell in the table
|
||||
<td>This is the fourth cell in the table
|
||||
</table>
|
||||
|
||||
11
mozilla/htmlparser/tests/html/Table03.html
Normal file
11
mozilla/htmlparser/tests/html/Table03.html
Normal file
@@ -0,0 +1,11 @@
|
||||
first text
|
||||
<table border align=left>
|
||||
<tr>
|
||||
<td>This is the first cell in the table
|
||||
<td>This is the second cell in the table
|
||||
<tr>
|
||||
<td>This is the third cell in the table
|
||||
<td>This is the fourth cell in the table
|
||||
</table>
|
||||
|
||||
last text
|
||||
53
mozilla/htmlparser/tests/html/Table04.html
Normal file
53
mozilla/htmlparser/tests/html/Table04.html
Normal file
@@ -0,0 +1,53 @@
|
||||
first text
|
||||
<ul>
|
||||
<li>
|
||||
list line 1
|
||||
|
||||
<li>
|
||||
list line 2
|
||||
<table border >
|
||||
<tr>
|
||||
<td>This is the first cell in the table
|
||||
<p> paragraph in cell.
|
||||
<td>This is the second cell in the table
|
||||
<ul>
|
||||
<li> list item1 in cell
|
||||
<li> list item2 in cell
|
||||
<ul>
|
||||
<tr>
|
||||
<td>This is the third cell in the table
|
||||
<td>This is the fourth cell in the table
|
||||
</table>
|
||||
|
||||
<li>
|
||||
list line 3
|
||||
<p>paragraph in list line 3.
|
||||
</ul>
|
||||
|
||||
table aligned:
|
||||
<ul>
|
||||
<li>
|
||||
list line 1
|
||||
|
||||
<li>
|
||||
list line 2
|
||||
<table border align=right>
|
||||
<tr>
|
||||
<td>This is the first cell in the table
|
||||
<p> paragraph in cell.
|
||||
<td>This is the second cell in the table
|
||||
<ul>
|
||||
<li> list item1 in cell
|
||||
<li> list item2 in cell
|
||||
<ul>
|
||||
<tr>
|
||||
<td>This is the third cell in the table
|
||||
<td>This is the fourth cell in the table
|
||||
</table>
|
||||
|
||||
<li>
|
||||
list line 3
|
||||
<p>paragraph in list line 3.
|
||||
</ul>
|
||||
|
||||
last text
|
||||
12
mozilla/htmlparser/tests/html/Table05.html
Normal file
12
mozilla/htmlparser/tests/html/Table05.html
Normal file
@@ -0,0 +1,12 @@
|
||||
The only syntax for Caption is after table start tag.
|
||||
<table border>
|
||||
<caption>caption1</caption>
|
||||
<tr>
|
||||
<td>cell 1-1
|
||||
<td>cell 1-2
|
||||
<tr>
|
||||
<td>cell 2-1
|
||||
<td>cell 2-2
|
||||
</table>
|
||||
|
||||
last text
|
||||
21
mozilla/htmlparser/tests/html/Table05e.html
Normal file
21
mozilla/htmlparser/tests/html/Table05e.html
Normal file
@@ -0,0 +1,21 @@
|
||||
Multiple caption elements, all outside td cells.
|
||||
<br>Nav 4.0: the first caption is accepted,
|
||||
Others are treated as text, and moved before the table.
|
||||
<br>Xena6.0: ignore misplaced caption tag. contents treated as text.
|
||||
<table border>
|
||||
TextAA
|
||||
<caption>caption1</caption>TextA
|
||||
<caption>caption2</caption>TextB
|
||||
<tr>
|
||||
<caption>caption3</caption>TextC
|
||||
<td>cell 1-1</td>
|
||||
<caption>caption4</caption>TextD
|
||||
<td>cell 1-2
|
||||
<tr>
|
||||
<caption>caption5</caption>TextE
|
||||
<td>cell 2-1
|
||||
<td>cell 2-2</td>
|
||||
<caption>caption6</caption>TextF
|
||||
</table>
|
||||
|
||||
last text
|
||||
16
mozilla/htmlparser/tests/html/Table05f.html
Normal file
16
mozilla/htmlparser/tests/html/Table05f.html
Normal file
@@ -0,0 +1,16 @@
|
||||
Multiple Captions inside cells,
|
||||
<br>Nav. 4.0: last one takes effect, and close td tr.
|
||||
previous captions are totally ignored.
|
||||
If there were no caption3, caption2 would take effect.
|
||||
<br>Xena 6.0: Ignore misplaced caption tag, contents treated as text.
|
||||
<table border>
|
||||
<caption>caption1</caption>
|
||||
<tr>
|
||||
<td>cell 1-1 <caption>caption2</caption>TextA
|
||||
<td>cell 1-2
|
||||
<tr>
|
||||
<td>cell 2-1
|
||||
<td>cell 2-2 <caption>caption3</caption>TextB
|
||||
</table>
|
||||
|
||||
last text
|
||||
13
mozilla/htmlparser/tests/html/Table05g.html
Normal file
13
mozilla/htmlparser/tests/html/Table05g.html
Normal file
@@ -0,0 +1,13 @@
|
||||
Captions outside of table are treated as text.
|
||||
<caption>caption1</caption>
|
||||
<table border>
|
||||
<tr>
|
||||
<td>cell 1-1
|
||||
<td>cell 1-2
|
||||
<tr>
|
||||
<td>cell 2-1
|
||||
<td>cell 2-2
|
||||
</table>
|
||||
|
||||
<caption>caption2</caption>
|
||||
last text
|
||||
12
mozilla/htmlparser/tests/html/Table05h.html
Normal file
12
mozilla/htmlparser/tests/html/Table05h.html
Normal file
@@ -0,0 +1,12 @@
|
||||
tr terminates caption
|
||||
<table border>
|
||||
<caption>caption1
|
||||
<tr>
|
||||
<td>cell 1-1
|
||||
<td>cell 1-2
|
||||
<tr>
|
||||
<td>cell 2-1
|
||||
<td>cell 2-2
|
||||
</table>
|
||||
|
||||
last text
|
||||
13
mozilla/htmlparser/tests/html/Table05i.html
Normal file
13
mozilla/htmlparser/tests/html/Table05i.html
Normal file
@@ -0,0 +1,13 @@
|
||||
tr terminates Caption, and close open(font)tags in caption.
|
||||
<br>also terminates those tags. In this case, the Font tag.
|
||||
<table border>
|
||||
<caption>caption1 <br> text1 <font size=6> text2
|
||||
<tr>
|
||||
<td>cell 1-1
|
||||
<td>cell 1-2
|
||||
<tr>
|
||||
<td>cell 2-1
|
||||
<td>cell 2-2
|
||||
</table>
|
||||
|
||||
last text
|
||||
11
mozilla/htmlparser/tests/html/Table05j.html
Normal file
11
mozilla/htmlparser/tests/html/Table05j.html
Normal file
@@ -0,0 +1,11 @@
|
||||
TD does NOT terminate Caption. TD's contents are used in caption.
|
||||
<table border>
|
||||
<caption>caption1 <br> text1 <font size=6> text2
|
||||
<td>cell 1-1
|
||||
<td>cell 1-2
|
||||
<tr>
|
||||
<td>cell 2-1
|
||||
<td>cell 2-2 no br in caption.
|
||||
</table>
|
||||
|
||||
last text
|
||||
13
mozilla/htmlparser/tests/html/Table06.html
Normal file
13
mozilla/htmlparser/tests/html/Table06.html
Normal file
@@ -0,0 +1,13 @@
|
||||
extra end table tag is ignored.
|
||||
<table border>
|
||||
<tr>
|
||||
<td>This is the first cell in the table
|
||||
<td>This is the second cell in the table
|
||||
<tr>
|
||||
<td>This is the third cell in the table
|
||||
<td>This is the fourth cell in the table
|
||||
</table>
|
||||
|
||||
</table>
|
||||
|
||||
last text
|
||||
14
mozilla/htmlparser/tests/html/acronym1.html
Normal file
14
mozilla/htmlparser/tests/html/acronym1.html
Normal file
@@ -0,0 +1,14 @@
|
||||
<html>
|
||||
<head>
|
||||
<title>test ACRONYM tag</title>
|
||||
</head>
|
||||
<body>
|
||||
test Acronym<br>
|
||||
1normal text in body line 1.
|
||||
<Acronym>
|
||||
A This text is in Acronym
|
||||
<br> B line 2 in Acronym
|
||||
</Acronym>
|
||||
2normal text in body line 2.
|
||||
</body>
|
||||
</html>
|
||||
17
mozilla/htmlparser/tests/html/aname01.html
Normal file
17
mozilla/htmlparser/tests/html/aname01.html
Normal file
@@ -0,0 +1,17 @@
|
||||
|
||||
<body>
|
||||
|
||||
<a name="516875">
|
||||
|
||||
<B><blockquote>Note!
|
||||
|
||||
</blockquote></B>
|
||||
|
||||
</a>
|
||||
|
||||
|
||||
|
||||
This is from http://margaux/manual-proxy-20/cfgservr.htm
|
||||
|
||||
|
||||
|
||||
13
mozilla/htmlparser/tests/html/atoi01.html
Normal file
13
mozilla/htmlparser/tests/html/atoi01.html
Normal file
@@ -0,0 +1,13 @@
|
||||
first text
|
||||
<font size="3"> size '3' </font>
|
||||
<font size=" 4"> size '_4' </font>
|
||||
<font size=" 5z"> size '_5z' </font>
|
||||
<font size=" 4%"> size ' 4%' </font>
|
||||
<font size=" 5 "> size '_5_' </font>
|
||||
<font size="+2"> size '+2' </font>
|
||||
<font size=" +2"> size '_+2' </font>
|
||||
<font size="+ 3"> size '+_3' </font>
|
||||
<font size=" +3"> size '_+3' </font>
|
||||
<font size="-1"> size -1 </font>
|
||||
|
||||
last text
|
||||
13
mozilla/htmlparser/tests/html/attribute_quote_bug1.html
Normal file
13
mozilla/htmlparser/tests/html/attribute_quote_bug1.html
Normal file
@@ -0,0 +1,13 @@
|
||||
<STYLE>
|
||||
P { background: teal; }
|
||||
</STYLE>
|
||||
<P>Same text as in <a href="table1.html>table1.html</a> except it's not
|
||||
in the table. This is to see what the bounding boxes for the various
|
||||
objects are.</P>
|
||||
|
||||
<P>This is the first cell in the table</P>
|
||||
<P>This is the second cell in the table</P>
|
||||
<P>This is the third cell in the table</P>
|
||||
<P>This is the fourth cell in the table</P>
|
||||
|
||||
file:/s:/ns/xena/lego/testhtml/attribute_quote_bug1.html
|
||||
14
mozilla/htmlparser/tests/html/bdo001.html
Normal file
14
mozilla/htmlparser/tests/html/bdo001.html
Normal file
@@ -0,0 +1,14 @@
|
||||
<html>
|
||||
<head>
|
||||
<title>test BDO tag</title>
|
||||
</head>
|
||||
<body>
|
||||
test BDO, bi directional override <br>
|
||||
1normal text in body line 1.
|
||||
<BDO dir="rtl">
|
||||
A This text is in BDO
|
||||
<br> B line 2 in BDO
|
||||
</BDO>
|
||||
2normal text in body line 2.
|
||||
</body>
|
||||
</html>
|
||||
11
mozilla/htmlparser/tests/html/br001.html
Normal file
11
mozilla/htmlparser/tests/html/br001.html
Normal file
@@ -0,0 +1,11 @@
|
||||
<HTML>
|
||||
<HEAD>
|
||||
</HEAD>
|
||||
<BODY>
|
||||
There no such thing as br end tag, it should be ignored.
|
||||
<BR></BR>
|
||||
the output should be a single br tag
|
||||
</br> no line break here.
|
||||
<br> This is Different than Nav 4.0, but we decided to do this.
|
||||
</BODY>
|
||||
</HTML>
|
||||
19
mozilla/htmlparser/tests/html/button001.html
Normal file
19
mozilla/htmlparser/tests/html/button001.html
Normal file
@@ -0,0 +1,19 @@
|
||||
<html>
|
||||
<body>
|
||||
<FORM action="http://somesite.com/prog/adduser" method="post">
|
||||
<P>
|
||||
First name: <INPUT type="text" name="firstname"><BR>
|
||||
Last name: <INPUT type="text" name="lastname"><BR>
|
||||
email: <INPUT type="text" name="email"><BR>
|
||||
<INPUT type="radio" name="sex" value="Male"> Male<BR>
|
||||
<INPUT type="radio" name="sex" value="Female"> Female<BR>
|
||||
<INPUT name="submit" value="submit" type="submit">
|
||||
<BUTTON name="submit" value="submit" type="submit">
|
||||
Send<IMG src="/icons/wow.gif" alt="wow">
|
||||
</BUTTON>
|
||||
<BUTTON name="reset" type="reset">
|
||||
Reset<IMG src="/icons/oops.gif" alt="oops">
|
||||
</BUTTON>
|
||||
</FORM>
|
||||
</body>
|
||||
</html>
|
||||
34
mozilla/htmlparser/tests/html/button002.html
Normal file
34
mozilla/htmlparser/tests/html/button002.html
Normal file
@@ -0,0 +1,34 @@
|
||||
<html>
|
||||
<body>
|
||||
<STRIKE>
|
||||
test in front
|
||||
<FORM action="http://somesite.com/prog/adduser" method="post">
|
||||
<P>
|
||||
First name: <INPUT type="text" name="firstname"><BR>
|
||||
Last name: <INPUT type="text" name="lastname"><BR>
|
||||
email: <INPUT type="text" name="email"><BR>
|
||||
<INPUT type="radio" name="sex" value="Male"> Male<BR>
|
||||
<INPUT type="radio" name="sex" value="Female"> Female<BR>
|
||||
<INPUT name="submit" value="submit" type="submit">
|
||||
<BUTTON name="submit" value="submit" type="submit">
|
||||
Send<IMG src="/icons/wow.gif" alt="wow"></BUTTON>
|
||||
text before reset
|
||||
<BUTTON name="reset" type="reset">
|
||||
Reset
|
||||
<IMG src="/icons/oops.gif" alt="oops">
|
||||
<table border>
|
||||
<tr>
|
||||
<td>cell1</td>
|
||||
<td>cell2</td>
|
||||
</tr>
|
||||
<tr>
|
||||
<td>cell3</td>
|
||||
<td>cell4</td>
|
||||
</tr>
|
||||
</table>
|
||||
</BUTTON>
|
||||
</FORM>
|
||||
text at the end.
|
||||
</STRIKE>
|
||||
</body>
|
||||
</html>
|
||||
29
mozilla/htmlparser/tests/html/center001.html
Normal file
29
mozilla/htmlparser/tests/html/center001.html
Normal file
@@ -0,0 +1,29 @@
|
||||
<html>
|
||||
|
||||
<META NAME="Producer" CONTENT="bahr">
|
||||
|
||||
<body>
|
||||
|
||||
|
||||
<h2><center>Text in H2 and center</center></h2>
|
||||
after H2 tag.
|
||||
<p>text in p tag.
|
||||
<center>Text in center, start new line</center>
|
||||
text after center.
|
||||
<br> another line in the same Paragraph/
|
||||
|
||||
<p>text in p tag. Same as above, but added a P tag before Center tag.
|
||||
<p>
|
||||
<center>Text in center, start new line</center>
|
||||
text after center.
|
||||
<br> another line in the same Paragraph
|
||||
|
||||
|
||||
<h4>Text in H4
|
||||
<p> text in H4 and P
|
||||
<br> more text
|
||||
</h4>
|
||||
|
||||
</body>
|
||||
</html>
|
||||
|
||||
36
mozilla/htmlparser/tests/html/center002.html
Normal file
36
mozilla/htmlparser/tests/html/center002.html
Normal file
@@ -0,0 +1,36 @@
|
||||
<html>
|
||||
<body>
|
||||
CENTER tag can have HR
|
||||
<CENTER>
|
||||
<APPLET CODE="NervousText.class" WIDTH=50 HEIGHT=70 ALIGN=left>
|
||||
<PARAM NAME=text VALUE="*">
|
||||
</APPLET>
|
||||
<APPLET CODE="NervousText.class" WIDTH=50 HEIGHT=70 ALIGN=right>
|
||||
<PARAM NAME=text VALUE="*">
|
||||
</APPLET>
|
||||
<HR SIZE=5 WIDTH=50% NOSHADE>
|
||||
<BIG>Magellan is cool, yes?</BIG>
|
||||
<HR SIZE=5 WIDTH=50% NOSHADE>
|
||||
<BR CLEAR=all>
|
||||
</CENTER>
|
||||
<br> the same as above, but in P tag
|
||||
<P>
|
||||
<CENTER>
|
||||
<APPLET CODE="NervousText.class" WIDTH=50 HEIGHT=70 ALIGN=left>
|
||||
<PARAM NAME=text VALUE="*">
|
||||
</APPLET>
|
||||
<APPLET CODE="NervousText.class" WIDTH=50 HEIGHT=70 ALIGN=right>
|
||||
<PARAM NAME=text VALUE="*">
|
||||
</APPLET>
|
||||
<HR SIZE=5 WIDTH=50% NOSHADE>
|
||||
<BIG>Magellan is cool, yes?</BIG>
|
||||
<HR SIZE=5 WIDTH=50% NOSHADE>
|
||||
<BR CLEAR=all>
|
||||
</CENTER>
|
||||
text after closing CENTER, but still in P.
|
||||
</P>
|
||||
some text after P is closed.
|
||||
<P> another paragraph.
|
||||
</body>
|
||||
</html>
|
||||
|
||||
21
mozilla/htmlparser/tests/html/col001.html
Normal file
21
mozilla/htmlparser/tests/html/col001.html
Normal file
@@ -0,0 +1,21 @@
|
||||
<html>
|
||||
<body>
|
||||
test COLGROUP
|
||||
<TABLE border>
|
||||
<COLGROUP span="2" width="150">
|
||||
<COLGROUP span="2" width="0*">
|
||||
<tr>
|
||||
<td>cell 1-1
|
||||
<td>cell 1-2
|
||||
<td>cell 1-3
|
||||
<td>cell 1-4
|
||||
<tr>
|
||||
<td>cell 2-1
|
||||
<td>cell 2-2
|
||||
<td>cell 2-3
|
||||
<td>cell 2-4
|
||||
</table>
|
||||
|
||||
last text
|
||||
</body>
|
||||
</html>
|
||||
24
mozilla/htmlparser/tests/html/col002.html
Normal file
24
mozilla/htmlparser/tests/html/col002.html
Normal file
@@ -0,0 +1,24 @@
|
||||
<html>
|
||||
<body>
|
||||
test COL and COLGROUP
|
||||
<TABLE border>
|
||||
<COLGROUP>
|
||||
<COL width="70">
|
||||
<COL width="120">
|
||||
</COLGROUP>
|
||||
<COLGROUP span="2" width="0*">
|
||||
|
||||
<td>cell 1-1
|
||||
<td>cell 1-2
|
||||
<td>cell 1-3
|
||||
<td>cell 1-4
|
||||
<tr>
|
||||
<td>cell 2-1
|
||||
<td>cell 2-2
|
||||
<td>cell 2-3
|
||||
<td>cell 2-4
|
||||
</table>
|
||||
|
||||
last text
|
||||
</body>
|
||||
</html>
|
||||
31
mozilla/htmlparser/tests/html/col003.html
Normal file
31
mozilla/htmlparser/tests/html/col003.html
Normal file
@@ -0,0 +1,31 @@
|
||||
<html>
|
||||
<body>
|
||||
test THEAD
|
||||
<TABLE border>
|
||||
<COLGROUP>
|
||||
<COL width="70">
|
||||
<COL width="120">
|
||||
</COLGROUP>
|
||||
<COLGROUP span="2" width="0*">
|
||||
<THEAD>
|
||||
<tr>
|
||||
<th>cell H-1
|
||||
<th>cell H-2
|
||||
<th>cell H-3
|
||||
<th>cell H-4
|
||||
</THEAD>
|
||||
<tr>
|
||||
<td>cell 1-1
|
||||
<td>cell 1-2
|
||||
<td>cell 1-3
|
||||
<td>cell 1-4
|
||||
<tr>
|
||||
<td>cell 2-1
|
||||
<td>cell 2-2
|
||||
<td>cell 2-3
|
||||
<td>cell 2-4
|
||||
</table>
|
||||
|
||||
last text
|
||||
</body>
|
||||
</html>
|
||||
26
mozilla/htmlparser/tests/html/col004.html
Normal file
26
mozilla/htmlparser/tests/html/col004.html
Normal file
@@ -0,0 +1,26 @@
|
||||
<html>
|
||||
<body>
|
||||
test TFOOT
|
||||
<TABLE border>
|
||||
<TFOOT>
|
||||
<tr>
|
||||
<th>cell F-1
|
||||
<th>cell F-2
|
||||
<th>cell F-3
|
||||
<th>cell F-4
|
||||
</TFOOT>
|
||||
<tr>
|
||||
<td>cell 1-1
|
||||
<td>cell 1-2
|
||||
<td>cell 1-3
|
||||
<td>cell 1-4
|
||||
<tr>
|
||||
<td>cell 2-1
|
||||
<td>cell 2-2
|
||||
<td>cell 2-3
|
||||
<td>cell 2-4
|
||||
</table>
|
||||
|
||||
last text
|
||||
</body>
|
||||
</html>
|
||||
39
mozilla/htmlparser/tests/html/col005.html
Normal file
39
mozilla/htmlparser/tests/html/col005.html
Normal file
@@ -0,0 +1,39 @@
|
||||
<html>
|
||||
<body>
|
||||
test both FHEAD and TFOOT
|
||||
<br>In MS IE4.0, TFOOT can be before THEAD
|
||||
<TABLE border>
|
||||
<COLGROUP>
|
||||
<COL width="70">
|
||||
<COL width="120">
|
||||
</COLGROUP>
|
||||
<COLGROUP span="2" width="0*">
|
||||
<TFOOT>
|
||||
<tr>
|
||||
<td>cell F-1
|
||||
<td>cell F-2
|
||||
<td>cell F-3
|
||||
<td>cell F-4
|
||||
</TFOOT>
|
||||
<THEAD>
|
||||
<tr>
|
||||
<th>cell h-1
|
||||
<th>cell h-2
|
||||
<th>cell h-3
|
||||
<th>cell h-4
|
||||
</THEAD>
|
||||
<tr>
|
||||
<td>cell 1-1
|
||||
<td>cell 1-2
|
||||
<td>cell 1-3
|
||||
<td>cell 1-4
|
||||
<tr>
|
||||
<td>cell 2-1
|
||||
<td>cell 2-2
|
||||
<td>cell 2-3
|
||||
<td>cell 2-4
|
||||
</table>
|
||||
|
||||
last text
|
||||
</body>
|
||||
</html>
|
||||
261
mozilla/htmlparser/tests/html/col006.html
Normal file
261
mozilla/htmlparser/tests/html/col006.html
Normal file
@@ -0,0 +1,261 @@
|
||||
<html>
|
||||
<body>
|
||||
File COL006.html is a long table.
|
||||
<br>Tested with MS IE4.0 : THEAD and TFOOT are NOT specially treated when scrolled on screen,
|
||||
or printed on paper.
|
||||
<br>Netscape can do better here
|
||||
<TABLE border>
|
||||
<COLGROUP>
|
||||
<COL width="70">
|
||||
<COL width="120">
|
||||
</COLGROUP>
|
||||
<COLGROUP span="2" width="0*">
|
||||
<TFOOT>
|
||||
<tr>
|
||||
<td>cell F-1
|
||||
<td>cell F-2
|
||||
<td>cell F-3
|
||||
<td>cell F-4
|
||||
</TFOOT>
|
||||
<THEAD>
|
||||
<tr>
|
||||
<th>cell h-1
|
||||
<th>cell h-2
|
||||
<th>cell h-3
|
||||
<th>cell h-4
|
||||
</THEAD>
|
||||
<tr>
|
||||
<td>cell 1-1
|
||||
<td>cell 1-2
|
||||
<td>cell 1-3
|
||||
<td>cell 1-4
|
||||
<tr>
|
||||
<td>cell 2-1
|
||||
<td>cell 2-2
|
||||
<td>cell 2-3
|
||||
<td>cell 2-4
|
||||
<tr>
|
||||
<td>cell 1-1
|
||||
<td>cell 1-2
|
||||
<td>cell 1-3
|
||||
<td>cell 1-4
|
||||
<tr>
|
||||
<td>cell 2-1
|
||||
<td>cell 2-2
|
||||
<td>cell 2-3
|
||||
<td>cell 2-4
|
||||
<tr>
|
||||
<td>cell 1-1
|
||||
<td>cell 1-2
|
||||
<td>cell 1-3
|
||||
<td>cell 1-4
|
||||
<tr>
|
||||
<td>cell 2-1
|
||||
<td>cell 2-2
|
||||
<td>cell 2-3
|
||||
<td>cell 2-4
|
||||
<tr>
|
||||
<td>cell 1-1
|
||||
<td>cell 1-2
|
||||
<td>cell 1-3
|
||||
<td>cell 1-4
|
||||
<tr>
|
||||
<td>cell 2-1
|
||||
<td>cell 2-2
|
||||
<td>cell 2-3
|
||||
<td>cell 2-4
|
||||
<tr>
|
||||
<td>cell 1-1
|
||||
<td>cell 1-2
|
||||
<td>cell 1-3
|
||||
<td>cell 1-4
|
||||
<tr>
|
||||
<td>cell 2-1
|
||||
<td>cell 2-2
|
||||
<td>cell 2-3
|
||||
<td>cell 2-4
|
||||
<tr>
|
||||
<td>cell 1-1
|
||||
<td>cell 1-2
|
||||
<td>cell 1-3
|
||||
<td>cell 1-4
|
||||
<tr>
|
||||
<td>cell 2-1
|
||||
<td>cell 2-2
|
||||
<td>cell 2-3
|
||||
<td>cell 2-4
|
||||
<tr>
|
||||
<td>cell 1-1
|
||||
<td>cell 1-2
|
||||
<td>cell 1-3
|
||||
<td>cell 1-4
|
||||
<tr>
|
||||
<td>cell 2-1
|
||||
<td>cell 2-2
|
||||
<td>cell 2-3
|
||||
<td>cell 2-4
|
||||
<tr>
|
||||
<td>cell 1-1
|
||||
<td>cell 1-2
|
||||
<td>cell 1-3
|
||||
<td>cell 1-4
|
||||
<tr>
|
||||
<td>cell 2-1
|
||||
<td>cell 2-2
|
||||
<td>cell 2-3
|
||||
<td>cell 2-4
|
||||
<tr>
|
||||
<td>cell 1-1
|
||||
<td>cell 1-2
|
||||
<td>cell 1-3
|
||||
<td>cell 1-4
|
||||
<tr>
|
||||
<td>cell 2-1
|
||||
<td>cell 2-2
|
||||
<td>cell 2-3
|
||||
<td>cell 2-4
|
||||
<tr>
|
||||
<td>cell 1-1
|
||||
<td>cell 1-2
|
||||
<td>cell 1-3
|
||||
<td>cell 1-4
|
||||
<tr>
|
||||
<td>cell 2-1
|
||||
<td>cell 2-2
|
||||
<td>cell 2-3
|
||||
<td>cell 2-4
|
||||
<tr>
|
||||
<td>cell 1-1
|
||||
<td>cell 1-2
|
||||
<td>cell 1-3
|
||||
<td>cell 1-4
|
||||
<tr>
|
||||
<td>cell 2-1
|
||||
<td>cell 2-2
|
||||
<td>cell 2-3
|
||||
<td>cell 2-4
|
||||
<tr>
|
||||
<td>cell 1-1
|
||||
<td>cell 1-2
|
||||
<td>cell 1-3
|
||||
<td>cell 1-4
|
||||
<tr>
|
||||
<td>cell 2-1
|
||||
<td>cell 2-2
|
||||
<td>cell 2-3
|
||||
<td>cell 2-4
|
||||
<tr>
|
||||
<td>cell 1-1
|
||||
<td>cell 1-2
|
||||
<td>cell 1-3
|
||||
<td>cell 1-4
|
||||
<tr>
|
||||
<td>cell 2-1
|
||||
<td>cell 2-2
|
||||
<td>cell 2-3
|
||||
<td>cell 2-4
|
||||
<tr>
|
||||
<td>cell 1-1
|
||||
<td>cell 1-2
|
||||
<td>cell 1-3
|
||||
<td>cell 1-4
|
||||
<tr>
|
||||
<td>cell 2-1
|
||||
<td>cell 2-2
|
||||
<td>cell 2-3
|
||||
<td>cell 2-4
|
||||
<tr>
|
||||
<td>cell 1-1
|
||||
<td>cell 1-2
|
||||
<td>cell 1-3
|
||||
<td>cell 1-4
|
||||
<tr>
|
||||
<td>cell 2-1
|
||||
<td>cell 2-2
|
||||
<td>cell 2-3
|
||||
<td>cell 2-4
|
||||
<tr>
|
||||
<td>cell 1-1
|
||||
<td>cell 1-2
|
||||
<td>cell 1-3
|
||||
<td>cell 1-4
|
||||
<tr>
|
||||
<td>cell 2-1
|
||||
<td>cell 2-2
|
||||
<td>cell 2-3
|
||||
<td>cell 2-4
|
||||
<tr>
|
||||
<td>cell 1-1
|
||||
<td>cell 1-2
|
||||
<td>cell 1-3
|
||||
<td>cell 1-4
|
||||
<tr>
|
||||
<td>cell 2-1
|
||||
<td>cell 2-2
|
||||
<td>cell 2-3
|
||||
<td>cell 2-4
|
||||
<tr>
|
||||
<td>cell 1-1
|
||||
<td>cell 1-2
|
||||
<td>cell 1-3
|
||||
<td>cell 1-4
|
||||
<tr>
|
||||
<td>cell 2-1
|
||||
<td>cell 2-2
|
||||
<td>cell 2-3
|
||||
<td>cell 2-4
|
||||
<tr>
|
||||
<td>cell 1-1
|
||||
<td>cell 1-2
|
||||
<td>cell 1-3
|
||||
<td>cell 1-4
|
||||
<tr>
|
||||
<td>cell 2-1
|
||||
<td>cell 2-2
|
||||
<td>cell 2-3
|
||||
<td>cell 2-4
|
||||
<tr>
|
||||
<td>cell 1-1
|
||||
<td>cell 1-2
|
||||
<td>cell 1-3
|
||||
<td>cell 1-4
|
||||
<tr>
|
||||
<td>cell 2-1
|
||||
<td>cell 2-2
|
||||
<td>cell 2-3
|
||||
<td>cell 2-4
|
||||
<tr>
|
||||
<td>cell 1-1
|
||||
<td>cell 1-2
|
||||
<td>cell 1-3
|
||||
<td>cell 1-4
|
||||
<tr>
|
||||
<td>cell 2-1
|
||||
<td>cell 2-2
|
||||
<td>cell 2-3
|
||||
<td>cell 2-4
|
||||
<tr>
|
||||
<td>cell 1-1
|
||||
<td>cell 1-2
|
||||
<td>cell 1-3
|
||||
<td>cell 1-4
|
||||
<tr>
|
||||
<td>cell 2-1
|
||||
<td>cell 2-2
|
||||
<td>cell 2-3
|
||||
<td>cell 2-4
|
||||
<tr>
|
||||
<td>cell 1-1
|
||||
<td>cell 1-2
|
||||
<td>cell 1-3
|
||||
<td>cell 1-4
|
||||
<tr>
|
||||
<td>cell 2-1
|
||||
<td>cell 2-2
|
||||
<td>cell 2-3
|
||||
<td>cell 2-4
|
||||
</table>
|
||||
|
||||
last text
|
||||
</body>
|
||||
</html>
|
||||
39
mozilla/htmlparser/tests/html/col007.html
Normal file
39
mozilla/htmlparser/tests/html/col007.html
Normal file
@@ -0,0 +1,39 @@
|
||||
<html>
|
||||
<body>
|
||||
2 THEAD section in table
|
||||
<br> MS IE4.0
|
||||
<TABLE border>
|
||||
<COLGROUP>
|
||||
<COL width="70">
|
||||
<COL width="120">
|
||||
</COLGROUP>
|
||||
<COLGROUP span="2" width="0*">
|
||||
<THEAD>
|
||||
<tr>
|
||||
<th>cell H-1
|
||||
<th>cell H-2
|
||||
<th>cell H-3
|
||||
<th>cell H-4
|
||||
</THEAD>
|
||||
<THEAD>
|
||||
<tr>
|
||||
<td>cell H2-1
|
||||
<td>cell H2-2
|
||||
<td>cell H2-3
|
||||
<td>cell H2-4
|
||||
</THEAD>
|
||||
<tr>
|
||||
<td>cell 1-1
|
||||
<td>cell 1-2
|
||||
<td>cell 1-3
|
||||
<td>cell 1-4
|
||||
<tr>
|
||||
<td>cell 2-1
|
||||
<td>cell 2-2
|
||||
<td>cell 2-3
|
||||
<td>cell 2-4
|
||||
</table>
|
||||
|
||||
last text
|
||||
</body>
|
||||
</html>
|
||||
35
mozilla/htmlparser/tests/html/col008.html
Normal file
35
mozilla/htmlparser/tests/html/col008.html
Normal file
@@ -0,0 +1,35 @@
|
||||
<html>
|
||||
<body>
|
||||
test 2 TFOOT.
|
||||
<br>MS IE4.0, only the first TFOOT is moved to the end of the table.
|
||||
<br>The second TFOOT tag is ignored.
|
||||
<TABLE border>
|
||||
<TFOOT>
|
||||
<tr>
|
||||
<th>cell F-1
|
||||
<th>cell F-2
|
||||
<th>cell F-3
|
||||
<th>cell F-4
|
||||
</TFOOT>
|
||||
<tr>
|
||||
<td>cell 1-1
|
||||
<td>cell 1-2
|
||||
<td>cell 1-3
|
||||
<td>cell 1-4
|
||||
<TFOOT>
|
||||
<tr>
|
||||
<th>cell F2-1
|
||||
<th>cell F2-2
|
||||
<th>cell F2-3
|
||||
<th>cell F2-4
|
||||
</TFOOT>
|
||||
<tr>
|
||||
<td>cell 2-1
|
||||
<td>cell 2-2
|
||||
<td>cell 2-3
|
||||
<td>cell 2-4
|
||||
</table>
|
||||
|
||||
last text
|
||||
</body>
|
||||
</html>
|
||||
29
mozilla/htmlparser/tests/html/col009.html
Normal file
29
mozilla/htmlparser/tests/html/col009.html
Normal file
@@ -0,0 +1,29 @@
|
||||
<html>
|
||||
<body>
|
||||
TFOOT after TBODY, MS IE4.0 can take it.
|
||||
<br>but HTML4.0 standard says "TFOOT must appear before TBODY."
|
||||
<TABLE border>
|
||||
<TBODY>
|
||||
<tr>
|
||||
<td>cell 1-1
|
||||
<td>cell 1-2
|
||||
<td>cell 1-3
|
||||
<td>cell 1-4
|
||||
</TBODY>
|
||||
<TFOOT>
|
||||
<tr>
|
||||
<th>cell F-1
|
||||
<th>cell F-2
|
||||
<th>cell F-3
|
||||
<th>cell F-4
|
||||
</TFOOT>
|
||||
<tr>
|
||||
<td>cell 2-1
|
||||
<td>cell 2-2
|
||||
<td>cell 2-3
|
||||
<td>cell 2-4
|
||||
</table>
|
||||
|
||||
last text
|
||||
</body>
|
||||
</html>
|
||||
22
mozilla/htmlparser/tests/html/col010.html
Normal file
22
mozilla/htmlparser/tests/html/col010.html
Normal file
@@ -0,0 +1,22 @@
|
||||
<html>
|
||||
<body>
|
||||
Test TBODY tag.
|
||||
|
||||
<TABLE border>
|
||||
<TBODY>
|
||||
<tr>
|
||||
<td>cell 1-1
|
||||
<td>cell 1-2
|
||||
<td>cell 1-3
|
||||
<td>cell 1-4
|
||||
</TBODY>
|
||||
<tr>
|
||||
<td>cell 2-1
|
||||
<td>cell 2-2
|
||||
<td>cell 2-3
|
||||
<td>cell 2-4
|
||||
</table>
|
||||
|
||||
last text
|
||||
</body>
|
||||
</html>
|
||||
32
mozilla/htmlparser/tests/html/col011.html
Normal file
32
mozilla/htmlparser/tests/html/col011.html
Normal file
@@ -0,0 +1,32 @@
|
||||
<html>
|
||||
<body>
|
||||
Test empty THEAD tag. MS IE4.0 gives small space for each empty tr tag.
|
||||
|
||||
<TABLE border>
|
||||
<THEAD>
|
||||
<tr>
|
||||
<tr>
|
||||
<tr>
|
||||
<tr>
|
||||
<tr>
|
||||
<tr>
|
||||
<tr>
|
||||
<tr>
|
||||
</THEAD>
|
||||
<TBODY>
|
||||
<tr>
|
||||
<td>cell 1-1
|
||||
<td>cell 1-2
|
||||
<td>cell 1-3
|
||||
<td>cell 1-4
|
||||
</TBODY>
|
||||
<tr>
|
||||
<td>cell 2-1
|
||||
<td>cell 2-2
|
||||
<td>cell 2-3
|
||||
<td>cell 2-4
|
||||
</table>
|
||||
|
||||
last text
|
||||
</body>
|
||||
</html>
|
||||
27
mozilla/htmlparser/tests/html/col012.html
Normal file
27
mozilla/htmlparser/tests/html/col012.html
Normal file
@@ -0,0 +1,27 @@
|
||||
<html>
|
||||
<body>
|
||||
Test THEAD after TBODY. MS IE4.0 can take it.
|
||||
<br>In HTML4.0 standard, THEAD must be before TBODY.
|
||||
<TABLE border>
|
||||
<tr>
|
||||
<td>cell 1-1
|
||||
<td>cell 1-2
|
||||
<td>cell 1-3
|
||||
<td>cell 1-4
|
||||
<THEAD>
|
||||
<tr>
|
||||
<th>cell H-1
|
||||
<th>cell H-2
|
||||
<th>cell H-3
|
||||
<th>cell H-4
|
||||
</THEAD>
|
||||
<tr>
|
||||
<td>cell 2-1
|
||||
<td>cell 2-2
|
||||
<td>cell 2-3
|
||||
<td>cell 2-4
|
||||
</table>
|
||||
|
||||
last text
|
||||
</body>
|
||||
</html>
|
||||
22
mozilla/htmlparser/tests/html/col013.html
Normal file
22
mozilla/htmlparser/tests/html/col013.html
Normal file
@@ -0,0 +1,22 @@
|
||||
<html>
|
||||
<body>
|
||||
test COLGROUP in middle of TBODY
|
||||
<br> MS IE4.0 takes it!
|
||||
<TABLE border>
|
||||
<tr>
|
||||
<td>cell 1-1
|
||||
<td>cell 1-2
|
||||
<td>cell 1-3
|
||||
<td>cell 1-4
|
||||
<COLGROUP span="2" width="150">
|
||||
<COLGROUP span="2" width="0*">
|
||||
<tr>
|
||||
<td>cell 2-1
|
||||
<td>cell 2-2
|
||||
<td>cell 2-3
|
||||
<td>cell 2-4
|
||||
</table>
|
||||
|
||||
last text
|
||||
</body>
|
||||
</html>
|
||||
22
mozilla/htmlparser/tests/html/col014.html
Normal file
22
mozilla/htmlparser/tests/html/col014.html
Normal file
@@ -0,0 +1,22 @@
|
||||
<html>
|
||||
<body>
|
||||
test COLGROUP at the end of the table
|
||||
<br> MS IE4.0 ignores it.
|
||||
<TABLE border>
|
||||
<tr>
|
||||
<td>cell 1-1
|
||||
<td>cell 1-2
|
||||
<td>cell 1-3
|
||||
<td>cell 1-4
|
||||
<tr>
|
||||
<td>cell 2-1
|
||||
<td>cell 2-2
|
||||
<td>cell 2-3
|
||||
<td>cell 2-4
|
||||
<COLGROUP span="2" width="150">
|
||||
<COLGROUP span="2" width="0*">
|
||||
</table>
|
||||
|
||||
last text
|
||||
</body>
|
||||
</html>
|
||||
22
mozilla/htmlparser/tests/html/col015.html
Normal file
22
mozilla/htmlparser/tests/html/col015.html
Normal file
@@ -0,0 +1,22 @@
|
||||
<html>
|
||||
<body>
|
||||
test COLGROUP in midlle of a TR.
|
||||
<br> In MS IE4.0, COLGROUP takes effect and starts new TR.
|
||||
<TABLE border>
|
||||
<tr>
|
||||
<td>cell 1-1
|
||||
<td>cell 1-2
|
||||
<COLGROUP span="2" width="150">
|
||||
<COLGROUP span="2" width="0*">
|
||||
<td>cell 1-3
|
||||
<td>cell 1-4
|
||||
<tr>
|
||||
<td>cell 2-1
|
||||
<td>cell 2-2
|
||||
<td>cell 2-3
|
||||
<td>cell 2-4
|
||||
</table>
|
||||
|
||||
last text
|
||||
</body>
|
||||
</html>
|
||||
31
mozilla/htmlparser/tests/html/col016.html
Normal file
31
mozilla/htmlparser/tests/html/col016.html
Normal file
@@ -0,0 +1,31 @@
|
||||
<html>
|
||||
<body>
|
||||
test TFOOT has 2 tr tags
|
||||
<TABLE border>
|
||||
<TFOOT>
|
||||
<tr>
|
||||
<th>cell F-1
|
||||
<th>cell F-2
|
||||
<th>cell F-3
|
||||
<th>cell F-4
|
||||
<tr>
|
||||
<th>cell F2-1
|
||||
<th>cell F2-2
|
||||
<th>cell F2-3
|
||||
<th>cell F2-4
|
||||
</TFOOT>
|
||||
<tr>
|
||||
<td>cell 1-1
|
||||
<td>cell 1-2
|
||||
<td>cell 1-3
|
||||
<td>cell 1-4
|
||||
<tr>
|
||||
<td>cell 2-1
|
||||
<td>cell 2-2
|
||||
<td>cell 2-3
|
||||
<td>cell 2-4
|
||||
</table>
|
||||
|
||||
last text
|
||||
</body>
|
||||
</html>
|
||||
14
mozilla/htmlparser/tests/html/del001.html
Normal file
14
mozilla/htmlparser/tests/html/del001.html
Normal file
@@ -0,0 +1,14 @@
|
||||
<html>
|
||||
<head>
|
||||
<title>test DEL tag</title>
|
||||
</head>
|
||||
<body>
|
||||
test DEL <br>
|
||||
1normal text in body line 1.
|
||||
<DEL date="19971022">
|
||||
A This text is in DEL
|
||||
<br> B line 2 in DEL
|
||||
</DEL>
|
||||
2normal text in body line 2.
|
||||
</body>
|
||||
</html>
|
||||
17
mozilla/htmlparser/tests/html/del002.html
Normal file
17
mozilla/htmlparser/tests/html/del002.html
Normal file
@@ -0,0 +1,17 @@
|
||||
<html>
|
||||
<head>
|
||||
<title>Nested DEL</title>
|
||||
</head>
|
||||
<body>
|
||||
nested DEL <br>
|
||||
1normal text in body line 1.
|
||||
<DEL date="19971022">
|
||||
A This text is in DEL
|
||||
<DEL date="19971023">
|
||||
<br> B line 2 in DEL
|
||||
</DEL>
|
||||
C line 3 in DEL
|
||||
</DEL>
|
||||
2normal text in body line 2.
|
||||
</body>
|
||||
</html>
|
||||
12
mozilla/htmlparser/tests/html/del003.html
Normal file
12
mozilla/htmlparser/tests/html/del003.html
Normal file
@@ -0,0 +1,12 @@
|
||||
<HTML>
|
||||
<HEAD>
|
||||
<TITLE>DEL strikeover text</TITLE>
|
||||
</HEAD>
|
||||
<BODY>
|
||||
DEL strikeover text
|
||||
Normal text1
|
||||
<BR><STRIKE>text1 with strikeover <DEL><br>deleted text</DEL> text2 with strikeover</STRIKE>
|
||||
<BR>Normal text2
|
||||
</BODY>
|
||||
</HTML>
|
||||
|
||||
13
mozilla/htmlparser/tests/html/del004.html
Normal file
13
mozilla/htmlparser/tests/html/del004.html
Normal file
@@ -0,0 +1,13 @@
|
||||
<html>
|
||||
<head>
|
||||
<title>DEL an A tag</title>
|
||||
</head>
|
||||
<body>
|
||||
DEL an A tag, link still works<br>
|
||||
1normal text in body line 1.
|
||||
<DEL date="19971022">
|
||||
<A href="del001.html">This A tag is deleted.</A>
|
||||
</DEL>
|
||||
2normal text in body line 2.
|
||||
</body>
|
||||
</html>
|
||||
22
mozilla/htmlparser/tests/html/del005.html
Normal file
22
mozilla/htmlparser/tests/html/del005.html
Normal file
@@ -0,0 +1,22 @@
|
||||
<html>
|
||||
<head>
|
||||
<title>Del a whole TABLE</title>
|
||||
</head>
|
||||
<body>
|
||||
Del a whole TABLE, no visual effect, strikeover on text in table <br>
|
||||
1normal text in body line 1.
|
||||
<DEL date="19971022">
|
||||
text in DEL
|
||||
<table border>
|
||||
<tr>
|
||||
<td>This is the first cell in the table
|
||||
<td>This is the second cell in the table
|
||||
<tr>
|
||||
<td>This is the third cell in the table
|
||||
<td>This is the fourth cell in the table
|
||||
</table>
|
||||
Text in DEL.
|
||||
</DEL>
|
||||
2normal text in body line 2.
|
||||
</body>
|
||||
</html>
|
||||
21
mozilla/htmlparser/tests/html/del006.html
Normal file
21
mozilla/htmlparser/tests/html/del006.html
Normal file
@@ -0,0 +1,21 @@
|
||||
<html>
|
||||
<head>
|
||||
<title>DEL table cell TD</title>
|
||||
</head>
|
||||
<body>
|
||||
DEL table cell TD, no visual effect, no strikeover on deleted text.<br>
|
||||
1normal text in body line 1.
|
||||
|
||||
<table border>
|
||||
<tr>
|
||||
<td>This is the first cell in the table
|
||||
<DEL date="19971022">
|
||||
<td>This is the second cell in the table
|
||||
</DEL>
|
||||
<tr>
|
||||
<td>This is the third cell in the table
|
||||
<td>This is the fourth cell in the table
|
||||
</table>
|
||||
2normal text in body line 2.
|
||||
</body>
|
||||
</html>
|
||||
21
mozilla/htmlparser/tests/html/del007.html
Normal file
21
mozilla/htmlparser/tests/html/del007.html
Normal file
@@ -0,0 +1,21 @@
|
||||
<html>
|
||||
<head>
|
||||
<title>Del open TR </title>
|
||||
</head>
|
||||
<body>
|
||||
test DEL<br>
|
||||
1normal text in body line 1.
|
||||
|
||||
<table border>
|
||||
<tr>
|
||||
<td>This is the first cell in the table
|
||||
<DEL date="19971022">
|
||||
<td>This is the second cell in the table
|
||||
<tr>
|
||||
</DEL>
|
||||
<td>This is the third cell in the table
|
||||
<td>This is the fourth cell in the table
|
||||
</table>
|
||||
2normal text in body line 2.
|
||||
</body>
|
||||
</html>
|
||||
22
mozilla/htmlparser/tests/html/del008.html
Normal file
22
mozilla/htmlparser/tests/html/del008.html
Normal file
@@ -0,0 +1,22 @@
|
||||
<html>
|
||||
<head>
|
||||
<title>Del open TD </title>
|
||||
</head>
|
||||
<body>
|
||||
test DEL<br>
|
||||
1normal text in body line 1.
|
||||
|
||||
<table border>
|
||||
<tr>
|
||||
<td>This is the first cell in the table
|
||||
<DEL date="19971022">
|
||||
<td>This is the
|
||||
</DEL>
|
||||
second cell in the table
|
||||
<tr>
|
||||
<td>This is the third cell in the table
|
||||
<td>This is the fourth cell in the table
|
||||
</table>
|
||||
2normal text in body line 2.
|
||||
</body>
|
||||
</html>
|
||||
19
mozilla/htmlparser/tests/html/del009.html
Normal file
19
mozilla/htmlparser/tests/html/del009.html
Normal file
@@ -0,0 +1,19 @@
|
||||
<html>
|
||||
<head>
|
||||
<title>DEL inside table cell TD</title>
|
||||
</head>
|
||||
<body>
|
||||
DEL table cell TD, no visual effect, no strikeover on deleted text.<br>
|
||||
1normal text in body line 1.
|
||||
|
||||
<table border>
|
||||
<tr>
|
||||
<td>This is the first cell in the table
|
||||
<td><DEL date="19971022">This is deleted text</DEL>
|
||||
<tr>
|
||||
<td>This is the third cell in the table
|
||||
<td>This is the fourth cell in the table
|
||||
</table>
|
||||
2normal text in body line 2.
|
||||
</body>
|
||||
</html>
|
||||
16
mozilla/htmlparser/tests/html/del010.html
Normal file
16
mozilla/htmlparser/tests/html/del010.html
Normal file
@@ -0,0 +1,16 @@
|
||||
<html>
|
||||
<head>
|
||||
<title>DEL a P tag</title>
|
||||
</head>
|
||||
<body>
|
||||
DEL a P tag<br>
|
||||
1normal text in body line 1.
|
||||
<DEL date="19971022">
|
||||
A This text is in DEL
|
||||
<p> B line 2 in DEL
|
||||
</p>
|
||||
C line 3 in DEL
|
||||
</DEL>
|
||||
2normal text in body line 2.
|
||||
</body>
|
||||
</html>
|
||||
23
mozilla/htmlparser/tests/html/del011.html
Normal file
23
mozilla/htmlparser/tests/html/del011.html
Normal file
@@ -0,0 +1,23 @@
|
||||
<html>
|
||||
<head>
|
||||
<title>DEL cross scope with a table</title>
|
||||
</head>
|
||||
<body>
|
||||
DEL cross scope with a table<br>
|
||||
It starts before table, but ends inside table.
|
||||
<br>It does not effect the table, but the DEL is terminated after the table.
|
||||
<br>1normal text in body line 1.
|
||||
<STRIKE>
|
||||
text in DEL.
|
||||
<table border>
|
||||
<tr>
|
||||
<td>This is the first cell in the table
|
||||
<td>This cell 2 </td>
|
||||
</STRIKE>
|
||||
<tr>
|
||||
<td>This is the third cell in the table
|
||||
<td>This is the fourth cell in the table
|
||||
</table>
|
||||
2normal text in body line 2.
|
||||
</body>
|
||||
</html>
|
||||
0
mozilla/htmlparser/tests/html/doc001.html
Normal file
0
mozilla/htmlparser/tests/html/doc001.html
Normal file
10
mozilla/htmlparser/tests/html/doc002.html
Normal file
10
mozilla/htmlparser/tests/html/doc002.html
Normal file
@@ -0,0 +1,10 @@
|
||||
<HTML>
|
||||
<HEAD>
|
||||
<TITLE>Welcome to Netscape</TITLE>
|
||||
</HEAD>
|
||||
<BODY>
|
||||
Text in BODY.
|
||||
</BODY>
|
||||
Text after end BODY tag, visible in Nav4.0;
|
||||
</HTML>
|
||||
Text after end HTML tag, visible in Nav4.0;
|
||||
1
mozilla/htmlparser/tests/html/endswithcr.html
Normal file
1
mozilla/htmlparser/tests/html/endswithcr.html
Normal file
@@ -0,0 +1 @@
|
||||
This file ends with a CR
|
||||
12
mozilla/htmlparser/tests/html/entity001.html
Normal file
12
mozilla/htmlparser/tests/html/entity001.html
Normal file
@@ -0,0 +1,12 @@
|
||||
<html>
|
||||
<body>
|
||||
entity in bold as <B>"</B>, <I>></I>, and so on.
|
||||
<br>Another line of text.
|
||||
<br>text with entity > should work
|
||||
Tags can have entities in their attribut values, and it is
|
||||
common to have a amps at the end of a CGI link.
|
||||
<br>
|
||||
<a href="http://foo.bar.com/.../cgi-bin&">text</a>
|
||||
<br>last text
|
||||
</body>
|
||||
</html>
|
||||
22
mozilla/htmlparser/tests/html/fieldset001.html
Normal file
22
mozilla/htmlparser/tests/html/fieldset001.html
Normal file
@@ -0,0 +1,22 @@
|
||||
|
||||
<html>
|
||||
<head>
|
||||
<title> test filedset001.html</title>
|
||||
</head>
|
||||
<body>
|
||||
fieldset and legend
|
||||
Text after form
|
||||
<FORM action="..." method="post">
|
||||
Text before fieldset
|
||||
<FIELDSET>
|
||||
<LEGEND align="top">Personal Information</LEGEND>
|
||||
Last Name: <INPUT name="personal_lastname" type="text" tabindex="1">
|
||||
<br>First Name: <INPUT name="personal_firstname" type="text" tabindex="2">
|
||||
<br>Address: <INPUT name="personal_address" type="text" tabindex="3">
|
||||
<br>...more personal information...
|
||||
</FIELDSET>
|
||||
Text after fieldset
|
||||
</form>
|
||||
Text after form
|
||||
</body>
|
||||
</html>
|
||||
56
mozilla/htmlparser/tests/html/fieldset002.html
Normal file
56
mozilla/htmlparser/tests/html/fieldset002.html
Normal file
@@ -0,0 +1,56 @@
|
||||
|
||||
<html>
|
||||
<head>
|
||||
<title> test filedset001.html</title>
|
||||
</head>
|
||||
<body>
|
||||
fieldset and legend, sample from<br>
|
||||
http://www.w3.org/TR/WD-html40/interact/forms.html#edef-FIELDSET
|
||||
<br>Text after form
|
||||
|
||||
<FORM action="..." method="post">
|
||||
<FIELDSET>
|
||||
<LEGEND align="top">Personal Information</LEGEND>
|
||||
Last Name: <INPUT name="personal_lastname" type="text" tabindex="1">
|
||||
First Name: <INPUT name="personal_firstname" type="text" tabindex="2">
|
||||
Address: <INPUT name="personal_address" type="text" tabindex="3">
|
||||
...more personal information...
|
||||
</FIELDSET>
|
||||
<FIELDSET>
|
||||
<LEGEND align="top">Medical History</LEGEND>
|
||||
<INPUT name="history_illness"
|
||||
type="checkbox"
|
||||
value="Smallpox" tabindex="20"> Smallpox</INPUT>
|
||||
<INPUT name="history_illness"
|
||||
type="checkbox"
|
||||
value="Mumps" tabindex="21"> Mumps</INPUT>
|
||||
<INPUT name="history_illness"
|
||||
type="checkbox"
|
||||
value="Dizziness" tabindex="22"> Dizziness</INPUT>
|
||||
<INPUT name="history_illness"
|
||||
type="checkbox"
|
||||
value="Sneezing" tabindex="23"> Sneezing</INPUT>
|
||||
...more medical history...
|
||||
</FIELDSET>
|
||||
<FIELDSET>
|
||||
<LEGEND align="top">Current Medication</LEGEND>
|
||||
Are you currently taking any medication?
|
||||
<INPUT name="medication_now"
|
||||
type="radio"
|
||||
value="Yes" tabindex="35">Yes</INPUT>
|
||||
<INPUT name="medication_now"
|
||||
type="radio"
|
||||
value="No" tabindex="35">No</INPUT>
|
||||
|
||||
If you are currently taking medication, please indicate
|
||||
it in the space below:
|
||||
<TEXTAREA name="current_medication"
|
||||
rows="20" cols="50"
|
||||
tabindex="40">
|
||||
</TEXTAREA>
|
||||
</FIELDSET>
|
||||
</FORM>
|
||||
|
||||
Text after form
|
||||
</body>
|
||||
</html>
|
||||
26
mozilla/htmlparser/tests/html/fieldset003.html
Normal file
26
mozilla/htmlparser/tests/html/fieldset003.html
Normal file
@@ -0,0 +1,26 @@
|
||||
|
||||
<html>
|
||||
<head>
|
||||
<title> test filedset001.html</title>
|
||||
</head>
|
||||
<body>
|
||||
fieldset can be nested<br>
|
||||
http://www.w3.org/TR/WD-html40/interact/forms.html#edef-FIELDSET
|
||||
<br>Text after form
|
||||
|
||||
<FORM action="..." method="post">
|
||||
<FIELDSET>
|
||||
<LEGEND align="top">Personal Information</LEGEND>
|
||||
<FIELDSET>
|
||||
<LEGEND align="top">Name</LEGEND>
|
||||
Last Name: <INPUT name="personal_lastname" type="text" tabindex="1">
|
||||
First Name: <INPUT name="personal_firstname" type="text" tabindex="2">
|
||||
</FIELDSET>
|
||||
Address: <INPUT name="personal_address" type="text" tabindex="3">
|
||||
...more personal information...
|
||||
</FIELDSET>
|
||||
</FORM>
|
||||
|
||||
Text after form
|
||||
</body>
|
||||
</html>
|
||||
13
mozilla/htmlparser/tests/html/form001.html
Normal file
13
mozilla/htmlparser/tests/html/form001.html
Normal file
@@ -0,0 +1,13 @@
|
||||
<html>
|
||||
<head>
|
||||
<title>test DEL tag</title>
|
||||
</head>
|
||||
<body>
|
||||
test Form <br>
|
||||
<form>
|
||||
Please input user name <input name=uid >
|
||||
</form>
|
||||
|
||||
2normal text in body line 2.
|
||||
</body>
|
||||
</html>
|
||||
22
mozilla/htmlparser/tests/html/form002.html
Normal file
22
mozilla/htmlparser/tests/html/form002.html
Normal file
@@ -0,0 +1,22 @@
|
||||
<html>
|
||||
<head>
|
||||
<title>test DEL tag</title>
|
||||
</head>
|
||||
<body>
|
||||
test Form <br>
|
||||
Forms cannot be nested. form tags outside form are ignored.
|
||||
<form action="http://alchemy/foo">
|
||||
Please input user name <input name=uid >
|
||||
<input type="submit">
|
||||
<form action="http://alchemy/bar">
|
||||
inner open tag ignored.
|
||||
Please input password <input name=pass >
|
||||
<input type="submit">
|
||||
</form>
|
||||
form terminated by inner end tag.
|
||||
input 3<input name=name3 >
|
||||
</form>
|
||||
The outer end tag ignored.
|
||||
<br>2normal text in body line 2.
|
||||
</body>
|
||||
</html>
|
||||
9
mozilla/htmlparser/tests/html/head01.html
Normal file
9
mozilla/htmlparser/tests/html/head01.html
Normal file
@@ -0,0 +1,9 @@
|
||||
<html>
|
||||
<head>
|
||||
<title> this is title. </title>
|
||||
text in head.
|
||||
</head>
|
||||
<body>
|
||||
text
|
||||
</body>
|
||||
</html>
|
||||
11
mozilla/htmlparser/tests/html/head02.html
Normal file
11
mozilla/htmlparser/tests/html/head02.html
Normal file
@@ -0,0 +1,11 @@
|
||||
<html>
|
||||
<head>
|
||||
<title> this is title. </title>
|
||||
text in head.
|
||||
</head>
|
||||
<body bgcolor=blue>
|
||||
text1
|
||||
<body bgcolor=red text=white>
|
||||
text2
|
||||
</body>
|
||||
</html>
|
||||
9
mozilla/htmlparser/tests/html/head03.html
Normal file
9
mozilla/htmlparser/tests/html/head03.html
Normal file
@@ -0,0 +1,9 @@
|
||||
<html>
|
||||
<HEAD lang="en" dir="ltr" profile="http://www.bandit.com/profiles/ruby">
|
||||
<TITLE lang="en" dir="ltr">TITLE-title03</TITLE>
|
||||
</head>
|
||||
<body>
|
||||
The HEAD tag has attributes.
|
||||
<br>The Title tag can also has attributes.
|
||||
</body>
|
||||
</html>
|
||||
976
mozilla/htmlparser/tests/html/home01.html
Normal file
976
mozilla/htmlparser/tests/html/home01.html
Normal file
@@ -0,0 +1,976 @@
|
||||
<!--Commented code available in commented_code/index4.html-->
|
||||
<HTML>
|
||||
<HEAD>
|
||||
<TITLE>Welcome to Netscape</TITLE>
|
||||
<META NAME="Producer" CONTENT="bahr">
|
||||
|
||||
|
||||
<SCRIPT LANGUAGE="JavaScript1.1">
|
||||
<!--
|
||||
window.onerror=null;
|
||||
//-->
|
||||
</SCRIPT>
|
||||
|
||||
<SCRIPT LANGUAGE='JavaScript1.2'>
|
||||
<!--
|
||||
window.document.name='indexpage';
|
||||
G9=true;
|
||||
H3=true;
|
||||
d1=1;
|
||||
|
||||
e1=285;
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
I0=null;
|
||||
|
||||
|
||||
//-->
|
||||
</SCRIPT>
|
||||
|
||||
|
||||
|
||||
<SCRIPT LANGUAGE="JavaScript1.2">
|
||||
<!--
|
||||
d2='ad';
|
||||
d3=7;
|
||||
|
||||
d4=16;
|
||||
d5=12;
|
||||
d6=1000;
|
||||
d7=0;
|
||||
d8=14;
|
||||
|
||||
d9=26;
|
||||
e0=13;
|
||||
e2=e1+e0;
|
||||
C3=3;
|
||||
C4=5;
|
||||
C5=12;
|
||||
C6=26;
|
||||
C7=261;
|
||||
C8=7;
|
||||
C9=282;
|
||||
D0=16;
|
||||
coneweek=7*24*60*60*1000;
|
||||
|
||||
|
||||
var ad=null;
|
||||
var netscapehome=null;
|
||||
var pf=null;
|
||||
|
||||
e3=new Array;
|
||||
e4=new Array;
|
||||
e5=new Array;
|
||||
e6=new Array;
|
||||
|
||||
e7=6;
|
||||
|
||||
e8=window.innerWidth-d4;
|
||||
e9=window.innerHeight-d5;
|
||||
|
||||
f0=new Array(d1);
|
||||
ncard=new Array(d1);
|
||||
|
||||
|
||||
|
||||
f1=null;
|
||||
|
||||
f2=false;
|
||||
f3=false;
|
||||
|
||||
var f4;
|
||||
var f5;
|
||||
var f6;
|
||||
|
||||
function f7(card){with(card){f8.zIndex=zorder;
|
||||
ubar.zIndex=zorder;
|
||||
utab.zIndex=zorder;
|
||||
tab.zIndex=zorder;}}
|
||||
|
||||
function f9(g0,g1){g0.zorder=g1.zorder+1;
|
||||
g0.f8.moveAbove(g1.tab);
|
||||
g0.ubar.moveAbove(g0.f8);
|
||||
g0.utab.moveAbove(g0.ubar);
|
||||
g0.tab.moveAbove(g0.utab);
|
||||
f7(g0);}
|
||||
|
||||
function g2(){ncard[f0[0]].f8.top=e2;
|
||||
ncard[f0[0]].utab.left=e8+ncard[f0[0]].f8.clip.width-ncard[f0[0]].utab.clip.width;
|
||||
g3(f0[0]);
|
||||
|
||||
for(i=1; i<d1; i++){ncard[f0[i]].f8.top=ncard[f0[i-1]].f8.top+d7+ncard[f0[i-1]].tab.clip.height;
|
||||
ncard[f0[i]].utab.left=e8+ncard[f0[i]].f8.clip.width-ncard[f0[i]].utab.clip.width;
|
||||
g3(f0[i]);}
|
||||
ncard[f0[d1-1]].zorder=0;
|
||||
|
||||
|
||||
|
||||
if(f1==null){for(i=d1-1; i>0; i--)for(j=i-1; j>=0; j--)f9(ncard[f0[j]],ncard[f0[i]]);}}
|
||||
|
||||
function g3(f0){ncard[f0].f8.left=e8;
|
||||
ncard[f0].f8.visibility="show";
|
||||
ncard[f0].tab.top=ncard[f0].f8.top-e0;
|
||||
ncard[f0].tab.left=e8-ncard[f0].tab.clip.width;
|
||||
ncard[f0].tab.visibility="show";
|
||||
ncard[f0].utab.top=ncard[f0].f8.top-d9;
|
||||
ncard[f0].utab.visibility="show";
|
||||
ncard[f0].ubar.top=ncard[f0].f8.top-e0;
|
||||
ncard[f0].ubar.left=ncard[f0].f8.left;
|
||||
ncard[f0].ubar.visibility="show";}
|
||||
|
||||
function g4(Layer,g5,g6,g7,g8,g9){Layer.left=g5;
|
||||
Layer.top=g6;
|
||||
Layer.visibility="show";
|
||||
h0=(g7-g5)/e7;
|
||||
h1=(g8-g6)/e7;
|
||||
e4[Layer.name]=1;
|
||||
h2=25;
|
||||
if(g5 < g7)h2=0;
|
||||
e3[Layer.name]=setTimeout(h3,h2,Layer,h0,h1,g7,g8);}
|
||||
|
||||
function h3(Layer,h0,h1,g7,g8){var h4=Layer.left > g7;
|
||||
|
||||
|
||||
if(e4[Layer.name] < e7&&Layer.left > g7){if(Layer.name!=d2){ncard[Layer.name].tab.moveBy(h0,h1);
|
||||
ncard[Layer.name].ubar.moveBy(h0,h1);
|
||||
ncard[Layer.name].utab.moveBy(h0,h1);}
|
||||
Layer.moveBy(h0,h1);
|
||||
e4[Layer.name]+=1;
|
||||
clearTimeout(e3[Layer.name]);
|
||||
e3[Layer.name]=setTimeout(h3,25,Layer,h0,h1,g7,g8);}
|
||||
else{clearTimeout(e3[Layer.name]);
|
||||
Layer.moveTo(g7,g8);
|
||||
if(Layer.name!=d2){with(ncard[Layer.name]){tab.moveTo(g7-tab.clip.width,g8-e0);
|
||||
utab.moveTo(g7+Layer.clip.width-utab.clip.width,g8-d9);
|
||||
ubar.moveTo(g7,g8-e0);}}
|
||||
h5();}}
|
||||
|
||||
function h6(){if(ad.left!=e8-ad.clip.width){g4(ad,ad.left,ad.top,e8-ad.clip.width,ad.top,false);
|
||||
f3=true;}
|
||||
else{g4(ad,ad.left,ad.top,e8-d3,ad.top,false);
|
||||
f3=false;}}
|
||||
|
||||
var h7,h8;
|
||||
h9=null;
|
||||
|
||||
function i0(e,name){h7=e.pageX;
|
||||
h8=e.pageY;
|
||||
|
||||
with(ncard[name])if(h7>=tab.left&&h7<=tab.left+tab.clip.width&&h8>=tab.top&&h8<=tab.top+tab.clip.height||h7>=ubar.left&&h7<=ubar.left+ubar.clip.width&&h8>=ubar.top&&h8<=ubar.top+ubar.clip.height||h7>=utab.left&&h7<=utab.left+utab.clip.width&&h8>=utab.top&&h8<=utab.top+utab.clip.height){h9=ncard[name];
|
||||
|
||||
window.captureEvents(Event.MOUSEMOVE);
|
||||
return false;}
|
||||
return false;}
|
||||
|
||||
function i1(e){var X=e.pageX-h7;
|
||||
var Y=e.pageY-h8;
|
||||
|
||||
|
||||
|
||||
if(h9){if(h9.tab.left+X<=0)X=-h9.tab.left;
|
||||
if(h9.tab.left+X>=e8-h9.tab.clip.width)X=e8-h9.tab.left-h9.tab.clip.width ;
|
||||
if(h9.utab.top+Y<=0)Y=-h9.utab.top;
|
||||
if(h9.f8.top+Y+h9.f8.clip.height > d6)Y=d6-h9.f8.top-h9.f8.clip.height;
|
||||
|
||||
h9.tab.moveBy(X,Y);
|
||||
h9.f8.moveBy(X,Y);
|
||||
h9.ubar.moveBy(X,Y);
|
||||
h9.utab.moveBy(X,Y);}
|
||||
h7=e.pageX;
|
||||
h8=e.pageY;}
|
||||
|
||||
function i2(e){window.releaseEvents(Event.MOUSEMOVE);
|
||||
h9=null;
|
||||
h5();
|
||||
return false;}
|
||||
|
||||
function movecard(i3,i4,i5){i6=i4-ncard[i3].f8.left;
|
||||
i7=i5-ncard[i3].f8.top;
|
||||
ncard[i3].tab.moveBy(i6,i7);
|
||||
ncard[i3].f8.moveBy(i6,i7);
|
||||
ncard[i3].ubar.moveBy(i6,i7);
|
||||
ncard[i3].utab.moveBy(i6,i7);}
|
||||
|
||||
function i8(name,value,i9){document.cookie=name+"="+escape(value)+((i9==null)? "" :("; expires="+i9.toGMTString()));}
|
||||
function j0(j1){var search=j1+"=";
|
||||
var cookie=null;
|
||||
if(document.cookie.length > 0){j2=document.cookie.indexOf(search);
|
||||
if(j2!=-1){j2+=search.length;
|
||||
|
||||
j3=document.cookie.indexOf(";",j2);
|
||||
|
||||
if(j3==-1)j3=document.cookie.length;
|
||||
return unescape(document.cookie.substring(j2,j3));}}
|
||||
return cookie;}
|
||||
|
||||
function h5(){if(G9){j4=f3+'^'+ad.left+'^'+ad.top+'^'+ad.zIndex;
|
||||
for(i=0;i<d1;i++){with(ncard[f0[i]]){j4+=':'+j5+'^'+f8.left+'^'+f8.top+'^'+zorder;}}
|
||||
exp=new Date();
|
||||
j4+='!'+exp.getTime();
|
||||
oneWeek=exp.getTime()+coneweek;
|
||||
|
||||
exp.setTime(oneWeek);
|
||||
i8('netscape_home',j4,exp);}}
|
||||
function j6(e){}
|
||||
|
||||
function j7(e){var j8;
|
||||
j9=e8;
|
||||
k0=e9;
|
||||
|
||||
|
||||
if(f2){e8=e.x;
|
||||
e9=e.y;
|
||||
if(pf=="Unix"){e8-=d4;
|
||||
e9-=d5;}
|
||||
if(d1 > 0)d=e9-e2-ad.clip.height-ncard[f0[0]].tab.clip.height*d1;
|
||||
else
|
||||
d=0;
|
||||
if(d > 0&&d1 > 1)d7=d/d1;
|
||||
else if(d<=0)d7=d/d1;
|
||||
|
||||
d7=d7>2||d7<0?d7:2;
|
||||
|
||||
if(f3)ad.moveTo(ad.clip.width<e8?e8-ad.clip.width:0,e9-ad.clip.height);
|
||||
else
|
||||
ad.moveTo(e8-d3,e9-ad.clip.height);
|
||||
|
||||
for(i=0; i<d1; i++){if(!ncard[f0[i]].j5&&ncard[f0[i]].f8.left<=j9){k1=e2;
|
||||
for(j=i; j>0; j--)k1+=ncard[f0[j-1]].tab.clip.height+d7;
|
||||
movecard(f0[i],e8,k1);}}
|
||||
|
||||
|
||||
|
||||
|
||||
for(i=0; i<d1; i++){with(ncard[f0[i]]){f8.zIndex=zorder;
|
||||
tab.zIndex=zorder;
|
||||
utab.zIndex=zorder;
|
||||
ubar.zIndex=zorder;}}
|
||||
ad.zIndex=99;
|
||||
h5();}
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
return true;}
|
||||
|
||||
D1=0;
|
||||
D2=1;
|
||||
D3=-1;
|
||||
|
||||
function D4(e,card,x,y){with(card){if((x>=ubar.left&&x<=ubar.left+ubar.clip.width&&y>=ubar.top&&y<=ubar.top+ubar.clip.height)||(x>=tab.left&&x<=tab.left+tab.clip.width&&y>=tab.top&&y<=tab.top+tab.clip.height)||(x>=utab.left&&x<=utab.left+utab.clip.width&&y>=utab.top&&y<=utab.top+utab.clip.height)){if((x>=tab.left+C3&&x<=tab.left+C5&&y>=tab.top+C4&&y<=tab.top+C6)||(x>=utab.left+C7&&x<=utab.left+C9&&y>=utab.top+C8&&y<=utab.top+D0)){return D3;} else{i0(e,f1.name);
|
||||
window.releaseEvents(Event.MOUSEDOWN);
|
||||
return D2;}}
|
||||
else
|
||||
return D1;}}
|
||||
|
||||
function k2(e){var x=e.pageX,y=e.pageY,k3=false;
|
||||
var k4,k5=-1;
|
||||
|
||||
|
||||
if(f1!=null){D5=D4(e,ncard[f1.name],x,y);
|
||||
if(D5==D2)return false;
|
||||
else if(D5==D3)return true;}
|
||||
if(f3)if(x>=ad.left&&x<=ad.left+ad.clip.width&&y>=ad.top&&y<=ad.top+ad.clip.height)return true;
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
for(i=0; i<d1; i++){with(ncard[f0[i]]){if((x>=f8.left&&x<=f8.left+f8.clip.width&&y>=f8.top-e0&&y<=f8.top+f8.clip.height)||(x>=tab.left&&x<=tab.left+tab.clip.width&&y>=tab.top&&y<=tab.top+tab.clip.height)||(x>=utab.left&&x<=utab.left+utab.clip.width&&y>=utab.top&&y<=utab.top+utab.clip.height)){k3=true;
|
||||
if(k5==-1)k5=i;
|
||||
else
|
||||
if(zorder>=ncard[f0[k5]].zorder)k5=i;}}}
|
||||
if(k3){with(ncard[f0[k5]]){if(!j5){if(f1!=null&&f1.name!=f0[k5]){f9(ncard[f0[k5]],ncard[f1.name]);
|
||||
if(zorder > d1){zorder-=1;
|
||||
f7(ncard[f0[k5]]);
|
||||
for(i=0; i<d1; i++)if(ncard[f0[i]].zorder>=zorder&&i!=k5&&ncard[f0[i]].zorder > 0){ncard[f0[i]].zorder-=1;
|
||||
f7(ncard[f0[i]]);}}}
|
||||
else if(f1==null){for(i=0; i<d1; i++)if(ncard[f0[i]].zorder>=zorder&&i!=k5)f9(ncard[f0[k5]],ncard[f0[i]]);}}
|
||||
else{if(f1.name!=f0[k5]){ncard[f1.name].zorder-=1;
|
||||
f7(ncard[f1.name]);
|
||||
f9(ncard[f0[k5]],ncard[f1.name]);
|
||||
for(i=0; i<d1; i++)if(ncard[f0[i]].zorder > ncard[f0[k5]].zorder&&ncard[f0[i]].zorder > 0){ncard[f0[i]].zorder=ncard[f0[k5]].zorder-1;
|
||||
f7(ncard[f0[i]]);}}}
|
||||
h5();
|
||||
f1=ncard[f0[k5]].f8;
|
||||
D5=D4(e,ncard[f0[k5]],x,y);
|
||||
if(D5==D2)return false;
|
||||
else if(D5==D3)return true;}}
|
||||
|
||||
window.releaseEvents(Event.MOUSEDOWN);
|
||||
return true;}
|
||||
|
||||
function k6(e){window.captureEvents(Event.MOUSEDOWN);
|
||||
if(h9!=null)i2(e);}
|
||||
|
||||
function k7(Card,g9){if(g9&&f1!=null&&Layer!=f1)if(Layer.name!=d2)f9(ncard[Card.name],ncard[f1.name]);
|
||||
|
||||
g4(Card,Card.left,Card.top,Math.max(d8,e8-d8-Card.clip.width),Card.top,g9);
|
||||
|
||||
ncard[Card.name].j5=true;
|
||||
f1=Card;}
|
||||
|
||||
function k8(k9){Card=ncard[k9];
|
||||
with(Card){if(j5){k1=e2;
|
||||
for(i=0; i<d1; i++){if(f0[i]==k9)break;
|
||||
k1+=d7;
|
||||
k1+=ncard[f0[i]].tab.clip.height;}
|
||||
g4(Card.f8,Card.f8.left,Card.f8.top,e8,k1,false);
|
||||
|
||||
j5=false;}
|
||||
else{k7(f8,false);}}}
|
||||
|
||||
function card(f8,tab,utab,ubar,j5,zorder){this.f8=f8;
|
||||
this.tab=tab;
|
||||
this.utab=utab;
|
||||
this.ubar=ubar;
|
||||
this.j5=j5;
|
||||
this.zorder=zorder;}
|
||||
|
||||
function l0(i,l1){ncard[l1]=new card(netscapehome.document.layers[l1],netscapehome.document.layers[l1+'tab'],netscapehome.document.layers[l1+'utab'],netscapehome.document.layers[l1+'ubar'],false,0);
|
||||
if(i > 0){movecard(l1,ncard[l1].f8.left,ncard[l1].f8.top+d7);}
|
||||
f0[i]=l1;}
|
||||
|
||||
l2=null;
|
||||
D6=null;
|
||||
l8=null;
|
||||
|
||||
function cleardelays(){clearTimeout(l2);
|
||||
clearTimeout(D6);
|
||||
clearTimeout(l8);}
|
||||
|
||||
function StartPage(){netscapehome=document.layers['netscapehome'];
|
||||
ad=document.layers['netscapehome'].document.layers[d2];
|
||||
|
||||
|
||||
|
||||
|
||||
if(navigator.userAgent.indexOf("X11")!=-1)pf="Unix";
|
||||
|
||||
ad.left=e8;
|
||||
|
||||
var cookie=null;
|
||||
if(G9){cookie=j0('netscape_home');
|
||||
if(cookie!=null){cpart=cookie.split('!');
|
||||
cookie=cpart[0];
|
||||
if(I0!=null){newd=new Date(I0);
|
||||
if(parseFloat(cpart[1])< newd.getTime())cookie=null;}}}
|
||||
|
||||
if(cookie==null){l2=setTimeout(g4,10,ad,e8,e9-ad.clip.height,e8-ad.clip.width,e9-ad.clip.height,true);
|
||||
f3=true;}
|
||||
else{cstate=cookie.split(':');
|
||||
|
||||
val=cstate[0].split('^');
|
||||
ad.visibility="show";
|
||||
if(val[0]=='true'){l5=e8-ad.clip.width;
|
||||
ad.moveTo(l5,e9-ad.clip.height);}
|
||||
else{l2=setTimeout(g4,10,ad,e8,e9-ad.clip.height,e8-ad.clip.width,e9-ad.clip.height,true);}
|
||||
f3=true;}
|
||||
|
||||
if(d1 > 0){d=e9-e2-ad.clip.height-document.layers['netscapehome'].document.layers['card1tab'].clip.height*d1;
|
||||
d7=d/d1;
|
||||
d7=(d7>2||d7<0?d7:2);
|
||||
|
||||
for(i=1;i<=d1;i++){l0(i-1,'card'+i);}
|
||||
g2();}
|
||||
|
||||
if(cookie==null){if(H3){D6=setTimeout(k7,800,ncard['card1'].f8,true);
|
||||
if(d1 > 1)D6=setTimeout(k7,1900,ncard['card2'].f8,true);
|
||||
l8=setTimeout(cleardelays,5000);}
|
||||
if((top.frames.length==0)&&(navigator.userAgent.indexOf('Win16')==-1)){setTimeout("document.layers['menu'].show_menus();",3500)};}
|
||||
else{for(i=0;i<d1;i++){val=cstate[i+1].split('^');
|
||||
with(ncard[f0[i]]){zorder=parseInt(val[3]);
|
||||
l5=parseInt(val[1]);
|
||||
k1=parseInt(val[2]);
|
||||
if(val[0]=='true')ncard[f0[i]].j5=true;
|
||||
else{ncard[f0[i]].j5=false;
|
||||
|
||||
|
||||
if(l5>e8)l5=e8;}
|
||||
f8.moveTo(l5,k1);
|
||||
tab.moveTo(l5-tab.clip.width,k1-e0);
|
||||
utab.moveTo(l5+f8.clip.width-utab.clip.width,k1-d9);
|
||||
ubar.moveTo(l5,k1-e0);}}
|
||||
if(d1 > 1){if(ncard['card1'].zorder > ncard['card2'].zorder){f9(ncard['card1'],ncard['card2']);
|
||||
f1=ncard['card1'].f8;}
|
||||
else{f9(ncard['card2'],ncard['card1']);
|
||||
f1=ncard['card2'].f8;}} else
|
||||
f1=ncard['card1'].f8;
|
||||
|
||||
if((top.frames.length==0)&&(navigator.userAgent.indexOf('Win16')==-1))document.layers['menu'].show_menus();}
|
||||
f2=true;
|
||||
|
||||
window.captureEvents(Event.MOUSEUP|Event.MOUSEDOWN|Event.RESIZE);
|
||||
|
||||
|
||||
window.onmousedown=k2;
|
||||
|
||||
|
||||
window.onmouseup=k6;
|
||||
|
||||
window.onmousemove=i1;
|
||||
|
||||
window.onresize=j7;
|
||||
window.onunload=j6;
|
||||
|
||||
|
||||
document.close();}
|
||||
|
||||
|
||||
//-->
|
||||
</SCRIPT>
|
||||
|
||||
|
||||
|
||||
<SCRIPT LANGUAGE="JavaScript1.2">
|
||||
<!--
|
||||
H5='/styles/win4.js';
|
||||
if(navigator.appVersion.indexOf("Win")!=-1){H5='/styles/win4.js';}
|
||||
else if(navigator.appVersion.indexOf("Macintosh")!=-1){H5='/styles/mac4.js';}
|
||||
else if(navigator.appVersion.indexOf("X11")!=-1){if(navigator.appVersion.indexOf("IRIX")!=-1){H5='/styles/win4.js';}
|
||||
else{H5='/styles/unix4.js';}}
|
||||
|
||||
//-->
|
||||
</SCRIPT>
|
||||
|
||||
<!-- LINK REL="STYLESHEET" TYPE="text/javascript" HREF="&{H5};" -->
|
||||
|
||||
|
||||
<NOSCRIPT><LAYER TOP = 0 LEFT = 0 NAME="noscripthome" CLIP="0,0,1280,1000" BGCOLOR=#FFFFFF Z-INDEX=999 src="/noscript.html"></NOSCRIPT>
|
||||
|
||||
</HEAD>
|
||||
|
||||
<BODY BGCOLOR="#FFFFFF" LINK="#0000ff" VLINK="#ff0000" ALINK="#ff0000" TEXT="#000000" onLoad="if(navigator.userAgent.indexOf('Mozilla/4')!=-1){if((top.frames.length==0)&&(navigator.userAgent.indexOf('Win16')==-1)){document.layers['menu'].init_menu();} if(window.document.name=='indexpage'){setTimeout('javascript:StartPage();',200);return false;}}">
|
||||
|
||||
<LAYER TOP=0 LEFT=0 NAME="netscapehome" Z-INDEX=0 WIDTH="&{innerWidth};">
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
<!-- BRANDING LAYER -->
|
||||
<LAYER TOP=0 LEFT=0 NAME="netscape" VISIBILITY="SHOW">
|
||||
|
||||
<TABLE BORDER=0 CELLPADDING=0 CELLSPACING=0>
|
||||
<TR>
|
||||
<TD COLSPAN=2>
|
||||
<A HREF="/maps/banners/netscape_c0.map"><IMG SRC="/images/banners/netscape_c0.gif" ALT="Welcome to Netscape - Navigation Banner" WIDTH=612 HEIGHT=100 BORDER=0 USEMAP="#navmap" ISMAP></A></DIV>
|
||||
<MAP NAME="navmap">
|
||||
<AREA SHAPE=RECT COORDS="130,84,184,99" HREF="/company/index.html?cp=bcom4se">
|
||||
<AREA SHAPE=RECT COORDS="195,84,248,99" HREF="/products/index.html?cp=bpro4se">
|
||||
<AREA SHAPE=RECT COORDS="256,84,318,99" HREF="/download/index.html?cp=bdow4se">
|
||||
<AREA SHAPE=RECT COORDS="323,84,373,99" HREF="/support/index.html?cp=bsup4se">
|
||||
<AREA SHAPE=RECT COORDS="382,84,438,99" HREF="/solutions/index.html?cp=bsol4se">
|
||||
<AREA SHAPE=RECT COORDS="448,84,513,99" HREF="http://developer.netscape.com/index4_home.html">
|
||||
<AREA SHAPE=RECT COORDS="523,84,572,99" HREF="/partners/index.html?cp=bpar4se">
|
||||
|
||||
</MAP>
|
||||
<DIV ALIGN=center>
|
||||
</TD>
|
||||
</TR>
|
||||
|
||||
<TR>
|
||||
<TD WIDTH=150>
|
||||
<BR>
|
||||
</TD>
|
||||
|
||||
<TD WIDTH=454>
|
||||
|
||||
<TABLE BORDER=0>
|
||||
<TR>
|
||||
<TD WIDTH=30>
|
||||
</TD>
|
||||
<TD COLSPAN=2 WIDHT=450 ALIGN=LEFT>
|
||||
<FONT FACE="Arial,Helvetica" SIZE=-2 COLOR="#ff0000">September 22, 1997</FONT>
|
||||
</TD>
|
||||
</TR>
|
||||
<TR>
|
||||
<TD WIDTH=30>
|
||||
</TD>
|
||||
|
||||
<TD COLSPAN=2 WIDTH=450 ALIGN=LEFT>
|
||||
|
||||
<FONT FACE="Arial,Helvetica" COLOR="#000066" SIZE=+2>
|
||||
|
||||
<!-- HEADLINE -->
|
||||
<NOBR>
|
||||
<B>
|
||||
|
||||
Publishing Suite Now Available
|
||||
|
||||
</B>
|
||||
</NOBR>
|
||||
|
||||
</FONT>
|
||||
|
||||
<SPACER TYPE="Vertical" SIZE="10">
|
||||
|
||||
</TD>
|
||||
</TR>
|
||||
|
||||
<TR>
|
||||
<TD WIDTH=30>
|
||||
</TD>
|
||||
|
||||
<TD COLSPAN=2 WIDTH=378>
|
||||
<FONT FACE="Arial,Helvetica">
|
||||
|
||||
|
||||
<!-- Flash #1 -->
|
||||
|
||||
<A HREF="/comprod/products/communicator/product_family/comm_retailps.html?cp=flh24se">Netscape Publishing Suite</A> - the all-in-one solution for creating and publishing web sites - is now available in <A HREF="http://dev1.netscape.com/directory/retailers.html?main=true">retail stores</A> nationwide.
|
||||
|
||||
</FONT>
|
||||
</TD>
|
||||
|
||||
</TR>
|
||||
<TR>
|
||||
<TD COLSPAN=2 ALIGN=RIGHT VALIGN=TOP WIDTH=450>
|
||||
<BR>
|
||||
<A HREF="http://www.abcnews.com"><IMG SRC="/images/abcnews_4.gif" WIDTH=360 HEIGHT=32 BORDER=0 ALT="ABC News"></A>
|
||||
</TD>
|
||||
</TR>
|
||||
|
||||
<TR>
|
||||
<TD WIDTH=64>
|
||||
</TD>
|
||||
|
||||
<TD WIDTH=378>
|
||||
|
||||
<!-- Flash #2 -->
|
||||
<FONT FACE="Arial,Helvetica" SIZE=-1>
|
||||
|
||||
Netscape <A HREF="/newsref/pr/newsrelease494.html?cp=flh34se">delivers</A> the new CommerceXpert family of Internet commerce products developed by <A HREF="http://www.actracorp.com/">Actra</A> - including PublishingXpert 2.0, SellerXpert, and ECXpert.
|
||||
|
||||
|
||||
</FONT>
|
||||
<BR>
|
||||
<IMG SRC="/images/rule_grn.gif" WIDTH=445 HEIGHT=1 VSPACE=6 BORDER=0 ALT="">
|
||||
|
||||
<FONT FACE="Arial,Helvetica" SIZE=-1>
|
||||
|
||||
<!-- Flash #3 -->
|
||||
|
||||
Netscape launches a preview of <A HREF="http://pnp.individual.com/industrywatch/">Industry Watch</A> by Individual, a personalized service providing in-depth <A HREF="/newsref/pr/newsrelease496.html?cp=flh44se">business news</A> and information.
|
||||
|
||||
|
||||
|
||||
</FONT>
|
||||
<BR>
|
||||
<IMG SRC="/images/rule_grn.gif" WIDTH=445 HEIGHT=1 VSPACE=6 BORDER=0 ALT="">
|
||||
|
||||
|
||||
<FONT FACE="Arial,Helvetica" SIZE=-1>
|
||||
|
||||
|
||||
|
||||
<!-- Flash #4 -->
|
||||
|
||||
<A HREF="/download/client_download.html?cp=flh54se">Download</A> Netscape French <A HREF="/comprod/products/communicator/index.html?cp=flh54se">Communicator 4.03</A> for Windows 95 and NT - and take advantage of dynamic web content.
|
||||
|
||||
|
||||
|
||||
</FONT>
|
||||
<BR>
|
||||
<IMG SRC="/images/rule_grn.gif" WIDTH=445 HEIGHT=1 VSPACE=6 BORDER=0 ALT="">
|
||||
|
||||
<FONT FACE="Arial,Helvetica" SIZE=-1>
|
||||
|
||||
|
||||
|
||||
<!-- Flash #5 -->
|
||||
|
||||
Netscape <A HREF="http://fury:3000/newsref/pr/newsrelease493.html?cp=flh53se">works</A> with leading sales force automation vendors to deliver next-generation tools that will automate and manage sales environments.
|
||||
|
||||
</FONT>
|
||||
<BR>
|
||||
<IMG SRC="/images/rule_grn.gif" WIDTH=445 HEIGHT=1 VSPACE=6 BORDER=0 ALT="">
|
||||
|
||||
|
||||
<!-- More News -->
|
||||
<FONT FACE="Arial,Helvetica" SIZE=-1><A HREF="/news/index.html?cp=fnws4se">More news...</A></FONT>
|
||||
<SPACER TYPE=horizontal SIZE=45>
|
||||
<FONT FACE="Arial,Helvetica" SIZE=-1>Go to a <A HREF="/index3.html">non-layers</A> version of this page.
|
||||
|
||||
|
||||
|
||||
<BR>
|
||||
<BR>
|
||||
</TD>
|
||||
</TR>
|
||||
</TABLE>
|
||||
|
||||
|
||||
</TR>
|
||||
</TABLE>
|
||||
|
||||
|
||||
|
||||
<TABLE BORDER=0 CELLPADDING=0 CELLSPACING=0 WIDTH=612>
|
||||
<TR BGCOLOR="#99CCCC">
|
||||
|
||||
<TD WIDTH=158 ROWSPAN=2>
|
||||
<SPACER TYPE=VERTICAL SIZE=158><BR>
|
||||
</TD>
|
||||
|
||||
|
||||
|
||||
|
||||
<!-- COLUMN 1 NETSCAPE COLUMNS -->
|
||||
<TD VALIGN=TOP WIDTH=134>
|
||||
<!-- COLUMNS NG TOKEN -->
|
||||
<!-- BEGIN-T3 -->
|
||||
<A HREF="http://cgi.netscape.com/cgi-bin/redir?SpaceID=709&AdID=2493&URL=http://home.netscape.com/comprod/columns/mainthing/directory.html"><IMG SRC="/inserts/images/jb.gif" WIDTH=59 HEIGHT=54 VSPACE=0 HSPACE=0 ALIGN=ABSTOP BORDER=0 ALT="Jim Barksdale"></A>
|
||||
<!-- MID-T3 -->
|
||||
<BR>
|
||||
<BR><FONT FACE="Arial,Helvetica"><B>Netscape<BR>Columns</B></FONT><BR>
|
||||
<FONT FACE="Arial,Helvetica" SIZE=-1>
|
||||
In this week's <A HREF="http://cgi.netscape.com/cgi-bin/redir?SpaceID=709&AdID=2493&URL=http://home.netscape.com/comprod/columns/mainthing/directory.html"> The Main Thing</A><!-- MID-T3 --> column, Jim Barksdale talks about directory services. Read all the <A HREF="http://cgi.netscape.com/cgi-bin/redir?SpaceID=709&AdID=2493&URL=http://home.netscape.com/news/index.html"> Netscape Columns</A> to keep up with Internet issues and trends.<P>
|
||||
<!-- END-T3 -->
|
||||
<BR></FONT>
|
||||
|
||||
|
||||
</TD>
|
||||
|
||||
<TD WIDTH=14>
|
||||
|
||||
</TD>
|
||||
|
||||
<!-- COLUMN 2 NETSCAPE PRODUCTS -->
|
||||
<TD VALIGN=TOP WIDTH=134>
|
||||
|
||||
<A HREF="http://cgi.netscape.com/cgi-bin/upgrade.cgi"><IMG SRC="/images/download.gif" WIDTH=90 HEIGHT=54 VSPACE=0 HSPACE=0 BORDER=0 ALT="Tune Up to Communicator"></A>
|
||||
<BR>
|
||||
<BR>
|
||||
<FONT FACE="Arial,Helvetica"><B>Netscape<BR>Products</B></FONT><BR>
|
||||
<FONT FACE="Arial,Helvetica" SIZE=-1>
|
||||
<A HREF="http://cgi.netscape.com/cgi-bin/upgrade.cgi">Tune Up to Communicator</A><BR>
|
||||
<A HREF="/download/index.html?cp=pdow4se">Get Any Netscape Product</A><BR>
|
||||
<A HREF="http://cgi.netscape.com/cgi-bin/sub_upgrade.cgi">For Subscribers Only</A><P>
|
||||
<P>
|
||||
And tune up your Internet connection with <A HREF="/assist/isp_select/index.html?cp=pisp4se">ISP Select</A>.
|
||||
|
||||
</FONT><BR>
|
||||
</TD>
|
||||
|
||||
<TD WIDTH=14>
|
||||
|
||||
</TD>
|
||||
|
||||
<!-- STORE -->
|
||||
<TD VALIGN=TOP WIDTH=146>
|
||||
<A HREF="http://merchant.netscape.com/"><IMG SRC="/images/store_special.gif" WIDTH=58 HEIGHT=54 BORDER=0 HSPACE=0 VSPACE=0></A>
|
||||
<BR>
|
||||
<BR><FONT FACE="Arial,Helvetica"><B>Netscape<BR>Store Special</B></FONT><BR>
|
||||
|
||||
<FONT FACE="Arial,Helvetica" SIZE=-1>
|
||||
<!-- STORE -->
|
||||
|
||||
Looking for a rich Internet experience? Purchase Netscape Communicator Deluxe Edition and get a <A HREF="http://merchant.netscape.com/netstore/clients/iae.html?cp=mspe4se">$30 rebate</A>. Plus <A HREF="http://merchant.netscape.com/netstore/PUBS/index.html?cp=mspe4se">save $10</A> on the <I>Official Netscape Communicator 4.0 Professional Edition</I> book.
|
||||
|
||||
|
||||
</FONT>
|
||||
<P>
|
||||
</TD>
|
||||
|
||||
<TD WIDTH=10>
|
||||
|
||||
</TD>
|
||||
|
||||
|
||||
</TD>
|
||||
</TR>
|
||||
</TABLE>
|
||||
|
||||
<TABLE WIDTH=612>
|
||||
<TR>
|
||||
<TD WIDTH=90>
|
||||
|
||||
</TD>
|
||||
|
||||
<TD WIDTH=450>
|
||||
<P>
|
||||
<TABLE BORDER=0 CELLPADDING=0 CELLSPACING=0>
|
||||
<TR><TD COLSPAN=2 WIDTH=461><A TARGET="_top" HREF="/images/footer.map"><IMG
|
||||
SRC="/images/footer.gif" HSPACE=0 VSPACE=0 ISMAP USEMAP="#footermap" HEIGHT=13 BORDER=0 WIDTH=461></A><MAP NAME="footermap"><AREA SHAPE=RECT COORDS="101,2,146,10" HREF="/netcenter/" TARGET="_top">
|
||||
<AREA SHAPE=RECT COORDS="162,2,208,10" HREF="/download/" TARGET="_top">
|
||||
<AREA SHAPE=RECT COORDS="224,2,254,10" HREF="/search/" TARGET="_top">
|
||||
<AREA SHAPE=RECT COORDS="271,2,312,10" HREF="/map/" TARGET="_top">
|
||||
<AREA SHAPE=RECT COORDS="328,2,371,10" HREF="/feedback/" TARGET="_top">
|
||||
<AREA SHAPE=RECT COORDS="387,2,457,10" HREF="/site/" TARGET="_top"></MAP></TD>
|
||||
<TD WIDTH=101></TD></TR><TR><TD WIDTH=101></TD><TD WIDTH=360>
|
||||
<FONT FACE="Arial, Helvetica" SIZE=-2><BR>Corporate Sales: 650/937-2555 Personal Sales: 650/937-3777<BR>
|
||||
Government Sales: 650/937-3678<BR>If you have any questions please visit
|
||||
<A HREF="/assist/" TARGET="_top">Customer Service</A> or contact your nearest
|
||||
<A HREF="/misc/contact_info.html" TARGET="_top">sales office</A>. • Copyright © 1997
|
||||
<A HREF="/misc/trademarks.html" TARGET="_top">Netscape Communications</A>
|
||||
Corporation. • This site powered by <A HREF="/comprod/server_central/" TARGET="_top">Netscape SuiteSpot servers</A>.</FONT></TD><TD WIDTH=101></TD></TR>
|
||||
</TABLE>
|
||||
</DIV>
|
||||
<P>
|
||||
<BR>
|
||||
</TD>
|
||||
</TR>
|
||||
</TABLE>
|
||||
|
||||
|
||||
</LAYER>
|
||||
|
||||
|
||||
|
||||
<!-- AD LAYER -->
|
||||
<LAYER NAME="ad" HEIGHT=60 WIDTH=245 LEFT=700 TOP=0 VISIBILITY="HIDE" Z-INDEX=99><LAYER WIDTH=8 CLIP="0,0,8,26"><LAYER LEFT=-28 TOP=-26><IMG SRC="/images/chrome_combo.gif" WIDTH=316 HSPACE=0 VSPACE=0 HEIGHT=146 BORDER="0" USEMAP="#admap" ALIGN=TOP ALT=""></LAYER></LAYER><LAYER LEFT=8 BGCOLOR="#000000" CLIP="0,0,234,60"><!-- BEGIN-T1 -->
|
||||
<A HREF="http://cgi.netscape.com/cgi-bin/redir?SpaceID=708&AdID=2371&URL=http://guide.netscape.com/%3Fa">
|
||||
<!-- MID-T1 -->
|
||||
<IMG SRC="/inserts/images/netscap_125ihban_nguide_ad.gif" ALT="New to the Web?" WIDTH=234 HEIGHT=59 BORDER=1></A>
|
||||
<!-- END-T1 --></LAYER><MAP NAME="admap"><AREA SHAPE=RECT COORDS="28,31,35,57" HREF="" onClick="javascript:h6();return false;"></MAP></LAYER>
|
||||
|
||||
|
||||
<!-- CARD1 LAYER -->
|
||||
<LAYER NAME="card1" LEFT=0 TOP=0 WIDTH=576 HEIGHT=450 VISIBILITY="HIDE" Z-INDEX=0>
|
||||
|
||||
<LAYER NAME="black_bg" WIDTH=576 LEFT=0 TOP=0 CLIP="576,450" BGCOLOR=#000000></LAYER>
|
||||
|
||||
<LAYER NAME="netcenter" WIDTH=574 LEFT=1 TOP=1 CLIP="574,448" BGCOLOR=#FFFFFF>
|
||||
|
||||
<LAYER NAME="teaser_logo" WIDTH=408 LEFT=10 TOP=10>
|
||||
<A HREF="http://form.netscape.com/ibd/cgi-bin/ibd-x.cgi">
|
||||
<IMG SRC="/images/ibd_signup.gif" HEIGHT=54 WIDTH=157 ALT="Turn Your In-Box Into a News Center" BORDER=0></A>
|
||||
<SPACER TYPE=horizontal SIZE=50>
|
||||
<A HREF="/netcenter/index.html?cp=nnet4se">
|
||||
<IMG SRC="/images/netcent.gif" HEIGHT=64 WIDTH=173 ALT="Netcenter" BORDER=0></A>
|
||||
</LAYER>
|
||||
|
||||
<LAYER NAME="headline_flashes" WIDTH=408 LEFT=10 TOP=94>
|
||||
|
||||
|
||||
<FONT FACE="Arial,Helvetica" Size=+1 COLOR="#000066">
|
||||
<B>
|
||||
In-Box Direct Delivers The New York Times
|
||||
</B>
|
||||
</FONT>
|
||||
<SPAN ID="style_16_19">
|
||||
|
||||
<P>
|
||||
Get the best information on the Web without searching. <A HREF="http://form.netscape.com/ibd/cgi-bin/ibd-x.cgi">Netscape In-Box Direct</A> offers rich HTML content from USA Today, the Wall Street Journal, Sports Illustrated, ELLE International, and dozens more delivered directly to your email in-box. Choose the publications you want, and Netscape In-Box Direct will take care of the rest.
|
||||
<P>
|
||||
|
||||
</SPAN>
|
||||
|
||||
<SPAN ID="style_12_15_bold">
|
||||
Win a BMW Z3 1.9 Roadster
|
||||
</SPAN>
|
||||
<BR>
|
||||
<SPAN ID="style_12_15">
|
||||
<A HREF="http://home.netscape.com/netcenter/tunereg/start.html?cp=nfl14se">Sign up</A> for Netcenter today and register to <A HREF="http://home.netscape.com/netcenter/tuneup/index.html?cp=nfl14se">win</A> a BMW Z3 1.9 Roadster, PC workstations from Hewlett-Packard, trips from Travelocity and Continental Airlines, and music from CDnow.
|
||||
<P>
|
||||
</SPAN>
|
||||
<SPAN ID="style_12_15_bold">
|
||||
Software Store
|
||||
</SPAN>
|
||||
<BR>
|
||||
<SPAN ID="style_12_15">
|
||||
Looking for new collaboration software? Web development tools? Netscape's <A HREF="http://merchant.netscape.com/index.html?cp=nfl24se">Software Store</A> has all your business solutions software.
|
||||
</SPAN>
|
||||
<P>
|
||||
<SPAN ID="style_12_15_bold">
|
||||
Netscape Guide by Yahoo!
|
||||
</SPAN>
|
||||
<BR>
|
||||
<SPAN ID="style_12_15">
|
||||
Want a hot stock tip? Head over to the finance section of <A HREF="http://netscape.yahoo.com/guide/index.html?cp=nfl34se">Netscape Guide</A> by Yahoo! for a rich assortment of money management and investment resources.
|
||||
</SPAN>
|
||||
|
||||
</LAYER>
|
||||
|
||||
|
||||
<!-- Columns Menu -->
|
||||
|
||||
<LAYER NAME="column_3" WIDTH=174 LEFT=428 TOP=0 CLIP="174,450" BGCOLOR=#99CCCC>
|
||||
<LAYER NAME="column_3_text" TOP=15 LEFT=10>
|
||||
<A HREF="/netcenter/index.html?cp=nnet4se"><IMG SRC="/images/tunein.gif" HEIGHT=74 WIDTH=101 ALT="Tune in to Netcenter, the Best of the Net for:" BORDER=0></A>
|
||||
<SPACER TYPE=VERTICAL SIZE=26>
|
||||
<TABLE CELLPADDING=0 CELLSPACING=0 BORDER=0 ALIGN=LEFT VALIGN=TOP>
|
||||
|
||||
<!-- Begining of NGAD content for Netcenter Card Menu -->
|
||||
|
||||
<TR>
|
||||
<TD COLSPAN=2>
|
||||
<SPAN ID="style_12_13">
|
||||
<A HREF="/netcenter/index.html?cp=nind4se"><B>Community</B></A>
|
||||
</SPAN>
|
||||
</TD>
|
||||
</TR>
|
||||
|
||||
<TR>
|
||||
<TD WIDTH=10 VALIGN=TOP>
|
||||
<IMG SRC="/images/bullet.gif" WIDTH=5 HEIGHT=5 BORDER=0 ALT="" VSPACE=5>
|
||||
</TD>
|
||||
<TD>
|
||||
|
||||
<SPAN ID="style_10_13">
|
||||
<A HREF="/netcenter/vo/index.html?cp=nvo4se">Virtual Office</A>
|
||||
</SPAN>
|
||||
<P>
|
||||
</TD>
|
||||
</TR>
|
||||
|
||||
|
||||
|
||||
<TR>
|
||||
<TD COLSPAN=2>
|
||||
<SPAN ID="style_12_13">
|
||||
<BR>
|
||||
<A HREF="/netcenter/index.html?cp=nsft4se"><B>Software</B></A>
|
||||
</SPAN>
|
||||
</TD>
|
||||
</TR>
|
||||
|
||||
<TR>
|
||||
<TD WIDTH=10 VALIGN=TOP>
|
||||
<IMG SRC="/images/bullet.gif" WIDTH=5 HEIGHT=5 BORDER=0 ALT="" VSPACE=5>
|
||||
</TD>
|
||||
|
||||
<TD>
|
||||
<SPAN ID="style_10_13">
|
||||
<A HREF="/download/software_direct.html?cp=nupd4se">SmartUpdate</A>
|
||||
</SPAN>
|
||||
</TD>
|
||||
</TR>
|
||||
|
||||
|
||||
<TR>
|
||||
<TD WIDTH=10 VALIGN=TOP>
|
||||
<IMG SRC="/images/bullet.gif" WIDTH=5 HEIGHT=5 BORDER=0 ALT="" VSPACE=5>
|
||||
</TD>
|
||||
|
||||
<TD>
|
||||
<SPAN ID="style_10_13">
|
||||
<A HREF="http://merchant.netscape.com/index.html?cp=nsto4se">Software Store</A>
|
||||
<P>
|
||||
</SPAN>
|
||||
</TD>
|
||||
</TR>
|
||||
|
||||
<TR>
|
||||
<TD COLSPAN=2>
|
||||
<SPAN ID="style_12_13">
|
||||
<BR>
|
||||
<A HREF="/netcenter/index.html?cp=ncon4se"><B>Content</B></A>
|
||||
</SPAN>
|
||||
</TD>
|
||||
</TR>
|
||||
|
||||
<TR>
|
||||
<TD WIDTH=10 VALIGN=TOP>
|
||||
<IMG SRC="/images/bullet.gif" WIDTH=5 HEIGHT=5 BORDER=0 ALT="" VSPACE=5>
|
||||
</TD>
|
||||
|
||||
<TD>
|
||||
<SPAN ID="style_10_13">
|
||||
<A HREF="http://pnp.individual.com/industrywatch/index.html?cp=iw4se">Industry Watch</A>
|
||||
</SPAN>
|
||||
</TD>
|
||||
</TR>
|
||||
|
||||
<TR>
|
||||
<TD WIDTH=10 VALIGN=TOP><IMG SRC="/images/bullet.gif" WIDTH=5 HEIGHT=5 BORDER=0 ALT="" VSPACE=5>
|
||||
</TD>
|
||||
|
||||
<TD>
|
||||
<SPAN ID="style_10_13">
|
||||
<A HREF="/netcenter/cf/index1.html?cp=nchf4se">Channel Finder</A>
|
||||
</SPAN>
|
||||
</TD>
|
||||
</TR>
|
||||
|
||||
<TR>
|
||||
<TD WIDTH=10 VALIGN=TOP><IMG SRC="/images/bullet.gif" WIDTH=5 HEIGHT=5 BORDER=0 ALT="" VSPACE=5>
|
||||
</TD>
|
||||
|
||||
<TD>
|
||||
<SPAN ID="style_10_13">
|
||||
<A HREF="http://form.netscape.com/ibd/cgi-bin/ibd-x.cgi">In-Box Direct</A>
|
||||
</SPAN>
|
||||
</TD>
|
||||
</TR>
|
||||
|
||||
<TR>
|
||||
<TD WIDTH=10 VALIGN=TOP>
|
||||
<IMG SRC="/images/bullet.gif" WIDTH=5 HEIGHT=5 BORDER=0 ALT="" VSPACE=5>
|
||||
</TD>
|
||||
|
||||
<TD>
|
||||
<SPAN ID="style_10_13">
|
||||
<A HREF="http://guide.netscape.com/guide/index.html?cp=nyao4se">Internet Guide</A>
|
||||
</SPAN>
|
||||
</TD>
|
||||
</TR>
|
||||
|
||||
<TR>
|
||||
<TD WIDTH=10 VALIGN=TOP>
|
||||
<IMG SRC="/images/bullet.gif" WIDTH=5 HEIGHT=5 BORDER=0 ALT="" VSPACE=5>
|
||||
</TD>
|
||||
|
||||
<TD COLSPAN=2>
|
||||
<SPAN ID="style_10_13">
|
||||
<A HREF="/escapes/search/index.html?cp=nsea4se">Net Search</A>
|
||||
<P>
|
||||
</SPAN>
|
||||
</TD>
|
||||
</TR>
|
||||
|
||||
<!-- End of NGAD content for Netcenter Menu -->
|
||||
|
||||
|
||||
|
||||
<TR>
|
||||
<TD COLSPAN=2>
|
||||
<SPAN ID="style_12_13">
|
||||
<BR>
|
||||
<B>
|
||||
Available Soon
|
||||
</B>
|
||||
</SPAN>
|
||||
</TD>
|
||||
</TR>
|
||||
|
||||
<TR>
|
||||
<TD WIDTH=10 VALIGN=TOP>
|
||||
<IMG SRC="/images/bullet.gif" WIDTH=5 HEIGHT=5 BORDER=0 ALT="" VSPACE=5>
|
||||
</TD>
|
||||
|
||||
<TD>
|
||||
<SPAN ID="style_10_13">
|
||||
Professional Community
|
||||
</SPAN>
|
||||
</TD>
|
||||
</TR>
|
||||
|
||||
</TABLE>
|
||||
|
||||
</LAYER></LAYER>
|
||||
</LAYER></LAYER>
|
||||
<!-- END CARD1 LAYER -->
|
||||
|
||||
<LAYER NAME="card1tab" LEFT=0 TOP=0 WIDTH=14 CLIP=0,0,14,146 VISIBILITY="HIDE" Z-INDEX=0><LAYER LEFT=2 TOP=0 HEIGHT=146 WIDTH=12 BGCOLOR="#003366"></LAYER><LAYER LEFT=-14 TOP=0><IMG SRC="/images/chrome_combo.gif" ALIGN=TOP WIDTH=316 HEIGHT=146 BORDER=0 USEMAP="#card1tabmap" ALT=""><MAP NAME="card1tabmap"><AREA SHAPE=RECT COORDS="17,5,26,26" HREF="" onClick="javascript:k8('card1');return false;"></MAP></LAYER></LAYER>
|
||||
|
||||
<LAYER NAME="card1utab" LEFT=0 TOP=0 WIDTH=288 CLIP=0,0,288,26 VISIBILITY="HIDE" Z-INDEX=0><LAYER TOP=2 LEFT=0 BGCOLOR="#003366" HEIGHT=24 WIDTH=288><CENTER><FONT COLOR="#FFFFFF" FACE="Arial,Helvetica" SIZE=+2>Netcenter</FONT></CENTER></LAYER><LAYER LEFT=-28 TOP=-120><IMG SRC="/images/chrome_combo.gif" ALIGN=TOP WIDTH=316 HEIGHT=146 BORDER=0 USEMAP="#card1utabmap" ALT=""><MAP NAME="card1utabmap"><AREA SHAPE=RECT COORDS="289,127,310,136" HREF="" onClick="javascript:k8('card1'); return false;"></MAP></LAYER></LAYER>
|
||||
|
||||
<LAYER NAME="card1ubar" LEFT=0 TOP=0 WIDTH=288 CLIP="0,0,288,13" BGCOLOR="#003366" VISIBILITY="HIDE" Z-INDEX=0><LAYER LEFT=-28 TOP=0><IMG SRC="/images/chrome_combo.gif" ALIGN=TOP WIDTH=316 HEIGHT=146 BORDER=0 ALT=""></LAYER></LAYER>
|
||||
|
||||
|
||||
</LAYER> <!-- netscapehome -->
|
||||
|
||||
|
||||
<LAYER NAME="menu" SRC="menu4.html" HEIGHT=450 WIDTH=50 LEFT=0 TOP=0 Z-INDEX=100 VISIBILITY="show">
|
||||
</LAYER>
|
||||
|
||||
|
||||
</BODY>
|
||||
</HTML>
|
||||
8
mozilla/htmlparser/tests/html/html001.html
Normal file
8
mozilla/htmlparser/tests/html/html001.html
Normal file
@@ -0,0 +1,8 @@
|
||||
<HTML lang="en" dir="ltr">
|
||||
<HEAD>
|
||||
<TITLE> HTML-html04 </TITLE>
|
||||
</HEAD>
|
||||
<BODY>
|
||||
html tag has attributes.
|
||||
</BODY>
|
||||
</HTML>
|
||||
13
mozilla/htmlparser/tests/html/imgmap001.html
Normal file
13
mozilla/htmlparser/tests/html/imgmap001.html
Normal file
@@ -0,0 +1,13 @@
|
||||
<HTML>
|
||||
<HEAD>
|
||||
</HEAD>
|
||||
<BODY>
|
||||
<P>area element with attributes set for circular shape of 80,80,60.</P>
|
||||
<IMG src="ruby.gif" alt="image for imagemap" width="216" height="216"
|
||||
usemap="#map1" border="0">
|
||||
<MAP name="map1">
|
||||
<AREA shape="circle" coords="80,80,60" href="test.html" target="_blank"
|
||||
alt="imagemap">
|
||||
</MAP>
|
||||
</BODY>
|
||||
</HTML>
|
||||
14
mozilla/htmlparser/tests/html/ins001.html
Normal file
14
mozilla/htmlparser/tests/html/ins001.html
Normal file
@@ -0,0 +1,14 @@
|
||||
<html>
|
||||
<head>
|
||||
<title>test INS tag</title>
|
||||
</head>
|
||||
<body>
|
||||
test INS, bi directional override <br>
|
||||
1normal text in body line 1.
|
||||
<INS date="19971022">
|
||||
A This text is in INS
|
||||
<br> B line 2 in INS
|
||||
</INS>
|
||||
2normal text in body line 2.
|
||||
</body>
|
||||
</html>
|
||||
18
mozilla/htmlparser/tests/html/ins002.html
Normal file
18
mozilla/htmlparser/tests/html/ins002.html
Normal file
@@ -0,0 +1,18 @@
|
||||
<html>
|
||||
<head>
|
||||
<title>test INS tag</title>
|
||||
</head>
|
||||
<body>
|
||||
test INS, bi directional override <br>
|
||||
1normal text in body line 1.
|
||||
<INS date="19971022">
|
||||
A This text is in INS
|
||||
<INS date="19971023">
|
||||
C This text is in INS2
|
||||
<br> D line 2 in INS2
|
||||
</INS>
|
||||
<br> B line 2 in INS
|
||||
</INS>
|
||||
2normal text in body line 2.
|
||||
</body>
|
||||
</html>
|
||||
13
mozilla/htmlparser/tests/html/ins003.html
Normal file
13
mozilla/htmlparser/tests/html/ins003.html
Normal file
@@ -0,0 +1,13 @@
|
||||
<HTML>
|
||||
<HEAD>
|
||||
<META HTTP-EQUIV="Content-Type" CONTENT="text/html; charset=iso-8859-1">
|
||||
<META NAME="Author" CONTENT="Arthur Liu">
|
||||
<META NAME="GENERATOR" CONTENT="Mozilla/4.03 [en] (WinNT; I) [Netscape]">
|
||||
<TITLE>del strikeover text</TITLE>
|
||||
</HEAD>
|
||||
<BODY>
|
||||
Normal text1
|
||||
<BR><U>text with underline</U>
|
||||
<BR>Normal text2
|
||||
</BODY>
|
||||
</HTML>
|
||||
16
mozilla/htmlparser/tests/html/insdel01.html
Normal file
16
mozilla/htmlparser/tests/html/insdel01.html
Normal file
@@ -0,0 +1,16 @@
|
||||
<html>
|
||||
<head>
|
||||
<title>test INS tag</title>
|
||||
</head>
|
||||
<body>
|
||||
test INS <br>
|
||||
1normal text in body line 1.
|
||||
<INS date="19971022">
|
||||
A This text is in INS
|
||||
<Del date="19971023">
|
||||
<br> B line 2 in INS
|
||||
</Del>
|
||||
</INS>
|
||||
2normal text in body line 2.
|
||||
</body>
|
||||
</html>
|
||||
16
mozilla/htmlparser/tests/html/insdel02.html
Normal file
16
mozilla/htmlparser/tests/html/insdel02.html
Normal file
@@ -0,0 +1,16 @@
|
||||
<html>
|
||||
<head>
|
||||
<title>INS DEL /INS /DEL crossing scope</title>
|
||||
</head>
|
||||
<body>
|
||||
test INS<br>
|
||||
1normal text in body line 1.
|
||||
<INS date="19971022">
|
||||
A This text is in INS
|
||||
<Del date="19971023">
|
||||
<br> B line 2 in INS
|
||||
</INS>
|
||||
2normal text in body line 2.
|
||||
</Del>
|
||||
</body>
|
||||
</html>
|
||||
20
mozilla/htmlparser/tests/html/layer001.html
Normal file
20
mozilla/htmlparser/tests/html/layer001.html
Normal file
@@ -0,0 +1,20 @@
|
||||
<!--Commented code available in commented_code/index.html-->
|
||||
<HTML>
|
||||
|
||||
<HEAD>
|
||||
<TITLE>Test Layer</TITLE>
|
||||
|
||||
</HEAD>
|
||||
|
||||
<BODY>
|
||||
Layers do NOT imply new paragraph, nor line break.
|
||||
<LAYER TOP=50 LEFT=150 NAME="text001" HEIGHT="150" WIDTH="200" SRC="text001.html" VISIBILITY="show"></LAYER>
|
||||
|
||||
Note, no line break here. Text-2
|
||||
|
||||
<LAYER TOP=150 LEFT=10 NAME="text002" HEIGHT="150" WIDTH="300" SRC="text002.html" VISIBILITY="show"></LAYER>
|
||||
|
||||
After layer, text-3
|
||||
|
||||
</BODY>
|
||||
</HTML>
|
||||
28
mozilla/htmlparser/tests/html/layer002.html
Normal file
28
mozilla/htmlparser/tests/html/layer002.html
Normal file
@@ -0,0 +1,28 @@
|
||||
<!--Commented code available in commented_code/index.html-->
|
||||
<HTML>
|
||||
|
||||
<HEAD>
|
||||
<TITLE>Test Layer002</TITLE>
|
||||
|
||||
</HEAD>
|
||||
|
||||
<BODY>
|
||||
In Vav4.0, SPAN tags go thour layers.
|
||||
<br>It remain in effect in its whole scope, including layer.
|
||||
<FONT color=red>
|
||||
Text in color=red SPAN.
|
||||
<LAYER TOP=50 LEFT=150 NAME="text001" HEIGHT="150" WIDTH="200" SRC="text001.html" VISIBILITY="show">
|
||||
</LAYER>
|
||||
|
||||
Text between 2 LAYERs.
|
||||
|
||||
<LAYER TOP=150 LEFT=10 NAME="text002" HEIGHT="150" WIDTH="300" SRC="text002.html" VISIBILITY="show">
|
||||
</LAYER>
|
||||
|
||||
<P>
|
||||
Text not in layer, but still in SPAN
|
||||
</p>
|
||||
</FONT>
|
||||
Text after closing font tag.
|
||||
</BODY>
|
||||
</HTML>
|
||||
29
mozilla/htmlparser/tests/html/layer003.html
Normal file
29
mozilla/htmlparser/tests/html/layer003.html
Normal file
@@ -0,0 +1,29 @@
|
||||
<!--Commented code available in commented_code/index.html-->
|
||||
<HTML>
|
||||
|
||||
<HEAD>
|
||||
<TITLE>Test Layer003</TITLE>
|
||||
|
||||
</HEAD>
|
||||
|
||||
<BODY>
|
||||
In Vav4.0, layers are in the same "span space" as their parents.
|
||||
<br>That means spans can be closed inside layer, and affect layers' parents.
|
||||
|
||||
<FONT color=red>
|
||||
Text in color=red SPAN.
|
||||
<LAYER TOP=50 LEFT=150 NAME="text001" HEIGHT="150" WIDTH="200" SRC="text003.html" VISIBILITY="show">
|
||||
</LAYER>
|
||||
|
||||
Text between 2 LAYERs.
|
||||
|
||||
<LAYER TOP=150 LEFT=10 NAME="text002" HEIGHT="150" WIDTH="300" SRC="text002.html" VISIBILITY="show">
|
||||
</LAYER>
|
||||
|
||||
<P>
|
||||
Text not in layer
|
||||
</p>
|
||||
|
||||
|
||||
</BODY>
|
||||
</HTML>
|
||||
22
mozilla/htmlparser/tests/html/layer01.html
Normal file
22
mozilla/htmlparser/tests/html/layer01.html
Normal file
@@ -0,0 +1,22 @@
|
||||
<!--Commented code available in commented_code/index.html-->
|
||||
<HTML>
|
||||
|
||||
<HEAD>
|
||||
<TITLE>Welcome to Netscape</TITLE>
|
||||
|
||||
</HEAD>
|
||||
|
||||
<BODY>
|
||||
Text-1
|
||||
|
||||
<LAYER TOP=50 LEFT=150 NAME="text001" HEIGHT="150" WIDTH="200" SRC="text001.html" VISIBILITY="show"></LAYER>
|
||||
|
||||
<br> Text-2
|
||||
|
||||
<LAYER TOP=150 LEFT=10 NAME="text002" HEIGHT="150" WIDTH="300" SRC="text002.html" VISIBILITY="show"></LAYER>
|
||||
|
||||
<P>
|
||||
no-layer-text-3
|
||||
|
||||
</BODY>
|
||||
</HTML>
|
||||
33
mozilla/htmlparser/tests/html/list001.html
Normal file
33
mozilla/htmlparser/tests/html/list001.html
Normal file
@@ -0,0 +1,33 @@
|
||||
<html>
|
||||
<head><title>Welcome to Hewlett-Packard</title>
|
||||
</head>
|
||||
|
||||
<body >
|
||||
This file was created on 9/16/97 for bug #85117, assert in parser
|
||||
when closing dd tag.
|
||||
|
||||
<br>This is from the end of the page www.hp.com
|
||||
<br>Note, an optional closing dd tag is missing.
|
||||
|
||||
<tr>
|
||||
|
||||
<td width=445 align=center>
|
||||
|
||||
<dl>
|
||||
|
||||
<dd>[<a href="/go/search">Search HP</a>]
|
||||
|
||||
[<a href="#top">Top</a>]
|
||||
[<a href="/go/feedback">Contact HP</a>]
|
||||
[<a href="/ahp/HPCopyright-97.html">Copyright</a>]
|
||||
|
||||
|
||||
</dl>
|
||||
|
||||
</td>
|
||||
|
||||
</tr>
|
||||
|
||||
</BODY>
|
||||
</HTML>
|
||||
|
||||
15
mozilla/htmlparser/tests/html/list002.html
Normal file
15
mozilla/htmlparser/tests/html/list002.html
Normal file
@@ -0,0 +1,15 @@
|
||||
<html>
|
||||
<head><title>Welcome to Hewlett-Packard</title>
|
||||
</head>
|
||||
|
||||
<body >
|
||||
This file was created on 9/16/97 for bug #85117, assert in parser
|
||||
when closing dd tag.
|
||||
|
||||
<MENU>
|
||||
abcd efg
|
||||
</MENU>
|
||||
|
||||
</BODY>
|
||||
</HTML>
|
||||
|
||||
19
mozilla/htmlparser/tests/html/list003.html
Normal file
19
mozilla/htmlparser/tests/html/list003.html
Normal file
@@ -0,0 +1,19 @@
|
||||
|
||||
<html>
|
||||
<body>
|
||||
text line 1
|
||||
<font color="red">
|
||||
Text after font color=red
|
||||
<UL>
|
||||
<LI> first list item
|
||||
<p> still in list item.
|
||||
<LI> . second list item.
|
||||
...
|
||||
</UL>
|
||||
|
||||
Text after list, still in font color=red
|
||||
</font>
|
||||
Text after font color=red.
|
||||
text at tend.
|
||||
</body>
|
||||
</html>
|
||||
3
mozilla/htmlparser/tests/html/newlines.html
Normal file
3
mozilla/htmlparser/tests/html/newlines.html
Normal file
@@ -0,0 +1,3 @@
|
||||
#1: This is a line of input terminated by a \n
|
||||
#2: This is another line of input terminated by a \r\n
|
||||
#3: This is a line of input terminated by a \r
|
||||
12
mozilla/htmlparser/tests/html/obj001.html
Normal file
12
mozilla/htmlparser/tests/html/obj001.html
Normal file
@@ -0,0 +1,12 @@
|
||||
<HTML>
|
||||
<HEAD>
|
||||
</HEAD>
|
||||
<BODY>
|
||||
<OBJECT codetype="application/octet-stream"
|
||||
classid="AudioItem"
|
||||
width="15" height="15">
|
||||
<PARAM name="snd" value="Hello.au|Welcome.au">
|
||||
Java applet that plays a welcoming sound.
|
||||
</OBJECT>
|
||||
</BODY>
|
||||
</HTML>
|
||||
9
mozilla/htmlparser/tests/html/obj002.html
Normal file
9
mozilla/htmlparser/tests/html/obj002.html
Normal file
@@ -0,0 +1,9 @@
|
||||
<HTML>
|
||||
<HEAD>
|
||||
</HEAD>
|
||||
<BODY>
|
||||
<OBJECT>
|
||||
<PARAM value="my object" name="name">
|
||||
</OBJECT>
|
||||
</BODY>
|
||||
</HTML>
|
||||
17
mozilla/htmlparser/tests/html/obj003.html
Normal file
17
mozilla/htmlparser/tests/html/obj003.html
Normal file
@@ -0,0 +1,17 @@
|
||||
<HTML>
|
||||
<HEAD>
|
||||
</HEAD>
|
||||
<BODY>
|
||||
<OBJECT>object element with no attributes.</OBJECT>
|
||||
<OBJECT lang="en">object element with lang attribute set to en.</OBJECT>
|
||||
<OBJECT dir="ltr">object element with dir attribute set to ltr.</OBJECT>
|
||||
<OBJECT>
|
||||
param element with no attributes:<BR>
|
||||
<PARAM>
|
||||
</OBJECT>
|
||||
<OBJECT>
|
||||
param element with the name attribute and an end tag:<BR>
|
||||
<PARAM name="name"></PARAM>
|
||||
</OBJECT>
|
||||
</BODY>
|
||||
</HTML>
|
||||
10
mozilla/htmlparser/tests/html/param001.html
Normal file
10
mozilla/htmlparser/tests/html/param001.html
Normal file
@@ -0,0 +1,10 @@
|
||||
<HTML>
|
||||
<HEAD>
|
||||
</HEAD>
|
||||
<BODY>
|
||||
<OBJECT>
|
||||
param element with no attributes:<BR>
|
||||
<PARAM>
|
||||
</OBJECT>
|
||||
</BODY>
|
||||
</HTML>
|
||||
14
mozilla/htmlparser/tests/html/param002.html
Normal file
14
mozilla/htmlparser/tests/html/param002.html
Normal file
@@ -0,0 +1,14 @@
|
||||
<HTML>
|
||||
<HEAD>
|
||||
</HEAD>
|
||||
<BODY>
|
||||
test case for Object and Param tags.
|
||||
<OBJECT>
|
||||
param element with
|
||||
the name attribute, and an illeagal end tag:<BR>
|
||||
<PARAM name="name"></PARAM>
|
||||
</OBJECT>
|
||||
PARAM element out side OBJECT, ignored.
|
||||
<PARAM name="nnn" value="vvv"></PARAM>
|
||||
</BODY>
|
||||
</HTML>
|
||||
9
mozilla/htmlparser/tests/html/pre001.html
Normal file
9
mozilla/htmlparser/tests/html/pre001.html
Normal file
@@ -0,0 +1,9 @@
|
||||
<html>
|
||||
<body>
|
||||
Hi
|
||||
<PRE>
|
||||
text line in pre tag.
|
||||
</PRE>
|
||||
There
|
||||
</body>
|
||||
</html>
|
||||
11
mozilla/htmlparser/tests/html/pre002.html
Normal file
11
mozilla/htmlparser/tests/html/pre002.html
Normal file
@@ -0,0 +1,11 @@
|
||||
<html>
|
||||
<body>
|
||||
Only new lines in PRE block.
|
||||
<PRE>
|
||||
|
||||
|
||||
|
||||
</PRE>
|
||||
There
|
||||
</body>
|
||||
</html>
|
||||
8
mozilla/htmlparser/tests/html/pre003.html
Normal file
8
mozilla/htmlparser/tests/html/pre003.html
Normal file
@@ -0,0 +1,8 @@
|
||||
<html>
|
||||
<body>
|
||||
Empty PRE block.
|
||||
<PRE>
|
||||
</PRE>
|
||||
There
|
||||
</body>
|
||||
</html>
|
||||
18
mozilla/htmlparser/tests/html/pre004.html
Normal file
18
mozilla/htmlparser/tests/html/pre004.html
Normal file
@@ -0,0 +1,18 @@
|
||||
<html>
|
||||
<body>
|
||||
Pre tag can contain many things, inclusing P tag.
|
||||
|
||||
<PRE>
|
||||
First text line in PRE block. You can see
|
||||
the spaces between words not compressed.
|
||||
<P>
|
||||
Text line after P tag.
|
||||
<B> bold text</B> and <I> italic text.</I>
|
||||
and many more. There is a empty line at the end
|
||||
of PRE block.
|
||||
|
||||
</PRE>
|
||||
Text outside PRE block.
|
||||
|
||||
</body>
|
||||
</html>
|
||||
53
mozilla/htmlparser/tests/html/pre005.html
Normal file
53
mozilla/htmlparser/tests/html/pre005.html
Normal file
@@ -0,0 +1,53 @@
|
||||
<html>
|
||||
<body>
|
||||
use a PRE tag for C or JAVA source code.
|
||||
<br> The lt and gt signes are problematic.
|
||||
|
||||
|
||||
<PRE>
|
||||
cc = 123;
|
||||
// test lt
|
||||
if( cc < hhh ) {
|
||||
if(cc<xxx || as > gh) {
|
||||
//do womthing here;
|
||||
}
|
||||
}
|
||||
if( cc <= iii ) {
|
||||
if(cc<=yyy) {
|
||||
if(cc<-yyy) {
|
||||
if(cc<+yyy) {
|
||||
if(cc<3) {
|
||||
if(cc<33) {
|
||||
if(cc<_abc) {
|
||||
//do womthing here;
|
||||
}
|
||||
}
|
||||
// test gt
|
||||
if( cc > rrr ) {
|
||||
if(cc>eee) {
|
||||
//do womthing here;
|
||||
}
|
||||
}
|
||||
if( cc >= www ) {
|
||||
if(cc>=qqq) {
|
||||
//do womthing here;
|
||||
}
|
||||
}
|
||||
// what if the variable name is a valid tag name.
|
||||
if( cc < B && cc > kk ) {
|
||||
if(cc<B && cc > gg) {
|
||||
//do womthing here;
|
||||
}
|
||||
}
|
||||
cc = aa<<I;
|
||||
cc = B>>3;
|
||||
gt = true;
|
||||
for(a=0,gt=true; (a>0)&> a++) {
|
||||
}
|
||||
a = 0x0004;
|
||||
lt = 0x0002;
|
||||
for(; a< ) {
|
||||
}
|
||||
</PRE>
|
||||
</body>
|
||||
</html>
|
||||
28
mozilla/htmlparser/tests/html/pre006.html
Normal file
28
mozilla/htmlparser/tests/html/pre006.html
Normal file
@@ -0,0 +1,28 @@
|
||||
<TITLE>Test of PRE tag</TITLE>
|
||||
|
||||
<STYLE>
|
||||
<!--
|
||||
PRE PRE { color: green }
|
||||
-->
|
||||
</STYLE>
|
||||
|
||||
<PRE>
|
||||
This is some preformatted text.
|
||||
</PRE>
|
||||
|
||||
<P>Before PRE
|
||||
<PRE>some preformatted text.
|
||||
</PRE>
|
||||
After PRE.
|
||||
</P>
|
||||
|
||||
<P>Before PRE
|
||||
<PRE>some preformatted text.
|
||||
<PRE>This is nested preformatted (In Nav4.0, green and formatted)
|
||||
</PRE>
|
||||
This is still preformatted? (Not in Nav4.0)
|
||||
</PRE>
|
||||
After PRE.
|
||||
</P>
|
||||
|
||||
<P>End of test</P>
|
||||
12
mozilla/htmlparser/tests/html/pre007.html
Normal file
12
mozilla/htmlparser/tests/html/pre007.html
Normal file
@@ -0,0 +1,12 @@
|
||||
<p><img src=bullet.gif align=left>Here is a paragraph where the image that is
|
||||
floated left is the first piece of content of the paragraph...
|
||||
</P>
|
||||
<PRE>
|
||||
This is a pre section<B>
|
||||
Bold</B>is a nice thing.
|
||||
</PRE>
|
||||
|
||||
<PRE>
|
||||
This is some pre text
|
||||
la de da<P>More text<P>And more text - what is the vertical space look like?
|
||||
</PRE>
|
||||
22
mozilla/htmlparser/tests/html/pre012.html
Normal file
22
mozilla/htmlparser/tests/html/pre012.html
Normal file
@@ -0,0 +1,22 @@
|
||||
The following is copied from test tag002.html<br>
|
||||
Broken tags are shown, only if no gt sign can be found.
|
||||
|
||||
</
|
||||
|
||||
still in tag, this is trashed with the invalid tag.
|
||||
<br>
|
||||
ccccccc
|
||||
</
|
||||
dddd
|
||||
<br>Now wrapped with a PRE tag.
|
||||
<PRE>
|
||||
Broken tags are shown, only if no gt sign can be found.
|
||||
|
||||
</
|
||||
|
||||
still in tag, this is trashed with the invalid tag.
|
||||
<br>
|
||||
ccccccc
|
||||
</
|
||||
dddd
|
||||
</PRE>
|
||||
18
mozilla/htmlparser/tests/html/pre015.html
Normal file
18
mozilla/htmlparser/tests/html/pre015.html
Normal file
@@ -0,0 +1,18 @@
|
||||
The following is copied from test tag005.html<br>
|
||||
first line
|
||||
<br> empty brakets are displayed as text
|
||||
This </>
|
||||
and this eat next br tag. <//
|
||||
<br>
|
||||
and another one. <///>
|
||||
Last text.
|
||||
<br>Now wrapped with a PRE tag.
|
||||
<PRE>
|
||||
first line
|
||||
<br> empty brakets are displayed as text
|
||||
This </>
|
||||
and this eat next br tag. <//
|
||||
<br>
|
||||
and another one. <///>
|
||||
Last text.
|
||||
</PRE>
|
||||
17
mozilla/htmlparser/tests/html/pre016.html
Normal file
17
mozilla/htmlparser/tests/html/pre016.html
Normal file
@@ -0,0 +1,17 @@
|
||||
The following is copied from test tag006.html<br>
|
||||
first line
|
||||
<br> invalide tags are ignored by 4.0
|
||||
<table/>
|
||||
<ZZFFGG>
|
||||
</>
|
||||
Note: no line break here.
|
||||
|
||||
<br>Now wrapped with a PRE tag.
|
||||
<PRE>
|
||||
first line
|
||||
<br> invalide tags are ignored by 4.0
|
||||
<table/>
|
||||
<ZZFFGG>
|
||||
</>
|
||||
Note: no line break here.
|
||||
</PRE>
|
||||
18
mozilla/htmlparser/tests/html/q001.html
Normal file
18
mozilla/htmlparser/tests/html/q001.html
Normal file
@@ -0,0 +1,18 @@
|
||||
<html>
|
||||
<head>
|
||||
<title>test BLOCKQUOTE and Q tag</title>
|
||||
</head>
|
||||
<body>
|
||||
test BLOCKQUOTE and Q tag<br>
|
||||
1normal text in body line 1.
|
||||
<BLOCKQUOTE>
|
||||
A This text is in blockquote
|
||||
<br> B line 2
|
||||
</BLOCKQUOTE>
|
||||
2normal text in body line 2.
|
||||
<Q>
|
||||
this text is in Q tag
|
||||
</Q>
|
||||
3normal text in body line 3.
|
||||
</body>
|
||||
</html>
|
||||
51
mozilla/htmlparser/tests/html/quote001.html
Normal file
51
mozilla/htmlparser/tests/html/quote001.html
Normal file
@@ -0,0 +1,51 @@
|
||||
<html>
|
||||
<head>
|
||||
<title>HTML test for quoted string
|
||||
</title>
|
||||
</head>
|
||||
<body>
|
||||
This was created on 9/12/97, for Xena bug # 85121
|
||||
<br>Testing the quoted value string.
|
||||
<br> tag A is used so you can check the string by moving mouse on the link.
|
||||
<br> use view source or text editor to compare with browser display.
|
||||
|
||||
<br> The goal is to be compatible with Navigator 4.0
|
||||
<br> Test results are compared with Nav4.0 display. Relavent Nav4.0 source
|
||||
files are ns\lib\libparse\pa_parse.c and others.
|
||||
<br> Differences between 4.0 and xena are indecated. Search for XENA60
|
||||
to find all the defferences.
|
||||
|
||||
<br><br> comments from ns\xena\lego\src\lego\html\scanner\HTMLScanner.java:
|
||||
<br>// For quoted value string :
|
||||
<br>// Double/single quote only take effect as the first char
|
||||
<br>// of the value string,
|
||||
<br>// Quoted string is terminated by the second double/single quote
|
||||
<br>// respectively.
|
||||
<br>// In other places, double/single quote is treated literally.
|
||||
<br>// Entity & quot; is always treated literally, enven it is the
|
||||
<br>// first char.
|
||||
<br>//
|
||||
<br>// Unquoted value string is terminated by while space, or '>' sign.
|
||||
<br><br>
|
||||
|
||||
Test lines:
|
||||
|
||||
<br>10(quote / quote ) good syntax: <a href="abcd"> both quotes striped from string</a>
|
||||
<br>20( / )<a href= abcd > value not quoted, not recommented, but still good syntax.</a>
|
||||
<br>30<a href="123456789123456789223456789323456789423456789523456789623456789723456789823456789923456789">
|
||||
Navigator 4.0 value string trunketed at 82 characters</a> XENA60 limit is MAX_STRING_LENGTH = 2000.
|
||||
|
||||
<br>40 The following are illegal HTML, but handled by Nav4.0 in different ways.
|
||||
<br>50( / )<a href= abcd xyz > string not quoted, whight space terminates the value</a>
|
||||
<br>60( / )<a href= abcd
|
||||
xyz > string not quoted, CR terminates the string</a>
|
||||
<br>70(escaped-quote / quote ) <a href="abcd" > both quotes remain in string </a>
|
||||
<br>80(quote / ) <a href="abcd > no closing quote, Add a quote in text to protect next test line">
|
||||
move mouse on this. If we didn't have a quote in the text, the value string would
|
||||
run through the end of the A tag.</a>
|
||||
<br>90(quote / escaped-quote ) <a href="abcd"> still in quote">same as above, escaped quote does NOT terminate quote </a>
|
||||
<br>100( / quote)<a href=abcd"> if no opening quote, quotes are included in string</a>
|
||||
<br>110( / quote)<a href=abcd"xyz> no opening quote, value terminated at right brack </a>
|
||||
|
||||
</body>
|
||||
</html>
|
||||
33
mozilla/htmlparser/tests/html/quote002.html
Normal file
33
mozilla/htmlparser/tests/html/quote002.html
Normal file
@@ -0,0 +1,33 @@
|
||||
<html>
|
||||
<head>
|
||||
<title>HTML test for quoted string
|
||||
</title>
|
||||
</head>
|
||||
<body>
|
||||
This was created on 9/15/97, for Xena bug # 85121
|
||||
<br>Testing the quoted value string.
|
||||
<br> tag A is used so you can check the string by moving mouse on the link.
|
||||
<br> use view source or text editor to compare with browser display.
|
||||
<br>10 <a href= "abcd""xyz" > 2 quoted string stick together</a>
|
||||
<br>20 <a href= "abcd" "xyz" > 2 quoted string seperated by space</a>
|
||||
<br>30 <a href= "abcd"efg"xyz" > Navigator doesn't support nested quote.</a>
|
||||
<br>40 <a href= "abcd"xyz" > quoted string can have escaped quote.</a>
|
||||
<br>50 <a href= abcd"xyz > unquoted string can have escaped quote.</a>
|
||||
<br>60 <a href= abcd<x>yz > unquoted string can have other entities.</a>
|
||||
<br>70 <a href= abcd"> entity missing ';', ended by ></a>
|
||||
<br>80 <a href= abcd"xyz > entity missing ';', not treated as entity inside a value word.</a>
|
||||
<br>90 <a href= abcd" xyz > ending entity with a space, missing ';', value terminated.</a>
|
||||
<br>100 <a href= abcd"=xyz > ending entity with a '=', missing ';', value not terminated.</a>
|
||||
<br>110 <a href= abcd&{script entity }xyz > unquoted script is treated as text.</a>
|
||||
<br>120 <a href= "abcd &{ script entiy } xyz" > Navigator 4.0 does not support script
|
||||
entity in quoted string.</a>
|
||||
|
||||
|
||||
<br>130 this is fisrt quote " and second quote " in text area.
|
||||
<br>140 this is fisrt escaped-quote " and second escaped-quote " in text area.
|
||||
|
||||
<br>
|
||||
<br>In the following test line, quote is the last char in the html file.
|
||||
<br> Navigator 4.0 displace the line as text.
|
||||
<br> XENA60 appends a closing quote and display it as link with empty href="".
|
||||
<br>150 <a href= "
|
||||
14
mozilla/htmlparser/tests/html/quote003.html
Normal file
14
mozilla/htmlparser/tests/html/quote003.html
Normal file
@@ -0,0 +1,14 @@
|
||||
<html>
|
||||
<head>
|
||||
<title>HTML test for quoted string
|
||||
</title>
|
||||
</head>
|
||||
<body>
|
||||
This was created on 9/15/97, for Xena bug # 85121
|
||||
<br>Testing the quoted value string.
|
||||
<br> tag A is used so you can check the string by moving mouse on the link.
|
||||
<br> use view source or text editor to compare with browser display.
|
||||
<br>In the following line quote is not closed before the end of the html file.
|
||||
<br> Navigator 4.0 displace the line as text.
|
||||
<br> XENA60 appends a closing quote and display it as link.
|
||||
<br> <a href= "abcdefg
|
||||
30
mozilla/htmlparser/tests/html/span001.html
Normal file
30
mozilla/htmlparser/tests/html/span001.html
Normal file
@@ -0,0 +1,30 @@
|
||||
<!--Commented code available in commented_code/index.html-->
|
||||
<HTML>
|
||||
|
||||
<HEAD>
|
||||
<TITLE>Test SPAN001</TITLE>
|
||||
|
||||
</HEAD>
|
||||
|
||||
<BODY>
|
||||
<p>
|
||||
In HTML standard, SPANs are not allowed to cross Paragraphs.
|
||||
<br> In Vav4.0, SPAN tags go thour paragraphs and other block-level elements,
|
||||
except tbles.
|
||||
<br>It be compatable with Nav4.0 and HTML standard, HTMLParser
|
||||
close all SPANs before open a new paragraph, and reopen SPANs
|
||||
inside the new paragraph
|
||||
<br>
|
||||
|
||||
<FONT color=red>
|
||||
Text ater the color=red SPAN is opend.
|
||||
</P>
|
||||
Text in a new paragraph.
|
||||
</P>
|
||||
<p>
|
||||
Text after the new paragrapg is closed, still in color=red SPAN.
|
||||
</FONT>
|
||||
<br>
|
||||
Text ater the color=red SPAN is closed.
|
||||
</BODY>
|
||||
</HTML>
|
||||
21
mozilla/htmlparser/tests/html/span002.html
Normal file
21
mozilla/htmlparser/tests/html/span002.html
Normal file
@@ -0,0 +1,21 @@
|
||||
<!--Commented code available in commented_code/index.html-->
|
||||
<HTML>
|
||||
|
||||
<HEAD>
|
||||
<TITLE>Test SPAN001</TITLE>
|
||||
|
||||
</HEAD>
|
||||
|
||||
<BODY>
|
||||
Normal text
|
||||
<FONT color=red>
|
||||
Text after the color=red SPAN is opend.
|
||||
<P>
|
||||
Text in a new paragraph.
|
||||
</p>
|
||||
Text after the new paragrapg is closed, still in color=red SPAN.
|
||||
</FONT>
|
||||
Text ater the color=red SPAN is closed.
|
||||
<br>another line.
|
||||
</BODY>
|
||||
</HTML>
|
||||
17
mozilla/htmlparser/tests/html/span003.html
Normal file
17
mozilla/htmlparser/tests/html/span003.html
Normal file
@@ -0,0 +1,17 @@
|
||||
<!--Commented code available in commented_code/index.html-->
|
||||
<HTML>
|
||||
|
||||
<HEAD>
|
||||
<TITLE>Test SPAN001</TITLE>
|
||||
|
||||
</HEAD>
|
||||
|
||||
<BODY>
|
||||
<p>
|
||||
|
||||
<B> bold
|
||||
<I> italic
|
||||
</B> B closed(but actualy it closed the last span tag, which is I tag.
|
||||
</I> I closed
|
||||
</BODY>
|
||||
</HTML>
|
||||
17
mozilla/htmlparser/tests/html/strike002.html
Normal file
17
mozilla/htmlparser/tests/html/strike002.html
Normal file
@@ -0,0 +1,17 @@
|
||||
<html>
|
||||
<head>
|
||||
<title>Nested STRIKE</title>
|
||||
</head>
|
||||
<body>
|
||||
nested STRIKE <br>
|
||||
1normal text in body line 1.
|
||||
<STRIKE>
|
||||
A This text is in STRIKE
|
||||
<STRIKE>
|
||||
<br> B line 2 in STRIKE
|
||||
</STRIKE>
|
||||
C line 3 in STRIKE
|
||||
</STRIKE>
|
||||
2normal text in body line 2.
|
||||
</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