summaryrefslogtreecommitdiffstats
path: root/htdocs/dev/tests
diff options
context:
space:
mode:
authorot <ot@localhost>2007-04-18 02:34:41 +0000
committerot <ot@localhost>2007-04-18 02:34:41 +0000
commit4aac7395d0abb6c5ea754b7ccda7f4a67b7163e7 (patch)
tree7fc2143f1c6f0aa46128b5ffe7e6e5d6da135154 /htdocs/dev/tests
parentb59cf8f31e958b3677b2df0aba88c370aa8e0b8c (diff)
downloadmarkup-validator-4aac7395d0abb6c5ea754b7ccda7f4a67b7163e7.zip
markup-validator-4aac7395d0abb6c5ea754b7ccda7f4a67b7163e7.tar.gz
markup-validator-4aac7395d0abb6c5ea754b7ccda7f4a67b7163e7.tar.bz2
adding svg 1.1 samples to test cases
Diffstat (limited to 'htdocs/dev/tests')
-rwxr-xr-xhtdocs/dev/tests/index.html19
-rw-r--r--htdocs/dev/tests/svg11.svg15
2 files changed, 31 insertions, 3 deletions
diff --git a/htdocs/dev/tests/index.html b/htdocs/dev/tests/index.html
index 557e1d0..650fdf2 100755
--- a/htdocs/dev/tests/index.html
+++ b/htdocs/dev/tests/index.html
@@ -1,5 +1,5 @@
-<!--#set var="revision" value="\$Id: index.html,v 1.73 2007-04-05 23:31:15 ot Exp $"
---><!--#set var="date" value="\$Date: 2007-04-05 23:31:15 $"
+<!--#set var="revision" value="\$Id: index.html,v 1.74 2007-04-18 02:34:41 ot Exp $"
+--><!--#set var="date" value="\$Date: 2007-04-18 02:34:41 $"
--><!--#set var="title" value="The W3C Markup Validation Service: Tests"
--><!--#set var="relroot" value="../../"
--><!--#include virtual="../../header.html" -->
@@ -199,7 +199,20 @@
<a href="../../check?uri=http://qa-dev.w3.org/wmvs/HEAD/dev/tests/REC-SVG-1_0-minimal.svg">validate</a> -
<a href="http://validator.w3.org/check?uri=http://qa-dev.w3.org/wmvs/HEAD/dev/tests/REC-SVG-1_0-minimal.svg">with v.w.o</a> -
<a href="REC-SVG-1_0-minimal.svg">view</a>:
- SVG 1.0 Rec. minimal document</li>
+ SVG 1.0 Rec. minimal document
+ </li>
+ <li>
+ <a href="../../check?uri=http://qa-dev.w3.org/wmvs/HEAD/dev/tests/svg11.svg">validate</a> -
+ <a href="http://validator.w3.org/check?uri=http://qa-dev.w3.org/wmvs/HEAD/dev/tests/svg11.svg">with v.w.o</a> -
+ <a href="svg11.svg">view</a>:
+ SVG 1.1 Rec. minimal document
+ </li>
+ <li>
+ <a href="../../check?uri=http://qa-dev.w3.org/wmvs/HEAD/dev/tests/svg_tiny_1_1.svg">validate</a> -
+ <a href="http://validator.w3.org/check?uri=http://qa-dev.w3.org/wmvs/HEAD/dev/tests/svg_tiny_1_1.svg">with v.w.o</a> -
+ <a href="svg_tiny_1_1.svg">view</a>:
+ SVG Tiny 1.1
+ </li>
</ul>
<h4 id="valid_notcat">Document types outside the main catalogue</h4>
diff --git a/htdocs/dev/tests/svg11.svg b/htdocs/dev/tests/svg11.svg
new file mode 100644
index 0000000..3107ca2
--- /dev/null
+++ b/htdocs/dev/tests/svg11.svg
@@ -0,0 +1,15 @@
+<?xml version="1.0" standalone="no"?>
+<!DOCTYPE svg PUBLIC "-//W3C//DTD SVG 1.1//EN"
+ "http://www.w3.org/Graphics/SVG/1.1/DTD/svg11.dtd">
+<svg width="5cm" height="4cm" version="1.1"
+ xmlns="http://www.w3.org/2000/svg">
+ <desc>Four separate rectangles
+ </desc>
+ <rect x="0.5cm" y="0.5cm" width="2cm" height="1cm"/>
+ <rect x="0.5cm" y="2cm" width="1cm" height="1.5cm"/>
+ <rect x="3cm" y="0.5cm" width="1.5cm" height="2cm"/>
+ <rect x="3.5cm" y="3cm" width="1cm" height="0.5cm"/>
+ <!-- Show outline of canvas using 'rect' element -->
+ <rect x=".01cm" y=".01cm" width="4.98cm" height="3.98cm"
+ fill="none" stroke="blue" stroke-width=".02cm" />
+</svg>