diff options
author | link <link@localhost> | 2004-05-09 15:56:55 +0000 |
---|---|---|
committer | link <link@localhost> | 2004-05-09 15:56:55 +0000 |
commit | 017b559b9d1db8a18f9ff4493bb5eae06639433e (patch) | |
tree | 8168bdfc9f1063af585cb03cc104ac31791b3ed9 /htdocs/dev/tests/outline.html | |
parent | 8121159457b0bce7d55a77faf6e84619cf678c37 (diff) | |
download | markup-validator-017b559b9d1db8a18f9ff4493bb5eae06639433e.zip markup-validator-017b559b9d1db8a18f9ff4493bb5eae06639433e.tar.gz markup-validator-017b559b9d1db8a18f9ff4493bb5eae06639433e.tar.bz2 |
Merging from branch validator-0_6_0-branch, at tag validator-0_6_5-release.
Diffstat (limited to 'htdocs/dev/tests/outline.html')
-rw-r--r-- | htdocs/dev/tests/outline.html | 36 |
1 files changed, 36 insertions, 0 deletions
diff --git a/htdocs/dev/tests/outline.html b/htdocs/dev/tests/outline.html new file mode 100644 index 0000000..2146273 --- /dev/null +++ b/htdocs/dev/tests/outline.html @@ -0,0 +1,36 @@ +<?xml version="1.0" encoding="UTF-8"?> +<!DOCTYPE html + PUBLIC "-//W3C//DTD XHTML 1.0 Strict//EN" + "http://www.w3.org/TR/1999/PR-xhtml1-19991210/DTD/xhtml1-strict.dtd"> +<html xmlns="http://www.w3.org/1999/xhtml" xml:lang="en" lang="en"> + <head><title>Headings Nesting/Outline Test</title></head> + <body> +<!-- From 1 to 6... --> + <h1>Level #1 (1 to 6)</h1> + <h2>Level #2 (1 to 6)</h2> + <h3>Level #3 (1 to 6)</h3> + <h4>Level #4 (1 to 6)</h4> + <h5>Level #5 (1 to 6)</h5> + <h6>Level #6 (1 to 6)</h6> +<!-- ...and back again. --> + <h6>Level #6 (6 to 1)</h6> + <h5>Level #5 (6 to 1)</h5> + <h4>Level #4 (6 to 1)</h4> + <h3>Level #3 (6 to 1)</h3> + <h2>Level #2 (6 to 1)</h2> + <h1>Level #1 (6 to 1)</h1> +<!-- Skipping from 1 to 6. --> + <h1>Level #1 (skip up)</h1> + <h6>Level #6 (skip up)</h6> +<!-- Skipping from 6 to 1. --> + <h6>Level #6 (skip down)</h6> + <h1>Level #1 (skip down)</h1> +<!-- Climb down to 6 and leave it for autoclose. --> + <h1>Level #1 (1 to 6)</h1> + <h2>Level #2 (1 to 6)</h2> + <h3>Level #3 (1 to 6)</h3> + <h4>Level #4 (1 to 6)</h4> + <h5>Level #5 (1 to 6)</h5> + <h6>Level #6 (1 to 6)</h6> + </body> +</html> |