Remove /test/ from the repository. Regression testing is still very important, and so
tests and tools will be migrated to a separate development repository.
This commit is contained in:
parent
468cc02cf3
commit
dc15acb0f3
1
.gitignore
vendored
1
.gitignore
vendored
|
@ -6,6 +6,7 @@
|
||||||
*.user
|
*.user
|
||||||
*.suo
|
*.suo
|
||||||
*.sdf
|
*.sdf
|
||||||
|
/test
|
||||||
/test/testall.log
|
/test/testall.log
|
||||||
/test/tmp/
|
/test/tmp/
|
||||||
/test/tmp2/
|
/test/tmp2/
|
||||||
|
|
3
test/.gitignore
vendored
3
test/.gitignore
vendored
|
@ -1,3 +0,0 @@
|
||||||
temp*
|
|
||||||
*.old
|
|
||||||
*.bak
|
|
|
@ -1,62 +0,0 @@
|
||||||
# test directory 20151205
|
|
||||||
|
|
||||||
All of the test input files, some with their own config file, are in the `input` directory. These tests can be run using the various cmd/bat and sh script files supplied.
|
|
||||||
|
|
||||||
And there is a `testbase` directory containing the expected output of all tests.
|
|
||||||
|
|
||||||
#### Files: alltest.cmd / testall.sh
|
|
||||||
|
|
||||||
In essence it is an attempt to automate some regression testing. The idea is that after making a code change to tidy, the alltest.cmd can be run using the new executable. This would produce an output in the `temp-5` folder.
|
|
||||||
|
|
||||||
Comparing the `testbase` folder with the new `temp-5` folder will show you what file output was changed by your code modification, if any. In WIN32 there should be none.
|
|
||||||
|
|
||||||
If unix the `$ diff -ua testbase tmp` will normally yield 3 changes, tests 431895, 500236 and 616606. 431895 is because it uses the `gnu-emacs: yes` option and we can thus expect the path separator in the file names to change.
|
|
||||||
|
|
||||||
The other two 500236 and 616606 just seem to have some spaces changes. Not sure exactly why. If `-w` or `-b` option is use there should be no difference. So these 3 tests must be especially checked.
|
|
||||||
|
|
||||||
Difficult, and tedious! Yes, but is a sure way to see if your changes adversely effected tidy. Unfortunately, only such a visual comparison would show the results. If the output changes are fully acceptable, like a warning message changed, then this should become the new base file for that test.
|
|
||||||
|
|
||||||
Of course some of the tests were to say avoid a segfault found. Other tests were to visually compare the original input test file in a browser, with how the new output displayed in a browser. This is a purely VISUAL compare, and can not be done in code.
|
|
||||||
|
|
||||||
And what about if there was NO current test existing to test what you were trying to fix. Well that means a NEW test should be added. Its output added to the 'base', then there would be a comparison.
|
|
||||||
|
|
||||||
The chain is alltest.cmd runs alltest1.cmd, which then uses onetest.cmd for each test. And a similar chain for unix stating with testall.sh which uses testone.sh.
|
|
||||||
|
|
||||||
Both tool chains use the testcases.txt file for the list of some 227 cases. There is now a `testinfo.txt` file which give some desciption of the test. Well actually the title of the original bug report filed at https://sourceforge.net/p/tidy/bugs/#number/
|
|
||||||
|
|
||||||
Additionally there are some 27 xml tests, runby xmltest.cmd, reading the test list from xmlcases.txt, and using the same onetest.cmd for each test...
|
|
||||||
|
|
||||||
#### Files: acctest.cmd / testaccess.sh
|
|
||||||
|
|
||||||
Another series of tests in this folder are the accessability tests, executed by running the acctest.cmd.
|
|
||||||
|
|
||||||
It uses onetesta.cmd to process each of the some 118 tests in accesscases.txt.
|
|
||||||
|
|
||||||
The test files for these accessability tests are in the `accessTest` directory.
|
|
||||||
|
|
||||||
There is a similar unix tool chain of testaccess.sh, which uses testaccessone.sh for each test, from the same accesscases.txt list.
|
|
||||||
|
|
||||||
#### Files: alltestc.bat
|
|
||||||
|
|
||||||
This is essentially similar to the above, except it includes a COMPARE of the previous established output in the `testbase` folder with the NEW output in temp-5, hence the addition of a 'c'.
|
|
||||||
|
|
||||||
As indicated above, this is an attempt to create such a BASE set of output files when tidy is run on the input test cases.
|
|
||||||
|
|
||||||
Then when alltestc.bat is run, it runs alltest2.bat, which like the above it reads the tests from testcases.txt, and uses onetest2.bat for each test.
|
|
||||||
|
|
||||||
So the difference between this and the above is, it further immediately compares the output of tidy, if there is one, with the equivalent file in the `testbase` directory using a windows port of diff.
|
|
||||||
|
|
||||||
It is a success if there is **NO** diff! A difference means this newer version of tidy has modified the output. That modification needs to be carefully inspected, and if it is thought exact and suitable, then that new output should be copied to the `testbase` folder for future compares.
|
|
||||||
|
|
||||||
#### Directory html5:
|
|
||||||
|
|
||||||
A series of some 31 test html5 files were added for HTML5 support to this directory.
|
|
||||||
|
|
||||||
In this folder there is a testhtml5.cmd, which uses testone.cmd to run each test. Similarly a testhtml5.sh for unix.
|
|
||||||
|
|
||||||
Each of the *.org.html files will be process, with the output witten to a `tempout` directory.
|
|
||||||
|
|
||||||
This was just to ensure tidy5 had support for many new tags introduced in HTML5.
|
|
||||||
|
|
||||||
|
|
||||||
; eof
|
|
|
@ -1,9 +0,0 @@
|
||||||
<!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.0 Transitional//EN" "http://www.w3.org/TR/REC-html40/loose.dtd">
|
|
||||||
<html lang="en">
|
|
||||||
<head>
|
|
||||||
<title>aert1.0/1.1.1</title>
|
|
||||||
</head>
|
|
||||||
<body>
|
|
||||||
<img src="noAlt.jpg">
|
|
||||||
</body>
|
|
||||||
</html>
|
|
|
@ -1,9 +0,0 @@
|
||||||
<!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.0 Transitional//EN" "http://www.w3.org/TR/REC-html40/loose.dtd">
|
|
||||||
<html lang="en">
|
|
||||||
<head>
|
|
||||||
<title>aert1.0/1.1.1</title>
|
|
||||||
</head>
|
|
||||||
<body>
|
|
||||||
<img src="hasAlt.gif" alt="0123456789 0123456789 0123456789 0123456789 0123456789 0123456789 0123456789 0123456789 0123456789 0123456789 0123456789 0123456789 0123456789 0123456789 0123456789">
|
|
||||||
</body>
|
|
||||||
</html>
|
|
|
@ -1,9 +0,0 @@
|
||||||
<!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.0 Transitional//EN" "http://www.w3.org/TR/REC-html40/loose.dtd">
|
|
||||||
<html lang="en">
|
|
||||||
<head>
|
|
||||||
<title>aert1.0/1.1.1</title>
|
|
||||||
</head>
|
|
||||||
<body>
|
|
||||||
<img src="gifimage.gif" alt="gifimage.gif">
|
|
||||||
</body>
|
|
||||||
</html>
|
|
|
@ -1,9 +0,0 @@
|
||||||
<!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.0 Transitional//EN" "http://www.w3.org/TR/REC-html40/loose.dtd">
|
|
||||||
<html lang="en">
|
|
||||||
<head>
|
|
||||||
<title>aert1.0/1.1.1</title>
|
|
||||||
</head>
|
|
||||||
<body>
|
|
||||||
<img src="bytesImage.gif" alt="34K bytes">
|
|
||||||
</body>
|
|
||||||
</html>
|
|
|
@ -1,9 +0,0 @@
|
||||||
<!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.0 Transitional//EN" "http://www.w3.org/TR/REC-html40/loose.dtd">
|
|
||||||
<html lang="en">
|
|
||||||
<head>
|
|
||||||
<title>aert1.0/1.1.1</title>
|
|
||||||
</head>
|
|
||||||
<body>
|
|
||||||
<img src="animage.gif" alt="{short description of image}">
|
|
||||||
</body>
|
|
||||||
</html>
|
|
|
@ -1,9 +0,0 @@
|
||||||
<!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.0 Transitional//EN" "http://www.w3.org/TR/REC-html40/loose.dtd">
|
|
||||||
<html lang="en">
|
|
||||||
<head>
|
|
||||||
<title>aert1.0/1.1.10</title>
|
|
||||||
</head>
|
|
||||||
<body>
|
|
||||||
<script><!-- do nothing --></script>
|
|
||||||
</body>
|
|
||||||
</html>
|
|
|
@ -1,23 +0,0 @@
|
||||||
<!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.0 Transitional//EN" "http://www.w3.org/TR/REC-html40/loose.dtd">
|
|
||||||
<html lang="en">
|
|
||||||
<head>
|
|
||||||
<title>aert1.0/1.1.12</title>
|
|
||||||
</head>
|
|
||||||
<body>
|
|
||||||
<pre>
|
|
||||||
% __ __ __ __ __ __ __ __ __ __ __ __ __ __
|
|
||||||
100 | * |
|
|
||||||
90 | * * |
|
|
||||||
80 | * * |
|
|
||||||
70 | @ * |
|
|
||||||
60 | @ * |
|
|
||||||
50 | * @ * |
|
|
||||||
40 | @ * |
|
|
||||||
30 | * @ @ @ * |
|
|
||||||
20 | |
|
|
||||||
10 | @ @ @ @ @ |
|
|
||||||
0 5 10 15 20 25 30 35 40 45 50 55 60 65 70
|
|
||||||
Flash frequency (Hertz)
|
|
||||||
</pre>
|
|
||||||
</body>
|
|
||||||
</html>
|
|
|
@ -1,9 +0,0 @@
|
||||||
<!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.0 Transitional//EN" "http://www.w3.org/TR/REC-html40/loose.dtd">
|
|
||||||
<html lang="en">
|
|
||||||
<head>
|
|
||||||
<title>aert1.0/1.1.2</title>
|
|
||||||
</head>
|
|
||||||
<body>
|
|
||||||
<img src="pie-chart.jpg" alt="Pie chart of federal expenditures">
|
|
||||||
</body>
|
|
||||||
</html>
|
|
|
@ -1,9 +0,0 @@
|
||||||
<!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.0 Transitional//EN" "http://www.w3.org/TR/REC-html40/loose.dtd">
|
|
||||||
<html lang="en">
|
|
||||||
<head>
|
|
||||||
<title>bobby/g13</title>
|
|
||||||
</head>
|
|
||||||
<body>
|
|
||||||
<img src="pie-chart.jpg" longdesc="pie-chart.html" alt="Pie chart of federal expenditures">
|
|
||||||
</body>
|
|
||||||
</html>
|
|
|
@ -1,10 +0,0 @@
|
||||||
<!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.0 Transitional//EN" "http://www.w3.org/TR/REC-html40/loose.dtd">
|
|
||||||
<html lang="en">
|
|
||||||
<head>
|
|
||||||
<title>aert1.0/1.1.2</title>
|
|
||||||
</head>
|
|
||||||
<body>
|
|
||||||
<img src="pie-chart.jpg" alt="Pie chart of federal expenditures">
|
|
||||||
<a href="pie-chart.html">D</a>
|
|
||||||
</body>
|
|
||||||
</html>
|
|
|
@ -1,11 +0,0 @@
|
||||||
<!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.0 Transitional//EN" "http://www.w3.org/TR/REC-html40/loose.dtd">
|
|
||||||
<html lang="en">
|
|
||||||
<head>
|
|
||||||
<title>aert1.0/1.1.3</title>
|
|
||||||
</head>
|
|
||||||
<body>
|
|
||||||
<form action="">
|
|
||||||
<input type="image" name="submit" src="submit.jpg">
|
|
||||||
</form>
|
|
||||||
</body>
|
|
||||||
</html>
|
|
|
@ -1,9 +0,0 @@
|
||||||
<!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.0 Transitional//EN" "http://www.w3.org/TR/REC-html40/loose.dtd">
|
|
||||||
<html lang="en">
|
|
||||||
<head>
|
|
||||||
<title>aert1.0/1.1.4</title>
|
|
||||||
</head>
|
|
||||||
<body>
|
|
||||||
<applet code="applet.class"></applet>
|
|
||||||
</body>
|
|
||||||
</html>
|
|
|
@ -1,9 +0,0 @@
|
||||||
<!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.0 Transitional//EN" "http://www.w3.org/TR/REC-html40/loose.dtd">
|
|
||||||
<html lang="en">
|
|
||||||
<head>
|
|
||||||
<title>aert1.0/1.1.5</title>
|
|
||||||
</head>
|
|
||||||
<body>
|
|
||||||
<object classid="myclass.class" title="This is a bogus object"></object>
|
|
||||||
</body>
|
|
||||||
</html>
|
|
|
@ -1,9 +0,0 @@
|
||||||
<!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.0 Transitional//EN" "http://www.w3.org/TR/REC-html40/loose.dtd">
|
|
||||||
<html lang="en">
|
|
||||||
<head>
|
|
||||||
<title>aert1.0/1.1.6</title>
|
|
||||||
</head>
|
|
||||||
<body>
|
|
||||||
<a href="clap.wav">The sound of one hand clapping (wav)</a>
|
|
||||||
</body>
|
|
||||||
</html>
|
|
|
@ -1,9 +0,0 @@
|
||||||
<!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.0 Transitional//EN" "http://www.w3.org/TR/REC-html40/loose.dtd">
|
|
||||||
<html lang="en">
|
|
||||||
<head>
|
|
||||||
<title>aert1.0/1.1.6</title>
|
|
||||||
</head>
|
|
||||||
<body>
|
|
||||||
<a href="clap.au">The sound of one hand clapping (au)</a>
|
|
||||||
</body>
|
|
||||||
</html>
|
|
|
@ -1,9 +0,0 @@
|
||||||
<!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.0 Transitional//EN" "http://www.w3.org/TR/REC-html40/loose.dtd">
|
|
||||||
<html lang="en">
|
|
||||||
<head>
|
|
||||||
<title>aert1.0/1.1.6</title>
|
|
||||||
</head>
|
|
||||||
<body>
|
|
||||||
<a href="clap.aiff">The sound of one hand clapping (aiff)</a>
|
|
||||||
</body>
|
|
||||||
</html>
|
|
|
@ -1,9 +0,0 @@
|
||||||
<!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.0 Transitional//EN" "http://www.w3.org/TR/REC-html40/loose.dtd">
|
|
||||||
<html lang="en">
|
|
||||||
<head>
|
|
||||||
<title>aert1.0/1.1.6</title>
|
|
||||||
</head>
|
|
||||||
<body>
|
|
||||||
<a href="clap.snd">The sound of one hand clapping (snd)</a>
|
|
||||||
</body>
|
|
||||||
</html>
|
|
|
@ -1,9 +0,0 @@
|
||||||
<!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.0 Transitional//EN" "http://www.w3.org/TR/REC-html40/loose.dtd">
|
|
||||||
<html lang="en">
|
|
||||||
<head>
|
|
||||||
<title>aert1.0/1.1.6</title>
|
|
||||||
</head>
|
|
||||||
<body>
|
|
||||||
<a href="clap.ra">The sound of one hand clapping (ra)</a>
|
|
||||||
</body>
|
|
||||||
</html>
|
|
|
@ -1,9 +0,0 @@
|
||||||
<!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.0 Transitional//EN" "http://www.w3.org/TR/REC-html40/loose.dtd">
|
|
||||||
<html lang="en">
|
|
||||||
<head>
|
|
||||||
<title>aert1.0/1.1.6</title>
|
|
||||||
</head>
|
|
||||||
<body>
|
|
||||||
<a href="clap.rm">The sound of one hand clapping (rm)</a>
|
|
||||||
</body>
|
|
||||||
</html>
|
|
|
@ -1,10 +0,0 @@
|
||||||
<!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.01 Frameset//EN"
|
|
||||||
"http://www.w3.org/TR/html4/frameset.dtd">
|
|
||||||
<html lang="en">
|
|
||||||
<head><title>Frame elements missing valid long descriptions</title></head>
|
|
||||||
<frameset rows="100,200">
|
|
||||||
<frame src="TableData.htm">
|
|
||||||
<frame src="TableLayout.htm" title="this frame title" longdesc="tl.htm">
|
|
||||||
<frame src="TableLayout2.htm" title="this frame title" longdesc="tl2.htm">
|
|
||||||
</frameset>
|
|
||||||
</html>
|
|
|
@ -1,15 +0,0 @@
|
||||||
<!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.0 Transitional//EN" "http://www.w3.org/TR/REC-html40/loose.dtd">
|
|
||||||
<html lang="en">
|
|
||||||
<head>
|
|
||||||
<title>aert1.0/1.1.9</title>
|
|
||||||
</head>
|
|
||||||
<body>
|
|
||||||
<map name="imagemap">
|
|
||||||
<area shape="poly" coords="185,0,355,0,295,123" href="a.html" alt="Link a">
|
|
||||||
<area shape="poly" coords="336,202,549,203,549" href="b.html">
|
|
||||||
<area shape="rect" coords="0,10,172,10" href="c.html" alt="Service">
|
|
||||||
</map>
|
|
||||||
|
|
||||||
<img src="imap.jpg" usemap="#imagemap" alt="navigation" longdesc="ld.html">
|
|
||||||
</body>
|
|
||||||
</html>
|
|
|
@ -1,11 +0,0 @@
|
||||||
<!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.0 Transitional//EN" "http://www.w3.org/TR/REC-html40/loose.dtd">
|
|
||||||
<html lang="en">
|
|
||||||
<head>
|
|
||||||
<title>aert1.0/1.2.1</title>
|
|
||||||
</head>
|
|
||||||
<body>
|
|
||||||
<a href="myhouse.map">
|
|
||||||
<img ismap alt="server-side imagemap" width="400" height="250" src="myhouse.gif">
|
|
||||||
</a>
|
|
||||||
</body>
|
|
||||||
</html>
|
|
|
@ -1,9 +0,0 @@
|
||||||
<!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.0 Transitional//EN" "http://www.w3.org/TR/REC-html40/loose.dtd">
|
|
||||||
<html lang="en">
|
|
||||||
<head>
|
|
||||||
<title>aert1.0/1.4.1</title>
|
|
||||||
</head>
|
|
||||||
<body>
|
|
||||||
<a href="babywalk.mpg">Baby Walking</a>
|
|
||||||
</body>
|
|
||||||
</html>
|
|
|
@ -1,15 +0,0 @@
|
||||||
<!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.0 Transitional//EN" "http://www.w3.org/TR/REC-html40/loose.dtd">
|
|
||||||
<html lang="en">
|
|
||||||
<head>
|
|
||||||
<title>aert1.0/1.5.1</title>
|
|
||||||
</head>
|
|
||||||
<body>
|
|
||||||
<map name="imagemap">
|
|
||||||
<area shape="poly" coords="185,0,355,0,295,123" href="a.html" alt="Link a">
|
|
||||||
<area shape="poly" coords="336,202,549,203,549" href="b.html">
|
|
||||||
<area shape="rect" coords="0,10,172,10" href="c.html" alt="Service">
|
|
||||||
</map>
|
|
||||||
|
|
||||||
<img src="imap.jpg" usemap="#imagemap" alt="navigation" longdesc="ld.html">
|
|
||||||
</body>
|
|
||||||
</html>
|
|
|
@ -1,9 +0,0 @@
|
||||||
<!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.0 Transitional//EN" "http://www.w3.org/TR/REC-html40/loose.dtd">
|
|
||||||
<html lang="en">
|
|
||||||
<head>
|
|
||||||
<title>aert1.0/10.1.1</title>
|
|
||||||
</head>
|
|
||||||
<body>
|
|
||||||
<a href="newpage.html" target="_new">Opens in new window.</a>
|
|
||||||
</body>
|
|
||||||
</html>
|
|
|
@ -1,9 +0,0 @@
|
||||||
<!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.0 Transitional//EN" "http://www.w3.org/TR/REC-html40/loose.dtd">
|
|
||||||
<html lang="en">
|
|
||||||
<head>
|
|
||||||
<title>aert1.0/10.1.1</title>
|
|
||||||
</head>
|
|
||||||
<body>
|
|
||||||
<a href="newpage.html" target="_blank">Opens in new window.</a>
|
|
||||||
</body>
|
|
||||||
</html>
|
|
|
@ -1,10 +0,0 @@
|
||||||
<!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.0 Transitional//EN" "http://www.w3.org/TR/REC-html40/loose.dtd">
|
|
||||||
<html lang="en">
|
|
||||||
<head>
|
|
||||||
<title>aert1.0/11.2.1</title>
|
|
||||||
</head>
|
|
||||||
<body>
|
|
||||||
<applet>
|
|
||||||
</applet>
|
|
||||||
</body>
|
|
||||||
</html>
|
|
|
@ -1,11 +0,0 @@
|
||||||
<!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.0 Transitional//EN" "http://www.w3.org/TR/REC-html40/loose.dtd">
|
|
||||||
<html lang="en">
|
|
||||||
<head>
|
|
||||||
<title>aert1.0/11.2.1</title>
|
|
||||||
</head>
|
|
||||||
<body>
|
|
||||||
|
|
||||||
<u>x</u>
|
|
||||||
|
|
||||||
</body>
|
|
||||||
</html>
|
|
|
@ -1,9 +0,0 @@
|
||||||
<!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.0 Transitional//EN" "http://www.w3.org/TR/REC-html40/loose.dtd">
|
|
||||||
<html lang="en">
|
|
||||||
<head>
|
|
||||||
<title>aert1.0/11.2.1</title>
|
|
||||||
</head>
|
|
||||||
<body>
|
|
||||||
<basefont>
|
|
||||||
</body>
|
|
||||||
</html>
|
|
|
@ -1,11 +0,0 @@
|
||||||
<!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.0 Transitional//EN" "http://www.w3.org/TR/REC-html40/loose.dtd">
|
|
||||||
<html lang="en">
|
|
||||||
<head>
|
|
||||||
<title>aert1.0/11.2.1</title>
|
|
||||||
</head>
|
|
||||||
<body>
|
|
||||||
|
|
||||||
<center>Hello</center>
|
|
||||||
|
|
||||||
</body>
|
|
||||||
</html>
|
|
|
@ -1,11 +0,0 @@
|
||||||
<!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.0 Transitional//EN" "http://www.w3.org/TR/REC-html40/loose.dtd">
|
|
||||||
<html lang="en">
|
|
||||||
<head>
|
|
||||||
<title>aert1.0/11.2.1</title>
|
|
||||||
</head>
|
|
||||||
<body>
|
|
||||||
|
|
||||||
<dir>Hello</dir>
|
|
||||||
|
|
||||||
</body>
|
|
||||||
</html>
|
|
|
@ -1,9 +0,0 @@
|
||||||
<!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.0 Transitional//EN" "http://www.w3.org/TR/REC-html40/loose.dtd">
|
|
||||||
<html lang="en">
|
|
||||||
<head>
|
|
||||||
<title>aert1.0/11.2.1</title>
|
|
||||||
</head>
|
|
||||||
<body>
|
|
||||||
<font size="6">Hello</font>
|
|
||||||
</body>
|
|
||||||
</html>
|
|
|
@ -1,9 +0,0 @@
|
||||||
<!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.0 Transitional//EN" "http://www.w3.org/TR/REC-html40/loose.dtd">
|
|
||||||
<html lang="en">
|
|
||||||
<head>
|
|
||||||
<title>aert1.0/11.2.1</title>
|
|
||||||
</head>
|
|
||||||
<body>
|
|
||||||
<isindex prompt="Enter your search phrase: ">
|
|
||||||
</body>
|
|
||||||
</html>
|
|
|
@ -1,9 +0,0 @@
|
||||||
<!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.0 Transitional//EN" "http://www.w3.org/TR/REC-html40/loose.dtd">
|
|
||||||
<html lang="en">
|
|
||||||
<head>
|
|
||||||
<title>aert1.0/11.2.1</title>
|
|
||||||
</head>
|
|
||||||
<body>
|
|
||||||
<menu></menu>
|
|
||||||
</body>
|
|
||||||
</html>
|
|
|
@ -1,9 +0,0 @@
|
||||||
<!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.0 Transitional//EN" "http://www.w3.org/TR/REC-html40/loose.dtd">
|
|
||||||
<html lang="en">
|
|
||||||
<head>
|
|
||||||
<title>aert1.0/11.2.1</title>
|
|
||||||
</head>
|
|
||||||
<body>
|
|
||||||
<s>x</s>
|
|
||||||
</body>
|
|
||||||
</html>
|
|
|
@ -1,9 +0,0 @@
|
||||||
<!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.0 Transitional//EN" "http://www.w3.org/TR/REC-html40/loose.dtd">
|
|
||||||
<html lang="en">
|
|
||||||
<head>
|
|
||||||
<title>aert1.0/11.2.1</title>
|
|
||||||
</head>
|
|
||||||
<body>
|
|
||||||
<strike>x</strike>
|
|
||||||
</body>
|
|
||||||
</html>
|
|
|
@ -1,10 +0,0 @@
|
||||||
<!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.01 Frameset//EN"
|
|
||||||
"http://www.w3.org/TR/html4/frameset.dtd">
|
|
||||||
<html lang="en">
|
|
||||||
<head>
|
|
||||||
<title>aert1.0/12.1.1</title>
|
|
||||||
</head>
|
|
||||||
<frameset>
|
|
||||||
<frame></frame>
|
|
||||||
</frameset>
|
|
||||||
</html>
|
|
|
@ -1,10 +0,0 @@
|
||||||
<!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.01 Frameset//EN"
|
|
||||||
"http://www.w3.org/TR/html4/frameset.dtd">
|
|
||||||
<html lang="en">
|
|
||||||
<head>
|
|
||||||
<title>aert1.0/12.1.1</title>
|
|
||||||
</head>
|
|
||||||
<frameset>
|
|
||||||
<frame title=""></frame>
|
|
||||||
</frameset>
|
|
||||||
</html>
|
|
|
@ -1,10 +0,0 @@
|
||||||
<!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.01 Frameset//EN"
|
|
||||||
"http://www.w3.org/TR/html4/frameset.dtd">
|
|
||||||
<html lang="en">
|
|
||||||
<head>
|
|
||||||
<title>aert1.0/12.1.1</title>
|
|
||||||
</head>
|
|
||||||
<frameset>
|
|
||||||
<frame title=" "></frame>
|
|
||||||
</frameset>
|
|
||||||
</html>
|
|
|
@ -1,12 +0,0 @@
|
||||||
<!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.0 Transitional//EN" "http://www.w3.org/TR/REC-html40/loose.dtd">
|
|
||||||
<html lang="en">
|
|
||||||
<head>
|
|
||||||
<title>aert1.0/12.4.1</title>
|
|
||||||
</head>
|
|
||||||
<body>
|
|
||||||
<form action="">
|
|
||||||
<label>Some text:</label>
|
|
||||||
<input value="****" type="text">
|
|
||||||
</form>
|
|
||||||
</body>
|
|
||||||
</html>
|
|
|
@ -1,12 +0,0 @@
|
||||||
<!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.0 Transitional//EN" "http://www.w3.org/TR/REC-html40/loose.dtd">
|
|
||||||
<html lang="en">
|
|
||||||
<head>
|
|
||||||
<title>aert1.0/12.4.1</title>
|
|
||||||
</head>
|
|
||||||
<body>
|
|
||||||
<form action="">
|
|
||||||
<label>Some text:</label>
|
|
||||||
<input id="control1" value="****" type="text">
|
|
||||||
</form>
|
|
||||||
</body>
|
|
||||||
</html>
|
|
|
@ -1,12 +0,0 @@
|
||||||
<!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.0 Transitional//EN" "http://www.w3.org/TR/REC-html40/loose.dtd">
|
|
||||||
<html lang="en">
|
|
||||||
<head>
|
|
||||||
<title>aert1.0/12.4.1</title>
|
|
||||||
</head>
|
|
||||||
<body>
|
|
||||||
<form action="">
|
|
||||||
<label for="control1">Some text:</label>
|
|
||||||
<input value="****" type="text">
|
|
||||||
</form>
|
|
||||||
</body>
|
|
||||||
</html>
|
|
|
@ -1,11 +0,0 @@
|
||||||
<!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.0 Transitional//EN" "http://www.w3.org/TR/REC-html40/loose.dtd">
|
|
||||||
<html lang="en">
|
|
||||||
<head>
|
|
||||||
<title>aert1.0/13.1.1</title>
|
|
||||||
</head>
|
|
||||||
<body>
|
|
||||||
<a href="animals.htm">cats</a>
|
|
||||||
some text
|
|
||||||
<a href="animals.htm">cats</a>
|
|
||||||
</body>
|
|
||||||
</html>
|
|
|
@ -1,9 +0,0 @@
|
||||||
<!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.0 Transitional//EN" "http://www.w3.org/TR/REC-html40/loose.dtd">
|
|
||||||
<html lang="en">
|
|
||||||
<head>
|
|
||||||
<title>aert1.0/13.1.1</title>
|
|
||||||
</head>
|
|
||||||
<body>
|
|
||||||
<a href="animals.htm"></a>
|
|
||||||
</body>
|
|
||||||
</html>
|
|
|
@ -1,10 +0,0 @@
|
||||||
<!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.0 Transitional//EN" "http://www.w3.org/TR/REC-html40/loose.dtd">
|
|
||||||
<html lang="en">
|
|
||||||
<head>
|
|
||||||
<title>aert1.0/13.1.1</title>
|
|
||||||
</head>
|
|
||||||
<body>
|
|
||||||
<a href="animals.htm">Want to find out more about small furry animals?
|
|
||||||
Then click here and this link will take you there.</a>
|
|
||||||
</body>
|
|
||||||
</html>
|
|
|
@ -1,9 +0,0 @@
|
||||||
<!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.0 Transitional//EN" "http://www.w3.org/TR/REC-html40/loose.dtd">
|
|
||||||
<html lang="en">
|
|
||||||
<head>
|
|
||||||
<title>aert1.0/13.1.1</title>
|
|
||||||
</head>
|
|
||||||
<body>
|
|
||||||
<a href="animals.htm">click here</a>
|
|
||||||
</body>
|
|
||||||
</html>
|
|
|
@ -1,23 +0,0 @@
|
||||||
<!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.0 Transitional//EN" "http://www.w3.org/TR/REC-html40/loose.dtd">
|
|
||||||
<html lang="en">
|
|
||||||
<head>
|
|
||||||
<title>aert1.0/13.10.1</title>
|
|
||||||
</head>
|
|
||||||
<body>
|
|
||||||
<pre>
|
|
||||||
% __ __ __ __ __ __ __ __ __ __ __ __ __ __
|
|
||||||
100 | * |
|
|
||||||
90 | * * |
|
|
||||||
80 | * * |
|
|
||||||
70 | @ * |
|
|
||||||
60 | @ * |
|
|
||||||
50 | * @ * |
|
|
||||||
40 | @ * |
|
|
||||||
30 | * @ @ @ * |
|
|
||||||
20 | |
|
|
||||||
10 | @ @ @ @ @ |
|
|
||||||
0 5 10 15 20 25 30 35 40 45 50 55 60 65 70
|
|
||||||
Flash frequency (Hertz)
|
|
||||||
</pre>
|
|
||||||
</body>
|
|
||||||
</html>
|
|
|
@ -1,9 +0,0 @@
|
||||||
<!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.0 Transitional//EN" "http://www.w3.org/TR/REC-html40/loose.dtd">
|
|
||||||
<html lang="en">
|
|
||||||
<head>
|
|
||||||
<title></title>
|
|
||||||
<!-- aert1.0/13.2.1 -->
|
|
||||||
</head>
|
|
||||||
<body>
|
|
||||||
</body>
|
|
||||||
</html>
|
|
|
@ -1,9 +0,0 @@
|
||||||
<!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.0 Transitional//EN" "http://www.w3.org/TR/REC-html40/loose.dtd">
|
|
||||||
<html lang="en">
|
|
||||||
<head>
|
|
||||||
<title>aert1.0/13.2.1</title>
|
|
||||||
<meta http-equiv="refresh" content="http://www.foo.com/bar.html">
|
|
||||||
</head>
|
|
||||||
<body>
|
|
||||||
</body>
|
|
||||||
</html>
|
|
|
@ -1,9 +0,0 @@
|
||||||
<!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.0 Transitional//EN" "http://www.w3.org/TR/REC-html40/loose.dtd">
|
|
||||||
<html lang="en">
|
|
||||||
<head>
|
|
||||||
<title>aert1.0/2.1.1</title>
|
|
||||||
</head>
|
|
||||||
<body>
|
|
||||||
<img src="rex.jpg" alt="big cat">
|
|
||||||
</body>
|
|
||||||
</html>
|
|
|
@ -1,9 +0,0 @@
|
||||||
<!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.0 Transitional//EN" "http://www.w3.org/TR/REC-html40/loose.dtd">
|
|
||||||
<html lang="en">
|
|
||||||
<head>
|
|
||||||
<title>aert1.0/2.1.1</title>
|
|
||||||
</head>
|
|
||||||
<body>
|
|
||||||
<applet></applet>
|
|
||||||
</body>
|
|
||||||
</html>
|
|
|
@ -1,9 +0,0 @@
|
||||||
<!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.0 Transitional//EN" "http://www.w3.org/TR/REC-html40/loose.dtd">
|
|
||||||
<html lang="en">
|
|
||||||
<head>
|
|
||||||
<title>aert1.0/2.1.1</title>
|
|
||||||
</head>
|
|
||||||
<body>
|
|
||||||
<object></object>
|
|
||||||
</body>
|
|
||||||
</html>
|
|
|
@ -1,9 +0,0 @@
|
||||||
<!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.0 Transitional//EN" "http://www.w3.org/TR/REC-html40/loose.dtd">
|
|
||||||
<html lang="en">
|
|
||||||
<head>
|
|
||||||
<title>aert1.0/2.1.1</title>
|
|
||||||
</head>
|
|
||||||
<body>
|
|
||||||
<script></script>
|
|
||||||
</body>
|
|
||||||
</html>
|
|
|
@ -1,11 +0,0 @@
|
||||||
<!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.0 Transitional//EN" "http://www.w3.org/TR/REC-html40/loose.dtd">
|
|
||||||
<html lang="en">
|
|
||||||
<head>
|
|
||||||
<title>aert1.0/2.1.1</title>
|
|
||||||
</head>
|
|
||||||
<body>
|
|
||||||
<form action="">
|
|
||||||
<input></input>
|
|
||||||
</form>
|
|
||||||
</body>
|
|
||||||
</html>
|
|
|
@ -1,8 +0,0 @@
|
||||||
<!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.0 Transitional//EN" "http://www.w3.org/TR/REC-html40/loose.dtd">
|
|
||||||
<html lang="en">
|
|
||||||
<head>
|
|
||||||
<title>Foreground and background color do not contrast sufficiently</title>
|
|
||||||
</head>
|
|
||||||
<body bgcolor="#ffffff" text="#ff88ff" link="#000000" alink="#000000" vlink="#000000">
|
|
||||||
</body>
|
|
||||||
</html>
|
|
|
@ -1,8 +0,0 @@
|
||||||
<!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.0 Transitional//EN" "http://www.w3.org/TR/REC-html40/loose.dtd">
|
|
||||||
<html lang="en">
|
|
||||||
<head>
|
|
||||||
<title>Foreground and background color do not contrast sufficiently</title>
|
|
||||||
</head>
|
|
||||||
<body bgcolor="#ffffff" text="#000000" link="#ff88ff" alink="#000000" vlink="#000000">
|
|
||||||
</body>
|
|
||||||
</html>
|
|
|
@ -1,8 +0,0 @@
|
||||||
<!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.0 Transitional//EN" "http://www.w3.org/TR/REC-html40/loose.dtd">
|
|
||||||
<html lang="en">
|
|
||||||
<head>
|
|
||||||
<title>Foreground and background color do not contrast sufficiently</title>
|
|
||||||
</head>
|
|
||||||
<body bgcolor="#ffffff" text="#000000" link="#000000" alink="#ff88ff" vlink="#000000">
|
|
||||||
</body>
|
|
||||||
</html>
|
|
|
@ -1,8 +0,0 @@
|
||||||
<!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.0 Transitional//EN" "http://www.w3.org/TR/REC-html40/loose.dtd">
|
|
||||||
<html lang="en">
|
|
||||||
<head>
|
|
||||||
<title>Foreground and background color do not contrast sufficiently</title>
|
|
||||||
</head>
|
|
||||||
<body bgcolor="#ffffff" text="#000000" link="#000000" alink="#000000" vlink="#ff88ff">
|
|
||||||
</body>
|
|
||||||
</html>
|
|
|
@ -1,8 +0,0 @@
|
||||||
|
|
||||||
<html lang="en">
|
|
||||||
<head>
|
|
||||||
<title>Document missing doctype</title>
|
|
||||||
</head>
|
|
||||||
<body>
|
|
||||||
</body>
|
|
||||||
</html>
|
|
|
@ -1,9 +0,0 @@
|
||||||
<!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.0 Transitional//EN" "http://www.w3.org/TR/REC-html40/loose.dtd">
|
|
||||||
<html lang="en">
|
|
||||||
<head>
|
|
||||||
<title>aert1.0/3.3.1</title>
|
|
||||||
</head>
|
|
||||||
<body>
|
|
||||||
Does not use stylesheets.
|
|
||||||
</body>
|
|
||||||
</html>
|
|
|
@ -1,10 +0,0 @@
|
||||||
<!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.0 Transitional//EN" "http://www.w3.org/TR/REC-html40/loose.dtd">
|
|
||||||
<html lang="en">
|
|
||||||
<head>
|
|
||||||
<title>aert1.0/3.5.1</title>
|
|
||||||
</head>
|
|
||||||
<body>
|
|
||||||
<h1>First Heading</h1>
|
|
||||||
<h3>Next Heading</h3>
|
|
||||||
</body>
|
|
||||||
</html>
|
|
|
@ -1,9 +0,0 @@
|
||||||
<!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.0 Transitional//EN" "http://www.w3.org/TR/REC-html40/loose.dtd">
|
|
||||||
<html lang="en">
|
|
||||||
<head>
|
|
||||||
<title>aert1.0/3.5.2</title>
|
|
||||||
</head>
|
|
||||||
<body>
|
|
||||||
<p><strong>This may be a header.</strong></p>
|
|
||||||
</body>
|
|
||||||
</html>
|
|
|
@ -1,9 +0,0 @@
|
||||||
<!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.0 Transitional//EN" "http://www.w3.org/TR/REC-html40/loose.dtd">
|
|
||||||
<html lang="en">
|
|
||||||
<head>
|
|
||||||
<title>aert1.0/3.5.2</title>
|
|
||||||
</head>
|
|
||||||
<body>
|
|
||||||
<p><em>This may be a header.</em></p>
|
|
||||||
</body>
|
|
||||||
</html>
|
|
|
@ -1,9 +0,0 @@
|
||||||
<!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.0 Transitional//EN" "http://www.w3.org/TR/REC-html40/loose.dtd">
|
|
||||||
<html lang="en">
|
|
||||||
<head>
|
|
||||||
<title>aert1.0/3.5.2</title>
|
|
||||||
</head>
|
|
||||||
<body>
|
|
||||||
<p><u>This may be a header.</u></p>
|
|
||||||
</body>
|
|
||||||
</html>
|
|
|
@ -1,15 +0,0 @@
|
||||||
<!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.0 Transitional//EN" "http://www.w3.org/TR/REC-html40/loose.dtd">
|
|
||||||
<html lang="en">
|
|
||||||
<head>
|
|
||||||
<title>aert1.0/3.6.1</title>
|
|
||||||
</head>
|
|
||||||
<body>
|
|
||||||
<ul>
|
|
||||||
This is only for the indent.<br>
|
|
||||||
And this as well.
|
|
||||||
<ul>
|
|
||||||
A further indent.
|
|
||||||
</ul>
|
|
||||||
</ul>
|
|
||||||
</body>
|
|
||||||
</html>
|
|
|
@ -1,15 +0,0 @@
|
||||||
<!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.0 Transitional//EN" "http://www.w3.org/TR/REC-html40/loose.dtd">
|
|
||||||
<html lang="en">
|
|
||||||
<head>
|
|
||||||
<title>aert1.0/3.6.1</title>
|
|
||||||
</head>
|
|
||||||
<body>
|
|
||||||
<ol>
|
|
||||||
This is only for the indent.<br>
|
|
||||||
And this as well.
|
|
||||||
<ol>
|
|
||||||
A further indent.
|
|
||||||
</ol>
|
|
||||||
</ol>
|
|
||||||
</body>
|
|
||||||
</html>
|
|
|
@ -1,10 +0,0 @@
|
||||||
<!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.0 Transitional//EN" "http://www.w3.org/TR/REC-html40/loose.dtd">
|
|
||||||
<html lang="en">
|
|
||||||
<head>
|
|
||||||
<title>aert1.0/3.6.1</title>
|
|
||||||
</head>
|
|
||||||
<body>
|
|
||||||
<li>Just an li by itself</li>
|
|
||||||
</body>
|
|
||||||
</html>
|
|
||||||
|
|
|
@ -1,12 +0,0 @@
|
||||||
<!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.0 Transitional//EN" "http://www.w3.org/TR/REC-html40/loose.dtd">
|
|
||||||
<html lang="en">
|
|
||||||
<head>
|
|
||||||
<title>aert1.0/4.1.1</title>
|
|
||||||
</head>
|
|
||||||
<body>
|
|
||||||
|
|
||||||
<p>In Luis Bunuel's 1967 film, "Belle de Jour", the stunning Catherine Deneuve
|
|
||||||
portrays a woman leading a double life.</p>
|
|
||||||
|
|
||||||
</body>
|
|
||||||
</html>
|
|
|
@ -1,9 +0,0 @@
|
||||||
|
|
||||||
<!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.0 Transitional//EN" "http://www.w3.org/TR/REC-html40/loose.dtd">
|
|
||||||
<html>
|
|
||||||
<head>
|
|
||||||
<title>aert1.0/4.3.1 - The HTML element does not contain a lang attribute</title>
|
|
||||||
</head>
|
|
||||||
<body>
|
|
||||||
</body>
|
|
||||||
</html>
|
|
|
@ -1,8 +0,0 @@
|
||||||
<!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.0 Transitional//EN" "http://www.w3.org/TR/REC-html40/loose.dtd">
|
|
||||||
<html lang="">
|
|
||||||
<head>
|
|
||||||
<title>aert1.0/4.3.1 - The HTML element does not contain a valid lang attribute</title>
|
|
||||||
</head>
|
|
||||||
<body>
|
|
||||||
</body>
|
|
||||||
</html>
|
|
|
@ -1,26 +0,0 @@
|
||||||
<!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.0 Transitional//EN" "http://www.w3.org/TR/REC-html40/loose.dtd">
|
|
||||||
<html lang="en">
|
|
||||||
<head>
|
|
||||||
<title>aert1.0/5.1.2</title>
|
|
||||||
</head>
|
|
||||||
<body>
|
|
||||||
|
|
||||||
<table summary="This data table is missing row/column headers">
|
|
||||||
<caption>This data table is missing row/column headers</caption>
|
|
||||||
|
|
||||||
<tr>
|
|
||||||
<td>age</td><td>height</td><td>weight</td>
|
|
||||||
</tr>
|
|
||||||
<tr>
|
|
||||||
<td>10</td><td>1.3 m</td><td>50 kg.</td>
|
|
||||||
</tr>
|
|
||||||
<tr>
|
|
||||||
<td>15</td><td>1.8 m</td><td>75 kg.</td>
|
|
||||||
</tr>
|
|
||||||
<tr>
|
|
||||||
<td>20</td><td>2.1 m</td><td>100 kg.</td>
|
|
||||||
</tr>
|
|
||||||
</table>
|
|
||||||
|
|
||||||
</body>
|
|
||||||
</html>
|
|
|
@ -1,26 +0,0 @@
|
||||||
<!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.0 Transitional//EN" "http://www.w3.org/TR/REC-html40/loose.dtd">
|
|
||||||
<html lang="en">
|
|
||||||
<head>
|
|
||||||
<title>aert1.0/5.1.2</title>
|
|
||||||
</head>
|
|
||||||
<body>
|
|
||||||
|
|
||||||
<table summary="This data table is missing one column headers">
|
|
||||||
<caption>This data table is missing one column headers</caption>
|
|
||||||
|
|
||||||
<tr>
|
|
||||||
<th>age</th><td>height</td><th>weight</th>
|
|
||||||
</tr>
|
|
||||||
<tr>
|
|
||||||
<td>10</td><td>1.3 m</td><td>50 kg.</td>
|
|
||||||
</tr>
|
|
||||||
<tr>
|
|
||||||
<td>15</td><td>1.8 m</td><td>75 kg.</td>
|
|
||||||
</tr>
|
|
||||||
<tr>
|
|
||||||
<td>20</td><td>2.1 m</td><td>100 kg.</td>
|
|
||||||
</tr>
|
|
||||||
</table>
|
|
||||||
|
|
||||||
</body>
|
|
||||||
</html>
|
|
|
@ -1,23 +0,0 @@
|
||||||
<!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.0 Transitional//EN" "http://www.w3.org/TR/REC-html40/loose.dtd">
|
|
||||||
<html lang="en">
|
|
||||||
<head>
|
|
||||||
<title>aert1.0/5.1.2</title>
|
|
||||||
</head>
|
|
||||||
<body>
|
|
||||||
|
|
||||||
<table summary="This data table is missing one row header">
|
|
||||||
<caption>This data table is missing one row header</caption>
|
|
||||||
|
|
||||||
<tr>
|
|
||||||
<th>age</th><td>10</td><td>15</td><td>20</td>
|
|
||||||
</tr>
|
|
||||||
<tr>
|
|
||||||
<td>height</td><td>1.3 m</td><td>1.8 m</td><td>2.1 m</td>
|
|
||||||
</tr>
|
|
||||||
<tr>
|
|
||||||
<th>weight</th><td>50 kg</td><td>75 kg.</td><td>100 kg.</td>
|
|
||||||
</tr>
|
|
||||||
</table>
|
|
||||||
|
|
||||||
</body>
|
|
||||||
</html>
|
|
|
@ -1,35 +0,0 @@
|
||||||
<!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.0 Transitional//EN" "http://www.w3.org/TR/REC-html40/loose.dtd">
|
|
||||||
<html lang="en">
|
|
||||||
<head>
|
|
||||||
<title>aert1.0/5.2.1</title>
|
|
||||||
</head>
|
|
||||||
<body>
|
|
||||||
|
|
||||||
<table summary="This data table should use markup to associate multiple levels of row and column headers">
|
|
||||||
<caption>This data table should use markup to associate multiple levels of row and column headers</caption>
|
|
||||||
|
|
||||||
<tr>
|
|
||||||
<th>ID</th><th colspan="2">System<br>Color or Name</th><th>Required</th>
|
|
||||||
</tr>
|
|
||||||
<tr>
|
|
||||||
<td>a-1</td><td>blue</td><td></td><td>yes</td>
|
|
||||||
</tr>
|
|
||||||
<tr>
|
|
||||||
<td>a-2</td><td></td><td>Susan</td><td>yes</td>
|
|
||||||
</tr>
|
|
||||||
<tr>
|
|
||||||
<td>a-3</td><td>green</td><td></td><td>no</td>
|
|
||||||
</tr>
|
|
||||||
<tr>
|
|
||||||
<td>a-4</td><td>orange</td><td></td><td>no</td>
|
|
||||||
</tr>
|
|
||||||
<tr>
|
|
||||||
<td>a-5</td><td></td><td>Frank</td><td>yes</td>
|
|
||||||
</tr>
|
|
||||||
<tr>
|
|
||||||
<td>a-6</td><td></td><td>Harold</td><td>no</td>
|
|
||||||
</tr>
|
|
||||||
</table>
|
|
||||||
|
|
||||||
</body>
|
|
||||||
</html>
|
|
|
@ -1,26 +0,0 @@
|
||||||
<!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.0 Transitional//EN" "http://www.w3.org/TR/REC-html40/loose.dtd">
|
|
||||||
<html lang="en">
|
|
||||||
<head>
|
|
||||||
<title>aert1.0/5.2.1</title>
|
|
||||||
</head>
|
|
||||||
<body>
|
|
||||||
|
|
||||||
<table summary="This data table should use markup to associate multiple levels of row and column headers">
|
|
||||||
<caption>This data table should use markup to associate multiple levels of row and column headers</caption>
|
|
||||||
|
|
||||||
<tr>
|
|
||||||
<th>System</th><td>a-1</td><td>Susan</td><td>Macintosh</td>
|
|
||||||
</tr>
|
|
||||||
<tr>
|
|
||||||
<th rowspan="2">ID<br>location or code</th><td>Local</td><td>Building 1</td><td>Front Desk</td>
|
|
||||||
</tr>
|
|
||||||
<tr>
|
|
||||||
<td>Local</td><td>Building 2</td><td>Back Desk</td>
|
|
||||||
</tr>
|
|
||||||
<tr>
|
|
||||||
<th>Required</th><td>yes</td><td>yes<td></td><td>no</td>
|
|
||||||
</tr>
|
|
||||||
</table>
|
|
||||||
|
|
||||||
</body>
|
|
||||||
</html>
|
|
|
@ -1,15 +0,0 @@
|
||||||
<!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.0 Transitional//EN" "http://www.w3.org/TR/REC-html40/loose.dtd">
|
|
||||||
<html lang="en">
|
|
||||||
<head>
|
|
||||||
<title>aert1.0/5.3.1</title>
|
|
||||||
</head>
|
|
||||||
<body>
|
|
||||||
<table summary="This layout table should make sense when linearized">
|
|
||||||
<caption>Does this layout table make sense when linearized?</caption>
|
|
||||||
|
|
||||||
<tr>
|
|
||||||
<td>Here is some text that is in a column.</td><td>Here is some more text that is also in a column.</td>
|
|
||||||
</tr>
|
|
||||||
</table>
|
|
||||||
</body>
|
|
||||||
</html>
|
|
|
@ -1,19 +0,0 @@
|
||||||
<!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.0 Transitional//EN" "http://www.w3.org/TR/REC-html40/loose.dtd">
|
|
||||||
<html lang="en">
|
|
||||||
<head>
|
|
||||||
<title>aert1.0/5.4.1</title>
|
|
||||||
</head>
|
|
||||||
<body>
|
|
||||||
<table summary="This layout table is using TH for formatting">
|
|
||||||
<caption>This layout table is using TH for formatting.</caption>
|
|
||||||
|
|
||||||
<tr>
|
|
||||||
<th>Here is some text.</th><th>More text is this.</th>
|
|
||||||
</tr>
|
|
||||||
<tr>
|
|
||||||
<td>Here is some text that is in a column.</td><td>Here is some more text that is also in a column.</td>
|
|
||||||
</tr>
|
|
||||||
|
|
||||||
</table>
|
|
||||||
</body>
|
|
||||||
</html>
|
|
|
@ -1,15 +0,0 @@
|
||||||
<!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.0 Transitional//EN" "http://www.w3.org/TR/REC-html40/loose.dtd">
|
|
||||||
<html lang="en">
|
|
||||||
<head>
|
|
||||||
<title>aert1.0/5.5.1</title>
|
|
||||||
</head>
|
|
||||||
<body>
|
|
||||||
<table>
|
|
||||||
<caption>This table has no summary</caption>
|
|
||||||
|
|
||||||
<tr><td>1</td><td>2</td></tr>
|
|
||||||
<tr><td>3</td><td>4</td></tr>
|
|
||||||
|
|
||||||
</table>
|
|
||||||
</body>
|
|
||||||
</html>
|
|
|
@ -1,15 +0,0 @@
|
||||||
<!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.0 Transitional//EN" "http://www.w3.org/TR/REC-html40/loose.dtd">
|
|
||||||
<html lang="en">
|
|
||||||
<head>
|
|
||||||
<title>aert1.0/5.5.1</title>
|
|
||||||
</head>
|
|
||||||
<body>
|
|
||||||
<table summary="">
|
|
||||||
<caption>This table has an invalid summary (NULL)</caption>
|
|
||||||
|
|
||||||
<tr><td>1</td><td>2</td></tr>
|
|
||||||
<tr><td>3</td><td>4</td></tr>
|
|
||||||
|
|
||||||
</table>
|
|
||||||
</body>
|
|
||||||
</html>
|
|
|
@ -1,15 +0,0 @@
|
||||||
<!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.0 Transitional//EN" "http://www.w3.org/TR/REC-html40/loose.dtd">
|
|
||||||
<html lang="en">
|
|
||||||
<head>
|
|
||||||
<title>aert1.0/5.5.1</title>
|
|
||||||
</head>
|
|
||||||
<body>
|
|
||||||
<table summary=" ">
|
|
||||||
<caption>This table has an invalid summary (all spaces)</caption>
|
|
||||||
|
|
||||||
<tr><td>1</td><td>2</td></tr>
|
|
||||||
<tr><td>3</td><td>4</td></tr>
|
|
||||||
|
|
||||||
</table>
|
|
||||||
</body>
|
|
||||||
</html>
|
|
|
@ -1,15 +0,0 @@
|
||||||
<!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.0 Transitional//EN" "http://www.w3.org/TR/REC-html40/loose.dtd">
|
|
||||||
<html lang="en">
|
|
||||||
<head>
|
|
||||||
<title>aert1.0/5.5.1</title>
|
|
||||||
</head>
|
|
||||||
<body>
|
|
||||||
<table summary="table summary">
|
|
||||||
<caption>This table has an invalid summary (placeholder 'table summary')</caption>
|
|
||||||
|
|
||||||
<tr><td>1</td><td>2</td></tr>
|
|
||||||
<tr><td>3</td><td>4</td></tr>
|
|
||||||
|
|
||||||
</table>
|
|
||||||
</body>
|
|
||||||
</html>
|
|
|
@ -1,15 +0,0 @@
|
||||||
<!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.0 Transitional//EN" "http://www.w3.org/TR/REC-html40/loose.dtd">
|
|
||||||
<html lang="en">
|
|
||||||
<head>
|
|
||||||
<title>aert1.0/5.5.2</title>
|
|
||||||
</head>
|
|
||||||
<body>
|
|
||||||
|
|
||||||
<table summary="This simple data table has no caption.">
|
|
||||||
|
|
||||||
<tr><td>1</td><td>2</td></tr>
|
|
||||||
<tr><td>3</td><td>4</td></tr>
|
|
||||||
|
|
||||||
</table>
|
|
||||||
</body>
|
|
||||||
</html>
|
|
|
@ -1,18 +0,0 @@
|
||||||
<!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.0 Transitional//EN" "http://www.w3.org/TR/REC-html40/loose.dtd">
|
|
||||||
<html lang="en">
|
|
||||||
<head>
|
|
||||||
<title>aert1.0/5.6.1</title>
|
|
||||||
</head>
|
|
||||||
<body>
|
|
||||||
|
|
||||||
<table summary="These table headers require abbreviations">
|
|
||||||
<caption>These table headers require abbreviations</caption>
|
|
||||||
|
|
||||||
<tr><th>Age Of All Recent Residents Of The GTA</th><th>Income Level Specified In English Pounds</th></tr>
|
|
||||||
<tr><td>19</td><td>7000</td></tr>
|
|
||||||
<tr><td>29</td><td>19000</td></tr>
|
|
||||||
|
|
||||||
</table>
|
|
||||||
|
|
||||||
</body>
|
|
||||||
</html>
|
|
|
@ -1,18 +0,0 @@
|
||||||
<!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.0 Transitional//EN" "http://www.w3.org/TR/REC-html40/loose.dtd">
|
|
||||||
<html lang="en">
|
|
||||||
<head>
|
|
||||||
<title>aert1.0/5.6.1</title>
|
|
||||||
</head>
|
|
||||||
<body>
|
|
||||||
|
|
||||||
<table summary="These table headers have invalid abbreviations">
|
|
||||||
<caption>These table headers have invalid abbreviations (NULL)</caption>
|
|
||||||
|
|
||||||
<tr><th abbr="">Age Of All Recent Residents Of The GTA</th><th abbr="">Income Level Specified In English Pounds</th></tr>
|
|
||||||
<tr><td>19</td><td>7000</td></tr>
|
|
||||||
<tr><td>29</td><td>19000</td></tr>
|
|
||||||
|
|
||||||
</table>
|
|
||||||
|
|
||||||
</body>
|
|
||||||
</html>
|
|
|
@ -1,18 +0,0 @@
|
||||||
<!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.0 Transitional//EN" "http://www.w3.org/TR/REC-html40/loose.dtd">
|
|
||||||
<html lang="en">
|
|
||||||
<head>
|
|
||||||
<title>aert1.0/5.6.1</title>
|
|
||||||
</head>
|
|
||||||
<body>
|
|
||||||
|
|
||||||
<table summary="These table headers have invalid abbreviations">
|
|
||||||
<caption>These table headers have invalid abbreviations (spaces)</caption>
|
|
||||||
|
|
||||||
<tr><th abbr=" ">Age Of All Recent Residents Of The GTA</th><th abbr=" ">Income Level Specified In English Pounds</th></tr>
|
|
||||||
<tr><td>19</td><td>7000</td></tr>
|
|
||||||
<tr><td>29</td><td>19000</td></tr>
|
|
||||||
|
|
||||||
</table>
|
|
||||||
|
|
||||||
</body>
|
|
||||||
</html>
|
|
|
@ -1,9 +0,0 @@
|
||||||
<!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.0 Transitional//EN" "http://www.w3.org/TR/REC-html40/loose.dtd">
|
|
||||||
<html lang="en">
|
|
||||||
<head>
|
|
||||||
<title>aert1.0/6.1.1 - This page uses a stylesheet</title>
|
|
||||||
<link rel="stylesheet" type="text/css" href="http://www.w3.org/StyleSheets/TR/W3C-WD">
|
|
||||||
</head>
|
|
||||||
<body>
|
|
||||||
</body>
|
|
||||||
</html>
|
|
|
@ -1,13 +0,0 @@
|
||||||
<!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.0 Transitional//EN" "http://www.w3.org/TR/REC-html40/loose.dtd">
|
|
||||||
<html lang="en">
|
|
||||||
<head>
|
|
||||||
<title>aert1.0/6.1.1</title>
|
|
||||||
</head>
|
|
||||||
<body>
|
|
||||||
<style>
|
|
||||||
<!--
|
|
||||||
p {text-align:justify}
|
|
||||||
-->
|
|
||||||
</style>
|
|
||||||
</body>
|
|
||||||
</html>
|
|
|
@ -1,11 +0,0 @@
|
||||||
<!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.0 Transitional//EN" "http://www.w3.org/TR/REC-html40/loose.dtd">
|
|
||||||
<html lang="en">
|
|
||||||
<head>
|
|
||||||
<title>aert1.0/6.1.1</title>
|
|
||||||
</head>
|
|
||||||
<body>
|
|
||||||
|
|
||||||
<p style="color: green">hello</p>
|
|
||||||
|
|
||||||
</body>
|
|
||||||
</html>
|
|
|
@ -1,10 +0,0 @@
|
||||||
<!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.01 Frameset//EN"
|
|
||||||
"http://www.w3.org/TR/html4/frameset.dtd">
|
|
||||||
<html lang="en">
|
|
||||||
<head>
|
|
||||||
<title>aert1.0/6.2.1</title>
|
|
||||||
</head>
|
|
||||||
<frameset>
|
|
||||||
<frame src="rex.jpg">
|
|
||||||
</frameset>
|
|
||||||
</html>
|
|
|
@ -1,9 +0,0 @@
|
||||||
<!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.0 Transitional//EN" "http://www.w3.org/TR/REC-html40/loose.dtd">
|
|
||||||
<html lang="en">
|
|
||||||
<head>
|
|
||||||
<title>aert1.0/6.2.2</title>
|
|
||||||
</head>
|
|
||||||
<body>
|
|
||||||
<applet code="applet.class"></applet>
|
|
||||||
</body>
|
|
||||||
</html>
|
|
|
@ -1,9 +0,0 @@
|
||||||
<!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.0 Transitional//EN" "http://www.w3.org/TR/REC-html40/loose.dtd">
|
|
||||||
<html lang="en">
|
|
||||||
<head>
|
|
||||||
<title>aert1.0/6.2.2</title>
|
|
||||||
</head>
|
|
||||||
<body>
|
|
||||||
<script><!-- the script --></script>
|
|
||||||
</body>
|
|
||||||
</html>
|
|
|
@ -1,11 +0,0 @@
|
||||||
<!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.0 Transitional//EN" "http://www.w3.org/TR/REC-html40/loose.dtd">
|
|
||||||
<html lang="en">
|
|
||||||
<head>
|
|
||||||
<title>aert1.0/6.2.2</title>
|
|
||||||
</head>
|
|
||||||
<body>
|
|
||||||
|
|
||||||
<object></object>
|
|
||||||
|
|
||||||
</body>
|
|
||||||
</html>
|
|
|
@ -1,11 +0,0 @@
|
||||||
<!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.0 Transitional//EN" "http://www.w3.org/TR/REC-html40/loose.dtd">
|
|
||||||
<html lang="en">
|
|
||||||
<head>
|
|
||||||
<title>aert1.0/6.3.1</title>
|
|
||||||
</head>
|
|
||||||
<body>
|
|
||||||
|
|
||||||
<script><!-- the script --></script>
|
|
||||||
|
|
||||||
</body>
|
|
||||||
</html>
|
|
|
@ -1,9 +0,0 @@
|
||||||
<!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.0 Transitional//EN" "http://www.w3.org/TR/REC-html40/loose.dtd">
|
|
||||||
<html lang="en">
|
|
||||||
<head>
|
|
||||||
<title>aert1.0/6.3.1</title>
|
|
||||||
</head>
|
|
||||||
<body>
|
|
||||||
<object></object>
|
|
||||||
</body>
|
|
||||||
</html>
|
|
|
@ -1,11 +0,0 @@
|
||||||
<!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.0 Transitional//EN" "http://www.w3.org/TR/REC-html40/loose.dtd">
|
|
||||||
<html lang="en">
|
|
||||||
<head>
|
|
||||||
<title>aert1.0/6.3.1</title>
|
|
||||||
</head>
|
|
||||||
<body>
|
|
||||||
|
|
||||||
<embed></embed>
|
|
||||||
|
|
||||||
</body>
|
|
||||||
</html>
|
|
|
@ -1,11 +0,0 @@
|
||||||
<!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.0 Transitional//EN" "http://www.w3.org/TR/REC-html40/loose.dtd">
|
|
||||||
<html lang="en">
|
|
||||||
<head>
|
|
||||||
<title>aert1.0/6.3.1</title>
|
|
||||||
</head>
|
|
||||||
<body>
|
|
||||||
|
|
||||||
<applet><!-- the applet --></applet>
|
|
||||||
|
|
||||||
</body>
|
|
||||||
</html>
|
|
|
@ -1,11 +0,0 @@
|
||||||
<!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.01 Frameset//EN"
|
|
||||||
"http://www.w3.org/TR/html4/frameset.dtd">
|
|
||||||
<html lang="en">
|
|
||||||
<head>
|
|
||||||
<title>aert1.0/6.5.1</title>
|
|
||||||
</head>
|
|
||||||
<frameset rows="100, 200">
|
|
||||||
<frame src="1.html">
|
|
||||||
<frame src="2.html">
|
|
||||||
</frameset>
|
|
||||||
</html>
|
|
Some files were not shown because too many files have changed in this diff Show more
Loading…
Reference in a new issue