diff --git a/src/canvas_element.class.js b/src/canvas_element.class.js index 07de1a82..e7f26e1e 100644 --- a/src/canvas_element.class.js +++ b/src/canvas_element.class.js @@ -277,14 +277,11 @@ * @method _initWrapperElement */ _initWrapperElement: function (width, height) { - var wrapperProperties = { - className: 'canvas_container', - style: { - width: width + 'px', - height: height + 'px' - } - }; - var wrapper = Element.wrap(this.getElement(), 'div', wrapperProperties); + var wrapper = Element.wrap(this.getElement(), 'div', { className: 'canvas_container' }); + wrapper.setStyle({ + width: width + 'px', + height: height + 'px' + }); this._makeElementUnselectable(wrapper); this.wrapper = wrapper; }, diff --git a/test/W3C_SVG_12_TinyTestSuite_beta/htmlEmbedHarness/animate-elem-02-t.html b/test/W3C_SVG_12_TinyTestSuite_beta/htmlEmbedHarness/animate-elem-02-t.html new file mode 100755 index 00000000..71584efe --- /dev/null +++ b/test/W3C_SVG_12_TinyTestSuite_beta/htmlEmbedHarness/animate-elem-02-t.html @@ -0,0 +1,85 @@ + + + + + + + + +SVG 1.2 Tiny test:animate-elem-02-t + + + + + + + + + + +
+ + + + + + + + + + + + +
+

animate-elem-02-t

+
+ + + raster image of animate-elem-02-t +
+
+ + +
+

Test 'additive' and 'accumulate' attributes.

+

+ The four pictures show the effect with the four possible combinations of 'additive' (either 'replace' or 'sum') and + 'accumulate' (either 'none' or 'sum'). Because two animations are animating the height, the effects of 'additive' and + 'accumulate' are sometimes different than when there is only a single animation. +

+ +
+ + + diff --git a/test/W3C_SVG_12_TinyTestSuite_beta/htmlEmbedHarness/animate-elem-03-t.html b/test/W3C_SVG_12_TinyTestSuite_beta/htmlEmbedHarness/animate-elem-03-t.html new file mode 100755 index 00000000..7e0bee31 --- /dev/null +++ b/test/W3C_SVG_12_TinyTestSuite_beta/htmlEmbedHarness/animate-elem-03-t.html @@ -0,0 +1,90 @@ + + + + + + + + +SVG 1.2 Tiny test:animate-elem-03-t + + + + + + + + + + +
+ + + + + + + + + + + + +
+

animate-elem-03-t

+
+ + + raster image of animate-elem-03-t +
+
+ + +
+

Test inheritance of animated properties.

+

+ Three colored text strings appear. All three are inside of the same 'g' element. The 'g' element has its 'font-size' + animated from 30 to 40, and its 'fill' from #00f (blue) to #070 (green). +

+

+ The first colored 'text' element has the font-size set, so the animation of the parent 'g' only affects the fill color. + The second has the fill set and font-size set, so no inherited values are used. The font-size and fill color stay + constant. The third colored 'text' element has neither of these properties specified and thus inherits both animated + values - the fill color changes and the text grows in size. +

+ +
+ + + diff --git a/test/W3C_SVG_12_TinyTestSuite_beta/htmlEmbedHarness/animate-elem-04-t.html b/test/W3C_SVG_12_TinyTestSuite_beta/htmlEmbedHarness/animate-elem-04-t.html new file mode 100755 index 00000000..a8c5b530 --- /dev/null +++ b/test/W3C_SVG_12_TinyTestSuite_beta/htmlEmbedHarness/animate-elem-04-t.html @@ -0,0 +1,85 @@ + + + + + + + + +SVG 1.2 Tiny test:animate-elem-04-t + + + + + + + + + + +
+ + + + + + + + + + + + +
+

animate-elem-04-t

+
+ + + raster image of animate-elem-04-t +
+
+ + +
+

Test different ways of defining a motion path.

+

+ An animation moves a triangle along a path. Reference rectangles, lines and text are provided to help show what the + correct behavior is. The red text shows the way that the motion path is specified. +

+

This animation uses the 'from' and 'to' attributes to define the motion path.

+ +
+ + + diff --git a/test/W3C_SVG_12_TinyTestSuite_beta/htmlEmbedHarness/animate-elem-05-t.html b/test/W3C_SVG_12_TinyTestSuite_beta/htmlEmbedHarness/animate-elem-05-t.html new file mode 100755 index 00000000..ada8bb10 --- /dev/null +++ b/test/W3C_SVG_12_TinyTestSuite_beta/htmlEmbedHarness/animate-elem-05-t.html @@ -0,0 +1,85 @@ + + + + + + + + +SVG 1.2 Tiny test:animate-elem-05-t + + + + + + + + + + +
+ + + + + + + + + + + + +
+

animate-elem-05-t

+
+ + + raster image of animate-elem-05-t +
+
+ + +
+

Test different ways of defining a motion path.

+

+ An animation moves a triangle along a path. Reference rectangles, lines and text are provided to help show what + the correct behavior is. The red text shows the way that the motion path is specified. +

+

This animation uses the 'values' attribute to define the motion path, with a linear calcMode.

+ +
+ + + diff --git a/test/W3C_SVG_12_TinyTestSuite_beta/htmlEmbedHarness/animate-elem-06-t.html b/test/W3C_SVG_12_TinyTestSuite_beta/htmlEmbedHarness/animate-elem-06-t.html new file mode 100755 index 00000000..930e32b3 --- /dev/null +++ b/test/W3C_SVG_12_TinyTestSuite_beta/htmlEmbedHarness/animate-elem-06-t.html @@ -0,0 +1,85 @@ + + + + + + + + +SVG 1.2 Tiny test:animate-elem-06-t + + + + + + + + + + +
+ + + + + + + + + + + + +
+

animate-elem-06-t

+
+ + + raster image of animate-elem-06-t +
+
+ + +
+

Test different ways of defining a motion path.

+

+ An animation moves a triangle along a path. Reference rectangles, lines and text are provided to help show what + the correct behavior is. The red text shows the way that the motion path is specified. +

+

This animation uses the 'path' attribute to define the motion path.

+ +
+ + + diff --git a/test/W3C_SVG_12_TinyTestSuite_beta/htmlEmbedHarness/animate-elem-07-t.html b/test/W3C_SVG_12_TinyTestSuite_beta/htmlEmbedHarness/animate-elem-07-t.html new file mode 100755 index 00000000..955315ba --- /dev/null +++ b/test/W3C_SVG_12_TinyTestSuite_beta/htmlEmbedHarness/animate-elem-07-t.html @@ -0,0 +1,85 @@ + + + + + + + + +SVG 1.2 Tiny test:animate-elem-07-t + + + + + + + + + + +
+ + + + + + + + + + + + +
+

animate-elem-07-t

+
+ + + raster image of animate-elem-07-t +
+
+ + +
+

Test different ways of defining a motion path.

+

+ An animation moves a triangle along a path. Reference rectangles, lines and text are provided to help show what the + correct behavior is. The red text shows the way that the motion path is specified. +

+

This animation uses the 'mpath' sub-element to define the motion path.

+ +
+ + + diff --git a/test/W3C_SVG_12_TinyTestSuite_beta/htmlEmbedHarness/animate-elem-08-t.html b/test/W3C_SVG_12_TinyTestSuite_beta/htmlEmbedHarness/animate-elem-08-t.html new file mode 100755 index 00000000..70fb2c02 --- /dev/null +++ b/test/W3C_SVG_12_TinyTestSuite_beta/htmlEmbedHarness/animate-elem-08-t.html @@ -0,0 +1,85 @@ + + + + + + + + +SVG 1.2 Tiny test:animate-elem-08-t + + + + + + + + + + +
+ + + + + + + + + + + + +
+

animate-elem-08-t

+
+ + + raster image of animate-elem-08-t +
+
+ + +
+

Test rotate='auto' and rotate='auto-reverse'.

+

+ Two animations have been defined that move a triangle along a path. The first animation specifies rotate='auto', + which causes the object to be rotated along the curve of the path. The second animation specifies rotate='auto-reverse', + which causes the object to be flipped and then rotated along the curve of the path. +

+ +
+ + + diff --git a/test/W3C_SVG_12_TinyTestSuite_beta/htmlEmbedHarness/animate-elem-09-t.html b/test/W3C_SVG_12_TinyTestSuite_beta/htmlEmbedHarness/animate-elem-09-t.html new file mode 100755 index 00000000..8d30cb5a --- /dev/null +++ b/test/W3C_SVG_12_TinyTestSuite_beta/htmlEmbedHarness/animate-elem-09-t.html @@ -0,0 +1,93 @@ + + + + + + + + +SVG 1.2 Tiny test:animate-elem-09-t + + + + + + + + + + +
+ + + + + + + + + + + + +
+

animate-elem-09-t

+
+ + + raster image of animate-elem-09-t +
+
+ + +
+

Test possible values for 'calcMode="discrete"'

+

+ Two animations have been defined. For each animation, ruler lines and text are provided to help show what the + correct behavior is. The black text and ruler lines help show the sizes and movement of the rectangles over time. +

+

+ The discrete animations should show stair-stepping animations, with quantum-level jumps every two seconds in + these tests. The linear animations change constantly with each keyframe to keyframe section, with the result + that the change is faster when there is a larger change within a given amount of time. The paced animations + change constantly over the entire animation, regardless of the values at particular keyframes. For + calcMode='spline' in this test case, the initial rate of change is defined to be the same as linear, but the + last jump has an ease-in/ease-out effect where the change is slower at the start and end but faster in the + middle. +

+ +
+ + + diff --git a/test/W3C_SVG_12_TinyTestSuite_beta/htmlEmbedHarness/animate-elem-10-t.html b/test/W3C_SVG_12_TinyTestSuite_beta/htmlEmbedHarness/animate-elem-10-t.html new file mode 100755 index 00000000..cd1fb141 --- /dev/null +++ b/test/W3C_SVG_12_TinyTestSuite_beta/htmlEmbedHarness/animate-elem-10-t.html @@ -0,0 +1,88 @@ + + + + + + + + +SVG 1.2 Tiny test:animate-elem-10-t + + + + + + + + + + +
+ + + + + + + + + + + + +
+

animate-elem-10-t

+
+ + + raster image of animate-elem-10-t +
+
+ + +
+

Test possible values for 'calcMode="linear"'

+

+ Two animations have been defined. For each animation, ruler lines and text are provided to help show what the + correct behavior is. The black text and ruler lines help show the sizes and movement of the rectangles over time. +

+

+ The linear animations change constantly with each keyframe to keyframe section, with the result that the change + is faster when there is a larger change within a given amount of time. +

+ +
+ + + diff --git a/test/W3C_SVG_12_TinyTestSuite_beta/htmlEmbedHarness/animate-elem-11-t.html b/test/W3C_SVG_12_TinyTestSuite_beta/htmlEmbedHarness/animate-elem-11-t.html new file mode 100755 index 00000000..801e930d --- /dev/null +++ b/test/W3C_SVG_12_TinyTestSuite_beta/htmlEmbedHarness/animate-elem-11-t.html @@ -0,0 +1,85 @@ + + + + + + + + +SVG 1.2 Tiny test:animate-elem-11-t + + + + + + + + + + +
+ + + + + + + + + + + + +
+

animate-elem-11-t

+
+ + + raster image of animate-elem-11-t +
+
+ + +
+

Test possible values for 'calcMode="paced"'

+

+ Two animations have been defined. For each animation, ruler lines and text are provided to help show what the + correct behavior is. The black text and ruler lines help show the sizes and movement of the rectangles over time. +

+

The paced animations change constantly over the entire animation, regardless of the values at particular keyframes.

+ +
+ + + diff --git a/test/W3C_SVG_12_TinyTestSuite_beta/htmlEmbedHarness/animate-elem-12-t.html b/test/W3C_SVG_12_TinyTestSuite_beta/htmlEmbedHarness/animate-elem-12-t.html new file mode 100755 index 00000000..99e2d879 --- /dev/null +++ b/test/W3C_SVG_12_TinyTestSuite_beta/htmlEmbedHarness/animate-elem-12-t.html @@ -0,0 +1,88 @@ + + + + + + + + +SVG 1.2 Tiny test:animate-elem-12-t + + + + + + + + + + +
+ + + + + + + + + + + + +
+

animate-elem-12-t

+
+ + + raster image of animate-elem-12-t +
+
+ + +
+

Test possible values for 'calcMode="spline"'

+

+ Two animations have been defined. For each animation, ruler lines and text are provided to help show what the correct + behavior is. The black text and ruler lines help show the sizes and movement of the rectangles over time. +

+

+ For calcMode='spline' in this test case, the initial rate of change is defined to be the same as linear, but the last + jump has an ease-in/ease-out effect where the change is slower at the start and end but faster in the middle. +

+ +
+ + + diff --git a/test/W3C_SVG_12_TinyTestSuite_beta/htmlEmbedHarness/animate-elem-13-t.html b/test/W3C_SVG_12_TinyTestSuite_beta/htmlEmbedHarness/animate-elem-13-t.html new file mode 100755 index 00000000..e41f01f7 --- /dev/null +++ b/test/W3C_SVG_12_TinyTestSuite_beta/htmlEmbedHarness/animate-elem-13-t.html @@ -0,0 +1,86 @@ + + + + + + + + +SVG 1.2 Tiny test:animate-elem-13-t + + + + + + + + + + +
+ + + + + + + + + + + + +
+

animate-elem-13-t

+
+ + + raster image of animate-elem-13-t +
+
+ + +
+

Test 'from', 'by', 'to' and 'values'

+

+ Six animations have been defined. All six animations define the same simultaneous behavior, but use different + combinations of attributes 'from', 'by', 'to' and 'values'. In all cases, from time 2 seconds to time 5 seconds, + the rectangle should change from a width of 30 to a width of 300. +

+

The red text shows the attributes that were used for that particular animation.

+ +
+ + + diff --git a/test/W3C_SVG_12_TinyTestSuite_beta/htmlEmbedHarness/animate-elem-14-t.html b/test/W3C_SVG_12_TinyTestSuite_beta/htmlEmbedHarness/animate-elem-14-t.html new file mode 100755 index 00000000..aa612bb2 --- /dev/null +++ b/test/W3C_SVG_12_TinyTestSuite_beta/htmlEmbedHarness/animate-elem-14-t.html @@ -0,0 +1,82 @@ + + + + + + + + +SVG 1.2 Tiny test:animate-elem-14-t + + + + + + + + + + +
+ + + + + + + + + + + + +
+

animate-elem-14-t

+
+ + + raster image of animate-elem-14-t +
+
+ + +
+

Test 'calcMode'=discrete

+

One animation has been defined to animate the height of a rectangle. Ruler lines and text are provided to help show what the correct behavior is. The red text shows the values for the 'calcMode' and 'keyTimes' attributes. The black text and ruler lines help show the size and movement of the rectangle over time.

+

This test shows an animation with calcMode="discrete" (i.e., a jumping animation).

+ +
+ + + diff --git a/test/W3C_SVG_12_TinyTestSuite_beta/htmlEmbedHarness/animate-elem-15-t.html b/test/W3C_SVG_12_TinyTestSuite_beta/htmlEmbedHarness/animate-elem-15-t.html new file mode 100755 index 00000000..cd649609 --- /dev/null +++ b/test/W3C_SVG_12_TinyTestSuite_beta/htmlEmbedHarness/animate-elem-15-t.html @@ -0,0 +1,89 @@ + + + + + + + + +SVG 1.2 Tiny test:animate-elem-15-t + + + + + + + + + + +
+ + + + + + + + + + + + +
+

animate-elem-15-t

+
+ + + raster image of animate-elem-15-t +
+
+ + +
+

Test 'calcMode'=paced

+

+ One animation has been defined to animate the height of a rectangle. Ruler lines and text are provided to help show + what the correct behavior is. The red text shows the values for the 'calcMode' and 'keyTimes' attributes. The black + text and ruler lines help show the size and movement of the rectangle over time. +

+

+ This test shows calcMode="paced" for an animation that has constant velocity, thus showing how 'values' and + 'keyTimes' are ignored. +

+ +
+ + + diff --git a/test/W3C_SVG_12_TinyTestSuite_beta/htmlEmbedHarness/animate-elem-17-t.html b/test/W3C_SVG_12_TinyTestSuite_beta/htmlEmbedHarness/animate-elem-17-t.html new file mode 100755 index 00000000..c6595fce --- /dev/null +++ b/test/W3C_SVG_12_TinyTestSuite_beta/htmlEmbedHarness/animate-elem-17-t.html @@ -0,0 +1,90 @@ + + + + + + + + +SVG 1.2 Tiny test:animate-elem-17-t + + + + + + + + + + +
+ + + + + + + + + + + + +
+

animate-elem-17-t

+
+ + + raster image of animate-elem-17-t +
+
+ + +
+

Test 'calcMode'=spline

+

+ One animation has been defined to animate the height of a rectangle. Ruler lines and text are provided to help + show what the correct behavior is. The red text shows the values for the 'calcMode' and 'keyTimes' attributes. + The black text and ruler lines help show the size and movement of the rectangle over time. +

+

+ This animation shows calcMode="spline". Between time 4 seconds and 8 seconds, the animation displays an + ease-in/ease-out approach instead of a constant linear approach which would have been the case if calcMode had + been linear instead. +

+ +
+ + + diff --git a/test/W3C_SVG_12_TinyTestSuite_beta/htmlEmbedHarness/animate-elem-19-t.html b/test/W3C_SVG_12_TinyTestSuite_beta/htmlEmbedHarness/animate-elem-19-t.html new file mode 100755 index 00000000..b1396fcc --- /dev/null +++ b/test/W3C_SVG_12_TinyTestSuite_beta/htmlEmbedHarness/animate-elem-19-t.html @@ -0,0 +1,86 @@ + + + + + + + + +SVG 1.2 Tiny test:animate-elem-19-t + + + + + + + + + + +
+ + + + + + + + + + + + +
+

animate-elem-19-t

+
+ + + raster image of animate-elem-19-t +
+
+ + +
+

Test 'calcMode'=linear

+

+ One animation has been defined to animate the width of a rectangle. Ruler lines and text are provided to help show + what the correct behavior is. The red text shows the values for the 'calcMode' and 'keyTimes' attributes. The black + text and ruler lines help show the size and movement of the rectangle over time. +

+

This test shows an animation with calcMode="linear".

+ +
+ + + diff --git a/test/W3C_SVG_12_TinyTestSuite_beta/htmlEmbedHarness/animate-elem-20-t.html b/test/W3C_SVG_12_TinyTestSuite_beta/htmlEmbedHarness/animate-elem-20-t.html new file mode 100755 index 00000000..b96be6cd --- /dev/null +++ b/test/W3C_SVG_12_TinyTestSuite_beta/htmlEmbedHarness/animate-elem-20-t.html @@ -0,0 +1,99 @@ + + + + + + + + +SVG 1.2 Tiny test:animate-elem-20-t + + + + + + + + + + +
+ + + + + + + + + + + + +
+

animate-elem-20-t

+
+ + + raster image of animate-elem-20-t +
+
+ + +
+

A quick animation test.

+

+ The assumption is that you will first click on "fade in" and then click on "fade out", each exactly once. The + first time you select the link 'fade in', you should see a red square appearing, gradually and smoothly fading + from white to red over the course of three seconds. +

+

+ The rendered picture should match the reference image, (except for possible variations in the labeling text + (per CSS2 rules)) after activating the link on the fade-in button the first time and waiting three seconds for the + animation to compete. The picture should remain looking the same way indefinitely, until another link is activated. +

+

+ With the second click on "fade in", however, the behavior might be different. In the case of having a first click + on "fade in", waiting three seconds, and then immediately perform a first click on "fade out", waiting three seconds, + and then immediately perform a second click on "fade in", you should see the following. After the first click on + "fade in", the red square goes from white to red. After the first click on "fade out", the red square goes from red + to white. After the second click on "fade in", however, the red square goes from white to red, and then goes back + from red to white. This is because of the hyperlinking rules as they relate to resolved start times in the SMIL + 2.1 specification. +

+ +
+ + + diff --git a/test/W3C_SVG_12_TinyTestSuite_beta/htmlEmbedHarness/animate-elem-201-t.html b/test/W3C_SVG_12_TinyTestSuite_beta/htmlEmbedHarness/animate-elem-201-t.html new file mode 100755 index 00000000..63f2eff3 --- /dev/null +++ b/test/W3C_SVG_12_TinyTestSuite_beta/htmlEmbedHarness/animate-elem-201-t.html @@ -0,0 +1,85 @@ + + + + + + + + +SVG 1.2 Tiny test:animate-elem-201-t + + + + + + + + + + +
+ + + + + + + + + + + + +
+

animate-elem-201-t

+
+ + + raster image of animate-elem-201-t +
+
+ + +
+

+ Five orange rectangles have one animation each. When an + animation is active it moves its orange rectangle from its + left marker to its right marker. The active intervals + are [1-2], [4-6] and [8-10]. +

+ +
+ + + diff --git a/test/W3C_SVG_12_TinyTestSuite_beta/htmlEmbedHarness/animate-elem-202-t.html b/test/W3C_SVG_12_TinyTestSuite_beta/htmlEmbedHarness/animate-elem-202-t.html new file mode 100755 index 00000000..92c1cae4 --- /dev/null +++ b/test/W3C_SVG_12_TinyTestSuite_beta/htmlEmbedHarness/animate-elem-202-t.html @@ -0,0 +1,92 @@ + + + + + + + + +SVG 1.2 Tiny test:animate-elem-202-t + + + + + + + + + + +
+ + + + + + + + + + + + +
+

animate-elem-202-t

+
+ + + raster image of animate-elem-202-t +
+
+ + +
+

+ Precision test for accumulative animateMotion. +

+

+ The main indication for a failed test is the appearence of something + red and that circles are not centered below the paths given in gray. +

+

+ Circles are moved along squares given with the path attribute, + repeatDur and accumulate with a repeatDur of 30s and repetition. + Different values for the rotate attribute are given too, this has no visible effect, + because centered circles are moved. +

+ +
+ + + diff --git a/test/W3C_SVG_12_TinyTestSuite_beta/htmlEmbedHarness/animate-elem-203-t.html b/test/W3C_SVG_12_TinyTestSuite_beta/htmlEmbedHarness/animate-elem-203-t.html new file mode 100755 index 00000000..442c27b4 --- /dev/null +++ b/test/W3C_SVG_12_TinyTestSuite_beta/htmlEmbedHarness/animate-elem-203-t.html @@ -0,0 +1,99 @@ + + + + + + + + +SVG 1.2 Tiny test:animate-elem-203-t + + + + + + + + + + +
+ + + + + + + + + + + + +
+

animate-elem-203-t

+
+ + + raster image of animate-elem-203-t +
+
+ + +
+

+ Precision test for additive animateMotion using, + mpath element, path attribute, values, from-to. +

+

+ The main indication for a failed test is the appearence of the red fill + of the circle. A switch of the stroke of the circle from blue to gray indicates + the end of the test at 30s. +

+

+ A circles is moved along some paths + (two of them indicated in gray) with + a duration of 30s using additive animateMotion. + The superposition is no motion. + The circle is positioned always at the bottom right. + The colour of the circle switches from blue to gray after + the animation is finished. + If the red center of the circle becomes visible, an error is + occured. +

+ +
+ + + diff --git a/test/W3C_SVG_12_TinyTestSuite_beta/htmlEmbedHarness/animate-elem-205-t.html b/test/W3C_SVG_12_TinyTestSuite_beta/htmlEmbedHarness/animate-elem-205-t.html new file mode 100755 index 00000000..e0fb6ef2 --- /dev/null +++ b/test/W3C_SVG_12_TinyTestSuite_beta/htmlEmbedHarness/animate-elem-205-t.html @@ -0,0 +1,116 @@ + + + + + + + + +SVG 1.2 Tiny test:animate-elem-205-t + + + + + + + + + + +
+ + + + + + + + + + + + +
+

animate-elem-205-t

+
+ + + raster image of animate-elem-205-t +
+
+ + +
+

+ Precision test for linear animateMotion with separated path fragments, + mpath element, rotate auto. +

+

+ The main indication for a failed test is the appearence of the red fill + of the test circle. The circle has to follow exactly the paths given + in gray. +

+

+ A linear animateMotion of a blue stroked square with a centered + circle is compared with four animateMotion of a red square + with a centered circle. + The motion of the red square is following the + combination of four animateMotion following on + each other and is the same as the motion of the blue + square, because the timing is choosen in such a way. + Therefore the blue square covers always the red one + completely. +

+

+ The path is given in gray. The red fill of the circle + is always covered with the gray path. + Eight gray stroked markers are lightened, when the circle + is exactly above the marker. The red fill of the marker + is exactly covered by the blue stroked circle. + If something red gets visible, an error is occured + and the animateMotion is not linear. +

+

+ The exact timing is calculated using an analytical + integration of the path length of the sub paths + (this is available for quadratic or linear curves). + With this method the path position and the + time can be determined as functions of the usual + parametrisation of the used Bézier curves. +

+ +
+ + + diff --git a/test/W3C_SVG_12_TinyTestSuite_beta/htmlEmbedHarness/animate-elem-206-t.html b/test/W3C_SVG_12_TinyTestSuite_beta/htmlEmbedHarness/animate-elem-206-t.html new file mode 100755 index 00000000..e05b5b18 --- /dev/null +++ b/test/W3C_SVG_12_TinyTestSuite_beta/htmlEmbedHarness/animate-elem-206-t.html @@ -0,0 +1,94 @@ + + + + + + + + +SVG 1.2 Tiny test:animate-elem-206-t + + + + + + + + + + +
+ + + + + + + + + + + + +
+

animate-elem-206-t

+
+ + + raster image of animate-elem-206-t +
+
+ + +
+

+ Precision tests for animateMotion with animated mpath. +

+

+ The main indication for a failed test is the appearence of something + red and that circles are not centered below the paths given in gray. +

+

+ Blue rectangles and a red circles are moved along + light blue paths with a duration of 30s. The paths itself are animated. + This results in motions along the gray paths. The rectangles + are aligned along the animated light blue paths. + The circle is always covered by the path given in gray. + If something red gets visible, an error is occured. +

+ +
+ + + diff --git a/test/W3C_SVG_12_TinyTestSuite_beta/htmlEmbedHarness/animate-elem-207-t.html b/test/W3C_SVG_12_TinyTestSuite_beta/htmlEmbedHarness/animate-elem-207-t.html new file mode 100755 index 00000000..db201cc0 --- /dev/null +++ b/test/W3C_SVG_12_TinyTestSuite_beta/htmlEmbedHarness/animate-elem-207-t.html @@ -0,0 +1,116 @@ + + + + + + + + +SVG 1.2 Tiny test:animate-elem-207-t + + + + + + + + + + +
+ + + + + + + + + + + + +
+

animate-elem-207-t

+
+ + + raster image of animate-elem-207-t +
+
+ + +
+

+ Precision test for paced animateMotion with separated path fragments, + mpath element, rotate auto. +

+

+ The main indication for a failed test is the appearence of the red fill + of the test circle. The circle has to follow exactly the paths given + in gray. +

+

+ A paced animateMotion of a blue stroked square with a centered + circle is compared with four animateMotion of a red square + with a centered circle. + The motion of the red square is following the + combination of four animateMotion following on + each other and is the same as the motion of the blue + square, because the timing is choosen in such a way. + Therefore the blue square covers always the red one + completely. +

+

+ The path is given in gray. The red fill of the circle + is always covered with the gray path. + Eight gray stroked markers are lightened, when the circle + is exactly above the marker. The red fill of the marker + is exactly covered by the blue stroked circle. + If something red gets visible, an error is occured + and the animateMotion is not paced. +

+

+ The exact timing is calculated using an analytical + integration of the path length of the sub paths + (this is available for quadratic or linear curves). + With this method the path position and the + time can be determined as functions of the usual + parametrization of the used Bézier curves. +

+ +
+ + + diff --git a/test/W3C_SVG_12_TinyTestSuite_beta/htmlEmbedHarness/animate-elem-209-t.html b/test/W3C_SVG_12_TinyTestSuite_beta/htmlEmbedHarness/animate-elem-209-t.html new file mode 100755 index 00000000..9393af88 --- /dev/null +++ b/test/W3C_SVG_12_TinyTestSuite_beta/htmlEmbedHarness/animate-elem-209-t.html @@ -0,0 +1,126 @@ + + + + + + + + +SVG 1.2 Tiny test:animate-elem-209-t + + + + + + + + + + +
+ + + + + + + + + + + + +
+

animate-elem-209-t

+
+ + + raster image of animate-elem-209-t +
+
+ + +
+

Compare from-to, from-by and by animate with values animate.

+

+ The main indication for a failed test is the appearance of red. +

+

+ SMIL 2 specifies, how from-to, from-by and by animations have to be converted into + values animation. Therefore they have to be the same as the related values animation. + Additionally set animations can be replaced by values animations too. + The conversion is as follows: +

+ + + + + + + + + + + + + + + + + + + + + +
usedconverted
from="a" to="b"values="a;b"
from="a" by="b"values="a;a+b"
by="a"values="0;a" additive="sum"
set to="a"values="a" additive="replace" accumulate="none"
+

+ (by and from-by animations have only a meaning, if values can be added somehow. + '0' is used as a general symbol for the neutral element of addition for the related attribute, + this means 0 + a = a + 0 = a. And '0' is not equal to the symbol '1' as the basic unit of the + related attribute, '0' is a predecessor of '1' in the related attribute space.) +

+

+ The from-to, from-by and by animations applied to the attributes x, y, width, height + of blue rectangles are compared with the related values animations including additive and + cumulative hehaviour for underlying red rectangles. Additionally underlying dark red + rectangles simulate the same behaviour using always the defaults additive replace and + accumulate replace. The blue rectangles cover all red rectangles. Therefore if something + red gets visible, an error is occured. Because fill is always not set and therefore remove, + the final value is only that of the set animation, not very interesting for the test. +

+ +
+ + + diff --git a/test/W3C_SVG_12_TinyTestSuite_beta/htmlEmbedHarness/animate-elem-21-t.html b/test/W3C_SVG_12_TinyTestSuite_beta/htmlEmbedHarness/animate-elem-21-t.html new file mode 100755 index 00000000..72e56017 --- /dev/null +++ b/test/W3C_SVG_12_TinyTestSuite_beta/htmlEmbedHarness/animate-elem-21-t.html @@ -0,0 +1,101 @@ + + + + + + + + +SVG 1.2 Tiny test:animate-elem-21-t + + + + + + + + + + +
+ + + + + + + + + + + + +
+

animate-elem-21-t

+
+ + + raster image of animate-elem-21-t +
+
+ + +
+

Test for chained animations

+

+ The assumption is that you will first click on "fade in" and then click on "fade out", each exactly once. The + first time you select the link 'fade in', you should see a red square appearing, gradually and smoothly fading + from white to red over the course of three seconds. This square is in front of and thus obscures the lower left + circle, but is behind the upper right circle. The fill color of these circles is also animated, from white to grey. + The animations are triggered by the start of the corresponding animation of the red square. +

+

+ The rendered picture should match the reference image, (except for possible variations in the labeling text + (per CSS2 rules)) after activating the link on the fade-in button the first time and waiting three seconds for the + animation to compete. The picture should remain looking the same way indefinitely, until another link is activated. +

+

+ With the second click on "fade in", however, the behavior might be different. In the case of having a first click + on "fade in", waiting three seconds, and then immediately perform a first click on "fade out", waiting three seconds, + and then immediately perform a second click on "fade in", you should see the following. After the first click on + "fade in", the red square goes from zero to 100% opacity. After the first click on "fade out", the red square goes + from red to white. After the second click on "fade in", however, the red square goes from white to red, and then + goes back from red to white. This is because of the hyperlinking rules as they relate to resolved start times in + the SMIL 2.1 specification. +

+ +
+ + + diff --git a/test/W3C_SVG_12_TinyTestSuite_beta/htmlEmbedHarness/animate-elem-210-t.html b/test/W3C_SVG_12_TinyTestSuite_beta/htmlEmbedHarness/animate-elem-210-t.html new file mode 100755 index 00000000..1a4481c3 --- /dev/null +++ b/test/W3C_SVG_12_TinyTestSuite_beta/htmlEmbedHarness/animate-elem-210-t.html @@ -0,0 +1,131 @@ + + + + + + + + +SVG 1.2 Tiny test:animate-elem-210-t + + + + + + + + + + +
+ + + + + + + + + + + + +
+

animate-elem-210-t

+
+ + + raster image of animate-elem-210-t +
+
+ + +
+

Compare from-to, from-by and by animateColor with values animateColor and animate.

+

+ The main indication for a failed test is the appearance of red. +

+

+ SMIL 2 specifies, how from-to, from-by and by animations have to be converted into + values animations. Therefore they have to be the same as the related values animation. + Additionally set animations can be replaced by values animations too. + The conversion is as follows: +

+ + + + + + + + + + + + + + + + + + + + + +
usedconverted
from="a" to="b"values="a;b"
from="a" by="b"values="a;a+b"
by="a"values="0;a" additive="sum"
set to="a"values="a" additive="replace" accumulate="none"
+

+ (by and from-by animations have only a meaning, if values can be added somehow. + '0' is used as a general symbol for the neutral element of addition for the related attribute, + this means 0 + a = a + 0 = a. And '0' is not equal to the symbol '1' as the basic unit of the + related attribute, '0' is a predecessor of '1' in the related attribute space. In the color space + 0 is represented by black, #000, #000000, rgb(0,0,0) etc. Addition is performed for each + of the three components of the color vector separately.) +

+

+ The from-to, from-by and by animations applied to fill properties + of circles are compared with the related values animations including additive and + cumulative hehaviour for the stroke of the same circles. Additionally underlying + filled larger circles simulate the same behaviour using always the defaults additive replace and + accumulate replace. The fill of the background circle and stroke and fill of the smaller + test circle centered in it are always exactly the same. Therefore if + rings in each centered circle system with different color get visible, an error is occured. + But each separated circle system representing one of 12 subtests can have another color. + Because the fill attribute for animation is always not set and therefore remove, + the final value is only that of the set animation, not very interesting for the test. +

+ +
+ + + diff --git a/test/W3C_SVG_12_TinyTestSuite_beta/htmlEmbedHarness/animate-elem-211-t.html b/test/W3C_SVG_12_TinyTestSuite_beta/htmlEmbedHarness/animate-elem-211-t.html new file mode 100755 index 00000000..fec006e1 --- /dev/null +++ b/test/W3C_SVG_12_TinyTestSuite_beta/htmlEmbedHarness/animate-elem-211-t.html @@ -0,0 +1,120 @@ + + + + + + + + +SVG 1.2 Tiny test:animate-elem-211-t + + + + + + + + + + +
+ + + + + + + + + + + + +
+

animate-elem-211-t

+
+ + + raster image of animate-elem-211-t +
+
+ + +
+

Compare from-to, from-by and by animateMotion with values animateMotion.

+

+ The main indication for a failed test is the appearance of red. +

+

+ SMIL 2 specifies, how from-to, from-by and by animations have to be converted into + values animation. Therefore they have to be the same as the related values animation. + The conversion is as follows: +

+ +

+ (by and from-by animations have only a meaning, if values can be added somehow. + '0' is used as a general symbol for the neutral element of addition for the related attribute, + this means 0 + a = a + 0 = a. And '0' is not equal to the symbol '1' as the basic unit of the + related attribute, '0' is a predecessor of '1' in the related attribute space. For animateMotion + the '0' is no motion or is related to a translation given in coordinates: 0,0.) +

+

+ The from-to, from-by and by are applied to animateMotion of different blue stroked + paths and are compared with the related values animations including additive and + cumulative hehaviour for underlying red paths. Additionally underlying dark red + paths simulate the same behaviour using always the defaults additive replace and + accumulate replace. The blue paths cover all red paths. Therefore if something + red gets visible, an error is occured. Because fill is always not set and therefore remove, + the final value is the value at 2s given with a simple values animateMotion, not very + interesting for the test. +

+ +
+ + + diff --git a/test/W3C_SVG_12_TinyTestSuite_beta/htmlEmbedHarness/animate-elem-212-t.html b/test/W3C_SVG_12_TinyTestSuite_beta/htmlEmbedHarness/animate-elem-212-t.html new file mode 100755 index 00000000..1e7651d0 --- /dev/null +++ b/test/W3C_SVG_12_TinyTestSuite_beta/htmlEmbedHarness/animate-elem-212-t.html @@ -0,0 +1,131 @@ + + + + + + + + +SVG 1.2 Tiny test:animate-elem-212-t + + + + + + + + + + +
+ + + + + + + + + + + + +
+

animate-elem-212-t

+
+ + + raster image of animate-elem-212-t +
+
+ + +
+

Compare from-to, from-by and by animateTransform rotate (around zero) with values animateTransform.

+

+ The main indication for a failed test is the appearance of red. +

+

+ SMIL 2 specifies, how from-to, from-by and by animations have to be converted into + values animation. Therefore they have to be the same as the related values animation. + The conversion is as follows: +

+ + + + + + + + + + + + + + + + + +
usedconverted
from="a" to="b"values="a;b"
from="a" by="b"values="a;a+b"
by="a" + values="0;a" additive="sum" +
+

+ (by and from-by animations have only a meaning, if values can be added somehow. + '0' is used as a general symbol for the neutral element of addition for the related attribute, + this means 0 + a = a + 0 = a. And '0' is not equal to the symbol '1' as the basic unit of the + related attribute, '0' is a predecessor of '1' in the related attribute space. For animateTransform + the '0' is the same as the zero matrix, not the unity or identity matrix. + For the rotate type this is a skew with an angle of 0. + Deviating from SMIL 2 in SVG it is specified, that for animateTranform the animation + effect has to be postmultiplied to the underlying value, if the animation is additive. Note + that for two additive rotate angles a, b the resulting angle is not a+b but atan(tan(a)+tan(b)). +

+

+ The from-to, from-by and by are applied to animateTransform of the rotate type + of different blue stroked + paths and are compared with the related values animations including additive and + cumulative hehaviour for underlying red paths. Additionally underlying dark red + paths simulate the same behaviour using always the defaults additive replace and + accumulate replace with animateMotion. The blue paths cover all red paths. + Therefore if something red gets visible, an error is occured. + Because fill is always not set and therefore remove, + the final value is the value at 2s given with a simple values animateTransform, not very + interesting for the test. +

+ +
+ + + diff --git a/test/W3C_SVG_12_TinyTestSuite_beta/htmlEmbedHarness/animate-elem-213-t.html b/test/W3C_SVG_12_TinyTestSuite_beta/htmlEmbedHarness/animate-elem-213-t.html new file mode 100755 index 00000000..40f9700e --- /dev/null +++ b/test/W3C_SVG_12_TinyTestSuite_beta/htmlEmbedHarness/animate-elem-213-t.html @@ -0,0 +1,131 @@ + + + + + + + + +SVG 1.2 Tiny test:animate-elem-213-t + + + + + + + + + + +
+ + + + + + + + + + + + +
+

animate-elem-213-t

+
+ + + raster image of animate-elem-213-t +
+
+ + +
+

Compare from-to, from-by and by animateTransform rotate with values animateTransform.

+

+ The main indication for a failed test is the appearance of red. +

+

+ SMIL 2 specifies, how from-to, from-by and by animations have to be converted into + values animation. Therefore they have to be the same as the related values animation. + The conversion is as follows: +

+ + + + + + + + + + + + + + + + + +
usedconverted
from="a" to="b"values="a;b"
from="a" by="b"values="a;a+b"
by="a" + values="0;a" additive="sum" +
+

+ (by and from-by animations have only a meaning, if values can be added somehow. + '0' is used as a general symbol for the neutral element of addition for the related attribute, + this means 0 + a = a + 0 = a. And '0' is not equal to the symbol '1' as the basic unit of the + related attribute, '0' is a predecessor of '1' in the related attribute space. For animateTransform + the '0' is the same as the zero matrix, not the unity or identity matrix. + For the rotate type this is a skew with an angle of 0. + Deviating from SMIL 2 in SVG it is specified, that for animateTranform the animation + effect has to be postmultiplied to the underlying value, if the animation is additive. Note + that for two additive rotate angles a, b the resulting angle is not a+b but atan(tan(a)+tan(b)). +

+

+ The from-to, from-by and by are applied to animateTransform of the rotate type + of different blue stroked + paths and are compared with the related values animations including additive and + cumulative hehaviour for underlying red paths. Additionally underlying dark red + paths simulate the same behaviour using always the defaults additive replace and + accumulate replace with animateMotion. The blue paths cover all red paths. + Therefore if something red gets visible, an error is occured. + Because fill is always not set and therefore remove, + the final value is the value at 2s given with a simple values animateTransform, not very + interesting for the test. +

+ +
+ + + diff --git a/test/W3C_SVG_12_TinyTestSuite_beta/htmlEmbedHarness/animate-elem-214-t.html b/test/W3C_SVG_12_TinyTestSuite_beta/htmlEmbedHarness/animate-elem-214-t.html new file mode 100755 index 00000000..ff71cb36 --- /dev/null +++ b/test/W3C_SVG_12_TinyTestSuite_beta/htmlEmbedHarness/animate-elem-214-t.html @@ -0,0 +1,130 @@ + + + + + + + + +SVG 1.2 Tiny test:animate-elem-214-t + + + + + + + + + + +
+ + + + + + + + + + + + +
+

animate-elem-214-t

+
+ + + raster image of animate-elem-214-t +
+
+ + +
+

Compare from-to, from-by and by animateTransform scale with values animateTransform.

+

+ The main indication for a failed test is the appearance of red. +

+

+ SMIL 2 specifies, how from-to, from-by and by animations have to be converted into + values animation. Therefore they have to be the same as the related values animation. + The conversion is as follows: +

+ + + + + + + + + + + + + + + + + +
usedconverted
from="a" to="b"values="a;b"
from="a" by="b"values="a;a+b"
by="a" + values="0;a" additive="sum" +
+

+ (by and from-by animations have only a meaning, if values can be added somehow. + '0' is used as a general symbol for the neutral element of addition for the related attribute, + this means 0 + a = a + 0 = a. And '0' is not equal to the symbol '1' as the basic unit of the + related attribute, '0' is a predecessor of '1' in the related attribute space. For animateTransform + the '0' is the same as the zero matrix, not the unity or identity matrix. + For the scale type this is a scaling with 0,0, this means no display if not added to another + value. Deviating from SMIL 2 in SVG it is specified, that for animateTranform the animation + effect has to be postmultiplied to the underlying value, if the animation is additive.) +

+

+ The from-to, from-by and by are applied to animateTransform of the scale type + of different blue stroked + paths and are compared with the related values animations including additive and + cumulative hehaviour for underlying red paths. Additionally underlying dark red + paths simulate the same behaviour using always the defaults additive replace and + accumulate replace with animateMotion. The blue paths cover all red paths. + Therefore if something red gets visible, an error is occured. + Because fill is always not set and therefore remove, + the final value is the value at 2s given with a simple values animateTransform, not very + interesting for the test. +

+ +
+ + + diff --git a/test/W3C_SVG_12_TinyTestSuite_beta/htmlEmbedHarness/animate-elem-215-t.html b/test/W3C_SVG_12_TinyTestSuite_beta/htmlEmbedHarness/animate-elem-215-t.html new file mode 100755 index 00000000..79587d6b --- /dev/null +++ b/test/W3C_SVG_12_TinyTestSuite_beta/htmlEmbedHarness/animate-elem-215-t.html @@ -0,0 +1,131 @@ + + + + + + + + +SVG 1.2 Tiny test:animate-elem-215-t + + + + + + + + + + +
+ + + + + + + + + + + + +
+

animate-elem-215-t

+
+ + + raster image of animate-elem-215-t +
+
+ + +
+

+ Compare from-to, from-by and by animateTransform translate with values + animateTransform and animateMotion. +

+

+ The main indication for a failed test is the appearance of red. +

+

+ SMIL 2 specifies, how from-to, from-by and by animations have to be converted into + values animation. Therefore they have to be the same as the related values animation. + The conversion is as follows: +

+ + + + + + + + + + + + + + + + + +
usedconverted
from="a" to="b"values="a;b"
from="a" by="b"values="a;a+b"
by="a" + values="0;a" additive="sum" +
+

+ (by and from-by animations have only a meaning, if values can be added somehow. + '0' is used as a general symbol for the neutral element of addition for the related attribute, + this means 0 + a = a + 0 = a. And '0' is not equal to the symbol '1' as the basic unit of the + related attribute, '0' is a predecessor of '1' in the related attribute space. For animateTransform + the '0' is the same as the zero matrix, not the unity or identity matrix. + For the translate type this is a translation given in coordinates: 0,0.) +

+

+ The from-to, from-by and by are applied to animateTransform of the translate type + of different blue stroked + paths and are compared with the related values animations including additive and + cumulative hehaviour for underlying red paths. Additionally underlying dark red + paths simulate the same behaviour using always the defaults additive replace and + accumulate replace with animateMotion. The blue paths cover all red paths. + Therefore if something red gets visible, an error is occured. + Because fill is always not set and therefore remove, + the final value is the value at 2s given with a simple values animateTransform, not very + interesting for the test. +

+ +
+ + + diff --git a/test/W3C_SVG_12_TinyTestSuite_beta/htmlEmbedHarness/animate-elem-216-t.html b/test/W3C_SVG_12_TinyTestSuite_beta/htmlEmbedHarness/animate-elem-216-t.html new file mode 100755 index 00000000..6cb01b46 --- /dev/null +++ b/test/W3C_SVG_12_TinyTestSuite_beta/htmlEmbedHarness/animate-elem-216-t.html @@ -0,0 +1,131 @@ + + + + + + + + +SVG 1.2 Tiny test:animate-elem-216-t + + + + + + + + + + +
+ + + + + + + + + + + + +
+

animate-elem-216-t

+
+ + + raster image of animate-elem-216-t +
+
+ + +
+

Compare from-to, from-by and by animateTransform skewX with values animateTransform.

+

+ The main indication for a failed test is the appearance of red. +

+

+ SMIL 2 specifies, how from-to, from-by and by animations have to be converted into + values animation. Therefore they have to be the same as the related values animation. + The conversion is as follows: +

+ + + + + + + + + + + + + + + + + +
usedconverted
from="a" to="b"values="a;b"
from="a" by="b"values="a;a+b"
by="a" + values="0;a" additive="sum" +
+

+ (by and from-by animations have only a meaning, if values can be added somehow. + '0' is used as a general symbol for the neutral element of addition for the related attribute, + this means 0 + a = a + 0 = a. And '0' is not equal to the symbol '1' as the basic unit of the + related attribute, '0' is a predecessor of '1' in the related attribute space. For animateTransform + the '0' is the same as the zero matrix, not the unity or identity matrix. + For the skewX type this is a skew with an angle of 0. + Deviating from SMIL 2 in SVG it is specified, that for animateTranform the animation + effect has to be postmultiplied to the underlying value, if the animation is additive. Note + that for two additive skewX angles a, b the resulting angle is not a+b but atan(tan(a)+tan(b)). +

+

+ The from-to, from-by and by are applied to animateTransform of the skewX type + of different blue stroked + paths and are compared with the related values animations including additive and + cumulative hehaviour for underlying red paths. Additionally underlying dark red + paths simulate the same behaviour using always the defaults additive replace and + accumulate replace with animateMotion. The blue paths cover all red paths. + Therefore if something red gets visible, an error is occured. + Because fill is always not set and therefore remove, + the final value is the value at 2s given with a simple values animateTransform, not very + interesting for the test. +

+ +
+ + + diff --git a/test/W3C_SVG_12_TinyTestSuite_beta/htmlEmbedHarness/animate-elem-217-t.html b/test/W3C_SVG_12_TinyTestSuite_beta/htmlEmbedHarness/animate-elem-217-t.html new file mode 100755 index 00000000..b692afcd --- /dev/null +++ b/test/W3C_SVG_12_TinyTestSuite_beta/htmlEmbedHarness/animate-elem-217-t.html @@ -0,0 +1,131 @@ + + + + + + + + +SVG 1.2 Tiny test:animate-elem-217-t + + + + + + + + + + +
+ + + + + + + + + + + + +
+

animate-elem-217-t

+
+ + + raster image of animate-elem-217-t +
+
+ + +
+

Compare from-to, from-by and by animateTransform skewY with values animateTransform.

+

+ The main indication for a failed test is the appearance of red. +

+

+ SMIL 2 specifies, how from-to, from-by and by animations have to be converted into + values animation. Therefore they have to be the same as the related values animation. + The conversion is as follows: +

+ + + + + + + + + + + + + + + + + +
usedconverted
from="a" to="b"values="a;b"
from="a" by="b"values="a;a+b"
by="a" + values="0;a" additive="sum" +
+

+ (by and from-by animations have only a meaning, if values can be added somehow. + '0' is used as a general symbol for the neutral element of addition for the related attribute, + this means 0 + a = a + 0 = a. And '0' is not equal to the symbol '1' as the basic unit of the + related attribute, '0' is a predecessor of '1' in the related attribute space. For animateTransform + the '0' is the same as the zero matrix, not the unity or identity matrix. + For the skewY type this is a skew with an angle of 0. + Deviating from SMIL 2 in SVG it is specified, that for animateTranform the animation + effect has to be postmultiplied to the underlying value, if the animation is additive. Note + that for two additive skewY angles a, b the resulting angle is not a+b but atan(tan(a)+tan(b)). +

+

+ The from-to, from-by and by are applied to animateTransform of the skewY type + of different blue stroked + paths and are compared with the related values animations including additive and + cumulative hehaviour for underlying red paths. Additionally underlying dark red + paths simulate the same behaviour using always the defaults additive replace and + accumulate replace with animateMotion. The blue paths cover all red paths. + Therefore if something red gets visible, an error is occured. + Because fill is always not set and therefore remove, + the final value is the value at 2s given with a simple values animateTransform, not very + interesting for the test. +

+ +
+ + + diff --git a/test/W3C_SVG_12_TinyTestSuite_beta/htmlEmbedHarness/animate-elem-218-t.html b/test/W3C_SVG_12_TinyTestSuite_beta/htmlEmbedHarness/animate-elem-218-t.html new file mode 100755 index 00000000..39b4f886 --- /dev/null +++ b/test/W3C_SVG_12_TinyTestSuite_beta/htmlEmbedHarness/animate-elem-218-t.html @@ -0,0 +1,100 @@ + + + + + + + + +SVG 1.2 Tiny test:animate-elem-218-t + + + + + + + + + + +
+ + + + + + + + + + + + +
+

animate-elem-218-t

+
+ + + raster image of animate-elem-218-t +
+
+ + +
+

+ xml:id or id? Identification of the element, that is target of an animation. + For authors it is recommended not to use different for id and xml:id for the same + element and not the same value for id in one element and the same value for + xml:id in another element. This is done in this document only as a (stupid) test, + not as an application. +

+

+ The main indication for a failed test is the appearance of red or no animation after 2s. +

+

+ Because for historical reasons, SVG tiny 1.2 has two fragment identifiers. + It is recommended, that xml:id is used and not only id. As a consequence + it is possible to have two different identifier values for one element. + In such a case, id is skipped and only xml:id has to be choosen. + + In this test the height of the blue rectangle is set to another value. This is compared + with a set animation of another red rectangle, having the same value for xml:id and + id. The blue rectangle has to cover always the red one. If something red is visible, + an error is occured. +

+ +
+ + + diff --git a/test/W3C_SVG_12_TinyTestSuite_beta/htmlEmbedHarness/animate-elem-219-t.html b/test/W3C_SVG_12_TinyTestSuite_beta/htmlEmbedHarness/animate-elem-219-t.html new file mode 100755 index 00000000..babbe865 --- /dev/null +++ b/test/W3C_SVG_12_TinyTestSuite_beta/htmlEmbedHarness/animate-elem-219-t.html @@ -0,0 +1,105 @@ + + + + + + + + +SVG 1.2 Tiny test:animate-elem-219-t + + + + + + + + + + +
+ + + + + + + + + + + + +
+

animate-elem-219-t

+
+ + + raster image of animate-elem-219-t +
+
+ + +
+

+ Identify the attributeType and the priority of an animation. +

+

+ The main indication for a failed test is the appearance of red. +

+

+ With the top triangle is tested, that the points attribute of a + polygon is animated using attributeType auto or XML and + is not animated if CSS is used, because there is no CSS property + points applicable for the polygon element. +

+

+ The bottom triangles test the priority for an animation with + attributeType CSS or auto over an XML animation, all for the + stroke attribute. Even if the attributeType is completely ignored, + the priority should still work for the bottom right triangle, + because the priority is set here with a later begin. +

+

+ In all cases the coloring or positioning of elements is choosen in + such a way, that normally not visible lower priority or not + applicable animations are indicated with a red stroke, + higher priority or applicable animations with a blue stroke + or an animation in the blue range. +

+ +
+ + + diff --git a/test/W3C_SVG_12_TinyTestSuite_beta/htmlEmbedHarness/animate-elem-22-t.html b/test/W3C_SVG_12_TinyTestSuite_beta/htmlEmbedHarness/animate-elem-22-t.html new file mode 100755 index 00000000..b705a993 --- /dev/null +++ b/test/W3C_SVG_12_TinyTestSuite_beta/htmlEmbedHarness/animate-elem-22-t.html @@ -0,0 +1,86 @@ + + + + + + + + +SVG 1.2 Tiny test:animate-elem-22-t + + + + + + + + + + +
+ + + + + + + + + + + + +
+

animate-elem-22-t

+
+ + + raster image of animate-elem-22-t +
+
+ + +
+

Test which verifies that the basic facilities of declarative animation are working.

+

This test uses the following element : 'animate'

+

The test is a nine second animation with no repeats. It shows a rectangle growing from small to big.

+

+ The file includes various guides that can be used to verify the correctness of the animation. Outlines exist for + the rectangle size and location at times 0s, 3s and 9s. +

+ +
+ + + diff --git a/test/W3C_SVG_12_TinyTestSuite_beta/htmlEmbedHarness/animate-elem-221-t.html b/test/W3C_SVG_12_TinyTestSuite_beta/htmlEmbedHarness/animate-elem-221-t.html new file mode 100755 index 00000000..8af58227 --- /dev/null +++ b/test/W3C_SVG_12_TinyTestSuite_beta/htmlEmbedHarness/animate-elem-221-t.html @@ -0,0 +1,92 @@ + + + + + + + + +SVG 1.2 Tiny test:animate-elem-221-t + + + + + + + + + + +
+ + + + + + + + + + + + +
+

animate-elem-221-t

+
+ + + raster image of animate-elem-221-t +
+
+ + +
+

+ Correct timing with begin, end, dur, fill, max. +

+

+ The main indication for a failed test is the appearance of red. +

+

+ Simple from to animations for cx and cy of a blue stroked + circle are stopped with max attributes. + The gray path gives the correct trajectory. + If the red center of the circle becomes visible, an error is + occured. +

+ +
+ + + diff --git a/test/W3C_SVG_12_TinyTestSuite_beta/htmlEmbedHarness/animate-elem-222-t.html b/test/W3C_SVG_12_TinyTestSuite_beta/htmlEmbedHarness/animate-elem-222-t.html new file mode 100755 index 00000000..eef5b1a5 --- /dev/null +++ b/test/W3C_SVG_12_TinyTestSuite_beta/htmlEmbedHarness/animate-elem-222-t.html @@ -0,0 +1,99 @@ + + + + + + + + +SVG 1.2 Tiny test:animate-elem-222-t + + + + + + + + + + +
+ + + + + + + + + + + + +
+

animate-elem-222-t

+
+ + + raster image of animate-elem-222-t +
+
+ + +
+

+ Correct timing with begin, end, dur, fill, min. +

+

+ The main indication for a failed test is the appearance of red. +

+

+ Simple from to animations for cx and cy of a blue stroked + circle are used with begin, dur, end, fill and min attributes and + correlated with syncbase values. + This is compared with simple animateMotion with the + same trajectory and timing. + The related red circle is always + covered by the blue stroke circle. + The gray path gives the correct trajectory. +

+

+ The test is passed if the blue circle follows the defined path. + If part of the red circle becomes visible, the test is failed. +

+ +
+ + + diff --git a/test/W3C_SVG_12_TinyTestSuite_beta/htmlEmbedHarness/animate-elem-225-t.html b/test/W3C_SVG_12_TinyTestSuite_beta/htmlEmbedHarness/animate-elem-225-t.html new file mode 100755 index 00000000..9deb9dad --- /dev/null +++ b/test/W3C_SVG_12_TinyTestSuite_beta/htmlEmbedHarness/animate-elem-225-t.html @@ -0,0 +1,87 @@ + + + + + + + + +SVG 1.2 Tiny test:animate-elem-225-t + + + + + + + + + + +
+ + + + + + + + + + + + +
+

animate-elem-225-t

+
+ + + raster image of animate-elem-225-t +
+
+ + +
+

+ This test verifies that error handling for the begin attribute is working. + An error in the begin-value-list means that the attribute as a whole is in error, and + that is the same as if the value was set to 'indefinite'. +

+

+ There should be three green rects visible. If any of them turns red the test has failed. +

+ +
+ + + diff --git a/test/W3C_SVG_12_TinyTestSuite_beta/htmlEmbedHarness/animate-elem-226-t.html b/test/W3C_SVG_12_TinyTestSuite_beta/htmlEmbedHarness/animate-elem-226-t.html new file mode 100755 index 00000000..1521c17f --- /dev/null +++ b/test/W3C_SVG_12_TinyTestSuite_beta/htmlEmbedHarness/animate-elem-226-t.html @@ -0,0 +1,109 @@ + + + + + + + + +SVG 1.2 Tiny test:animate-elem-226-t + + + + + + + + + + +
+ + + + + + + + + + + + +
+

animate-elem-226-t

+
+ + + raster image of animate-elem-226-t +
+
+ + +
+

+ The test is passed if you see a large swirly blue image, outlined in green. Below, + two smaller copies also outlined in green. Below that, a thick red outline that does + not have an image inside it. All three blue images with green outlines animate over + ten seconds, alternating between a blue and a pink image. + The animations all finish at the same time and display the pink image thereafter. +

+

+ This tests the resolving of QNames in the attributeName attribute value. The + attribute tested is href, in the XLink namespace. +

+

+ If an image is displayed on top of the red rectangle, or if the large image is not shown, or a + purple image with 'FAIL' is shown rather than blue, the implementation is using magic prefixes + and is only looking for the string 'xlink:href' rather than following the Namespaces in + XML specification. +

+

+ If the right-most of the two small images animates but the left-most does not, + the implementation is only handling animation elements that are a direct child of + the element to be animated, and does not implement animation specified by an + XLink href. In that case, the large image will not animate either, but this does + not necessarily mean that namespace resolution is incorrect. (It does mean that + the test is failed, however). +

+

+ If the two small images animate correctly but the large one does not, then + resolution of QNames in the 'attributeName' attribute is not following the + Namespaces in XML specification as required by the SVG specification. +

+ +
+ + + diff --git a/test/W3C_SVG_12_TinyTestSuite_beta/htmlEmbedHarness/animate-elem-227-t.html b/test/W3C_SVG_12_TinyTestSuite_beta/htmlEmbedHarness/animate-elem-227-t.html new file mode 100755 index 00000000..2e5d65c5 --- /dev/null +++ b/test/W3C_SVG_12_TinyTestSuite_beta/htmlEmbedHarness/animate-elem-227-t.html @@ -0,0 +1,101 @@ + + + + + + + + +SVG 1.2 Tiny test:animate-elem-227-t + + + + + + + + + + +
+ + + + + + + + + + + + +
+

animate-elem-227-t

+
+ + + raster image of animate-elem-227-t +
+
+ + +
+ +

+ Tests animateColor with the values currentColor, inherit and none. The test is + passed if: +

+ + +
+ + + diff --git a/test/W3C_SVG_12_TinyTestSuite_beta/htmlEmbedHarness/animate-elem-23-t.html b/test/W3C_SVG_12_TinyTestSuite_beta/htmlEmbedHarness/animate-elem-23-t.html new file mode 100755 index 00000000..2d1819e0 --- /dev/null +++ b/test/W3C_SVG_12_TinyTestSuite_beta/htmlEmbedHarness/animate-elem-23-t.html @@ -0,0 +1,86 @@ + + + + + + + + +SVG 1.2 Tiny test:animate-elem-23-t + + + + + + + + + + +
+ + + + + + + + + + + + +
+

animate-elem-23-t

+
+ + + raster image of animate-elem-23-t +
+
+ + +
+

Test which verifies that the basic facilities of declarative animation are working.

+

This test uses the following elements : 'set', and 'animateColor

+

The test is a nine second animation with no repeats. It shows a circle changing color from 3s to 9s.

+

+ The file includes various guides that can be used to verify the correctness of the animation. Boxes on the left + show the correct circle color values at times 3s, 6s and 9s. +

+ +
+ + + diff --git a/test/W3C_SVG_12_TinyTestSuite_beta/htmlEmbedHarness/animate-elem-24-t.html b/test/W3C_SVG_12_TinyTestSuite_beta/htmlEmbedHarness/animate-elem-24-t.html new file mode 100755 index 00000000..f4170ae2 --- /dev/null +++ b/test/W3C_SVG_12_TinyTestSuite_beta/htmlEmbedHarness/animate-elem-24-t.html @@ -0,0 +1,89 @@ + + + + + + + + +SVG 1.2 Tiny test:animate-elem-24-t + + + + + + + + + + +
+ + + + + + + + + + + + +
+

animate-elem-24-t

+
+ + + raster image of animate-elem-24-t +
+
+ + +
+

Test which verifies that the basic facilities of declarative animation are working.

+

This test uses the following elements : 'animateMotion' and 'animateTransform'

+

+ The test is a nine second animation with no repeats. It shows the text string "It's alive" moving, rotating and + growing from time 3s to 9s. +

+

+ The file includes various guides that can be used to verify the correctness of the animation. Pale blue guides + exist for the text size, location and orientation at times 3s, 6s and 9s. +

+ +
+ + + diff --git a/test/W3C_SVG_12_TinyTestSuite_beta/htmlEmbedHarness/animate-elem-25-t.html b/test/W3C_SVG_12_TinyTestSuite_beta/htmlEmbedHarness/animate-elem-25-t.html new file mode 100755 index 00000000..d7814363 --- /dev/null +++ b/test/W3C_SVG_12_TinyTestSuite_beta/htmlEmbedHarness/animate-elem-25-t.html @@ -0,0 +1,88 @@ + + + + + + + + +SVG 1.2 Tiny test:animate-elem-25-t + + + + + + + + + + +
+ + + + + + + + + + + + +
+

animate-elem-25-t

+
+ + + raster image of animate-elem-25-t +
+
+ + +
+

Test animation options for specifying the target attribute/property.

+

+ The left-hand rectangle animates an XML attribute without specifying a value for 'attributeType'. The right-hand rectangle + animates an XML attribute and does set 'attributeType' to 'XML'. +

+

+ The left rectangle animates its height from 100 to 50, starting at time 3 seconds and ending at 6 seconds. The right + rectangle animates its height from 100 to 50, starting at time 6 seconds and ending at 9 seconds. +

+ +
+ + + diff --git a/test/W3C_SVG_12_TinyTestSuite_beta/htmlEmbedHarness/animate-elem-26-t.html b/test/W3C_SVG_12_TinyTestSuite_beta/htmlEmbedHarness/animate-elem-26-t.html new file mode 100755 index 00000000..f721b813 --- /dev/null +++ b/test/W3C_SVG_12_TinyTestSuite_beta/htmlEmbedHarness/animate-elem-26-t.html @@ -0,0 +1,85 @@ + + + + + + + + +SVG 1.2 Tiny test:animate-elem-26-t + + + + + + + + + + +
+ + + + + + + + + + + + +
+

animate-elem-26-t

+
+ + + raster image of animate-elem-26-t +
+
+ + +
+

Test animation options for specifying the target attribute/property.

+

+ On the left, a circle animates the stroke-width property without specifying a value for 'attributeType'. On the right + a circle animates the stroke-width property and does set 'attributeType' to 'CSS'. +

+

For each circle, guides shows what the stroke-width looks like initially and what it looks like at the end of the animation.

+ +
+ + + diff --git a/test/W3C_SVG_12_TinyTestSuite_beta/htmlEmbedHarness/animate-elem-27-t.html b/test/W3C_SVG_12_TinyTestSuite_beta/htmlEmbedHarness/animate-elem-27-t.html new file mode 100755 index 00000000..5098148f --- /dev/null +++ b/test/W3C_SVG_12_TinyTestSuite_beta/htmlEmbedHarness/animate-elem-27-t.html @@ -0,0 +1,91 @@ + + + + + + + + +SVG 1.2 Tiny test:animate-elem-27-t + + + + + + + + + + +
+ + + + + + + + + + + + +
+

animate-elem-27-t

+
+ + + raster image of animate-elem-27-t +
+
+ + +
+

Test animation options for specifying the target element.

+

+ The leftmost rectangle verifies the use of the 'xlink:href' attribute to indicate the target element to be + animated. The rightmost rectangle verifies animating the parent of the 'animate' element (in this case, a 'rect' + element) (i.e., the implicit parent of the 'animate' element). +

+

+ At time 0, two rectangles filled with red and stroked with blue appear, each with width=100 and height=200. + Starting at time 3 seconds and ending at time 6 seconds, the height of the leftmost rectangle decreases from 200 + to 50. Starting at time 6 seconds and ending at time 9 seconds, the rightmost rectangle decreases from 200 to 50. + Annotations on the picture show the correct positions at particular times. +

+ +
+ + + diff --git a/test/W3C_SVG_12_TinyTestSuite_beta/htmlEmbedHarness/animate-elem-28-t.html b/test/W3C_SVG_12_TinyTestSuite_beta/htmlEmbedHarness/animate-elem-28-t.html new file mode 100755 index 00000000..ce7b8fcc --- /dev/null +++ b/test/W3C_SVG_12_TinyTestSuite_beta/htmlEmbedHarness/animate-elem-28-t.html @@ -0,0 +1,84 @@ + + + + + + + + +SVG 1.2 Tiny test:animate-elem-28-t + + + + + + + + + + +
+ + + + + + + + + + + + +
+

animate-elem-28-t

+
+ + + raster image of animate-elem-28-t +
+
+ + +
+

Test inheritance of animated properties.

+

+ A yellow happy face should be displayed. The stroke for the smile and yellow circle are both animated, the stroke + goes from "#F1E900" to "#FF0000". +

+ +
+ + + diff --git a/test/W3C_SVG_12_TinyTestSuite_beta/htmlEmbedHarness/animate-elem-29-t.html b/test/W3C_SVG_12_TinyTestSuite_beta/htmlEmbedHarness/animate-elem-29-t.html new file mode 100755 index 00000000..8fedcd77 --- /dev/null +++ b/test/W3C_SVG_12_TinyTestSuite_beta/htmlEmbedHarness/animate-elem-29-t.html @@ -0,0 +1,103 @@ + + + + + + + + +SVG 1.2 Tiny test:animate-elem-29-t + + + + + + + + + + +
+ + + + + + + + + + + + +
+

animate-elem-29-t

+
+ + + raster image of animate-elem-29-t +
+
+ + +
+

Test compositing of animated fill opacity.

+

+ The assumption is that you will first click on "fade in" and then click on "fade out", each exactly once. The + first time you select the link 'fade in', you should see a red square appearing, gradually and smoothly fading + from zero to 100% opacity over the course of three seconds. This square is in front of and thus obscures the + lower left circle, but is behind the upper right circle which is thus is composited on top of the animated red + square. Then, when you click on "fade out", the red square will gradually disappear, smoothly fading from 100% + to zero opacity over the course of three seconds. +

+

+ The rendered picture should match the reference image, (except for possible variations in the labelling text + (per CSS2 rules)) after activating the link on the fade-in button the first time and waiting three seconds for + the animation to compete. The picture should remain looking the same way indefinitely, until another link is + activated. +

+

+ With the second click on "fade in", however, the behavior might be different. In the case of having a first + click on "fade in", waiting three seconds, and then immediately perform a first click on "fade out", waiting + three seconds, and then immediately perform a second click on "fade in", you should see the following. After + the first click on "fade in", the red square goes from zero to 100% opacity. After the first click on "fade out", + the red square goes from 100% to zero opacity. After the second click on "fade in", however, the red square goes + from zero to 100% opacity, and then goes back from 100% to zero opacity. This is because of the hyperlinking rules + as they relate to resolved start times in the SMIL 2.1 specification. +

+ +
+ + + diff --git a/test/W3C_SVG_12_TinyTestSuite_beta/htmlEmbedHarness/animate-elem-30-t.html b/test/W3C_SVG_12_TinyTestSuite_beta/htmlEmbedHarness/animate-elem-30-t.html new file mode 100755 index 00000000..d90275e2 --- /dev/null +++ b/test/W3C_SVG_12_TinyTestSuite_beta/htmlEmbedHarness/animate-elem-30-t.html @@ -0,0 +1,87 @@ + + + + + + + + +SVG 1.2 Tiny test:animate-elem-30-t + + + + + + + + + + +
+ + + + + + + + + + + + +
+

animate-elem-30-t

+
+ + + raster image of animate-elem-30-t +
+
+ + +
+

The purpose of this test is to test animated <use> where the referenced <defs> also is animated.

+

+ The test shows 6 different elements, each element defined in a <defs> and referenced with a <use>. + All the elements are animated between 0-3 seconds. The expected animation transform is indicated with a gray + silhouette showing the border values (0 and 3 seconds) and an arrow indicating the movement in between. For the + two elements with a color animation, the colors goes from white to blue (the same blue color used for all + elements). +

+ +
+ + + diff --git a/test/W3C_SVG_12_TinyTestSuite_beta/htmlEmbedHarness/animate-elem-31-t.html b/test/W3C_SVG_12_TinyTestSuite_beta/htmlEmbedHarness/animate-elem-31-t.html new file mode 100755 index 00000000..8b082cae --- /dev/null +++ b/test/W3C_SVG_12_TinyTestSuite_beta/htmlEmbedHarness/animate-elem-31-t.html @@ -0,0 +1,91 @@ + + + + + + + + +SVG 1.2 Tiny test:animate-elem-31-t + + + + + + + + + + +
+ + + + + + + + + + + + +
+

animate-elem-31-t

+
+ + + raster image of animate-elem-31-t +
+
+ + +
+

The purpose of this test is to test animation of the display attribute.

+

+ The test shows two gray rectangles which are filled with colored circles during the length of the animation + (8 sec). The circles in the top rectangle are displayed/hidden by animating the display attribute.The circles in + the bottom rectangle are serving as the reference and are displayed/hidden by animating the visibility attribute. + A correct implementation should display/hide circles with the same color from the top and bottom rectangle at the + same time. +

+

+ In total there are 6 different circles (purple, green, red, blue, yellow, cyan) in 5 positions (blue and yellow + share position) that should be displayed during the test. +

+ +
+ + + diff --git a/test/W3C_SVG_12_TinyTestSuite_beta/htmlEmbedHarness/animate-elem-32-t.html b/test/W3C_SVG_12_TinyTestSuite_beta/htmlEmbedHarness/animate-elem-32-t.html new file mode 100755 index 00000000..8769281c --- /dev/null +++ b/test/W3C_SVG_12_TinyTestSuite_beta/htmlEmbedHarness/animate-elem-32-t.html @@ -0,0 +1,84 @@ + + + + + + + + +SVG 1.2 Tiny test:animate-elem-32-t + + + + + + + + + + +
+ + + + + + + + + + + + +
+

animate-elem-32-t

+
+ + + raster image of animate-elem-32-t +
+
+ + +
+

Tests the animation to and from the degenerate cases of the basic shapes. The shapes are drawn within the black rectangles.

+

+ The rendered picture should match the reference image at the end of the animation, except for possible variations in the + labelling text (per CSS2 rules). +

+ +
+ + + diff --git a/test/W3C_SVG_12_TinyTestSuite_beta/htmlEmbedHarness/animate-elem-33-t.html b/test/W3C_SVG_12_TinyTestSuite_beta/htmlEmbedHarness/animate-elem-33-t.html new file mode 100755 index 00000000..9a674f96 --- /dev/null +++ b/test/W3C_SVG_12_TinyTestSuite_beta/htmlEmbedHarness/animate-elem-33-t.html @@ -0,0 +1,92 @@ + + + + + + + + +SVG 1.2 Tiny test:animate-elem-33-t + + + + + + + + + + +
+ + + + + + + + + + + + +
+

animate-elem-33-t

+
+ + + raster image of animate-elem-33-t +
+
+ + +
+

The purpose of this test is to test animateMotion with keyPoints and keyTimes.

+

+ The test consists of 4 sub-tests. Each test has a purple circle which moves along a path. The path is indicated + with a dashed line and sample points where the circle should pass a certain position on the path is indicated with + gray circles. On top of each gray circle is a number which indicates the passing time in seconds. In the cases + where the purple circle should pass the gray circle two times the first passing time is written above the gray + circle and the second passing time is written below. +

+

+ Section 16.2.13 in the spec. states that a motion path is defined by the path attribute or by values or from/to + attributes. So in the animateMotion case, values is just used for defining the motionPath and the number of values + do not have to relate to the number of keyTimes. +

+ +
+ + + diff --git a/test/W3C_SVG_12_TinyTestSuite_beta/htmlEmbedHarness/animate-elem-34-t.html b/test/W3C_SVG_12_TinyTestSuite_beta/htmlEmbedHarness/animate-elem-34-t.html new file mode 100755 index 00000000..1c809777 --- /dev/null +++ b/test/W3C_SVG_12_TinyTestSuite_beta/htmlEmbedHarness/animate-elem-34-t.html @@ -0,0 +1,94 @@ + + + + + + + + +SVG 1.2 Tiny test:animate-elem-34-t + + + + + + + + + + +
+ + + + + + + + + + + + +
+

animate-elem-34-t

+
+ + + raster image of animate-elem-34-t +
+
+ + +
+

The purpose of this test is to test animation of attributes points and fill-rule.

+

+ The test consists of 2 sub-tests. The first test is a polygon shaped as a digit. The polygon has an animation on + its vertex points which morphs the polygon between the numbers 1, 2, 3 and 4. The gray outlines indicates the + expected position of the polygon at 1, 2, 3 and 4s. The second test is 4 paths in a u-shape. They have animated + fill-rules. Their initial fill-rules are, from left to right, nonzero, evenodd, nonzero (by default value, no + fill-rule attribute set) and nonzero (by default value, no fill-rule attribute set). This means, that the second + path is initially u-shaped, and all other paths are initially rect-shaped. All four animations are set to evenodd + as a last stage. The further expected result is that one path at a time is filled. The other three paths are not + filled but have the u-shape. The fourth animation from evenodd to nonzero happens by going back to the initial + state, because the fill attribute is not set to freeze. Which path that should be filled at which time is indicated + by the number above it (indicating time in seconds). To enhance the difference between the filled path and the rest, + the filled path should always have the same color as the morphing polygon. This is achieved by a discrete color + animation. +

+ +
+ + + diff --git a/test/W3C_SVG_12_TinyTestSuite_beta/htmlEmbedHarness/animate-elem-35-t.html b/test/W3C_SVG_12_TinyTestSuite_beta/htmlEmbedHarness/animate-elem-35-t.html new file mode 100755 index 00000000..4f3cb118 --- /dev/null +++ b/test/W3C_SVG_12_TinyTestSuite_beta/htmlEmbedHarness/animate-elem-35-t.html @@ -0,0 +1,103 @@ + + + + + + + + +SVG 1.2 Tiny test:animate-elem-35-t + + + + + + + + + + +
+ + + + + + + + + + + + +
+

animate-elem-35-t

+
+ + + raster image of animate-elem-35-t +
+
+ + +
+

+ The purpose of this test is to test animation of attributes stroke-dasharray, + stroke-dashoffset, stroke-miterlimit, stroke-linecap and stroke-linjoin. +

+

+ This file contains four tests, testing animation of five attributes. + The first test animates the stroke-dashoffset. There are seven reference polylines, all with + the same stroke-dasharray but with different values on their stroke-dashoffset. A red polyline + with the same stroke-dash array has an animation on its stroke-dasharray. The red polyline is + animated so that it stops by the reference polyline that has the right stroke-dashoffset at + that perticular time. + The second test animates stroke-linecap and stroke-linejoin. There are three reference + polylines. Comparsion is done in the same manner as in the previous test. + The third test animates the stroke-miterlimit. There are two sets offilled reference paths + (black) and two outlined paths (red) with animated stroke-miterlimit. The paths are shaped like + a capital A. In the upper test the animated path is drawn on top of the reference polygons and + in the lower test the reference path is drawn on top of the animated path. As the + stroke-miterlimit is animated to different values, different reference paths are used. To pass + the test, there should never be any part of the underlying geometry visible (black in the upper + or red in the lower). + The fourth test animates the stroke-dasharray. The initial stroke-dasharray gives a + short-dashed line. This pattern is animated into a pattern that on this short path gives a + solid line at 2 seconds. +

+ +
+ + + diff --git a/test/W3C_SVG_12_TinyTestSuite_beta/htmlEmbedHarness/animate-elem-36-t.html b/test/W3C_SVG_12_TinyTestSuite_beta/htmlEmbedHarness/animate-elem-36-t.html new file mode 100755 index 00000000..764ac13a --- /dev/null +++ b/test/W3C_SVG_12_TinyTestSuite_beta/htmlEmbedHarness/animate-elem-36-t.html @@ -0,0 +1,85 @@ + + + + + + + + +SVG 1.2 Tiny test:animate-elem-36-t + + + + + + + + + + +
+ + + + + + + + + + + + +
+

animate-elem-36-t

+
+ + + raster image of animate-elem-36-t +
+
+ + +
+

This test validates the animation of the transform attribute on structure elements, hyperlinks and text elements.

+

+ The test applies an <animateTransform> on various element types: <g>, <use>, <image>, + <switch>, <a> and <text>. In all cases, the type is a rotation and all the elements should rotate + together about their centers, for 3s, starting at the document's load time.

+

The static reference image shows the final state of the animation.

+ +
+ + + diff --git a/test/W3C_SVG_12_TinyTestSuite_beta/htmlEmbedHarness/animate-elem-37-t.html b/test/W3C_SVG_12_TinyTestSuite_beta/htmlEmbedHarness/animate-elem-37-t.html new file mode 100755 index 00000000..ccdf87e0 --- /dev/null +++ b/test/W3C_SVG_12_TinyTestSuite_beta/htmlEmbedHarness/animate-elem-37-t.html @@ -0,0 +1,86 @@ + + + + + + + + +SVG 1.2 Tiny test:animate-elem-37-t + + + + + + + + + + +
+ + + + + + + + + + + + +
+

animate-elem-37-t

+
+ + + raster image of animate-elem-37-t +
+
+ + +
+

This test validates the animation of the transform attribute shape elements.

+

+ The test applies an <animateTransform> on various element types: <g>, <use>, <image>, + <switch>, <a> and <text>. In all cases the animation should run for 3s, starting at the + document's load time. The <circle> has a scale animation, and all the rest of the elements should rotate + together about their centers. The static reference image shows the final state of the animation. +

+ +
+ + + diff --git a/test/W3C_SVG_12_TinyTestSuite_beta/htmlEmbedHarness/animate-elem-38-t.html b/test/W3C_SVG_12_TinyTestSuite_beta/htmlEmbedHarness/animate-elem-38-t.html new file mode 100755 index 00000000..fa223398 --- /dev/null +++ b/test/W3C_SVG_12_TinyTestSuite_beta/htmlEmbedHarness/animate-elem-38-t.html @@ -0,0 +1,85 @@ + + + + + + + + +SVG 1.2 Tiny test:animate-elem-38-t + + + + + + + + + + +
+ + + + + + + + + + + + +
+

animate-elem-38-t

+
+ + + raster image of animate-elem-38-t +
+
+ + +
+

The purpose of this test is to test animation of the viewBox attribute.

+

+ This file tests animation of the viewBow attribute. The viewBox changes position and size several times. At each + new setting, a green indicator frame will flash a couple of times. This frame must only appear at the edges of + the SVG element. +

+ +
+ + + diff --git a/test/W3C_SVG_12_TinyTestSuite_beta/htmlEmbedHarness/animate-elem-39-t.html b/test/W3C_SVG_12_TinyTestSuite_beta/htmlEmbedHarness/animate-elem-39-t.html new file mode 100755 index 00000000..57fe8f95 --- /dev/null +++ b/test/W3C_SVG_12_TinyTestSuite_beta/htmlEmbedHarness/animate-elem-39-t.html @@ -0,0 +1,100 @@ + + + + + + + + +SVG 1.2 Tiny test:animate-elem-39-t + + + + + + + + + + +
+ + + + + + + + + + + + +
+

animate-elem-39-t

+
+ + + raster image of animate-elem-39-t +
+
+ + +
+

+ This test validates that the xlink:href attribute can be animated on the <a>, <image> and <use> + elements, using the <animate> or <set> animation elements. +

+

+ For the <a> animation, showing on the left-most column, the number indicates the number of the animation + test currently linked by the xlink:href attribute. For example, when the xlink:href animated value is + "animate-elem-38-t.svg", the text displays "38". When the user clicks on the displayed number, the user agent + should open the corresponding link. For example, if the user clicks on 38, then the "animate-elem-38-t.svg" URI + should be followed. If the user clicks on 02, then the "animate-elem-02-t.svg" URI should be followed. +

+

+ For the <image> animations, the image xlink:href attribute cycles through two values showing a sun set and + a picture of the sydney opera. The image should change every second and the images shown by the <set> and + <animate> animations should always match. +

+

+ For the <use> animations, the use xlink:href attribute cycles through values "#useA" and "#useB" which + reference text elements displaying values "Use A" and "Use B". The change should happen every second and the text + shown for the two animations (<set> and <animation>) should always match. +

+ +
+ + + diff --git a/test/W3C_SVG_12_TinyTestSuite_beta/htmlEmbedHarness/animate-elem-40-t.html b/test/W3C_SVG_12_TinyTestSuite_beta/htmlEmbedHarness/animate-elem-40-t.html new file mode 100755 index 00000000..4fcdf3d7 --- /dev/null +++ b/test/W3C_SVG_12_TinyTestSuite_beta/htmlEmbedHarness/animate-elem-40-t.html @@ -0,0 +1,96 @@ + + + + + + + + +SVG 1.2 Tiny test:animate-elem-40-t + + + + + + + + + + +
+ + + + + + + + + + + + +
+

animate-elem-40-t

+
+ + + raster image of animate-elem-40-t +
+
+ + +
+

+ This test validates that the x and y attributes can be animated on <use>, <image>, <rect> and + <text> elements. The test also validates that the width and height attributes can be animated on <image> + and <rect> +

+

+ For x and y animation, each test shows the reference positions at specific points in the animation. These markers + are highlighted at the time the target element's x/y position should match that of the marker. For the <text> + element, there are two tests. The first one tests animating a single value on the text's x and y attributes. The + second one tests animating x, y values where there are values for each of the text's characters. For that test + (bottom left), there is a set of reference markers for each of the characters ('1' and '2'). +

+

+ For width and height animation (the two tests on the bottom right), the outline showing the expected width and + height at given points in the animation is highlighted at the time the marker's width and height should match that + of the target element. +

+ +
+ + + diff --git a/test/W3C_SVG_12_TinyTestSuite_beta/htmlEmbedHarness/animate-elem-41-t.html b/test/W3C_SVG_12_TinyTestSuite_beta/htmlEmbedHarness/animate-elem-41-t.html new file mode 100755 index 00000000..36f65b52 --- /dev/null +++ b/test/W3C_SVG_12_TinyTestSuite_beta/htmlEmbedHarness/animate-elem-41-t.html @@ -0,0 +1,100 @@ + + + + + + + + +SVG 1.2 Tiny test:animate-elem-41-t + + + + + + + + + + +
+ + + + + + + + + + + + +
+

animate-elem-41-t

+
+ + + raster image of animate-elem-41-t +
+
+ + +
+

+ This test validates the operation of the animate element on the various graphics properties. This test is very + similar to animate-elem-78-t which uses the set element instead of the animate element to modify graphics properties. +

+

+ For each of the graphics properties, there are three tests. One animates the graphics property directly on an + element (such as a rect or a line) which uses the property. The other two tests apply the animation on a container + element (g and a), and validate that the animated property is inherited by elements which are child of the container. +

+

+ For each animation test, the element on which the animation is applied is also translated by an animation so that + the various states of the animation can be checked more easily. In most tests, there is a gray reference marker + which shows the expected animation state at the begining of the animation, mid-way, or at the end of the animation. +

+

+ The following animations should show continuous changes: fill, stroke, stroke-width, stroke-miterlimit, + stroke-dashoffset and color. Note that visually, stroke-miterlimit shows a sharp transition, but that is because + the miter is cut off when the animated miter limit reaches the test sharp angle's miter value. The stroke-miterlimit + value is changed continously but that is not visible in this test. +

+

The following animations have a discrete behavior: fill-rule, stroke-linecap, stroke-linejoin, display and visibility.

+ +
+ + + diff --git a/test/W3C_SVG_12_TinyTestSuite_beta/htmlEmbedHarness/animate-elem-44-t.html b/test/W3C_SVG_12_TinyTestSuite_beta/htmlEmbedHarness/animate-elem-44-t.html new file mode 100755 index 00000000..41358e1a --- /dev/null +++ b/test/W3C_SVG_12_TinyTestSuite_beta/htmlEmbedHarness/animate-elem-44-t.html @@ -0,0 +1,85 @@ + + + + + + + + +SVG 1.2 Tiny test:animate-elem-44-t + + + + + + + + + + +
+ + + + + + + + + + + + +
+

animate-elem-44-t

+
+ + + raster image of animate-elem-44-t +
+
+ + +
+

The purpose of this test is to test animation of the d attribute of the path element.

+

+ This test consists of a path, specified as a series of lineto commands, whose d attribute is animated. The path + morphs between the numbers 1, 2, 3, and 4. The gray outlines indicates the expected position of the polygon at + 1, 2, 3 and 4s. The test contains an animated circle that indicates where the path should be at a given time. +

+ +
+ + + diff --git a/test/W3C_SVG_12_TinyTestSuite_beta/htmlEmbedHarness/animate-elem-46-t.html b/test/W3C_SVG_12_TinyTestSuite_beta/htmlEmbedHarness/animate-elem-46-t.html new file mode 100755 index 00000000..564074f1 --- /dev/null +++ b/test/W3C_SVG_12_TinyTestSuite_beta/htmlEmbedHarness/animate-elem-46-t.html @@ -0,0 +1,96 @@ + + + + + + + + +SVG 1.2 Tiny test:animate-elem-46-t + + + + + + + + + + +
+ + + + + + + + + + + + +
+

animate-elem-46-t

+
+ + + raster image of animate-elem-46-t +
+
+ + +
+

+ This test validates the operation of the animate element on the various text and font properties. This test is + very similar to animate-elem-77-t.svg which uses the set element instead of the animate element to modify graphics + properties. +

+

+ For each text or font properties, there are three tests. One animates the text or font property directly on a + text element which uses the property. The other two tests apply the animation on a container element (g and a), + and validate that the animated property is inherited by children text elements. +

+

+ For each animation test, the element on which the animation is applied is also translated by an animation so that + the various states of the animation can be checked more easily. There is a gray reference marker which shows the + expected animation state at the begining of the animation, mid-way, or at the end of the animation. +

+

Only the animation of font-size should show a continuous change of the font size.

+

The following animations have a discrete behavior: text-anchor, font-family, font-style, font-weight.

+ +
+ + + diff --git a/test/W3C_SVG_12_TinyTestSuite_beta/htmlEmbedHarness/animate-elem-52-t.html b/test/W3C_SVG_12_TinyTestSuite_beta/htmlEmbedHarness/animate-elem-52-t.html new file mode 100755 index 00000000..83547c2c --- /dev/null +++ b/test/W3C_SVG_12_TinyTestSuite_beta/htmlEmbedHarness/animate-elem-52-t.html @@ -0,0 +1,114 @@ + + + + + + + + +SVG 1.2 Tiny test:animate-elem-52-t + + + + + + + + + + +
+ + + + + + + + + + + + +
+

animate-elem-52-t

+
+ + + raster image of animate-elem-52-t +
+
+ + +
+

The purpose of this test is to test eventbase targets.

+

+ The test consists of 4 rectangles named A, B, C, D. The D rectangle contains three animations changing the color + of the animation target. Each animation applies to one of the other rectangles by using xlink:href="". Clicking on + rect A should change it's color immediately, clicking B changes its color after 2 seconds, clicking C changes its + color after 4 seconds and clicking D shows no visible change (although D contains the animations the event target + for each animation is the referenced rectangle, this rectangle is also the animation target.) +

+

+ The following sections in SMIL 2.1 are relevant as + confirmation of this test: +

+
+ +
+ +
+ + + diff --git a/test/W3C_SVG_12_TinyTestSuite_beta/htmlEmbedHarness/animate-elem-53-t.html b/test/W3C_SVG_12_TinyTestSuite_beta/htmlEmbedHarness/animate-elem-53-t.html new file mode 100755 index 00000000..d7364a6a --- /dev/null +++ b/test/W3C_SVG_12_TinyTestSuite_beta/htmlEmbedHarness/animate-elem-53-t.html @@ -0,0 +1,120 @@ + + + + + + + + +SVG 1.2 Tiny test:animate-elem-53-t + + + + + + + + + + +
+ + + + + + + + + + + + +
+

animate-elem-53-t

+
+ + + raster image of animate-elem-53-t +
+
+ + +
+

+ The purpose of this test is to test animation of points and calcMode. +

+

+ 1. The green squares should animate together side by side. This applies + to the red ones as well. + 2. The time values indicate when the squares should reach the + corresponding reference square. + 3. The total distance is 0+40+80+24.14=144.14 + a. The "green animation" is 9 sec and linear so each interval + should get 3 sec. + b. The "red animation" is 8 sec and paced so the intervals + should get 2.22, 4.44 and 1.34 sec each. +

+

+ Here comes a more detailed description of the animation. + + The left green square (LG) is animated by animating the points with + a value array, consisting of 4 lists of points. This is an animation + with calcMode="linear" so an equal amount of time should be spent on + all 4 intervals. The right green square (RG) is animated by a simple + linear motion followed by a scale to follow LG. + The last scale by 1.9428 correspond to a movement of the lover right + corner of the square by sqrt((30*0.9428)^2 + (30*0.9428)^2) which is + approximately 40 distance units. This is the same distance as the first + interval in the values array (and half the second interval). + The length (in terms of distance) is not really important for the + green squares but for the red squares which are animated with + calcMode="paced" the length is used to calculate the time for each + interval. + Since the first and last interval are of the same length which + totals to the length of the middle interval, the interval should + be given time according to [27.75%(2.22sec);55.5%(4.44sec);16.75%(1.34sec)]. + + So the left red square (LR) is animated just as the LG square but + with calcMode="paced". The same applies to the right red square (RR) + that has default calcMode ("paced" for animateMotion) compared to the + RG square that has calcMode="linear". + The calcMode for the scale of RR (and RG) is not important since + it's not a value list type of animation. +

+ +
+ + + diff --git a/test/W3C_SVG_12_TinyTestSuite_beta/htmlEmbedHarness/animate-elem-61-t.html b/test/W3C_SVG_12_TinyTestSuite_beta/htmlEmbedHarness/animate-elem-61-t.html new file mode 100755 index 00000000..8912d443 --- /dev/null +++ b/test/W3C_SVG_12_TinyTestSuite_beta/htmlEmbedHarness/animate-elem-61-t.html @@ -0,0 +1,111 @@ + + + + + + + + +SVG 1.2 Tiny test:animate-elem-61-t + + + + + + + + + + +
+ + + + + + + + + + + + +
+

animate-elem-61-t

+
+ + + raster image of animate-elem-61-t +
+
+ + +
+

+ This tests validates multiple begin conditions in the begin attribute, assuming support for the <set> + element and setting the fill attribute on a <rect> element. +

+

+ The test validates the various possibilities for the begin attribute value: multiple offset values, multiple + event base values, multiple sync base values, multiple repeat values, and multiple accessKey values. Finally, + the test validates that begin values of different kinds can be mixed. +

+

The test shows 6 rows where a red rectangle' s x attribute is animated with <set> elements.

+

+ On the first three rows, the red rectangles should show on the left from 0 to 1s. From 1 to 2s, the rectangles + should show on the right. Then the rectangles should show on the left from 2 to 4s, then on the right again from + 4 to 5s and come back to the left position and stay there after 5s. +

+

+ On the fourth row, the rectangle's begin condition is event based and requires a user click. After the user clicks + on the rectangle, the rectangle should move to the right position for 1s, then move back to the left position for + 3 seconds, move again to the right position for 1 second before going back to the left position. +

+

+ On the fifth row, the rectangle's begin condition is accessKey based and requires a user to press the 'a' key. + After the user presses that key the rectangle should move to the right position for 1s, then move back to the left + position for 3 seconds, move again to the right position for 1 second before going back to the left position. +

+

+ The last row's rectangle has a begin condition with two offset values (1s;4s) and should behave like the rectangles + of the first three rows for the first 5 seconds of the document's timeline. In addition, the begin condition has a + click event base and thus, the rectangle should move to the right position for one second every time the user clicks + on it. Finally, the begin condition also has an accessKey condition for the 'b' character. Thus, the rectangle + should move to the right position every time the user presses the 'b' key. +

+ +
+ + + diff --git a/test/W3C_SVG_12_TinyTestSuite_beta/htmlEmbedHarness/animate-elem-64-t.html b/test/W3C_SVG_12_TinyTestSuite_beta/htmlEmbedHarness/animate-elem-64-t.html new file mode 100755 index 00000000..2fa86caa --- /dev/null +++ b/test/W3C_SVG_12_TinyTestSuite_beta/htmlEmbedHarness/animate-elem-64-t.html @@ -0,0 +1,96 @@ + + + + + + + + +SVG 1.2 Tiny test:animate-elem-64-t + + + + + + + + + + +
+ + + + + + + + + + + + +
+

animate-elem-64-t

+
+ + + raster image of animate-elem-64-t +
+
+ + +
+

This tests performs basic tests on the dur attribute.

+

+ 'The first row shows a red rectangle subject to a <set> animation with no begin attribute, no end attribute + and a dur attribute set to '2s'. Therefore, the animation should be active from 0 to 2 seconds and then terminate. + Consequently, the rectangle should show on the right for the first two seconds, and then move to the left position. +

+

+ The second row shows a red rectangle subject to a <set> animation with no begin attribute, no end attribute + and a dur attribute set to 'indefinite'. Therefore, the animation should stay active indefinitely and the rectangle + should always be on the right position, never on the left position. +

+

+ Finally, the third row shows red rectangle subject to a <set> animation with no begin attribute, no end + attribute and a dur attribute set to 'media'. In the context of SVG 1.1, this is equivalent to an 'indefinite' + value. Therefore, the animation should stay active indefinitely and the rectangle should always be on the right + position, never on the left position. +

+ +
+ + + diff --git a/test/W3C_SVG_12_TinyTestSuite_beta/htmlEmbedHarness/animate-elem-65-t.html b/test/W3C_SVG_12_TinyTestSuite_beta/htmlEmbedHarness/animate-elem-65-t.html new file mode 100755 index 00000000..20631b7d --- /dev/null +++ b/test/W3C_SVG_12_TinyTestSuite_beta/htmlEmbedHarness/animate-elem-65-t.html @@ -0,0 +1,133 @@ + + + + + + + + +SVG 1.2 Tiny test:animate-elem-65-t + + + + + + + + + + +
+ + + + + + + + + + + + +
+

animate-elem-65-t

+
+ + + raster image of animate-elem-65-t +
+
+ + +
+

+ This tests performs basic tests on the min attribute. The test is based on the SMIL specification at: + http://www.w3.org/TR/smil20/smil-timing.html#Timing-MinMax. +

+

+ Each row in the test shows different rectangles subject to <set> animations with different configurations + with regards to the min attribute. For each row but the last one, the animation should be active during the first + 5 seconds of the animations where the red rectangle should show in the right column. At five seconds into the + animation, all the rectangles should move to their left position. +

+

+ On the first row, the first <set> animation (left rectangle) has an end value of 5s, and no min attribute. + The active duration resulting from the end attribute is 5s. The first row shows a second rectangle with a + <set> animation with the same configuration except that the min attribute value is set to 'media'. Because + the <set> element does not define a media, the behavior should be as if the attribute was not specified. + The active duration (5s) of the second <set> animation is therefore not constrained. +

+

+ On the second row, the <set> animation has an end value of 5s, and a -6s min attribute. The active duration + resulting from the end attribute is 5s. The negative min value is invalid and, as per the specification, the + behavior should be as if the attribute was not specified. The active duration (5s) is therefore not constrained. +

+

+ On the third row, the <set> animation has an end value of 5s, and a 3s min attribute. The active duration + resulting from the end attribute is 5s. The min value is less than the active duration, so the min attribute does + not actually constrain the active duration. +

+

+ On the fourth row, the <set> animation has a dur value of indefinite, an end value of 2s, and a 5s min + attribute. The active duration resulting from the end attribute would be 2s. Because this is less than the min + value (2s < 5s) the (min constrained) active duration has to be corrected to 5s, despite a simple duration + (indefinite) that is greater than the min value. +

+

+ On the fifth row, the <set> animation has a dur value of 1s, an end value of 2s, a repeatCount of 7 and + a 5s min attribute. The active duration resulting from dur, end and repeatCount would be 2s. Because this is + less than the min value (2s < 5s) the (min constrained) active duration has to be corrected to 5s. +

+

+ On the sixth row, the <set> animation has a dur value of 1s, an end value of 2s, a repeatCount of 5 and + a 8s min attribute value. The active duration resulting from dur, end and repeatCount would be 2s, because this + is less than the min value (2s < 8s) the active duration has to be corrected to 8s. As the fill attribute is + set to 'remove' on the <set> animation, this remove is applied at 5s, the end of the repeatCount. Note, + that if the end of active duration would have been used as a syncbase-value for another animation, the corrected + end event at (begin + min) = 8s has to be used. +

+

+ On the seventh row, the <set> animation has a dur value of 1s, an end value of 2s, a repeatCount of 5 and + a 8s min attribute value. The active duration resulting from dur, end and repeatCount would be 2s, because this + is less than the min value (2s < 8s) the active duration has to be corrected to 8s. As the fill attribute is + set to 'freeze' on the <set> animation, the animation is frozen at 5s, the end of the repeatCount, the + <set> applies indefinitely. Note, that if the end of active duration would have been used as a syncbase-value + for another animation, the corrected end event at (begin + min) = 8s has to be used. +

+ +
+ + + diff --git a/test/W3C_SVG_12_TinyTestSuite_beta/htmlEmbedHarness/animate-elem-66-t.html b/test/W3C_SVG_12_TinyTestSuite_beta/htmlEmbedHarness/animate-elem-66-t.html new file mode 100755 index 00000000..39567086 --- /dev/null +++ b/test/W3C_SVG_12_TinyTestSuite_beta/htmlEmbedHarness/animate-elem-66-t.html @@ -0,0 +1,125 @@ + + + + + + + + +SVG 1.2 Tiny test:animate-elem-66-t + + + + + + + + + + +
+ + + + + + + + + + + + +
+

animate-elem-66-t

+
+ + + raster image of animate-elem-66-t +
+
+ + +
+

+ This tests performs basic tests on the max attribute and on combinations of the min and max attributes. The test + is based on the SMIL specification at: http://www.w3.org/TR/smil20/smil-timing.html#Timing-MinMax. +

+

+ Each row in the test shows different rectangles subject to <set> animations with different configurations + with regards to the max and min attributes. For each row, the animation should be active during the first 5 + seconds of the animations where the red rectangle should show in the right column. At five seconds into the + animation, all the rectangles should move to their left position. +

+

+ On the first row, the <set> animation has a (0s <= t < 5s) active duration and no max attribute so + the actual active duration is (0s <= t < 5s). The first row shows a second rectangle with a <set> + animation with the same configuration except that the max attribute value is set to 'media'. Because the <set> + element does not define a media, the behavior should be as if the attribute was not specified. +

+

+ On the second row, the <set> animation has a (0s <= t < 5s) active duration and a min attribute set + to '-6s' for the first rectangle and to 'foo' for the second one. These values are invalid for max and, as per the + specification, the behavior should be as if the attribute was not specified. Consequently, the behavior is as for + the previous row and the actual active duration is (0s <= t < 5s). +

+

+ On the third row, the <set> animation has a (0s <= t < 8s) initial active duration and a max attribute + set to '5s'. The max value is less than the active duration, so the max attribute constrains the active duration to + (0s <= t < 5s). +

+

+ On the fourth row, the <set> animation has a (0s <= t < 5s) initial active duration, an indefinite + simple duration (dur is set to indefinite) and a max attribute set to '8s'. Because the initial active duration is + less than the max attribute the active duration is not constrained and is unchanged at (0s <= t < 5s). +

+

+ On the fifth row, the <set> animation has a (0s <= t < indefinite) initial active duration, a min of 2s + and a max of 5s. Because the min value is less than the max value, both apply and the computed active duration is + (0s <= t < 5s). +

+

+ On the sixth row, the <set> animation has a (0s <= t < indefinite) initial active duration, a min of 5s + and a max of 5s. Because the min value is equal to the max value, both apply and the computed active duration is + (0s <= t < 5s). +

+

+ On the seventh row, the <set> animation has a [0s, 5s[[ initial active duration, a min of 8s and a max of 2s. + Because the min value is greater than the max value, both are ignored and the computed active duration is [0s, 5s[. +

+ +
+ + + diff --git a/test/W3C_SVG_12_TinyTestSuite_beta/htmlEmbedHarness/animate-elem-67-t.html b/test/W3C_SVG_12_TinyTestSuite_beta/htmlEmbedHarness/animate-elem-67-t.html new file mode 100755 index 00000000..c00c22ee --- /dev/null +++ b/test/W3C_SVG_12_TinyTestSuite_beta/htmlEmbedHarness/animate-elem-67-t.html @@ -0,0 +1,116 @@ + + + + + + + + +SVG 1.2 Tiny test:animate-elem-67-t + + + + + + + + + + +
+ + + + + + + + + + + + +
+

animate-elem-67-t

+
+ + + raster image of animate-elem-67-t +
+
+ + +
+

This tests performs basic tests on restart attribute

+

+ Each row in the test shows different rectangles subject to <set> animations with different configurations + with regards to the restart attribute. For each row, the animation should be active during the first 5 seconds of + the animations where the red rectangle should show in the right column. At five seconds into the animation, all + the rectangles should move to their left position. +

+

+ On the first row, the <set> animation has a begin attribute set to '0s;1s' and a dur attribute set to 4s. + This should result in a first interval of (0s <= t < 4s) which should be superceeded, at 1s, by a new + interval of (1s <= t < 5s) because the default restart behavior is 'always'. Consequently, the rectangle + should be in the right position during the (0s <= t < 5s) interval and move to the left position at 5s. +

+

+ On the second row, the <set> animation has a begin attribute set to '0s;1s', a dur attribute set to 4s and + a restart attribute set to always. The behavior should be the same as for the first row. +

+

+ On the third row, the first (left most) rectangle's <set> animation has a begin attribute set to '0s;1s', + a dur set to 5s and a restart attribute set to whenNotActive. Because of the rules for computing intervals, the + animation's interval is (0s <= t < 5s) and is not superseded by a (1s <= t < 6s) interval because of + the restart value. The second (right most) red rectangle's <set> animation has a begin attribute set to + '0s;2.5s' and a dur attribute set to 2.5s. This results in a first interval (0s <= t < 2.5s) which is + followed by a (2.5s <= t < 5s) interval. Consequently, the rectangle stays on its right position for the + first five seconds before it definitively moves to the left position. +

+

+ On the fourth row, the <set> animation has a begin attribute set to '0s;5s' and a dur attribute set to 5s. + This results in a first interval of (0s <= t < 5s). Because the restart attribute is set to 'never', the + following possible interval, (5s <= t < 10s) does not apply and the animation is only active for the first + 5 seconds. +

+

+ The fifth row shows a simple animated red rectangle which lasts for 5 seconds. It shows a reference of how the + other animations should behave visually: all red rectangles should have the same horizontal position as the one + on the reference row, at any time during the animation. +

+ +
+ + + diff --git a/test/W3C_SVG_12_TinyTestSuite_beta/htmlEmbedHarness/animate-elem-68-t.html b/test/W3C_SVG_12_TinyTestSuite_beta/htmlEmbedHarness/animate-elem-68-t.html new file mode 100755 index 00000000..ff5c3b4a --- /dev/null +++ b/test/W3C_SVG_12_TinyTestSuite_beta/htmlEmbedHarness/animate-elem-68-t.html @@ -0,0 +1,103 @@ + + + + + + + + +SVG 1.2 Tiny test:animate-elem-68-t + + + + + + + + + + +
+ + + + + + + + + + + + +
+

animate-elem-68-t

+
+ + + raster image of animate-elem-68-t +
+
+ + +
+

This tests the repeatCount attribute

+

+ Each row in the test shows different rectangles subject to <set> animations with different configurations + with regards to the repeatCount attribute. For each row, the animation should be active during the first 5 seconds + of the animations where the red rectangle should show in the right column. At five seconds into the animation, all + the rectangles should move to their left position. +

+

+ On the first row, the <set> animation has its dur attribute set to '5s' and its repeatCount unspecified. + Consequently, its only interval is (0s <= t < 5s). +

+

+ On the second row, the <set> animation has its dur attribute set to 1s and its repeatCount set to 5. + Consequently, its only interval is (0s <= t < 5s (1s*5)). +

+

+ On the third row, the <set> animation has its dur attribute set to 10s and its repeatCount set to 0.5. + Consequently, its only interval is (0s <= t < 5s (10s*0.5)). +

+

+ On the fourth row, the <set> animation has its dur attribute set to 1s and its repeatCount set to + indefinite. It also has an end attribute set to 5s. Consequently, the repeat duration is indefinite, but the + active duration is limited by the end attribute and the active interval is (0s <= t < 5s). +

+ +
+ + + diff --git a/test/W3C_SVG_12_TinyTestSuite_beta/htmlEmbedHarness/animate-elem-69-t.html b/test/W3C_SVG_12_TinyTestSuite_beta/htmlEmbedHarness/animate-elem-69-t.html new file mode 100755 index 00000000..ac47103f --- /dev/null +++ b/test/W3C_SVG_12_TinyTestSuite_beta/htmlEmbedHarness/animate-elem-69-t.html @@ -0,0 +1,109 @@ + + + + + + + + +SVG 1.2 Tiny test:animate-elem-69-t + + + + + + + + + + +
+ + + + + + + + + + + + +
+

animate-elem-69-t

+
+ + + raster image of animate-elem-69-t +
+
+ + +
+

This tests the repeatDur attribute

+

+ Each row in the test shows different rectangles subject to <set> animations with different configurations + with regards to the repeatDur attribute. For each row, the animation should be active during the first 5 seconds + of the animations where the red rectangle should show in the right column. At five seconds into the animation, + all the rectangles should move to their left position. +

+

+ On the first row, the <set> animation has its dur attribute set to '5s' and its repeatDur unspecified. + Consequently, its only interval is (0s <= t < 5s). +

+

+ On the second row, the <set> animation has its dur attribute set to 1s and its repeatDur set to 5s. + Consequently, its only interval is (0s <= t < 5s). +

+

+ On the third row, the <set> animation has its dur attribute set to 0.5s and its repeatDur set to 5s. + Consequently, its only interval is (0s <= t < 5s). +

+

+ On the fourth row, the <set> animation has its dur attribute set to 1s and its repeatDur set to indefinite. + It also has an end attribute set to 5s. Consequently, the repeat duration is indefinite, but the active duration + is limited by the end attribute and the active interval is (0s <= t < 5s). +

+

+ On the fifth row, the <set> animation has its dur attribute set to 0.7s and its repeatDur set to 5s. + Consequently, its only interval is (0s <= t < 5s). The difference with the 3rd row is that there is a + fractional number of simple durations in the active duration (7.1428) where there is a whole number of simple + durations in the third row (10). +

+ +
+ + + diff --git a/test/W3C_SVG_12_TinyTestSuite_beta/htmlEmbedHarness/animate-elem-70-t.html b/test/W3C_SVG_12_TinyTestSuite_beta/htmlEmbedHarness/animate-elem-70-t.html new file mode 100755 index 00000000..dd1ad0cb --- /dev/null +++ b/test/W3C_SVG_12_TinyTestSuite_beta/htmlEmbedHarness/animate-elem-70-t.html @@ -0,0 +1,119 @@ + + + + + + + + +SVG 1.2 Tiny test:animate-elem-70-t + + + + + + + + + + +
+ + + + + + + + + + + + +
+

animate-elem-70-t

+
+ + + raster image of animate-elem-70-t +
+
+ + +
+

+ This tests the animation's SMIL 'fill' attribute. +

+

+ On the first row, the <set> animation has its dur + attribute set to '1s' and its begin attribute set to '0s; + firstSet.end + 1s'. The fill attribute is unspecified, so + the effect is as if it was set to 'remove', because 'remove' is + the default value for fill. + + Consequently, the first interval is (0s <= t < 1s), the second is + (2s <= t < 3s), the third, (4s <= t < 5s) etc.. The red rectangle starts on the + right position, moves to the left position for one second, moves + to the right for 1 second, and so on. +

+

+ On the second row, the <set> animation + with the identifier 'firstSet' has its dur attribute + set to 1s and its begin attribute set to '0s; firstSet.end'. The fill attribute + is set to 'remove'. The behavior should be exactly the same as for the previous + row, and the rectangle moves from the right position to the left position + every second. +

+

+ On the third row, the <set> animation has its dur attribute set to + 1s and its begin attribute set to '0s; firstSet.end'. The fill attribute + is set to 'freeze'. The first interval should be (0s <= t < 1s), the second (2s <= t < 3s), + the third, (4s <= t < 5s), etc. Between interval, the fill behavior should be applied, + so the red rectangle should stay on the right position and never go to the + left position. +

+

+ On the fourth row, the <set> animation has its dur attribute set to + 1s and its begin attribute set to '0s'. The fill attribute + is set to 'freeze'. The first interval should be (0s <= t < 1s) and there is no + following interval. Because of the fill behavior, the <set> should + apply the last (and only) animation value after 1s. Consequently, the + red rectangle should stay on the right position and never go to the + left position. +

+ +
+ + + diff --git a/test/W3C_SVG_12_TinyTestSuite_beta/htmlEmbedHarness/animate-elem-77-t.html b/test/W3C_SVG_12_TinyTestSuite_beta/htmlEmbedHarness/animate-elem-77-t.html new file mode 100755 index 00000000..b1c2096e --- /dev/null +++ b/test/W3C_SVG_12_TinyTestSuite_beta/htmlEmbedHarness/animate-elem-77-t.html @@ -0,0 +1,120 @@ + + + + + + + + +SVG 1.2 Tiny test:animate-elem-77-t + + + + + + + + + + +
+ + + + + + + + + + + + +
+

animate-elem-77-t

+
+ + + raster image of animate-elem-77-t +
+
+ + +
+

+ This test demonstrates how <set> elements change text properties on a <text> element. For each of the + text properties being tested, 3 <set> elements are set. The first <set> element acts directly on the + <text> element. The second <set> element acts on a <g> containing children. The third + <set> element acts on an <a> containing children. In each case the test validates that the animated + value set on the <g> and <a> elements is inherited by the <text> element. All the <set> + elements have a begin attribute set to 0s with an offset of 1s after end. So, the animation will apply 1s after + the document is loaded and will repeat every 1s after the animation ends. +

+

+ The first <set> validates the transform property. When applied to the <text> element, the letter A + will be translated to the right every 1s, in the <text> column. When applied to the <g> element, the + letter A inherits the transform value and is translated to the right every 1s, as seen in the <g> column. + When applied to the <a> element, the letter A inherits the transform value and is translated to the right + every 1s, as seen in <a> column. +

+

+ The second <set> validates the text-anchor attribute. When applied to the <text> element, the anchor + position of letter A is moved from start to end. When applied to the <g> and <a> element, the property + is inherited and hence the anchor position of letter A is moved from start to end in the second row. +

+

+ The third <set> validates the font-size attribute. The font size of letter A is changed from 20 to 30. When + applied to <g> and <a> elements, the letter A inherits the font-size and hence in row 3, letter A has + a font-size of 30 in all 3 right columns of row 3. +

+

+ The fourth <set> validates the font-family attribute. The font-family is changed from default to serif. When + applied to <g> and <a> elements, the letter A inherits the font-family attribute and hence in row 4, + letter A has serif font-family in all 3 columns. +

+

+ The fifth <set> validates the font-style attribute. The font-style is changed from normal to italic. When + applied to <g> and <a> elements, the letter A inherits the font-style attribute and hence in row 5, + letter A is animated to italic in all 3 columns. +

+

+ The sixth <set> validates the font-weight attribute. The font-weight is changed from normal to bold. When + applied to <g> and <a> elements, the letter A inherits the font-weight attribute and hence in row 6, + letter A is changed to bold on the right. +

+ +
+ + + diff --git a/test/W3C_SVG_12_TinyTestSuite_beta/htmlEmbedHarness/animate-elem-78-t.html b/test/W3C_SVG_12_TinyTestSuite_beta/htmlEmbedHarness/animate-elem-78-t.html new file mode 100755 index 00000000..6e39aa15 --- /dev/null +++ b/test/W3C_SVG_12_TinyTestSuite_beta/htmlEmbedHarness/animate-elem-78-t.html @@ -0,0 +1,146 @@ + + + + + + + + +SVG 1.2 Tiny test:animate-elem-78-t + + + + + + + + + + +
+ + + + + + + + + + + + +
+

animate-elem-78-t

+
+ + + raster image of animate-elem-78-t +
+
+ + +
+

+ This test demonstrates how <set> elements change graphics properties on elements from the 'Basic Shapes' + chapter. For each of the graphics properties being tested, 3 <set> animations are applied. The first <set> + element acts directly on 'Basic Shape' elements. The second <set> element acts on a <g> containing + children. The third <set> element acts on an <a> containing children. In each case the test validates + that the animated value set on the <g> and <a> elements is inherited by the 'Basic Shape' element. All + the <set> elements have a begin attribute set to 0s with an offset of 1s after the end. So, the animation will + apply 1s after the document is loaded and will repeat every 1s after the animation ends. +

+

+ The first <set> validates the fill property, with fill set to orange. When applied directly to the 'Basic + Shape' element, the <rect> fill value will change to orange when it is translated to the right every 1s. + When applied to the <g> and <a> elements, the <rect> inherits the fill value and is orange. +

+

+ The second <set> validates the fill-style property, with fill-style set to evenodd. When applied to the + 'Basic Shape' element, the <polyline> fill-style is changed from nonzero to evenodd. When applied to the + <g> and <a> elements, the <polyline> inherits the evenodd fill-style. +

+

+ The third <set> validates the stroke property. In this case fill is set to none. When stroke is applied + to the 'Basic Shape' element, the <rect> on the right appears with the stroke color. When applied to the + <g> and <a> elements, the <rect> inherits the stroke property. +

+

+ The fourth <set> validates the stroke-width property, with stroke-width set to 4. When stroke-width is + applied to the 'Basic Shape' element, the <line> on the right has a width of 4. When applied to the + <g> and <a> elements, the <line> inherits the stroke-width. +

+

+ The fifth <set> validates the stroke-linecap property, with stroke-linecap set to round. When + stroke-linecap is applied to the 'Basic Shape' element, the <line> stroke-linecap value switches from + butt to round. When applied to the <g> and <a> elements, the <line> inherits the square + stroke-linecap. +

+

+ The sixth <set> validates the stroke-linejoin property, with stroke-linejoin set to bevel. When + stroke-linejoin is applied to the 'Basic Shape' element, the <line> stroke-linejoin value switches + from miter to bevel. When applied to the <g> and <a> elements, the <line> inherits the + bevel stroke-linejoin. +

+

+ The seventh <set> validates the stroke-miterlimit property, with stroke-miterlimit set to 10. When + stroke-miterlimit is applied to the 'Basic Shape' element, the miter-length to stroke-width ratio exceeds + the miter-limit and the <polyline> switches from bevel to miter.When applied to the <g> and + <a> elements,the <line> inherits the stroke-miterlimit. +

+

+ The eighth <set> validates the stroke-dashoffset property, with stroke-dashoffset set to 5.5. When + stroke-dashoffset is applied to the 'Basic Shape' element, the <line> has a different dashing + pattern. When applied to the <g> and <a> elements, the <line> inherits the property. +

+

+ The ninth <set> validates the display property, with display set to none. When display is applied to + the 'Basic Shape' element, the <rect> does not appear on the right. When applied to the <g> and + <a> elements, the <line> inherits the display property and hence is not seen. +

+

+ The tenth <set> validates the visibility property, with visibility set to hidden. When visibility is + applied to the 'Basic Shape' element, the <rect> is hidden on the right. When applied to the + <g> and <a> elements, the <line> inherits the visibility property and hence is not seen. +

+

+ The eleventh <set> validates the color property, with color set to blue. When color is applied to the + 'Basic Shape' element, the <rect> on the right switches from default color of black to blue. When + applied to the <g> and <a> elements, the <line> inherits the color property. +

+ +
+ + + diff --git a/test/W3C_SVG_12_TinyTestSuite_beta/htmlEmbedHarness/animate-elem-80-t.html b/test/W3C_SVG_12_TinyTestSuite_beta/htmlEmbedHarness/animate-elem-80-t.html new file mode 100755 index 00000000..41a3a1eb --- /dev/null +++ b/test/W3C_SVG_12_TinyTestSuite_beta/htmlEmbedHarness/animate-elem-80-t.html @@ -0,0 +1,94 @@ + + + + + + + + +SVG 1.2 Tiny test:animate-elem-80-t + + + + + + + + + + +
+ + + + + + + + + + + + +
+

animate-elem-80-t

+
+ + + raster image of animate-elem-80-t +
+
+ + +
+

+ This test demonstrates validates the operation of the animateTransform element and validates the operation of + the different type attribute values. +

+

+ There are 5 possible values for the type attribute and there is one animateTransform for each type and two for + the translate type. +

+

+ For each transform type, the test has a corresponding animateTransform. The test uses references to show what + the expected transform should be at different points in the animation. For example, the top left + animateTransform, for type=rotate, shows circular markers which turn orange at the time of corresponding + transform value should be set by the animateTransform. The marker elements show the expected transform value + on reference markers in the test. +

+ +
+ + + diff --git a/test/W3C_SVG_12_TinyTestSuite_beta/htmlEmbedHarness/animate-elem-81-t.html b/test/W3C_SVG_12_TinyTestSuite_beta/htmlEmbedHarness/animate-elem-81-t.html new file mode 100755 index 00000000..2ae5e599 --- /dev/null +++ b/test/W3C_SVG_12_TinyTestSuite_beta/htmlEmbedHarness/animate-elem-81-t.html @@ -0,0 +1,108 @@ + + + + + + + + +SVG 1.2 Tiny test:animate-elem-81-t + + + + + + + + + + +
+ + + + + + + + + + + + +
+

animate-elem-81-t

+
+ + + raster image of animate-elem-81-t +
+
+ + +
+

+ This test validates the operation of the animateTransform's additive behavior, as described in the SVG 1.1 + specification (see http://www.w3.org/TR/SVG11/animate.html#AnimateTransformElement). +

+

+ The first two rectangles, on the top row, show the effect of the additive attribute on animateTransform. The + left-most animateTransforms have their additive attribute set to replace, so the effect of the two transform + animation is as if only the highest priority one applied because it replaces the underlying value. The second + animateTransforms (from left to right) have their additive attribute set to sum, which means the transforms they + roduce are concatenated. +

+

+ The last two rectangles, on the top row, show the effect of the accumulate attribute on animateTransform. For the + left one (third on the row, from left to right), the accumulate attribute is set to none. There are two repeats for + the animateTransform. Therefore, the transform goes twice from a scale(1,1) to a scale(2,2). For the right-most + animateTransform, the accumulate attribute is set to sum. There are two repeats and the animation goes from scale(1,1) + to scale(2,2) for the first iteration and then from scale(2,2) to scale(4,4) (because the result of the second + iteration is concatenated to the scale(2,2) result of the previous, first iteration). +

+

+ The rectangles on the bottom row show the combination of additive and cumulative behavior. The left rectangle's + animateTransform accumulate behavior is set to none but its additive behavior is set to sum. Therefore, the + transform's underlying value (skewX(30)) is always pre-concatenated to the animateTransform's result, which goes + from "skewX(30) scale(1,1)" to "skewX(30) scale(2,2)" in each of its two iterations. The right rectangle's + animateTransform accumulate behavior is set to sum and the additive behavior is also set to sum. Therefore, the + transform's underlying value is always pre-concatenated, so is the result of previous animation iterations. + Consequently, the transform goes from "skewX(30) scale(1,1)" to "skewX(30) scale(2,2)" for the first iteration + and then from "skewX(30) scale(2,2) scale(1,1)" to "skewX(30) scale(2,2) scale(2,2)" for the second iteration. +

+ +
+ + + diff --git a/test/W3C_SVG_12_TinyTestSuite_beta/htmlEmbedHarness/animate-elem-82-t.html b/test/W3C_SVG_12_TinyTestSuite_beta/htmlEmbedHarness/animate-elem-82-t.html new file mode 100755 index 00000000..ad6b1f5d --- /dev/null +++ b/test/W3C_SVG_12_TinyTestSuite_beta/htmlEmbedHarness/animate-elem-82-t.html @@ -0,0 +1,138 @@ + + + + + + + + +SVG 1.2 Tiny test:animate-elem-82-t + + + + + + + + + + +
+ + + + + + + + + + + + +
+

animate-elem-82-t

+
+ + + raster image of animate-elem-82-t +
+
+ + +
+

+ This test demonstrates validates the operation of animateTransform with regards to the rotation center and with + regards to paced animation. +

+

+ The following descriptions describe the various animations, going top bottom, left to right. For each animation, + orange rectangle markers show the expected position for the animated rectangle halfway through the animation. The + markers are drawn with a thick stroke for 0.2s, starting at the time when they reflect the expected position. +

+

+ The first animateTransform has type='rotate' and goes from 45 degrees to 90 degrees over a period of 3s. The + rotation center for the from and to values is 0, 0. At 0 seconds, the expected transform should be rotate(45). At + 1.5 seconds, the expected transform is rotate(0.5 * (90 + 45)) = rotate(67.5). At 3s, the expected transform is + rotate(90). +

+

+ The second animateTransform has type='rotate' but has a rotation center that varies between the from and to + values. The rotation goes from rotate(45,0,0) to rotate(90,-15,-15). At 0s, the expected transform is + rotate(45,0,0). At 1.5s, the expected transform is rotate(67.5, -7.5, -7.5). At 3s, the expected transform is + rotate(90, -15, -15). +

+

+ The third animateTransform has type='translate' and calcMode='paced'. The animation goes from translate(-40,40) + to translate(-20,20) to translate(40,-40). At 0s, the expected transform is translate(-40,40). At 1.5s, the + expected transform is translate(0,0). At 3s, the expected transform is translate(40,-40). +

+

+ The fourth animateTransform has type='translate' and calcMode='linear'. The animation goes from translate(-40,40) + to translate(-20,-20) to translate(40,-40). At 0s, the expected transform is translate(-40,40). At 1.5s, the + expected transform is translate(-20,-20). At 3s, the expected transform is translate(40,-40). +

+

+ The fifth animateTransform has type='scale' and calcMode='paced'. The animation goes from scale(1,2) to scale(3,2) + to scale(1,1). The total length along the sx component is 2 + 2 = 4. The total length along the sy component is + 0 + 1 = 1. At 0s, the expected transform is scale(1,2). At 1.5s, the expected transform is scale(3,1.5) so that a + length of 2 has been run on the sx component and a length of 0.5 has been run on the sy component. At 3s, the + expected transform is scale(3,2). +

+

+ The sixth animateTransform has type='scale' and calcMode='linear'. The animation goes from scale(1,2) to scale(3,2) + to scale(1,1). At 0s, the expected transform is scale(1,2). At 1.5s, the expected transform is scale(3,2). At 3s, + the expected transform is scale(1,1). +

+

+ The seventh animateTransform has type="rotate" and calcMode='paced'. The animation goes from rotate(0,0,0) to + rotate(45,-15,-20) to rotate(180,30,50). The total length along the rotation angle component is + (45 - 0) + (180 - 45) = 180. The total length along the rotation center along the x axis is + (0 - (-15)) + (30 - (-15)) = 45 + 15 = 60. The total length along the rotation center along the y axis is + (0 - (-20)) + (50 - (-20)) = 20 + 70 = 90. At 0s, the expected transform is rotate(45,-15,-20). At 1.5s, the + expected transform is rotate(90,0,5) to achieve constant velocity along the rotation angle component, the x-axis + rotation center component and the y-axis rotation center component. At 1.5s, half the distance has been run on + each component. For the rotation angle, this means that 45 has been reached and that 45 more degrees in the + (45 <= r < 180) interval have been consumed. For the x-axis rotation center, this means that 30 units have + been run: the (0 >= x > -15) interval has been fully consumed (15 units long) and 15 units on the + (-15 <= x < 30) interval have been consumed, which explains the computed 0 value. For the y-axis rotation + center, this means that 45 units have been run: the (0 >= y > -20) interval has been fully consumed and 25 + units have been consumed in the (-20 <= y < 50) interval, which explains the computed 5 value. At 3s, the + expected transform is rotate(180,30,50). +

+ +
+ + + diff --git a/test/W3C_SVG_12_TinyTestSuite_beta/htmlEmbedHarness/animate-elem-83-t.html b/test/W3C_SVG_12_TinyTestSuite_beta/htmlEmbedHarness/animate-elem-83-t.html new file mode 100755 index 00000000..109b53a9 --- /dev/null +++ b/test/W3C_SVG_12_TinyTestSuite_beta/htmlEmbedHarness/animate-elem-83-t.html @@ -0,0 +1,117 @@ + + + + + + + + +SVG 1.2 Tiny test:animate-elem-83-t + + + + + + + + + + +
+ + + + + + + + + + + + +
+

animate-elem-83-t

+
+ + + raster image of animate-elem-83-t +
+
+ + +
+

This test validates the operation of the animate element on the <path> element's d attribute.

+

+ The following descriptions references to the tests by number. The first test is the one showing on the top left. + The last, sixth test is the one showing at the bottom right. Test numbers are alocated from left to right and + from top to bottom. For each test, there are reference outline markers which show the expected animated shape at + different times in the animation. At the time of the expected shape, the outline of the expected shape is drawn + with a thick stroke for 0.2s so the test user can visually check that the shapes are matching at the expected + times. +

+

+ The first test validates a simple from-to animation on a path's d attribute made of M, C and Z commands where + both the from and to attributes are specified. The attributes are compatible with the path element's d attribute. +

+

+ The second test validates a simple to-animation on a path's d attribute made of M, C and Z commands where the to + attribute is specified. The attribute is compatible with the path element's d attribute. +

+

+ The third test validates a simple values-animation on a path's d attribute made of M, C and Z commands where the + values attribute is specified and specifies three seperate values. The attribute is compatible with the path + element's d attribute. +

+

+ The fourth, fifth and sixth tests validate that interpolation between compatible path values (i.e., path values + which normalize to the compatible values) is supported. +

+

+ The fourth tests interpolation between a path value containing H, V and L commands (in the from value) and a path + value containing compatible h, v and l commands (in the to value). +

+

+ The fifth tests interpolation between a path value containing C and S commands (in the from value) and a path value + containing compatible c and s commands (in the to value). +

+

+ The sixth tests interpolation between a path value containing Q, T and A commands (in the from value) and a path + value containing compatible q, t and a commands (in the to value). +

+ +
+ + + diff --git a/test/W3C_SVG_12_TinyTestSuite_beta/htmlEmbedHarness/animate-elem-84-t.html b/test/W3C_SVG_12_TinyTestSuite_beta/htmlEmbedHarness/animate-elem-84-t.html new file mode 100755 index 00000000..cd9ab51a --- /dev/null +++ b/test/W3C_SVG_12_TinyTestSuite_beta/htmlEmbedHarness/animate-elem-84-t.html @@ -0,0 +1,84 @@ + + + + + + + + +SVG 1.2 Tiny test:animate-elem-84-t + + + + + + + + + + +
+ + + + + + + + + + + + +
+

animate-elem-84-t

+
+ + + raster image of animate-elem-84-t +
+
+ + +
+

Test animation of color keywords that resolve to animatable RGB values.

+

+ Five black squares are shown. After two seconds, all five squares should turn red and then smoothly animate the + fill color to green over the next five seconds. +

+ +
+ + + diff --git a/test/W3C_SVG_12_TinyTestSuite_beta/htmlEmbedHarness/animate-elem-85-t.html b/test/W3C_SVG_12_TinyTestSuite_beta/htmlEmbedHarness/animate-elem-85-t.html new file mode 100755 index 00000000..c1d0709a --- /dev/null +++ b/test/W3C_SVG_12_TinyTestSuite_beta/htmlEmbedHarness/animate-elem-85-t.html @@ -0,0 +1,85 @@ + + + + + + + + +SVG 1.2 Tiny test:animate-elem-85-t + + + + + + + + + + +
+ + + + + + + + + + + + +
+

animate-elem-85-t

+
+ + + raster image of animate-elem-85-t +
+
+ + +
+

All four rectangles at the top must smoothly animate from black to green over 5 seconds.

+

+ During this time the bottom two rectangles must be red. Then, the bottom two rectangles must smoothly animate + from green( at five seconds), through khaki (at 7.5 seconds), to yellow (at 10 seconds and above). Colored + circles indicate the appropriate colors at these times. +

+ +
+ + + diff --git a/test/W3C_SVG_12_TinyTestSuite_beta/htmlEmbedHarness/animate-elem-86-t.html b/test/W3C_SVG_12_TinyTestSuite_beta/htmlEmbedHarness/animate-elem-86-t.html new file mode 100755 index 00000000..880e83c6 --- /dev/null +++ b/test/W3C_SVG_12_TinyTestSuite_beta/htmlEmbedHarness/animate-elem-86-t.html @@ -0,0 +1,109 @@ + + + + + + + + +SVG 1.2 Tiny test:animate-elem-86-t + + + + + + + + + + +
+ + + + + + + + + + + + +
+

animate-elem-86-t

+
+ + + raster image of animate-elem-86-t +
+
+ + +
+

+ This test tests fill="freeze" for the case where the duration has been constrained by an 'end' attribute + and calcMode="discrete". +

+

+ The correct behaviour is defined by the SMIL time interval model. + Time intervals created by the test case from implicit begin, dur and calcMode discrete: +

+ +

+ Time intervals created by implicit begin and end: +

+ +

+ Therefore the frozen value will be 74, resulting in the purple fill + being in the right rectangle after 0 seconds. +

+

+ The test has passed if the purple fill is on the right rect only after 0 seconds. + Fill must never be set to purple on the left rect, except for before the animation has begun. +

+ +
+ + + diff --git a/test/W3C_SVG_12_TinyTestSuite_beta/htmlEmbedHarness/conf-reader-201-t.html b/test/W3C_SVG_12_TinyTestSuite_beta/htmlEmbedHarness/conf-reader-201-t.html new file mode 100755 index 00000000..692ead5f --- /dev/null +++ b/test/W3C_SVG_12_TinyTestSuite_beta/htmlEmbedHarness/conf-reader-201-t.html @@ -0,0 +1,106 @@ + + + + + + + + +SVG 1.2 Tiny test:conf-reader-201-t + + + + + + + + + + +
+ + + + + + + + + + + + +
+

conf-reader-201-t

+
+ + + raster image of conf-reader-201-t +
+
+ + +
+

+ This test checks that namespace prefixes are handled correctly. +

+

+ First, a random 20-character string is generated. The string only contains characters that are valid NCName letters. + This string is then used as a custom prefix for an 'href' attribute in the XLink namespace. + An 'image' element is created and two image references are added, one is in the "http://www.this.is.not.an/xlink" namespace, + and one is in the XLink namespace. Only the attribute with the 20-character prefix is actually in the XLink namespace, + which means that that link should be the one that is used when rendering the 'image' element. This first subtest is + using the setAttributeNS method. +

+

+ The second subtest generates a new prefix string, and makes sure it's not equal to the first prefix string. + Then an svg fragment is generated as a string, to be parsed by a call to the parseXML method. + The 'xlink' prefix is bound to the "http://example.net/bar" namespace, and the generated prefix is bound to the XLink namespace. + Similar to the first subtest, the image has two references but only one attribute is actually in the XLink namespace. + The fragment is parsed and the result is inserted into the document, which should make the 'image' element visible. + If an exception is thrown during the parsing or the insertion of the result output will be shown in the status part of the testcase. +

+

+ The testcase has passed if after the script execution has taken place these conditions are met: +

+

+ +
+ + + diff --git a/test/W3C_SVG_12_TinyTestSuite_beta/htmlEmbedHarness/coords-constr-201-t.html b/test/W3C_SVG_12_TinyTestSuite_beta/htmlEmbedHarness/coords-constr-201-t.html new file mode 100755 index 00000000..8d56d484 --- /dev/null +++ b/test/W3C_SVG_12_TinyTestSuite_beta/htmlEmbedHarness/coords-constr-201-t.html @@ -0,0 +1,89 @@ + + + + + + + + +SVG 1.2 Tiny test:coords-constr-201-t + + + + + + + + + + +
+ + + + + + + + + + + + +
+

coords-constr-201-t

+
+ + + raster image of coords-constr-201-t +
+
+ + +
+

+ Test Constrained Transformations + There are three lines of text in this test. + The first is not constrained. + The second is constrained with a x and y offset. + The third is constrained. + The test will pass if, after applying user agent transforms, the circles behave as defined. + The test will pass if the three circles align vertically. + The reference image displays the file after performing a user agent zoom. +

+ +
+ + + diff --git a/test/W3C_SVG_12_TinyTestSuite_beta/htmlEmbedHarness/coords-constr-202-t.html b/test/W3C_SVG_12_TinyTestSuite_beta/htmlEmbedHarness/coords-constr-202-t.html new file mode 100755 index 00000000..dd45662f --- /dev/null +++ b/test/W3C_SVG_12_TinyTestSuite_beta/htmlEmbedHarness/coords-constr-202-t.html @@ -0,0 +1,89 @@ + + + + + + + + +SVG 1.2 Tiny test:coords-constr-202-t + + + + + + + + + + +
+ + + + + + + + + + + + +
+

coords-constr-202-t

+
+ + + raster image of coords-constr-202-t +
+
+ + +
+

+ Test Constrained Transformations + There are three lines of text in this test. + The first is not constrained. + The second is constrained with a x and y offset. + The third is constrained. + An animation is applied to the viewBox attribute. + The test will pass if the circles are affected by the viewBox animation and, after applying user agent transforms, the circles behave as defined. + The test will pass if the three circles align vertically. +

+ +
+ + + diff --git a/test/W3C_SVG_12_TinyTestSuite_beta/htmlEmbedHarness/coords-constr-203-t.html b/test/W3C_SVG_12_TinyTestSuite_beta/htmlEmbedHarness/coords-constr-203-t.html new file mode 100755 index 00000000..9eece3eb --- /dev/null +++ b/test/W3C_SVG_12_TinyTestSuite_beta/htmlEmbedHarness/coords-constr-203-t.html @@ -0,0 +1,89 @@ + + + + + + + + +SVG 1.2 Tiny test:coords-constr-203-t + + + + + + + + + + +
+ + + + + + + + + + + + +
+

coords-constr-203-t

+
+ + + raster image of coords-constr-203-t +
+
+ + +
+

+ Test Constrained Transformations + There are three lines of text in this test. + The first is not constrained. + The second is constrained with a x and y offset. + The third is constrained. + An animation is applied to the content group. + The test will pass if only the first circle is affected by the group animation and, after applying user agent transforms, the circles behave as defined. + The test will pass if the three circles align vertically. +

+ +
+ + + diff --git a/test/W3C_SVG_12_TinyTestSuite_beta/htmlEmbedHarness/coords-constr-204-t.html b/test/W3C_SVG_12_TinyTestSuite_beta/htmlEmbedHarness/coords-constr-204-t.html new file mode 100755 index 00000000..9481d10f --- /dev/null +++ b/test/W3C_SVG_12_TinyTestSuite_beta/htmlEmbedHarness/coords-constr-204-t.html @@ -0,0 +1,85 @@ + + + + + + + + +SVG 1.2 Tiny test:coords-constr-204-t + + + + + + + + + + +
+ + + + + + + + + + + + +
+

coords-constr-204-t

+
+ + + raster image of coords-constr-204-t +
+
+ + +
+

+ Animates a rect that has transform="ref" and tests that the animateMotion transform is supplemental. + The rects should follow a path diagonally from top-left to bottom-right. + The test is passed if a single green rectangle is visible across the screen if a red rectangle is seen + the test is failed. +

+ +
+ + + diff --git a/test/W3C_SVG_12_TinyTestSuite_beta/htmlEmbedHarness/coords-coord-01-t.html b/test/W3C_SVG_12_TinyTestSuite_beta/htmlEmbedHarness/coords-coord-01-t.html new file mode 100755 index 00000000..69252874 --- /dev/null +++ b/test/W3C_SVG_12_TinyTestSuite_beta/htmlEmbedHarness/coords-coord-01-t.html @@ -0,0 +1,80 @@ + + + + + + + + +SVG 1.2 Tiny test:coords-coord-01-t + + + + + + + + + + +
+ + + + + + + + + + + + +
+

coords-coord-01-t

+
+ + + raster image of coords-coord-01-t +
+
+ + +
+

Tests the default initial coordinate system used by renderer. Should be 0,0 if not specified.This is illustrated by comparing red boxes that are missing a coordinate or all coordinates with yellow boxes that have the correct coordinates specified. This test should produce three red boxes, with small yellow boxes rendered on top of them. These boxes should be placed along the origin, and x and y axis.

+ +
+ + + diff --git a/test/W3C_SVG_12_TinyTestSuite_beta/htmlEmbedHarness/coords-pAR-201-t.html b/test/W3C_SVG_12_TinyTestSuite_beta/htmlEmbedHarness/coords-pAR-201-t.html new file mode 100755 index 00000000..60d2a6c1 --- /dev/null +++ b/test/W3C_SVG_12_TinyTestSuite_beta/htmlEmbedHarness/coords-pAR-201-t.html @@ -0,0 +1,95 @@ + + + + + + + + +SVG 1.2 Tiny test:coords-pAR-201-t + + + + + + + + + + +
+ + + + + + + + + + + + +
+

coords-pAR-201-t

+
+ + + raster image of coords-pAR-201-t +
+
+ + +
+

+ This test verifies the implementation of the viewBox and the preserveAspectRatio attribute on the animation element. + It exercises the various preserveAspectRatio values and uses a general entity definition in order to make reading of the SVG source easier. +

+

+ For the test to pass the following criteria should be met: +

+
    +
  1. the xMin* test image left edge should be on the left edge of the blue viewport rect
  2. +
  3. the xMid* test image should be centered in the blue viewport rect
  4. +
  5. the xMax* test image right edge should be on the right edge of the blue viewport rect
  6. +
  7. the yMin* test image top edge should be on the top edge of the blue viewport rect
  8. +
  9. the yMid* test image should be centered in the blue viewport rect
  10. +
  11. the yMax* test image bottom edge should be on the bottom edge of the blue viewport rect
  12. +
  13. no part of the image may be clipped away
  14. +
+ +
+ + + diff --git a/test/W3C_SVG_12_TinyTestSuite_beta/htmlEmbedHarness/coords-trans-01-t.html b/test/W3C_SVG_12_TinyTestSuite_beta/htmlEmbedHarness/coords-trans-01-t.html new file mode 100755 index 00000000..e7ea5b9f --- /dev/null +++ b/test/W3C_SVG_12_TinyTestSuite_beta/htmlEmbedHarness/coords-trans-01-t.html @@ -0,0 +1,82 @@ + + + + + + + + +SVG 1.2 Tiny test:coords-trans-01-t + + + + + + + + + + +
+ + + + + + + + + + + + +
+

coords-trans-01-t

+
+ + + raster image of coords-trans-01-t +
+
+ + +
+

This test verifies the implementation of transforms. It tests elementary transforms and transform nesting. Note that for layout purposes, this test uses nesting of translation with the elementary transforms.

+

The rendered picture should match the reference image exactly except for variations in the labeling text.

+

The test uses the rect element, the fill color (solid primary colors) and transforms.

+ +
+ + + diff --git a/test/W3C_SVG_12_TinyTestSuite_beta/htmlEmbedHarness/coords-trans-02-t.html b/test/W3C_SVG_12_TinyTestSuite_beta/htmlEmbedHarness/coords-trans-02-t.html new file mode 100755 index 00000000..d41605de --- /dev/null +++ b/test/W3C_SVG_12_TinyTestSuite_beta/htmlEmbedHarness/coords-trans-02-t.html @@ -0,0 +1,82 @@ + + + + + + + + +SVG 1.2 Tiny test:coords-trans-02-t + + + + + + + + + + +
+ + + + + + + + + + + + +
+

coords-trans-02-t

+
+ + + raster image of coords-trans-02-t +
+
+ + +
+

This test verifies the implementation of transforms. It tests elementary transforms and transform nesting. Note that for layout purposes, this test uses nesting of translation with the elementary transforms.

+

The rendered picture should match the reference image exactly except for variations in the labeling text.

+

The test uses the rect element, the fill color (solid primary colors) and transforms.

+ +
+ + + diff --git a/test/W3C_SVG_12_TinyTestSuite_beta/htmlEmbedHarness/coords-trans-03-t.html b/test/W3C_SVG_12_TinyTestSuite_beta/htmlEmbedHarness/coords-trans-03-t.html new file mode 100755 index 00000000..4d3c49b8 --- /dev/null +++ b/test/W3C_SVG_12_TinyTestSuite_beta/htmlEmbedHarness/coords-trans-03-t.html @@ -0,0 +1,82 @@ + + + + + + + + +SVG 1.2 Tiny test:coords-trans-03-t + + + + + + + + + + +
+ + + + + + + + + + + + +
+

coords-trans-03-t

+
+ + + raster image of coords-trans-03-t +
+
+ + +
+

This test verifies the implementation of transforms. It tests elementary transforms and transform nesting. Note that for layout purposes, this test uses nesting of translation with the elementary transforms.

+

The rendered picture should match the reference image exactly except for variations in the labeling text.

+

The test uses the rect element, the fill color (solid primary colors) and transforms.

+ +
+ + + diff --git a/test/W3C_SVG_12_TinyTestSuite_beta/htmlEmbedHarness/coords-trans-04-t.html b/test/W3C_SVG_12_TinyTestSuite_beta/htmlEmbedHarness/coords-trans-04-t.html new file mode 100755 index 00000000..048cf52d --- /dev/null +++ b/test/W3C_SVG_12_TinyTestSuite_beta/htmlEmbedHarness/coords-trans-04-t.html @@ -0,0 +1,82 @@ + + + + + + + + +SVG 1.2 Tiny test:coords-trans-04-t + + + + + + + + + + +
+ + + + + + + + + + + + +
+

coords-trans-04-t

+
+ + + raster image of coords-trans-04-t +
+
+ + +
+

This test verifies the implementation of transforms. It tests elementary transforms and transform nesting. Note that for layout purposes, this test uses nesting of translation with the elementary transforms.

+

The rendered picture should match the reference image exactly except for variations in the labeling text.

+

The test uses the rect element, the fill color (solid primary colors) and transforms.

+ +
+ + + diff --git a/test/W3C_SVG_12_TinyTestSuite_beta/htmlEmbedHarness/coords-trans-05-t.html b/test/W3C_SVG_12_TinyTestSuite_beta/htmlEmbedHarness/coords-trans-05-t.html new file mode 100755 index 00000000..c90f2b7a --- /dev/null +++ b/test/W3C_SVG_12_TinyTestSuite_beta/htmlEmbedHarness/coords-trans-05-t.html @@ -0,0 +1,82 @@ + + + + + + + + +SVG 1.2 Tiny test:coords-trans-05-t + + + + + + + + + + +
+ + + + + + + + + + + + +
+

coords-trans-05-t

+
+ + + raster image of coords-trans-05-t +
+
+ + +
+

This test verifies the implementation of transforms. It tests elementary transforms and transform nesting. Note that for layout purposes, this test uses nesting of translation with the elementary transforms.

+

The rendered picture should match the reference image exactly except for variations in the labeling text.

+

The test uses the rect element, the fill color (solid primary colors) and transforms.

+ +
+ + + diff --git a/test/W3C_SVG_12_TinyTestSuite_beta/htmlEmbedHarness/coords-trans-06-t.html b/test/W3C_SVG_12_TinyTestSuite_beta/htmlEmbedHarness/coords-trans-06-t.html new file mode 100755 index 00000000..5a2373c1 --- /dev/null +++ b/test/W3C_SVG_12_TinyTestSuite_beta/htmlEmbedHarness/coords-trans-06-t.html @@ -0,0 +1,82 @@ + + + + + + + + +SVG 1.2 Tiny test:coords-trans-06-t + + + + + + + + + + +
+ + + + + + + + + + + + +
+

coords-trans-06-t

+
+ + + raster image of coords-trans-06-t +
+
+ + +
+

This test verifies the implementation of transforms. It tests elementary transforms and transform nesting. Note that for layout purposes, this test uses nesting of translation with the elementary transforms.

+

The rendered picture should match the reference image exactly except for variations in the labeling text.

+

The test uses the rect element, the fill color (solid primary colors) and transforms.

+ +
+ + + diff --git a/test/W3C_SVG_12_TinyTestSuite_beta/htmlEmbedHarness/coords-trans-07-t.html b/test/W3C_SVG_12_TinyTestSuite_beta/htmlEmbedHarness/coords-trans-07-t.html new file mode 100755 index 00000000..b6ee2ae9 --- /dev/null +++ b/test/W3C_SVG_12_TinyTestSuite_beta/htmlEmbedHarness/coords-trans-07-t.html @@ -0,0 +1,90 @@ + + + + + + + + +SVG 1.2 Tiny test:coords-trans-07-t + + + + + + + + + + +
+ + + + + + + + + + + + +
+

coords-trans-07-t

+
+ + + raster image of coords-trans-07-t +
+
+ + +
+

+ This test verifies the implementation of transforms. It tests elementary transforms + and transform nesting. + Note that for layout purposes, this test uses nesting of translation with the elementary transforms. +

+

+ The rendered picture should match the reference image exactly except for variations in the labeling text. +

+

+ The test uses the rect element, the fill color (solid primary colors) and transforms. +

+ +
+ + + diff --git a/test/W3C_SVG_12_TinyTestSuite_beta/htmlEmbedHarness/coords-trans-08-t.html b/test/W3C_SVG_12_TinyTestSuite_beta/htmlEmbedHarness/coords-trans-08-t.html new file mode 100755 index 00000000..e11a6b93 --- /dev/null +++ b/test/W3C_SVG_12_TinyTestSuite_beta/htmlEmbedHarness/coords-trans-08-t.html @@ -0,0 +1,90 @@ + + + + + + + + +SVG 1.2 Tiny test:coords-trans-08-t + + + + + + + + + + +
+ + + + + + + + + + + + +
+

coords-trans-08-t

+
+ + + raster image of coords-trans-08-t +
+
+ + +
+

+ This test verifies the implementation of transforms. It tests elementary transforms + and transform nesting. + Note that for layout purposes, this test uses nesting of translation with the elementary transforms. +

+

+ The rendered picture should match the reference image exactly except for variations in the labeling text. +

+

+ This test will check if the transfomations performed are carried out in the proper order. The result should differ depending on which transformation comes first. +

+ +
+ + + diff --git a/test/W3C_SVG_12_TinyTestSuite_beta/htmlEmbedHarness/coords-trans-09-t.html b/test/W3C_SVG_12_TinyTestSuite_beta/htmlEmbedHarness/coords-trans-09-t.html new file mode 100755 index 00000000..a2370667 --- /dev/null +++ b/test/W3C_SVG_12_TinyTestSuite_beta/htmlEmbedHarness/coords-trans-09-t.html @@ -0,0 +1,90 @@ + + + + + + + + +SVG 1.2 Tiny test:coords-trans-09-t + + + + + + + + + + +
+ + + + + + + + + + + + +
+

coords-trans-09-t

+
+ + + raster image of coords-trans-09-t +
+
+ + +
+

+ This test verifies the implementation of transforms. It tests elementary transforms + and transform nesting. + Note that for layout purposes, this test uses nesting of translation with the elementary transforms. +

+

+ The rendered picture should match the reference image exactly except for variations in the labeling text. +

+

+ This test will check if the various matrix operations work +

+ +
+ + + diff --git a/test/W3C_SVG_12_TinyTestSuite_beta/htmlEmbedHarness/coords-units-01-t.html b/test/W3C_SVG_12_TinyTestSuite_beta/htmlEmbedHarness/coords-units-01-t.html new file mode 100755 index 00000000..eb761bcf --- /dev/null +++ b/test/W3C_SVG_12_TinyTestSuite_beta/htmlEmbedHarness/coords-units-01-t.html @@ -0,0 +1,95 @@ + + + + + + + + +SVG 1.2 Tiny test:coords-units-01-t + + + + + + + + + + +
+ + + + + + + + + + + + +
+

coords-units-01-t

+
+ + + raster image of coords-units-01-t +
+
+ + +
+

+ Verify the conversion processing of percentage and fraction values relative to object bounding boxes. + This is used when defining linear and radial gradients. +

+

+ The test validates conversion for coordinates, width, height and length. The first test defines two + corresponding linear gradients, which specify coordinates using fractions for the first and user + coordinates for the second. The second test defines two corresponding radial gradients, which specify + a length (radius) using fractions for the first and user space for the second. +

+

+ The rendered image should match the reference image. +

+

+ The test also assumes that linear and radial gradients are implemented. +

+ +
+ + + diff --git a/test/W3C_SVG_12_TinyTestSuite_beta/htmlEmbedHarness/coords-viewattr-05-t.html b/test/W3C_SVG_12_TinyTestSuite_beta/htmlEmbedHarness/coords-viewattr-05-t.html new file mode 100755 index 00000000..6182cedc --- /dev/null +++ b/test/W3C_SVG_12_TinyTestSuite_beta/htmlEmbedHarness/coords-viewattr-05-t.html @@ -0,0 +1,85 @@ + + + + + + + + +SVG 1.2 Tiny test:coords-viewattr-05-t + + + + + + + + + + +
+ + + + + + + + + + + + +
+

coords-viewattr-05-t

+
+ + + raster image of coords-viewattr-05-t +
+
+ + +
+

+ This test verifies the implementation of the preserveAspectRatio attribute on <image> referencing raster content. + This is a modified version of the sample file included in the SVG specification. It exercises the various preserveAspectRatio + values and uses a general entity definition in order to make reading of the SVG source easier. +

+

The rendered picture should match the reference image exactly except for variations in the labeling text.

+ +
+ + + diff --git a/test/W3C_SVG_12_TinyTestSuite_beta/htmlEmbedHarness/extend-namespace-02-t.html b/test/W3C_SVG_12_TinyTestSuite_beta/htmlEmbedHarness/extend-namespace-02-t.html new file mode 100755 index 00000000..e04e13d8 --- /dev/null +++ b/test/W3C_SVG_12_TinyTestSuite_beta/htmlEmbedHarness/extend-namespace-02-t.html @@ -0,0 +1,90 @@ + + + + + + + + +SVG 1.2 Tiny test:extend-namespace-02-t + + + + + + + + + + +
+ + + + + + + + + + + + +
+

extend-namespace-02-t

+
+ + + raster image of extend-namespace-02-t +
+
+ + +
+

Test mixing a business data namespace with elements in SVG namespace.

+

+ The test case uses a different namespace to hold fake sales data. Using ECMAScript to make calls to the DOM, + the test case extracts the sales data and then makes calls to the SVG DOM to build up a 'path' element and a + 'text' element for each individual pie slice. +

+

+ The result should show five pie slices. The first pie slice should be exploded, with a pink fill and a blue border. + The other pie slices should have various levels of gray fill and black borders. The name of each region should + appear in black towards the center of the pie slice. +

+ +
+ + + diff --git a/test/W3C_SVG_12_TinyTestSuite_beta/htmlEmbedHarness/fonts-desc-02-t.html b/test/W3C_SVG_12_TinyTestSuite_beta/htmlEmbedHarness/fonts-desc-02-t.html new file mode 100755 index 00000000..919e153e --- /dev/null +++ b/test/W3C_SVG_12_TinyTestSuite_beta/htmlEmbedHarness/fonts-desc-02-t.html @@ -0,0 +1,84 @@ + + + + + + + + +SVG 1.2 Tiny test:fonts-desc-02-t + + + + + + + + + + +
+ + + + + + + + + + + + +
+

fonts-desc-02-t

+
+ + + raster image of fonts-desc-02-t +
+
+ + +
+

This tests the behaviour of CSS font matching based on font-variant attribute.

+

The first line of text should be 'square' 'triangle'. The small-caps font should match the second text element.

+

The second line of text should be 'square' 'triangle'. The second line is used to ensure that the order of font specification does not effect the selection of these fonts.

+

The third line of text should be 'square', 'diamond', 'square', 'diamond'. This shows that the correct font is selected when a font in the list does not support the variant required. Note that the fonts provide no x-height so scaling (allowed by CSS) cannot be used to simulate a small cap from a regular font.

+

The last line of test can be 'square', 'a', 'a' (from a fallback font), 'diamond'. The first 'a' can be replaced with a smallcaps 'A', if there is a smallcaps font installed or if synthesis is supported.

+ +
+ + + diff --git a/test/W3C_SVG_12_TinyTestSuite_beta/htmlEmbedHarness/fonts-elem-01-t.html b/test/W3C_SVG_12_TinyTestSuite_beta/htmlEmbedHarness/fonts-elem-01-t.html new file mode 100755 index 00000000..f7cf3729 --- /dev/null +++ b/test/W3C_SVG_12_TinyTestSuite_beta/htmlEmbedHarness/fonts-elem-01-t.html @@ -0,0 +1,82 @@ + + + + + + + + +SVG 1.2 Tiny test:fonts-elem-01-t + + + + + + + + + + +
+ + + + + + + + + + + + +
+

fonts-elem-01-t

+
+ + + raster image of fonts-elem-01-t +
+
+ + +
+

This is a basic test for embedded SVG fonts. The font "Comic Sans" (available from Microsoft) has been converted into an SVG font and embedded in the SVG file. The test contains two text areas, each with the character string "AyÖ@ç" drawn at the same font size.

+

The upper area contains the glyphs from the embedded font placed in the SVG file as path elements. Each glyph is placed at the location it would be if rendered using normal text rendering (ie. the horizontal advance between characters has been preserved).

+

The lower area contains the text string rendered using the embedded SVG font. It should appear exactly the same as the upper text area, ie. font size, character baseline and horizontal advance should be the same.

+ +
+ + + diff --git a/test/W3C_SVG_12_TinyTestSuite_beta/htmlEmbedHarness/fonts-elem-02-t.html b/test/W3C_SVG_12_TinyTestSuite_beta/htmlEmbedHarness/fonts-elem-02-t.html new file mode 100755 index 00000000..2f11c16b --- /dev/null +++ b/test/W3C_SVG_12_TinyTestSuite_beta/htmlEmbedHarness/fonts-elem-02-t.html @@ -0,0 +1,82 @@ + + + + + + + + +SVG 1.2 Tiny test:fonts-elem-02-t + + + + + + + + + + +
+ + + + + + + + + + + + +
+

fonts-elem-02-t

+
+ + + raster image of fonts-elem-02-t +
+
+ + +
+

This is an accuracy test for embedded SVG fonts. The font "Comic Sans" (available from Microsoft) has been converted into an SVG font and embedded in the SVG file. The test contains two text areas, each with the character string "AyÖ@ç" drawn at the same font size.

+

The upper area has the placed glyphs as path elements filled with white over a solid black background (creating a white cutout). The embedded SVG font text is then drawn over the cutout. An implementation that passes this test should completely fill the cutout, leaving a solid black area (some slight antialiasing effects may remain).

+

The lower area is the reverse of the upper area, with the placed black glyphs filling the cutout created by white SVG font text. An implementation that passes this test should completely fill the cutout, leaving a solid black area (some slight antialiasing effects may remain).

+ +
+ + + diff --git a/test/W3C_SVG_12_TinyTestSuite_beta/htmlEmbedHarness/fonts-elem-03-t.html b/test/W3C_SVG_12_TinyTestSuite_beta/htmlEmbedHarness/fonts-elem-03-t.html new file mode 100755 index 00000000..5384def9 --- /dev/null +++ b/test/W3C_SVG_12_TinyTestSuite_beta/htmlEmbedHarness/fonts-elem-03-t.html @@ -0,0 +1,82 @@ + + + + + + + + +SVG 1.2 Tiny test:fonts-elem-03-t + + + + + + + + + + +
+ + + + + + + + + + + + +
+

fonts-elem-03-t

+
+ + + raster image of fonts-elem-03-t +
+
+ + +
+

This is a basic test for external SVG fonts. The font "Comic Sans" (available from Microsoft) has been converted into an SVG font and placed in an external SVG file referenced by a font-face-src element. The test contains two text areas, each with the character string "AyÖ@ç" drawn at the same font size.

+

The upper area contains the glyphs from the font placed in the SVG file as path elements. Each glyph is placed at the location it would be if rendered using normal text rendering (ie. the horizontal advance between characters has been preserved).

+

The lower area contains the text string rendered using the external SVG font. It should appear exactly the same as the upper text area, ie. font size, character baseline and horizontal advance should be the same.

+ +
+ + + diff --git a/test/W3C_SVG_12_TinyTestSuite_beta/htmlEmbedHarness/fonts-elem-06-t.html b/test/W3C_SVG_12_TinyTestSuite_beta/htmlEmbedHarness/fonts-elem-06-t.html new file mode 100755 index 00000000..d166856d --- /dev/null +++ b/test/W3C_SVG_12_TinyTestSuite_beta/htmlEmbedHarness/fonts-elem-06-t.html @@ -0,0 +1,84 @@ + + + + + + + + +SVG 1.2 Tiny test:fonts-elem-06-t + + + + + + + + + + +
+ + + + + + + + + + + + +
+

fonts-elem-06-t

+
+ + + raster image of fonts-elem-06-t +
+
+ + +
+

This test validates that the font element's horiz-adv-x is used as the default glyph's advance when there is no glyph advance specified. All fonts have a units-per-em of 1000.

+

The first row shows a layout with a default adavance of 1000. Glyphs have no advance so the 1000 default should be used.

+

The second row shows a layout with a default adavance of 2000. Glyphs have no advance so the 2000 default should be used.

+

The last row shows a layout with a default adavance of 0. Glyphs have a specified advance so the 0 default should be ignored.

+

Reference blue markers show the expected glyph positions.

+ +
+ + + diff --git a/test/W3C_SVG_12_TinyTestSuite_beta/htmlEmbedHarness/fonts-glyph-02-t.html b/test/W3C_SVG_12_TinyTestSuite_beta/htmlEmbedHarness/fonts-glyph-02-t.html new file mode 100755 index 00000000..31d1f3b1 --- /dev/null +++ b/test/W3C_SVG_12_TinyTestSuite_beta/htmlEmbedHarness/fonts-glyph-02-t.html @@ -0,0 +1,81 @@ + + + + + + + + +SVG 1.2 Tiny test:fonts-glyph-02-t + + + + + + + + + + +
+ + + + + + + + + + + + +
+

fonts-glyph-02-t

+
+ + + raster image of fonts-glyph-02-t +
+
+ + +
+

The first subtest tests the arabic-form attribute and should produce a 'downward triangle', a 'space', a 'square', a 'diamond' and then an 'upward triangle' in this order. Remembering that arabic text is right to left.

+

The second subtest is the same, but with glyphs for the letter khah. It should match the reference image.

+ +
+ + + diff --git a/test/W3C_SVG_12_TinyTestSuite_beta/htmlEmbedHarness/fonts-glyph-03-t.html b/test/W3C_SVG_12_TinyTestSuite_beta/htmlEmbedHarness/fonts-glyph-03-t.html new file mode 100755 index 00000000..eb0f3e60 --- /dev/null +++ b/test/W3C_SVG_12_TinyTestSuite_beta/htmlEmbedHarness/fonts-glyph-03-t.html @@ -0,0 +1,84 @@ + + + + + + + + +SVG 1.2 Tiny test:fonts-glyph-03-t + + + + + + + + + + +
+ + + + + + + + + + + + +
+

fonts-glyph-03-t

+
+ + + raster image of fonts-glyph-03-t +
+
+ + +
+

+ This files tests the lang attribute support of the glyph element. The test should produce an upward-triangle for the first (en) test element and a square for the second (fr) and third + (fr-ca) text element. In the third case, a glyph for fr is also suitable for a more specific language text fr-ca. In the fourth case, no suitable language specific or general glyph is + provided by the test so a fallback font for the letter 'a' should be used. A triangle or square must not be displayed in the fourth case. +

+ +
+ + + diff --git a/test/W3C_SVG_12_TinyTestSuite_beta/htmlEmbedHarness/fonts-glyph-04-t.html b/test/W3C_SVG_12_TinyTestSuite_beta/htmlEmbedHarness/fonts-glyph-04-t.html new file mode 100755 index 00000000..8c0ab5b2 --- /dev/null +++ b/test/W3C_SVG_12_TinyTestSuite_beta/htmlEmbedHarness/fonts-glyph-04-t.html @@ -0,0 +1,80 @@ + + + + + + + + +SVG 1.2 Tiny test:fonts-glyph-04-t + + + + + + + + + + +
+ + + + + + + + + + + + +
+

fonts-glyph-04-t

+
+ + + raster image of fonts-glyph-04-t +
+
+ + +
+

This tests that glyph selection is done in the order in the definition of the font element. The first line of text should be represented by two triangles and an 'l'. The second line should be represented by a square.

+ +
+ + + diff --git a/test/W3C_SVG_12_TinyTestSuite_beta/htmlEmbedHarness/fonts-glyph-201-t.html b/test/W3C_SVG_12_TinyTestSuite_beta/htmlEmbedHarness/fonts-glyph-201-t.html new file mode 100755 index 00000000..e11355ed --- /dev/null +++ b/test/W3C_SVG_12_TinyTestSuite_beta/htmlEmbedHarness/fonts-glyph-201-t.html @@ -0,0 +1,89 @@ + + + + + + + + +SVG 1.2 Tiny test:fonts-glyph-201-t + + + + + + + + + + +
+ + + + + + + + + + + + +
+

fonts-glyph-201-t

+
+ + + raster image of fonts-glyph-201-t +
+
+ + +
+

+ Test that ligatures are always used, and only used, when they occur before the + glyphs for characters they are ligatures of. The word "fjord" is displayed twice; + the top one must use the fj ligature and the bottom one must not; the top of the letter f overlaps the + dot of the letter i.. +

+

+ Two fonts are defined, almost identical; in one the fj ligature is the + first glyph defined, in the second one it is the last glyph. +

+ +
+ + + diff --git a/test/W3C_SVG_12_TinyTestSuite_beta/htmlEmbedHarness/fonts-glyph-202-t.html b/test/W3C_SVG_12_TinyTestSuite_beta/htmlEmbedHarness/fonts-glyph-202-t.html new file mode 100755 index 00000000..c32bb655 --- /dev/null +++ b/test/W3C_SVG_12_TinyTestSuite_beta/htmlEmbedHarness/fonts-glyph-202-t.html @@ -0,0 +1,90 @@ + + + + + + + + +SVG 1.2 Tiny test:fonts-glyph-202-t + + + + + + + + + + +
+ + + + + + + + + + + + +
+

fonts-glyph-202-t

+
+ + + raster image of fonts-glyph-202-t +
+
+ + +
+

+ Test that ligatures are always used, and only used, when they occur before the + glyphs for characters they are ligatures of. The word "fjord" is displayed twice; + the lower one must use the fj ligature and the upper one must not; the top of the letter f overlaps the + dot of the letter j.. +

+

+ Two fonts are defined, almost identical; in one the fj ligature is + defined after "f" but before "j"; in the second one it is the last glyph. + This tests longest-substring matching. +

+ +
+ + + diff --git a/test/W3C_SVG_12_TinyTestSuite_beta/htmlEmbedHarness/fonts-glyph-203-t.html b/test/W3C_SVG_12_TinyTestSuite_beta/htmlEmbedHarness/fonts-glyph-203-t.html new file mode 100755 index 00000000..5ec0119a --- /dev/null +++ b/test/W3C_SVG_12_TinyTestSuite_beta/htmlEmbedHarness/fonts-glyph-203-t.html @@ -0,0 +1,88 @@ + + + + + + + + +SVG 1.2 Tiny test:fonts-glyph-203-t + + + + + + + + + + +
+ + + + + + + + + + + + +
+

fonts-glyph-203-t

+
+ + + raster image of fonts-glyph-203-t +
+
+ + +
+ +

+ Test that all of the SVG path commands are accepted for defining glyphs. The upper, + black text must be a reflection of the lower, colored glyph shapes. +

+

+ The letter A uses L commands, the letter H uses H and V commands, and + the letter B uses cubic beziers. The letter C uses a mix of quadratic beziers and vertical lines. +

+ +
+ + + diff --git a/test/W3C_SVG_12_TinyTestSuite_beta/htmlEmbedHarness/fonts-kern-01-t.html b/test/W3C_SVG_12_TinyTestSuite_beta/htmlEmbedHarness/fonts-kern-01-t.html new file mode 100755 index 00000000..1c23e7a0 --- /dev/null +++ b/test/W3C_SVG_12_TinyTestSuite_beta/htmlEmbedHarness/fonts-kern-01-t.html @@ -0,0 +1,88 @@ + + + + + + + + +SVG 1.2 Tiny test:fonts-kern-01-t + + + + + + + + + + +
+ + + + + + + + + + + + +
+

fonts-kern-01-t

+
+ + + raster image of fonts-kern-01-t +
+
+ + +
+

This test validates handling of the hkern element.

+

In all instances, a text element matching a font with hkern is displayed along with reference markers showing the expected glyph positioning.

+

The 'fontA' cell shows the string "12" with "fontA" for which there in a kerning pair defined with u1="1" and u2="2".

+

The 'fontB' cell shows the string "12" with "fontB" for which there in a kerning pair defined with g1="gl_1" and g2="gl_2", where "gl_1" has unicode="1" and "gl_2" has unicode="2".

+

The 'fontC' cell shows the string "1234" with "fontC" were the same kerning pair uses u1/u2 to match "12" and g1/g2 to match "34".

+

The 'fontD' cell shows the string "1234" with "fontD" were the same kerning pair uses u1/u2 to match "12" and "34" (u1/u2 are lists of character vales).

+

The 'fontE' cell shows the string "1234" with "fontE" were the same kerning pair uses g1/g2 to match "12" and "34" (g1/g2 are lists of names).

+

The 'fontF' cell shows the string "1234" with "fontF" were the same kerning pair uses u1/u2 to match "12" and "34" (u1/u2 are unicode ranges).

+

The 'fontG' cell shows the string "12" with "fontG" were for which there is a kerning pair with u1 matching "1" and g2 matching "gl_2".

+ +
+ + + diff --git a/test/W3C_SVG_12_TinyTestSuite_beta/htmlEmbedHarness/fonts-overview-201-t.html b/test/W3C_SVG_12_TinyTestSuite_beta/htmlEmbedHarness/fonts-overview-201-t.html new file mode 100755 index 00000000..d8109ee8 --- /dev/null +++ b/test/W3C_SVG_12_TinyTestSuite_beta/htmlEmbedHarness/fonts-overview-201-t.html @@ -0,0 +1,89 @@ + + + + + + + + +SVG 1.2 Tiny test:fonts-overview-201-t + + + + + + + + + + +
+ + + + + + + + + + + + +
+

fonts-overview-201-t

+
+ + + raster image of fonts-overview-201-t +
+
+ + +
+

+ This tests a range of values for the 'units per em' attribute. The + test is passed if the three letter β are all the same size. +

+

+ The same glyph is defined three times in three fonts, but with different values + for units-per-em - 1,000, 10, and 10,000 - and with the other numerical values + that depend on units-per-em scaled accordingly. Text using these fonts must all be displayed at the same size, + because the same font-size is used throughout. +

+ +
+ + + diff --git a/test/W3C_SVG_12_TinyTestSuite_beta/htmlEmbedHarness/index.html b/test/W3C_SVG_12_TinyTestSuite_beta/htmlEmbedHarness/index.html new file mode 100755 index 00000000..7e7791c6 --- /dev/null +++ b/test/W3C_SVG_12_TinyTestSuite_beta/htmlEmbedHarness/index.html @@ -0,0 +1,530 @@ + + + + + + + + +SVG 1.2 Tiny test suite + + + +

SVG 1.2 Tiny test suite

+

Below are the list of tests in the SVG 1.2 Tiny test suite. Each test +has a link to different versions as well as navigation.

+
    +
  1. animate-elem-02-t
  2. +
  3. animate-elem-03-t
  4. +
  5. animate-elem-04-t
  6. +
  7. animate-elem-05-t
  8. +
  9. animate-elem-06-t
  10. +
  11. animate-elem-07-t
  12. +
  13. animate-elem-08-t
  14. +
  15. animate-elem-09-t
  16. +
  17. animate-elem-10-t
  18. +
  19. animate-elem-11-t
  20. +
  21. animate-elem-12-t
  22. +
  23. animate-elem-13-t
  24. +
  25. animate-elem-14-t
  26. +
  27. animate-elem-15-t
  28. +
  29. animate-elem-17-t
  30. +
  31. animate-elem-19-t
  32. +
  33. animate-elem-20-t
  34. +
  35. animate-elem-201-t
  36. +
  37. animate-elem-202-t
  38. +
  39. animate-elem-203-t
  40. +
  41. animate-elem-205-t
  42. +
  43. animate-elem-206-t
  44. +
  45. animate-elem-207-t
  46. +
  47. animate-elem-209-t
  48. +
  49. animate-elem-21-t
  50. +
  51. animate-elem-210-t
  52. +
  53. animate-elem-211-t
  54. +
  55. animate-elem-212-t
  56. +
  57. animate-elem-213-t
  58. +
  59. animate-elem-214-t
  60. +
  61. animate-elem-215-t
  62. +
  63. animate-elem-216-t
  64. +
  65. animate-elem-217-t
  66. +
  67. animate-elem-218-t
  68. +
  69. animate-elem-219-t
  70. +
  71. animate-elem-22-t
  72. +
  73. animate-elem-221-t
  74. +
  75. animate-elem-222-t
  76. +
  77. animate-elem-225-t
  78. +
  79. animate-elem-226-t
  80. +
  81. animate-elem-227-t
  82. +
  83. animate-elem-23-t
  84. +
  85. animate-elem-24-t
  86. +
  87. animate-elem-25-t
  88. +
  89. animate-elem-26-t
  90. +
  91. animate-elem-27-t
  92. +
  93. animate-elem-28-t
  94. +
  95. animate-elem-29-t
  96. +
  97. animate-elem-30-t
  98. +
  99. animate-elem-31-t
  100. +
  101. animate-elem-32-t
  102. +
  103. animate-elem-33-t
  104. +
  105. animate-elem-34-t
  106. +
  107. animate-elem-35-t
  108. +
  109. animate-elem-36-t
  110. +
  111. animate-elem-37-t
  112. +
  113. animate-elem-38-t
  114. +
  115. animate-elem-39-t
  116. +
  117. animate-elem-40-t
  118. +
  119. animate-elem-41-t
  120. +
  121. animate-elem-44-t
  122. +
  123. animate-elem-46-t
  124. +
  125. animate-elem-52-t
  126. +
  127. animate-elem-53-t
  128. +
  129. animate-elem-61-t
  130. +
  131. animate-elem-64-t
  132. +
  133. animate-elem-65-t
  134. +
  135. animate-elem-66-t
  136. +
  137. animate-elem-67-t
  138. +
  139. animate-elem-68-t
  140. +
  141. animate-elem-69-t
  142. +
  143. animate-elem-70-t
  144. +
  145. animate-elem-77-t
  146. +
  147. animate-elem-78-t
  148. +
  149. animate-elem-80-t
  150. +
  151. animate-elem-81-t
  152. +
  153. animate-elem-82-t
  154. +
  155. animate-elem-83-t
  156. +
  157. animate-elem-84-t
  158. +
  159. animate-elem-85-t
  160. +
  161. animate-elem-86-t
  162. +
  163. conf-reader-201-t
  164. +
  165. coords-constr-201-t
  166. +
  167. coords-constr-202-t
  168. +
  169. coords-constr-203-t
  170. +
  171. coords-constr-204-t
  172. +
  173. coords-coord-01-t
  174. +
  175. coords-pAR-201-t
  176. +
  177. coords-trans-01-t
  178. +
  179. coords-trans-02-t
  180. +
  181. coords-trans-03-t
  182. +
  183. coords-trans-04-t
  184. +
  185. coords-trans-05-t
  186. +
  187. coords-trans-06-t
  188. +
  189. coords-trans-07-t
  190. +
  191. coords-trans-08-t
  192. +
  193. coords-trans-09-t
  194. +
  195. coords-units-01-t
  196. +
  197. coords-viewattr-05-t
  198. +
  199. extend-namespace-02-t
  200. +
  201. fonts-desc-02-t
  202. +
  203. fonts-elem-01-t
  204. +
  205. fonts-elem-02-t
  206. +
  207. fonts-elem-03-t
  208. +
  209. fonts-elem-06-t
  210. +
  211. fonts-glyph-02-t
  212. +
  213. fonts-glyph-03-t
  214. +
  215. fonts-glyph-04-t
  216. +
  217. fonts-glyph-201-t
  218. +
  219. fonts-glyph-202-t
  220. +
  221. fonts-glyph-203-t
  222. +
  223. fonts-kern-01-t
  224. +
  225. fonts-overview-201-t
  226. +
  227. interact-dom-02-t
  228. +
  229. interact-event-201-t
  230. +
  231. interact-event-202-t
  232. +
  233. interact-event-203-t
  234. +
  235. interact-focus-201-t
  236. +
  237. interact-focus-202-t
  238. +
  239. interact-focus-203-t
  240. +
  241. interact-focus-204-t
  242. +
  243. interact-focus-205-t
  244. +
  245. interact-focus-206-t
  246. +
  247. interact-focus-207-t
  248. +
  249. interact-focus-208-t
  250. +
  251. interact-focus-209-t
  252. +
  253. interact-focus-210-t
  254. +
  255. interact-focus-211-t
  256. +
  257. interact-focus-212-t
  258. +
  259. interact-order-04-t
  260. +
  261. interact-order-05-t
  262. +
  263. interact-order-06-t
  264. +
  265. interact-pevents-02-t
  266. +
  267. interact-pevents-05-t
  268. +
  269. interact-pevents-06-t
  270. +
  271. interact-pevents-07-t
  272. +
  273. interact-pevents-08-t
  274. +
  275. interact-zoom-01-t
  276. +
  277. interact-zoom-02-t
  278. +
  279. interact-zoom-03-t
  280. +
  281. intro-compat-201-t
  282. +
  283. jpeg-required-201-t
  284. +
  285. jpeg-required-202-t
  286. +
  287. jpeg-required-203-t
  288. +
  289. jpeg-required-204-t
  290. +
  291. jpeg-required-205-t
  292. +
  293. jpeg-required-206-t
  294. +
  295. jpeg-required-207-t
  296. +
  297. jpeg-required-208-t
  298. +
  299. jpeg-required-209-t
  300. +
  301. linking-a-03-t
  302. +
  303. linking-a-08-t
  304. +
  305. linking-a-201-t
  306. +
  307. linking-frag-201-t
  308. +
  309. linking-frag-202-t
  310. +
  311. linking-frag-203-t
  312. +
  313. linking-frag-204-t
  314. +
  315. linking-refs-201-t
  316. +
  317. linking-refs-202-t
  318. +
  319. linking-refs-203-t
  320. +
  321. linking-refs-204-t
  322. +
  323. linking-refs-205-t
  324. +
  325. linking-refs-206-t
  326. +
  327. linking-uri-03-t
  328. +
  329. media-alevel-201-t
  330. +
  331. media-alevel-202-t
  332. +
  333. media-alevel-203-t
  334. +
  335. media-alevel-204-t
  336. +
  337. media-alevel-205-t
  338. +
  339. media-alevel-206-t
  340. +
  341. media-alevel-207-t
  342. +
  343. media-alevel-208-t
  344. +
  345. media-anim-201-t
  346. +
  347. media-anim-202-t
  348. +
  349. media-anim-203-t
  350. +
  351. media-anim-204-t
  352. +
  353. media-anim-205-t
  354. +
  355. media-anim-206-t
  356. +
  357. media-anim-207-t
  358. +
  359. media-anim-208-t
  360. +
  361. media-anim-209-t
  362. +
  363. media-anim-210-t
  364. +
  365. media-anim-211-t
  366. +
  367. media-anim-212-t
  368. +
  369. media-anim-213-t
  370. +
  371. media-audio-201-t
  372. +
  373. media-audio-202-t
  374. +
  375. media-audio-203-t
  376. +
  377. media-audio-204-t
  378. +
  379. media-audio-205-t
  380. +
  381. media-audio-206-t
  382. +
  383. media-audio-207-t
  384. +
  385. media-audio-208-t
  386. +
  387. media-audio-209-t
  388. +
  389. media-audio-210-t
  390. +
  391. media-audio-211-t
  392. +
  393. media-audio-212-t
  394. +
  395. media-audio-213-t
  396. +
  397. media-audio-214-t
  398. +
  399. media-audio-215-t
  400. +
  401. media-video-201-t
  402. +
  403. media-video-202-t
  404. +
  405. media-video-203-t
  406. +
  407. media-video-204-t
  408. +
  409. media-video-205-t
  410. +
  411. media-video-206-t
  412. +
  413. media-video-207-t
  414. +
  415. media-video-208-t
  416. +
  417. media-video-209-t
  418. +
  419. media-video-210-t
  420. +
  421. media-video-211-t
  422. +
  423. media-video-212-t
  424. +
  425. media-video-213-t
  426. +
  427. media-video-214-t
  428. +
  429. media-video-215-t
  430. +
  431. media-video-216-t
  432. +
  433. media-video-218-t
  434. +
  435. media-video-219-t
  436. +
  437. media-video-220-t
  438. +
  439. media-video-221-t
  440. +
  441. media-video-222-t
  442. +
  443. metadata-example-01-t
  444. +
  445. paint-color-01-t
  446. +
  447. paint-color-03-t
  448. +
  449. paint-color-04-t
  450. +
  451. paint-color-05-t
  452. +
  453. paint-color-201-t
  454. +
  455. paint-fill-01-t
  456. +
  457. paint-fill-02-t
  458. +
  459. paint-fill-03-t
  460. +
  461. paint-fill-04-t
  462. +
  463. paint-fill-05-t
  464. +
  465. paint-grad-04-t
  466. +
  467. paint-grad-05-t
  468. +
  469. paint-grad-07-t
  470. +
  471. paint-grad-08-t
  472. +
  473. paint-grad-09-t
  474. +
  475. paint-grad-11-t
  476. +
  477. paint-grad-12-t
  478. +
  479. paint-grad-15-t
  480. +
  481. paint-grad-16-t
  482. +
  483. paint-grad-17-t
  484. +
  485. paint-grad-18-t
  486. +
  487. paint-grad-19-t
  488. +
  489. paint-grad-201-t
  490. +
  491. paint-grad-202-t
  492. +
  493. paint-grad-203-t
  494. +
  495. paint-grad-204-t
  496. +
  497. paint-grad-205-t
  498. +
  499. paint-nsstroke-201-t
  500. +
  501. paint-nsstroke-203-t
  502. +
  503. paint-other-201-t
  504. +
  505. paint-other-203-t
  506. +
  507. paint-stroke-01-t
  508. +
  509. paint-stroke-02-t
  510. +
  511. paint-stroke-03-t
  512. +
  513. paint-stroke-04-t
  514. +
  515. paint-stroke-05-t
  516. +
  517. paint-stroke-06-t
  518. +
  519. paint-stroke-07-t
  520. +
  521. paint-stroke-08-t
  522. +
  523. paint-stroke-201-t
  524. +
  525. paint-stroke-202-t
  526. +
  527. paint-stroke-204-t
  528. +
  529. paint-stroke-205-t
  530. +
  531. paint-stroke-207-t
  532. +
  533. paint-vfill-201-t
  534. +
  535. paint-vfill-202-t
  536. +
  537. paint-vfill-203-t
  538. +
  539. paint-vfill-204-t
  540. +
  541. paint-vfill-205-t
  542. +
  543. paint-vfill-206-t
  544. +
  545. paths-data-01-t
  546. +
  547. paths-data-02-t
  548. +
  549. paths-data-04-t
  550. +
  551. paths-data-05-t
  552. +
  553. paths-data-06-t
  554. +
  555. paths-data-07-t
  556. +
  557. paths-data-08-t
  558. +
  559. paths-data-09-t
  560. +
  561. paths-data-10-t
  562. +
  563. paths-data-12-t
  564. +
  565. paths-data-13-t
  566. +
  567. paths-data-14-t
  568. +
  569. paths-data-15-t
  570. +
  571. render-elems-01-t
  572. +
  573. render-elems-02-t
  574. +
  575. render-elems-03-t
  576. +
  577. render-elems-06-t
  578. +
  579. render-elems-07-t
  580. +
  581. render-elems-08-t
  582. +
  583. render-groups-01-t
  584. +
  585. render-groups-03-t
  586. +
  587. script-element-201-t
  588. +
  589. script-element-202-t
  590. +
  591. script-element-203-t
  592. +
  593. script-handle-05-t
  594. +
  595. script-handle-06-t
  596. +
  597. script-handle-07-t
  598. +
  599. script-handle-08-t
  600. +
  601. script-handle-201-t
  602. +
  603. script-handle-202-t
  604. +
  605. script-listener-201-t
  606. +
  607. script-listener-202-t
  608. +
  609. script-listener-203-t
  610. +
  611. script-listener-204-t
  612. +
  613. shapes-circle-01-t
  614. +
  615. shapes-circle-02-t
  616. +
  617. shapes-circle-03-t
  618. +
  619. shapes-ellipse-01-t
  620. +
  621. shapes-ellipse-02-t
  622. +
  623. shapes-ellipse-03-t
  624. +
  625. shapes-intro-01-t
  626. +
  627. shapes-line-01-t
  628. +
  629. shapes-line-02-t
  630. +
  631. shapes-polygon-01-t
  632. +
  633. shapes-polygon-02-t
  634. +
  635. shapes-polyline-01-t
  636. +
  637. shapes-polyline-02-t
  638. +
  639. shapes-rect-01-t
  640. +
  641. shapes-rect-02-t
  642. +
  643. shapes-rect-03-t
  644. +
  645. struct-class-201-t
  646. +
  647. struct-common-201-t
  648. +
  649. struct-cond-01-t
  650. +
  651. struct-cond-02-t
  652. +
  653. struct-cond-03-t
  654. +
  655. struct-cond-204-t
  656. +
  657. struct-cond-205-t
  658. +
  659. struct-cond-209-t
  660. +
  661. struct-cond-210-t
  662. +
  663. struct-defs-01-t
  664. +
  665. struct-defs-201-t
  666. +
  667. struct-discard-201-t
  668. +
  669. struct-discard-204-t
  670. +
  671. struct-discard-205-t
  672. +
  673. struct-discard-206-t
  674. +
  675. struct-discard-207-t
  676. +
  677. struct-frag-02-t
  678. +
  679. struct-frag-03-t
  680. +
  681. struct-frag-04-t
  682. +
  683. struct-frag-05-t
  684. +
  685. struct-frag-06-t
  686. +
  687. struct-group-01-t
  688. +
  689. struct-group-03-t
  690. +
  691. struct-image-01-t
  692. +
  693. struct-image-03-t
  694. +
  695. struct-image-04-t
  696. +
  697. struct-image-06-t
  698. +
  699. struct-image-07-t
  700. +
  701. struct-image-08-t
  702. +
  703. struct-image-09-t
  704. +
  705. struct-image-10-t
  706. +
  707. struct-progressive-201-t
  708. +
  709. struct-progressive-202-t
  710. +
  711. struct-progressive-203-t
  712. +
  713. struct-progressive-204-t
  714. +
  715. struct-svg-201-t
  716. +
  717. struct-svg-202-t
  718. +
  719. struct-svg-203-t
  720. +
  721. struct-svg-204-t
  722. +
  723. struct-use-01-t
  724. +
  725. struct-use-03-t
  726. +
  727. struct-use-09-t
  728. +
  729. struct-use-201-t
  730. +
  731. struct-use-202-t
  732. +
  733. struct-use-203-t
  734. +
  735. struct-use-204-t
  736. +
  737. struct-use-205-t
  738. +
  739. struct-use-206-t
  740. +
  741. struct-use-207-t
  742. +
  743. struct-use-208-t
  744. +
  745. struct-use-209-t
  746. +
  747. struct-use-recursion-01-t
  748. +
  749. struct-use-recursion-02-t
  750. +
  751. struct-use-recursion-03-t
  752. +
  753. styling-inherit-01-t
  754. +
  755. styling-inherit-02-t
  756. +
  757. styling-inherit-03-t
  758. +
  759. styling-pres-01-t
  760. +
  761. text-align-01-t
  762. +
  763. text-align-07-t
  764. +
  765. text-align-08-t
  766. +
  767. text-align-201-t
  768. +
  769. text-align-202-t
  770. +
  771. text-area-201-t
  772. +
  773. text-area-202-t
  774. +
  775. text-area-203-t
  776. +
  777. text-area-204-t
  778. +
  779. text-area-205-t
  780. +
  781. text-area-206-t
  782. +
  783. text-area-207-t
  784. +
  785. text-area-208-t
  786. +
  787. text-area-209-t
  788. +
  789. text-area-210-t
  790. +
  791. text-area-211-t
  792. +
  793. text-area-213-t
  794. +
  795. text-area-220-t
  796. +
  797. text-area-221-t
  798. +
  799. text-area-222-t
  800. +
  801. text-edit-201-t
  802. +
  803. text-fonts-01-t
  804. +
  805. text-fonts-02-t
  806. +
  807. text-fonts-03-t
  808. +
  809. text-fonts-04-t
  810. +
  811. text-fonts-202-t
  812. +
  813. text-intro-01-t
  814. +
  815. text-intro-04-t
  816. +
  817. text-intro-05-t
  818. +
  819. text-intro-06-t
  820. +
  821. text-intro-201-t
  822. +
  823. text-text-04-t
  824. +
  825. text-text-06-t
  826. +
  827. text-text-07-t
  828. +
  829. text-text-08-t
  830. +
  831. text-text-09-t
  832. +
  833. text-tselect-03-t
  834. +
  835. text-ws-01-t
  836. +
  837. text-ws-02-t
  838. +
  839. udom-conform-201-t
  840. +
  841. udom-dom-201-t
  842. +
  843. udom-dom-202-t
  844. +
  845. udom-dom-203-t
  846. +
  847. udom-dom-204-t
  848. +
  849. udom-dom-206-t
  850. +
  851. udom-dom-207-t
  852. +
  853. udom-dom-209-t
  854. +
  855. udom-dom-210-t
  856. +
  857. udom-dom-211-t
  858. +
  859. udom-dom-213-t
  860. +
  861. udom-event-201-t
  862. +
  863. udom-event-202-t
  864. +
  865. udom-event-203-t
  866. +
  867. udom-event-204-t
  868. +
  869. udom-event-205-t
  870. +
  871. udom-event-207-t
  872. +
  873. udom-event-208-t
  874. +
  875. udom-event-209-t
  876. +
  877. udom-event-210-t
  878. +
  879. udom-glob-201-t
  880. +
  881. udom-glob-202-t
  882. +
  883. udom-glob-203-t
  884. +
  885. udom-glob-204-t
  886. +
  887. udom-node-201-t
  888. +
  889. udom-node-202-t
  890. +
  891. udom-node-204-t
  892. +
  893. udom-over-01-t
  894. +
  895. udom-smil-201-t
  896. +
  897. udom-smil-202-t
  898. +
  899. udom-smil-203-t
  900. +
  901. udom-svg-201-t
  902. +
  903. udom-svg-202-t
  904. +
  905. udom-svg-204-t
  906. +
  907. udom-svg-205-t
  908. +
  909. udom-svg-206-t
  910. +
  911. udom-svg-208-t
  912. +
  913. udom-svg-209-t
  914. +
  915. udom-svg-210-t
  916. +
  917. udom-svg-211-t
  918. +
  919. udom-svg-213-t
  920. +
  921. udom-svg-216-t
  922. +
  923. udom-svg-218-t
  924. +
  925. udom-svg-220-t
  926. +
  927. udom-svg-224-t
  928. +
  929. udom-svg-225-t
  930. +
  931. udom-svg-226-t
  932. +
  933. udom-svg-227-t
  934. +
  935. udom-svg-228-t
  936. +
  937. udom-svg-231-t
  938. +
  939. udom-svg-232-t
  940. +
  941. udom-svg-233-t
  942. +
  943. udom-svg-236-t
  944. +
  945. udom-svg-237-t
  946. +
  947. udom-svgcolor-201-t
  948. +
  949. udom-svglocatable-201-t
  950. +
  951. udom-svglocatable-202-t
  952. +
  953. udom-svglocatable-203-t
  954. +
  955. udom-svgmatrix-201-t
  956. +
  957. udom-svgmatrix-202-t
  958. +
  959. udom-svgmatrix-203-t
  960. +
  961. udom-svgmatrix-204-t
  962. +
  963. udom-svgmatrix-205-t
  964. +
  965. udom-svgmatrix-206-t
  966. +
  967. udom-svgpath-201-t
  968. +
  969. udom-svgpath-202-t
  970. +
  971. udom-svgpoint-201-t
  972. +
  973. udom-svgrect-201-t
  974. +
  975. udom-textcontent-201-t
  976. +
  977. udom-textcontent-202-t
  978. +
  979. udom-traitaccess-201-t
  980. +
  981. udom-traitaccess-202-t
  982. +
  983. udom-traitaccess-203-t
  984. +
  985. udom-traitaccess-204-t
  986. +
  987. udom-traitaccess-205-t
  988. +
  989. udom-traitaccess-206-t
  990. +
  991. udom-traitaccess-207-t
  992. +
+ + diff --git a/test/W3C_SVG_12_TinyTestSuite_beta/htmlEmbedHarness/interact-dom-02-t.html b/test/W3C_SVG_12_TinyTestSuite_beta/htmlEmbedHarness/interact-dom-02-t.html new file mode 100755 index 00000000..d0d60753 --- /dev/null +++ b/test/W3C_SVG_12_TinyTestSuite_beta/htmlEmbedHarness/interact-dom-02-t.html @@ -0,0 +1,101 @@ + + + + + + + + +SVG 1.2 Tiny test:interact-dom-02-t + + + + + + + + + + +
+ + + + + + + + + + + + +
+

interact-dom-02-t

+
+ + + raster image of interact-dom-02-t +
+
+ + +
+

+ Verify basic support for DOM event listener registration. The root svg element has an + onload handler where a click event listener is registered on group element 'Start Button'. +

+

+ If UI events listener registration is supported (and UI events), when the user + clicks on the button a text node is inserted reading "Event Listeners supported". +

+

+ At the end of the test, the start test button in changed to pink, + and the click event listener is removed from the the start button. +

+

+ Subsequent clicks on the start button should cause no effect if the event listener has + been removed successfully. If additional lines of text appear in the document that say + "Event Listeners supported", then the implementation has not successfully removed the event listener. +

+

+ After clicking at least once on the button, the rendered image should be + exactly as the reference image, except for differences in text display. +

+

This test requires that the user agent support scripting.

+ +
+ + + diff --git a/test/W3C_SVG_12_TinyTestSuite_beta/htmlEmbedHarness/interact-event-201-t.html b/test/W3C_SVG_12_TinyTestSuite_beta/htmlEmbedHarness/interact-event-201-t.html new file mode 100755 index 00000000..c5bad4ce --- /dev/null +++ b/test/W3C_SVG_12_TinyTestSuite_beta/htmlEmbedHarness/interact-event-201-t.html @@ -0,0 +1,82 @@ + + + + + + + + +SVG 1.2 Tiny test:interact-event-201-t + + + + + + + + + + +
+ + + + + + + + + + + + +
+

interact-event-201-t

+
+ + + raster image of interact-event-201-t +
+
+ + +
+

+ Test on event bubbling. Moving focus should make a red rect visible/invisible +

+ +
+ + + diff --git a/test/W3C_SVG_12_TinyTestSuite_beta/htmlEmbedHarness/interact-event-202-t.html b/test/W3C_SVG_12_TinyTestSuite_beta/htmlEmbedHarness/interact-event-202-t.html new file mode 100755 index 00000000..95c40586 --- /dev/null +++ b/test/W3C_SVG_12_TinyTestSuite_beta/htmlEmbedHarness/interact-event-202-t.html @@ -0,0 +1,85 @@ + + + + + + + + +SVG 1.2 Tiny test:interact-event-202-t + + + + + + + + + + +
+ + + + + + + + + + + + +
+

interact-event-202-t

+
+ + + raster image of interact-event-202-t +
+
+ + +
+

+ Testing event bubbling through 'use' elemnt. + Moving the mouse over the red rect should make a yellow rect visible underneath it. + Moving the mouse over the green rect should make a purple rect visible underneath it. + Moving the mouse away from the red/green rect should hide the rect underneath it again. +

+ +
+ + + diff --git a/test/W3C_SVG_12_TinyTestSuite_beta/htmlEmbedHarness/interact-event-203-t.html b/test/W3C_SVG_12_TinyTestSuite_beta/htmlEmbedHarness/interact-event-203-t.html new file mode 100755 index 00000000..dc1279ba --- /dev/null +++ b/test/W3C_SVG_12_TinyTestSuite_beta/htmlEmbedHarness/interact-event-203-t.html @@ -0,0 +1,97 @@ + + + + + + + + +SVG 1.2 Tiny test:interact-event-203-t + + + + + + + + + + +
+ + + + + + + + + + + + +
+

interact-event-203-t

+
+ + + raster image of interact-event-203-t +
+
+ + +
+

Tests 'mouseover' event on SVGElementInstance

+

+ This test contains four cases. The cases must produce the following results for the test to pass. + Case 1: On a mouseover event on the top square, all four squares must turn blue. + Case 2: On a mouseover event on the top middle square, all four squares must turn blue and a black stroke + must appear on the referencing square (element). + Case 3: On a mouseover event on the bottom middle square, all four squares must turn blue and a black + stroke must appear on the referencing square (element). + Case 4: On a mouseover event on the bottom square, all four squares must turn blue, and on a mousedown event + a black stroke must appear on the referencing square (element). +

+

+ What each case tests is as follows. + Case 1: mouseover event on SVGElementInstance. Referenceing an element that contains an event. + Case 2: mouseover event on referencing element. Event bubbling from SVGElementInstance to referencing element. + Case 3: mouseover event on parent of referencing element. Event bubbling from SVGElementInstance to referencing element ancestors. + Case 4: mousedown event on referencing element. SVGElementInstance is not effected by event listener on referencing element. +

+ +
+ + + diff --git a/test/W3C_SVG_12_TinyTestSuite_beta/htmlEmbedHarness/interact-focus-201-t.html b/test/W3C_SVG_12_TinyTestSuite_beta/htmlEmbedHarness/interact-focus-201-t.html new file mode 100755 index 00000000..c4e2328c --- /dev/null +++ b/test/W3C_SVG_12_TinyTestSuite_beta/htmlEmbedHarness/interact-focus-201-t.html @@ -0,0 +1,92 @@ + + + + + + + + +SVG 1.2 Tiny test:interact-focus-201-t + + + + + + + + + + +
+ + + + + + + + + + + + +
+

interact-focus-201-t

+
+ + + raster image of interact-focus-201-t +
+
+ + +
+

Test Focusable Property on Animated Elements.

+

Two rectangles and a text element are targets of animateColor elements which begin on focusin and end on focusout.

+

The top-level SVG has a nav-next attribute referencing the text element.

+

When loading the file, initial focus will go to the text element, which should be red.

+

Moving to the next focus will turn the text black while making the blue rectangle green.

+

Moving to the next focus will return the rectangle to blue and make the red rectangle green.

+

Moving to the next focus will return the rectangle to red and turn the text red.

+

Focus navigation is user agent dependant but typically is navigated with the keyboard keys.

+

TAB or arrow keys move the focus while the ENTER key activates the focused element.

+

+ User agent dependent behavior is accepted with all focus tests. Focus can be given immediately to first element in the focus ring, + or held in the UA until focus is requested - then focus is given to the first element. +

+ +
+ + + diff --git a/test/W3C_SVG_12_TinyTestSuite_beta/htmlEmbedHarness/interact-focus-202-t.html b/test/W3C_SVG_12_TinyTestSuite_beta/htmlEmbedHarness/interact-focus-202-t.html new file mode 100755 index 00000000..eccb27a3 --- /dev/null +++ b/test/W3C_SVG_12_TinyTestSuite_beta/htmlEmbedHarness/interact-focus-202-t.html @@ -0,0 +1,106 @@ + + + + + + + + +SVG 1.2 Tiny test:interact-focus-202-t + + + + + + + + + + +
+ + + + + + + + + + + + +
+

interact-focus-202-t

+
+ + + raster image of interact-focus-202-t +
+
+ + +
+

Test Focusable Property

+

Testing the focusable property : its default value and animatability on text and anchor elements.

+

The 1st text is the target of animateColor which starts on focusin, and also has the focusable attribute set to false.

+

The 2nd text does not have a focusable attribute and is not the target of animations which start by focus events.

+

The 3rd text is the target of animateColor which starts on focusin.

+

The 4th text is the target of animateColor which starts on activate.

+

The 5th text is the child of an a element.

+

The 6th text is the child of an a element and also has the focusable attribute set to false.

+

The 7th text has the editable attribute set to simple.

+

The 8th text is the observer DOMFocusIn and DOMFocusOut handlers.

+

The 9th and 10th text elements are used to modify the focusable attribute of the 11th element.

+

+ The 11th text is the target of animateColor which starts on focusin, and also has the focusable attribute set to false. + The focusable attribute is modified by activate events on the 9th and 10th elements. +

+

The 12th and 13th text elements are used to modify the focusable attribute of the 14th element.

+

+ The 14th text is the child of an a element - the a element also has the focusable attribute set to false. + The focusable attribute is modified by activate events on the 12th and 13th elements. +

+ +

The focus ring will look like the following: 3, 4, 5, 7, 8, 9, 10, 12 and 13.

+

Activating the 9th text element will make the 11th element focusable.

+

Activating the 12th text element will make the 14th element focusable.

+ +

Focus navigation is user agent dependant but typically is navigated with the keyboard keys.

+

TAB or arrow keys move the focus while the ENTER key activates the focused element.

+ +
+ + + diff --git a/test/W3C_SVG_12_TinyTestSuite_beta/htmlEmbedHarness/interact-focus-203-t.html b/test/W3C_SVG_12_TinyTestSuite_beta/htmlEmbedHarness/interact-focus-203-t.html new file mode 100755 index 00000000..ed4ef25c --- /dev/null +++ b/test/W3C_SVG_12_TinyTestSuite_beta/htmlEmbedHarness/interact-focus-203-t.html @@ -0,0 +1,87 @@ + + + + + + + + +SVG 1.2 Tiny test:interact-focus-203-t + + + + + + + + + + +
+ + + + + + + + + + + + +
+

interact-focus-203-t

+
+ + + raster image of interact-focus-203-t +
+
+ + +
+

Test Focusable Elements Outside the Viewport

+

+ User interaction should navigate focus starting at 1 and go through 5. + This test applies only to user agents which locate to focus which is outside of the viewport, and + thus the pass criteria for this test is optional. +

+

Focus navigation is user agent dependant but typically is navigated with the keyboard keys.

+

TAB or arrow keys move the focus while the ENTER key activates the focused element.

+ +
+ + + diff --git a/test/W3C_SVG_12_TinyTestSuite_beta/htmlEmbedHarness/interact-focus-204-t.html b/test/W3C_SVG_12_TinyTestSuite_beta/htmlEmbedHarness/interact-focus-204-t.html new file mode 100755 index 00000000..ff905958 --- /dev/null +++ b/test/W3C_SVG_12_TinyTestSuite_beta/htmlEmbedHarness/interact-focus-204-t.html @@ -0,0 +1,85 @@ + + + + + + + + +SVG 1.2 Tiny test:interact-focus-204-t + + + + + + + + + + +
+ + + + + + + + + + + + +
+

interact-focus-204-t

+
+ + + raster image of interact-focus-204-t +
+
+ + +
+

Test Focusable Elements - Focus Direction

+

Focused text should be red. The default focus is the number 5.

+

Cardinal focus changes should work as expected, with wrapping.

+

Next/Previous go to next/prev numerical value.

+

Focus navigation is user agent dependant but typically is navigated with the keyboard keys.

+

TAB or arrow keys move the focus while the ENTER key activates the focused element.

+ +
+ + + diff --git a/test/W3C_SVG_12_TinyTestSuite_beta/htmlEmbedHarness/interact-focus-205-t.html b/test/W3C_SVG_12_TinyTestSuite_beta/htmlEmbedHarness/interact-focus-205-t.html new file mode 100755 index 00000000..3e55127a --- /dev/null +++ b/test/W3C_SVG_12_TinyTestSuite_beta/htmlEmbedHarness/interact-focus-205-t.html @@ -0,0 +1,83 @@ + + + + + + + + +SVG 1.2 Tiny test:interact-focus-205-t + + + + + + + + + + +
+ + + + + + + + + + + + +
+

interact-focus-205-t

+
+ + + raster image of interact-focus-205-t +
+
+ + +
+

Test Focusable Elements - Nested Elements

+

The circle should first be focused (red), then each square should stay red, due to bubbling.

+

Focus navigation is user agent dependant but typically is navigated with the keyboard keys.

+

TAB or arrow keys move the focus while the ENTER key activates the focused element.

+ +
+ + + diff --git a/test/W3C_SVG_12_TinyTestSuite_beta/htmlEmbedHarness/interact-focus-206-t.html b/test/W3C_SVG_12_TinyTestSuite_beta/htmlEmbedHarness/interact-focus-206-t.html new file mode 100755 index 00000000..0ceded12 --- /dev/null +++ b/test/W3C_SVG_12_TinyTestSuite_beta/htmlEmbedHarness/interact-focus-206-t.html @@ -0,0 +1,85 @@ + + + + + + + + +SVG 1.2 Tiny test:interact-focus-206-t + + + + + + + + + + +
+ + + + + + + + + + + + +
+

interact-focus-206-t

+
+ + + raster image of interact-focus-206-t +
+
+ + +
+

Test Focusable Elements - Invisible Items

+

+ Lines 1 to 3 should show up when receiving the focus. + Fill-opacity and visibility attributes are animated accordingly to show text. +

+

Line 4 should never receive the focus.

+ +
+ + + diff --git a/test/W3C_SVG_12_TinyTestSuite_beta/htmlEmbedHarness/interact-focus-207-t.html b/test/W3C_SVG_12_TinyTestSuite_beta/htmlEmbedHarness/interact-focus-207-t.html new file mode 100755 index 00000000..ef293a8d --- /dev/null +++ b/test/W3C_SVG_12_TinyTestSuite_beta/htmlEmbedHarness/interact-focus-207-t.html @@ -0,0 +1,87 @@ + + + + + + + + +SVG 1.2 Tiny test:interact-focus-207-t + + + + + + + + + + +
+ + + + + + + + + + + + +
+

interact-focus-207-t

+
+ + + raster image of interact-focus-207-t +
+
+ + +
+

This test tests initial focus within the svg document

+

+ The root SVG element has 'focusable' set to 'true'. + At start up an animation set element is used to change the poem + to red if the root element SVG has focus. +

+

Focus navigation is user agent dependant but typically is navigated with the keyboard keys.

+

TAB or arrow keys move the focus while the ENTER key activates the focused element.

+ +
+ + + diff --git a/test/W3C_SVG_12_TinyTestSuite_beta/htmlEmbedHarness/interact-focus-208-t.html b/test/W3C_SVG_12_TinyTestSuite_beta/htmlEmbedHarness/interact-focus-208-t.html new file mode 100755 index 00000000..c19ebe2c --- /dev/null +++ b/test/W3C_SVG_12_TinyTestSuite_beta/htmlEmbedHarness/interact-focus-208-t.html @@ -0,0 +1,115 @@ + + + + + + + + +SVG 1.2 Tiny test:interact-focus-208-t + + + + + + + + + + +
+ + + + + + + + + + + + +
+

interact-focus-208-t

+
+ + + raster image of interact-focus-208-t +
+
+ + +
+

Test Focusable Elements - tspan Element

+

+ Each tspan has an animation that sets the fill to green upon receiving + focus. The focus should be moved in turn to "Old", "pond", "frogs", + "jumped", "in", "sound", "of" and then "water". +

+

+ For the test to pass: +

+ +

+ In the 2nd phrase there are two nested tspan elements: "jumped" is in + the inner tspan, so focus should be received by the outer two words + "frogs", "in" and then by the word "jumped". +

+

+ Focus navigation is user agent dependant but typically is navigated + with the keyboard keys. +

+

+ TAB or arrow keys move the focus while the ENTER key activates the + focused element. +

+ +
+ + + diff --git a/test/W3C_SVG_12_TinyTestSuite_beta/htmlEmbedHarness/interact-focus-209-t.html b/test/W3C_SVG_12_TinyTestSuite_beta/htmlEmbedHarness/interact-focus-209-t.html new file mode 100755 index 00000000..50b12efb --- /dev/null +++ b/test/W3C_SVG_12_TinyTestSuite_beta/htmlEmbedHarness/interact-focus-209-t.html @@ -0,0 +1,120 @@ + + + + + + + + +SVG 1.2 Tiny test:interact-focus-209-t + + + + + + + + + + +
+ + + + + + + + + + + + +
+

interact-focus-209-t

+
+ + + raster image of interact-focus-209-t +
+
+ + +
+

Test Focusable Elements - tspan in a textArea

+

+ Each tspan has an animation that sets the fill to green upon receiving + focus. The focus should be moved in turn to "A", "lonely", "pond", "in", + "age-old", "stillness", "sleeps", "Apart," + "unstirred by sound or motion", "... till", "Suddenly", + "into", "it", "a", "lithe", "frog" and then "leaps". +

+

+ For the test to pass: +

+ +

+ In the 2nd line there are two nested tspan elements - "unstirred by + sound or motion" is in the inner tspan, so focus should be received + first by the outer two words "Apart", "till" and then by the inner + phrase. +

+

+ Focus navigation is user agent dependant but typically is navigated with + the keyboard keys. +

+

+ TAB or arrow keys move the focus while the ENTER key activates the + focused element. +

+ +
+ + + diff --git a/test/W3C_SVG_12_TinyTestSuite_beta/htmlEmbedHarness/interact-focus-210-t.html b/test/W3C_SVG_12_TinyTestSuite_beta/htmlEmbedHarness/interact-focus-210-t.html new file mode 100755 index 00000000..ea4421c4 --- /dev/null +++ b/test/W3C_SVG_12_TinyTestSuite_beta/htmlEmbedHarness/interact-focus-210-t.html @@ -0,0 +1,86 @@ + + + + + + + + +SVG 1.2 Tiny test:interact-focus-210-t + + + + + + + + + + +
+ + + + + + + + + + + + +
+

interact-focus-210-t

+
+ + + raster image of interact-focus-210-t +
+
+ + +
+

Test Focusability with the 'use' Element

+

+ The first four occurrences of "focus next" will highlight all four top rects. + All four bottom rects should be able to receive the focus and be red when they have focus. +

+

Focus navigation is user agent dependant but typically is navigated with the keyboard keys.

+

TAB or arrow keys move the focus while the ENTER key activates the focused element.

+ +
+ + + diff --git a/test/W3C_SVG_12_TinyTestSuite_beta/htmlEmbedHarness/interact-focus-211-t.html b/test/W3C_SVG_12_TinyTestSuite_beta/htmlEmbedHarness/interact-focus-211-t.html new file mode 100755 index 00000000..c165eebf --- /dev/null +++ b/test/W3C_SVG_12_TinyTestSuite_beta/htmlEmbedHarness/interact-focus-211-t.html @@ -0,0 +1,86 @@ + + + + + + + + +SVG 1.2 Tiny test:interact-focus-211-t + + + + + + + + + + +
+ + + + + + + + + + + + +
+

interact-focus-211-t

+
+ + + raster image of interact-focus-211-t +
+
+ + +
+

Test Focusability with the 'use' Element

+

+ There are three 'use' copies of the poem arranged diagonally. + As each poem receives focus it should become highlighted. +

+

Focus navigation is user agent dependant but typically is navigated with the keyboard keys.

+

TAB or arrow keys move the focus while the ENTER key activates the focused element.

+ +
+ + + diff --git a/test/W3C_SVG_12_TinyTestSuite_beta/htmlEmbedHarness/interact-focus-212-t.html b/test/W3C_SVG_12_TinyTestSuite_beta/htmlEmbedHarness/interact-focus-212-t.html new file mode 100755 index 00000000..9c52a96b --- /dev/null +++ b/test/W3C_SVG_12_TinyTestSuite_beta/htmlEmbedHarness/interact-focus-212-t.html @@ -0,0 +1,83 @@ + + + + + + + + +SVG 1.2 Tiny test:interact-focus-212-t + + + + + + + + + + +
+ + + + + + + + + + + + +
+

interact-focus-212-t

+
+ + + raster image of interact-focus-212-t +
+
+ + +
+

+ Test on focus with a use-element. Focus should move first to the "g" element and then to its children. + When it gets to the use-element focus is first set on the use (right column) and then its children. +

+ +
+ + + diff --git a/test/W3C_SVG_12_TinyTestSuite_beta/htmlEmbedHarness/interact-order-04-t.html b/test/W3C_SVG_12_TinyTestSuite_beta/htmlEmbedHarness/interact-order-04-t.html new file mode 100755 index 00000000..c5df4251 --- /dev/null +++ b/test/W3C_SVG_12_TinyTestSuite_beta/htmlEmbedHarness/interact-order-04-t.html @@ -0,0 +1,87 @@ + + + + + + + + +SVG 1.2 Tiny test:interact-order-04-t + + + + + + + + + + +
+ + + + + + + + + + + + +
+

interact-order-04-t

+
+ + + raster image of interact-order-04-t +
+
+ + +
+

Test event bubbling of event attributes, part a.

+

+ The two circles test whether event bubbling is occurring to parents of + the target object, and whether the target object is able to prevent + bubbling. The supplemental text next to the circles describes what + should occur. +

+

This test requires that the user agent support scripting.

+ +
+ + + diff --git a/test/W3C_SVG_12_TinyTestSuite_beta/htmlEmbedHarness/interact-order-05-t.html b/test/W3C_SVG_12_TinyTestSuite_beta/htmlEmbedHarness/interact-order-05-t.html new file mode 100755 index 00000000..bf26e93f --- /dev/null +++ b/test/W3C_SVG_12_TinyTestSuite_beta/htmlEmbedHarness/interact-order-05-t.html @@ -0,0 +1,87 @@ + + + + + + + + +SVG 1.2 Tiny test:interact-order-05-t + + + + + + + + + + +
+ + + + + + + + + + + + +
+

interact-order-05-t

+
+ + + raster image of interact-order-05-t +
+
+ + +
+

Test event bubbling of event attributes, part b.

+

+ The two circles test whether events are handled in the proper order. + Events listeners and event attributes are processed before hyperlink + processing, which is processed before text selection. The supplemental + text next to the circles describes what should occur. +

+

This test requires that the user agent support scripting.

+ +
+ + + diff --git a/test/W3C_SVG_12_TinyTestSuite_beta/htmlEmbedHarness/interact-order-06-t.html b/test/W3C_SVG_12_TinyTestSuite_beta/htmlEmbedHarness/interact-order-06-t.html new file mode 100755 index 00000000..a7bb5c23 --- /dev/null +++ b/test/W3C_SVG_12_TinyTestSuite_beta/htmlEmbedHarness/interact-order-06-t.html @@ -0,0 +1,87 @@ + + + + + + + + +SVG 1.2 Tiny test:interact-order-06-t + + + + + + + + + + +
+ + + + + + + + + + + + +
+

interact-order-06-t

+
+ + + raster image of interact-order-06-t +
+
+ + +
+

Test event bubbling of event attributes, part c.

+

+ The three strings tests event handling behavior on text. Text selection + only is available after event listeners and event attributes have been + processed, and after hyperlink processing has occurred. The supplemental + text below the text strings describes what should occur. +

+

This test requires that the user agent support scripting.

+ +
+ + + diff --git a/test/W3C_SVG_12_TinyTestSuite_beta/htmlEmbedHarness/interact-pevents-02-t.html b/test/W3C_SVG_12_TinyTestSuite_beta/htmlEmbedHarness/interact-pevents-02-t.html new file mode 100755 index 00000000..6752a4fd --- /dev/null +++ b/test/W3C_SVG_12_TinyTestSuite_beta/htmlEmbedHarness/interact-pevents-02-t.html @@ -0,0 +1,94 @@ + + + + + + + + +SVG 1.2 Tiny test:interact-pevents-02-t + + + + + + + + + + +
+ + + + + + + + + + + + +
+

interact-pevents-02-t

+
+ + + raster image of interact-pevents-02-t +
+
+ + +
+

+ This test tests 'pointer-events' on text. Initially you should see four big rects with black stroke. In the + uppermost rect there should be 10 'O':s with black fill. In the second rect from the top there should be 10 'O':s + with no fill but with black stroke. In the third and fourth rects there should be no visible 'O':s at all. In the + fourth rect there should be two green rects, and in each of the other three rects there should be one green rect. +

+

+ Using the pointer device move the cursor over the rects all the rects from left to right. As the mouseover event + triggers the 'O':s will become visible and marked in either green (a pass) or red (a fail). +

+

+ The test has passed if after moving the cursor over all the rects: 1. all the 'O':s in the green rects have green + fill 2. there are no red 'O':s visible 3. there are 9 green 'O':s in the first and second rect, 4 in the third rect + and 6 in the fourth rect +

+ +
+ + + diff --git a/test/W3C_SVG_12_TinyTestSuite_beta/htmlEmbedHarness/interact-pevents-05-t.html b/test/W3C_SVG_12_TinyTestSuite_beta/htmlEmbedHarness/interact-pevents-05-t.html new file mode 100755 index 00000000..bc26742c --- /dev/null +++ b/test/W3C_SVG_12_TinyTestSuite_beta/htmlEmbedHarness/interact-pevents-05-t.html @@ -0,0 +1,105 @@ + + + + + + + + +SVG 1.2 Tiny test:interact-pevents-05-t + + + + + + + + + + +
+ + + + + + + + + + + + +
+

interact-pevents-05-t

+
+ + + raster image of interact-pevents-05-t +
+
+ + +
+

Tests the pointer-events attribute with different 'visible' values

+

+ The test is passed if the following conditions are met: + - In the first row of squares, the fill and stroke of squares 1 and 3 only must trigger a pale red rectangle to appear + over the squares on mouseover. + - In the second row of squares, the fill and stroke of squares 1 and 3 only must trigger a pale red rectangle to appear + over the squares on mouseover. + - In the third row of squares, the fill only of squares 1, 2 and 3 must trigger a pale red rectangle to appear + over the squares on mouseover. + - In the fourth row of squares, the stroke only of squares 1, 2 and 3 must trigger a pale red rectangle to appear + over the squares on mouseover. + - In the fifth row of squares, the fill and stroke of squares 1, 2 and 3 must trigger a pale red rectangle to appear + over the squares on mouseover. +

+

+ The 2nd and 3rd columns represent respectively rects with no fill/stroke and transparent fill/stroke. + The 4th column (most right column) has a non activatable pointer event as the visibility of the column + is set to hidden. +

+

+ The first row tests the default value for pointer-event, i.e. visible fill and stroke will trigger an event. + The second row tests pointer-events="visiblePainted", i.e. visible fill and stroke will trigger an event. + The third row tests pointer-events="visibleFill", i.e. visible fill only an event. + The fourth row tests pointer-events="visibleStroke", i.e. visible stroke only an event. + The fifth row tests pointer-events="visible", i.e. visible fill and stroke will trigger an event. +

+ +
+ + + diff --git a/test/W3C_SVG_12_TinyTestSuite_beta/htmlEmbedHarness/interact-pevents-06-t.html b/test/W3C_SVG_12_TinyTestSuite_beta/htmlEmbedHarness/interact-pevents-06-t.html new file mode 100755 index 00000000..e917ea31 --- /dev/null +++ b/test/W3C_SVG_12_TinyTestSuite_beta/htmlEmbedHarness/interact-pevents-06-t.html @@ -0,0 +1,103 @@ + + + + + + + + +SVG 1.2 Tiny test:interact-pevents-06-t + + + + + + + + + + +
+ + + + + + + + + + + + +
+

interact-pevents-06-t

+
+ + + raster image of interact-pevents-06-t +
+
+ + +
+

Tests the pointer-events attribute with different painting values

+

+ The test is passed if the following conditions are met: + - In the first row of squares, the fill and stroke of squares 1, 3 and 4 only must trigger a pale red rectangle to appear + over the squares on mouseover. + - In the second row of squares, the fill only of all squares must trigger a pale red rectangle to appear + over the squares on mouseover. + - In the third row of squares, the stroke only of all must trigger a pale red rectangle to appear + over the squares on mouseover. + - In the fourth row of squares, the fill and stroke of all squares must trigger a pale red rectangle to appear + over the squares on mouseover. + - In the fifth row of squares, nothing is to trigger on mouseover. +

+

+ The 2nd and 3rd columns represent respectively rects with no fill/stroke and transparent fill/stroke. + The 4th column has visibility set to hidden. +

+

+ The first row tests pointer-events="painted", i.e. event on fill and stroke that are set. + The second row tests pointer-events="fill", i.e. event on a fill that is set. + The third row tests pointer-events="stroke", i.e. even on a stroke that is et. + The fourth row tests pointer-events="all", i.e. event on fill and stroke that are set. + The fifth row tests pointer-events="none", i.e. no event. +

+ +
+ + + diff --git a/test/W3C_SVG_12_TinyTestSuite_beta/htmlEmbedHarness/interact-pevents-07-t.html b/test/W3C_SVG_12_TinyTestSuite_beta/htmlEmbedHarness/interact-pevents-07-t.html new file mode 100755 index 00000000..217f3613 --- /dev/null +++ b/test/W3C_SVG_12_TinyTestSuite_beta/htmlEmbedHarness/interact-pevents-07-t.html @@ -0,0 +1,83 @@ + + + + + + + + +SVG 1.2 Tiny test:interact-pevents-07-t + + + + + + + + + + +
+ + + + + + + + + + + + +
+

interact-pevents-07-t

+
+ + + raster image of interact-pevents-07-t +
+
+ + +
+

Testing pointer-events and rendering order

+

+ Rectangles should turn RED on mouseover Ovals should turn RED if Pointer-Events are set to "ALL" +

+ +
+ + + diff --git a/test/W3C_SVG_12_TinyTestSuite_beta/htmlEmbedHarness/interact-pevents-08-t.html b/test/W3C_SVG_12_TinyTestSuite_beta/htmlEmbedHarness/interact-pevents-08-t.html new file mode 100755 index 00000000..62232310 --- /dev/null +++ b/test/W3C_SVG_12_TinyTestSuite_beta/htmlEmbedHarness/interact-pevents-08-t.html @@ -0,0 +1,91 @@ + + + + + + + + +SVG 1.2 Tiny test:interact-pevents-08-t + + + + + + + + + + +
+ + + + + + + + + + + + +
+

interact-pevents-08-t

+
+ + + raster image of interact-pevents-08-t +
+
+ + +
+

Tests when text is considered hit by pointer-events.

+

+ The test is passed if the following conditions are met: + - Any single character in either of the lines of text has 'mouseover' event and the fill of the + characters' assocated line of text is set to green. + - The fill of the characters' assocated text is set back to black on a 'mouseout' event. +

+

+ The dy of the glyphs vary quite a bit, so it's easy to tell if an implementation uses the text + boundingbox for pointer-events. According to SVG 1.1 pointer-events on text is not supposed to use the text boundingbox, + instead it should use the 'character cells'. +

+ +
+ + + diff --git a/test/W3C_SVG_12_TinyTestSuite_beta/htmlEmbedHarness/interact-zoom-01-t.html b/test/W3C_SVG_12_TinyTestSuite_beta/htmlEmbedHarness/interact-zoom-01-t.html new file mode 100755 index 00000000..1de6b750 --- /dev/null +++ b/test/W3C_SVG_12_TinyTestSuite_beta/htmlEmbedHarness/interact-zoom-01-t.html @@ -0,0 +1,90 @@ + + + + + + + + +SVG 1.2 Tiny test:interact-zoom-01-t + + + + + + + + + + +
+ + + + + + + + + + + + +
+

interact-zoom-01-t

+
+ + + raster image of interact-zoom-01-t +
+
+ + +
+

+ Verify correct handling by Dynamic (interactive) viewers for the "zoomAndPan" attribute on the 'svg' element. This + is the first of three tests, and tests the default value. +

+

The test consists of a set of black circles with a blue stroke.

+

+ After the initial picture is displayed, the user should attempt to use the magnify controls that are required on + conforming Dynamic SVG viewers. The correct behaviour is that magnification and panning works correctly, as required + by a conformant viewer.. +

+

The rendered picture should match the reference image, except for possible variations in the labelling text (per CSS2 rules).

+ +
+ + + diff --git a/test/W3C_SVG_12_TinyTestSuite_beta/htmlEmbedHarness/interact-zoom-02-t.html b/test/W3C_SVG_12_TinyTestSuite_beta/htmlEmbedHarness/interact-zoom-02-t.html new file mode 100755 index 00000000..b398659e --- /dev/null +++ b/test/W3C_SVG_12_TinyTestSuite_beta/htmlEmbedHarness/interact-zoom-02-t.html @@ -0,0 +1,90 @@ + + + + + + + + +SVG 1.2 Tiny test:interact-zoom-02-t + + + + + + + + + + +
+ + + + + + + + + + + + +
+

interact-zoom-02-t

+
+ + + raster image of interact-zoom-02-t +
+
+ + +
+

+ Verify correct handling by Dynamic (interactive) viewers for the "zoomAndPan" attribute on the 'svg' element. This + is the second of three tests, and tests the value "magnify". +

+

The test consists of a set of black circles with a blue stroke.

+

+ After the initial picture is displayed, the user should attempt to use the magnify controls that are required on + conforming Dynamic SVG viewers. The correct behaviour is that magnification and panning works correctly, as required + by a conformant viewer.. +

+

The rendered picture should match the reference image, except for possible variations in the labelling text (per CSS2 rules).

+ +
+ + + diff --git a/test/W3C_SVG_12_TinyTestSuite_beta/htmlEmbedHarness/interact-zoom-03-t.html b/test/W3C_SVG_12_TinyTestSuite_beta/htmlEmbedHarness/interact-zoom-03-t.html new file mode 100755 index 00000000..0a9583f4 --- /dev/null +++ b/test/W3C_SVG_12_TinyTestSuite_beta/htmlEmbedHarness/interact-zoom-03-t.html @@ -0,0 +1,90 @@ + + + + + + + + +SVG 1.2 Tiny test:interact-zoom-03-t + + + + + + + + + + +
+ + + + + + + + + + + + +
+

interact-zoom-03-t

+
+ + + raster image of interact-zoom-03-t +
+
+ + +
+

+ Verify correct handling by Dynamic (interactive) viewers for the "zoomAndPan" attribute on the 'svg' element. This + is the third of three tests, and tests the value "disable". +

+

The test consists of a set of black circles with a blue stroke.

+

+ After the initial picture is displayed, the user should attempt to use the magnify controls that are required on + conforming Dynamic SVG viewers. The correct behaviour is that the magnify and pan controls shall have no effect -- the + viewer shall disable them. +

+

The rendered picture should match the reference image, except for possible variations in the labelling text (per CSS2 rules).

+ +
+ + + diff --git a/test/W3C_SVG_12_TinyTestSuite_beta/htmlEmbedHarness/intro-compat-201-t.html b/test/W3C_SVG_12_TinyTestSuite_beta/htmlEmbedHarness/intro-compat-201-t.html new file mode 100755 index 00000000..ca2c0a75 --- /dev/null +++ b/test/W3C_SVG_12_TinyTestSuite_beta/htmlEmbedHarness/intro-compat-201-t.html @@ -0,0 +1,84 @@ + + + + + + + + SVG 1.2 Tiny test:intro-compat-201-t + + + + + + + + +
+ + + + + + + + + + + + +
+

+ intro-compat-201-t

+
+ + + raster image of intro-compat-201-t +
+
+
+

+ Test That UTF-16 is supported, as required by the XML specification. If the implementation + treats this file as UTF-8 then every second character will be treated as 0. This + will typically mean that the file will not load, since the XML elements and attributes + will not be reconginized. +

+
+ + + diff --git a/test/W3C_SVG_12_TinyTestSuite_beta/htmlEmbedHarness/jpeg-required-201-t.html b/test/W3C_SVG_12_TinyTestSuite_beta/htmlEmbedHarness/jpeg-required-201-t.html new file mode 100755 index 00000000..1efac47e --- /dev/null +++ b/test/W3C_SVG_12_TinyTestSuite_beta/htmlEmbedHarness/jpeg-required-201-t.html @@ -0,0 +1,82 @@ + + + + + + + + +SVG 1.2 Tiny test:jpeg-required-201-t + + + + + + + + + + +
+ + + + + + + + + + + + +
+

jpeg-required-201-t

+
+ + + raster image of jpeg-required-201-t +
+
+ + +
+

+ Test RGB baseline JPEG with the most common chrominance subsampling, 4:1:1. +

+ +
+ + + diff --git a/test/W3C_SVG_12_TinyTestSuite_beta/htmlEmbedHarness/jpeg-required-202-t.html b/test/W3C_SVG_12_TinyTestSuite_beta/htmlEmbedHarness/jpeg-required-202-t.html new file mode 100755 index 00000000..e9a43803 --- /dev/null +++ b/test/W3C_SVG_12_TinyTestSuite_beta/htmlEmbedHarness/jpeg-required-202-t.html @@ -0,0 +1,82 @@ + + + + + + + + +SVG 1.2 Tiny test:jpeg-required-202-t + + + + + + + + + + +
+ + + + + + + + + + + + +
+

jpeg-required-202-t

+
+ + + raster image of jpeg-required-202-t +
+
+ + +
+

+ Test RGB optimised baseline JPEG with the most common chrominance subsampling, 4:1:1. +

+ +
+ + + diff --git a/test/W3C_SVG_12_TinyTestSuite_beta/htmlEmbedHarness/jpeg-required-203-t.html b/test/W3C_SVG_12_TinyTestSuite_beta/htmlEmbedHarness/jpeg-required-203-t.html new file mode 100755 index 00000000..14f6276b --- /dev/null +++ b/test/W3C_SVG_12_TinyTestSuite_beta/htmlEmbedHarness/jpeg-required-203-t.html @@ -0,0 +1,82 @@ + + + + + + + + +SVG 1.2 Tiny test:jpeg-required-203-t + + + + + + + + + + +
+ + + + + + + + + + + + +
+

jpeg-required-203-t

+
+ + + raster image of jpeg-required-203-t +
+
+ + +
+

+ Test progressive, RGB optimised JPEG with the most common chrominance subsampling, 4:1:1. +

+ +
+ + + diff --git a/test/W3C_SVG_12_TinyTestSuite_beta/htmlEmbedHarness/jpeg-required-204-t.html b/test/W3C_SVG_12_TinyTestSuite_beta/htmlEmbedHarness/jpeg-required-204-t.html new file mode 100755 index 00000000..44c5f586 --- /dev/null +++ b/test/W3C_SVG_12_TinyTestSuite_beta/htmlEmbedHarness/jpeg-required-204-t.html @@ -0,0 +1,82 @@ + + + + + + + + +SVG 1.2 Tiny test:jpeg-required-204-t + + + + + + + + + + +
+ + + + + + + + + + + + +
+

jpeg-required-204-t

+
+ + + raster image of jpeg-required-204-t +
+
+ + +
+

+ Test greyscale baseline JPEG. +

+ +
+ + + diff --git a/test/W3C_SVG_12_TinyTestSuite_beta/htmlEmbedHarness/jpeg-required-205-t.html b/test/W3C_SVG_12_TinyTestSuite_beta/htmlEmbedHarness/jpeg-required-205-t.html new file mode 100755 index 00000000..3ff9492a --- /dev/null +++ b/test/W3C_SVG_12_TinyTestSuite_beta/htmlEmbedHarness/jpeg-required-205-t.html @@ -0,0 +1,82 @@ + + + + + + + + +SVG 1.2 Tiny test:jpeg-required-205-t + + + + + + + + + + +
+ + + + + + + + + + + + +
+

jpeg-required-205-t

+
+ + + raster image of jpeg-required-205-t +
+
+ + +
+

+ Test RGB optimised baseline JPEG with the most common chrominance subsampling, 4:1:1 and with multiple APP markers. +

+ +
+ + + diff --git a/test/W3C_SVG_12_TinyTestSuite_beta/htmlEmbedHarness/jpeg-required-206-t.html b/test/W3C_SVG_12_TinyTestSuite_beta/htmlEmbedHarness/jpeg-required-206-t.html new file mode 100755 index 00000000..8438e922 --- /dev/null +++ b/test/W3C_SVG_12_TinyTestSuite_beta/htmlEmbedHarness/jpeg-required-206-t.html @@ -0,0 +1,82 @@ + + + + + + + + +SVG 1.2 Tiny test:jpeg-required-206-t + + + + + + + + + + +
+ + + + + + + + + + + + +
+

jpeg-required-206-t

+
+ + + raster image of jpeg-required-206-t +
+
+ + +
+

+ Test RGB optimised JPEG with the most common chrominance subsampling, 4:1:1 and with a float DCT. +

+ +
+ + + diff --git a/test/W3C_SVG_12_TinyTestSuite_beta/htmlEmbedHarness/jpeg-required-207-t.html b/test/W3C_SVG_12_TinyTestSuite_beta/htmlEmbedHarness/jpeg-required-207-t.html new file mode 100755 index 00000000..5fe6e8f4 --- /dev/null +++ b/test/W3C_SVG_12_TinyTestSuite_beta/htmlEmbedHarness/jpeg-required-207-t.html @@ -0,0 +1,82 @@ + + + + + + + + +SVG 1.2 Tiny test:jpeg-required-207-t + + + + + + + + + + +
+ + + + + + + + + + + + +
+

jpeg-required-207-t

+
+ + + raster image of jpeg-required-207-t +
+
+ + +
+

+ Test RGB optimised JPEG with no chrominance subsampling, 4:4:4. +

+ +
+ + + diff --git a/test/W3C_SVG_12_TinyTestSuite_beta/htmlEmbedHarness/jpeg-required-208-t.html b/test/W3C_SVG_12_TinyTestSuite_beta/htmlEmbedHarness/jpeg-required-208-t.html new file mode 100755 index 00000000..89aa238d --- /dev/null +++ b/test/W3C_SVG_12_TinyTestSuite_beta/htmlEmbedHarness/jpeg-required-208-t.html @@ -0,0 +1,83 @@ + + + + + + + + +SVG 1.2 Tiny test:jpeg-required-208-t + + + + + + + + + + +
+ + + + + + + + + + + + +
+

jpeg-required-208-t

+
+ + + raster image of jpeg-required-208-t +
+
+ + +
+

+ Test RGB optimised JPEG with very unusual chrominance subsampling: + 2x2, 4x1, 1x2. +

+ +
+ + + diff --git a/test/W3C_SVG_12_TinyTestSuite_beta/htmlEmbedHarness/jpeg-required-209-t.html b/test/W3C_SVG_12_TinyTestSuite_beta/htmlEmbedHarness/jpeg-required-209-t.html new file mode 100755 index 00000000..2020481d --- /dev/null +++ b/test/W3C_SVG_12_TinyTestSuite_beta/htmlEmbedHarness/jpeg-required-209-t.html @@ -0,0 +1,82 @@ + + + + + + + + +SVG 1.2 Tiny test:jpeg-required-209-t + + + + + + + + + + +
+ + + + + + + + + + + + +
+

jpeg-required-209-t

+
+ + + raster image of jpeg-required-209-t +
+
+ + +
+

+ Test RGB baseline JPEG with the most common chrominance subsampling, 4:1:1 and high compression level (low quality). +

+ +
+ + + diff --git a/test/W3C_SVG_12_TinyTestSuite_beta/htmlEmbedHarness/linking-a-03-t.html b/test/W3C_SVG_12_TinyTestSuite_beta/htmlEmbedHarness/linking-a-03-t.html new file mode 100755 index 00000000..4b32cd92 --- /dev/null +++ b/test/W3C_SVG_12_TinyTestSuite_beta/htmlEmbedHarness/linking-a-03-t.html @@ -0,0 +1,89 @@ + + + + + + + + +SVG 1.2 Tiny test:linking-a-03-t + + + + + + + + + + +
+ + + + + + + + + + + + +
+

linking-a-03-t

+
+ + + raster image of linking-a-03-t +
+
+ + +
+

+ This verifies the capability to handle links into SVG content, using the svgView fragment identifier form. + The test is passed if traversing this link shows a portion of the target + translated so that the green circle with id "circle-2" is in the top left corner of the viewer + frame. +

+

The initial view of this test contains one green arrow plus labelling text. The arrow is a link - follow the link.

+

+ The arrow links to ./images/linkingCircle-f.svg#svgView(transform(translate(64,227)))". +

+ +
+ + + diff --git a/test/W3C_SVG_12_TinyTestSuite_beta/htmlEmbedHarness/linking-a-08-t.html b/test/W3C_SVG_12_TinyTestSuite_beta/htmlEmbedHarness/linking-a-08-t.html new file mode 100755 index 00000000..1f165b04 --- /dev/null +++ b/test/W3C_SVG_12_TinyTestSuite_beta/htmlEmbedHarness/linking-a-08-t.html @@ -0,0 +1,83 @@ + + + + + + + + +SVG 1.2 Tiny test:linking-a-08-t + + + + + + + + + + +
+ + + + + + + + + + + + +
+

linking-a-08-t

+
+ + + raster image of linking-a-08-t +
+
+ + +
+

+ This is a simple test for links on text elements. The upper subtest has an 'a' element + inside a 'text' element; the lower subtest has the 'a' outside the 'text'. Both must be working links. +

+ +
+ + + diff --git a/test/W3C_SVG_12_TinyTestSuite_beta/htmlEmbedHarness/linking-a-201-t.html b/test/W3C_SVG_12_TinyTestSuite_beta/htmlEmbedHarness/linking-a-201-t.html new file mode 100755 index 00000000..43f93aa8 --- /dev/null +++ b/test/W3C_SVG_12_TinyTestSuite_beta/htmlEmbedHarness/linking-a-201-t.html @@ -0,0 +1,94 @@ + + + + + + + + +SVG 1.2 Tiny test:linking-a-201-t + + + + + + + + + + +
+ + + + + + + + + + + + +
+

linking-a-201-t

+
+ + + raster image of linking-a-201-t +
+
+ + +
+

+ Verify target attribute has priority over xlink attribute on the 'a' element. The destination expressed by + "xlink:href=" is overridden when 'target' is specified on the 'a' element. +

+

+ For the test to pass; each arrow in the test, when clicked, must show the image of the + linkingToc-t.svg in a new frame. +

+

+ The test uses the 'rect' and 'polygon' elements, as well as basic fill (solid simple colors), stroke + (black and colored wide and 1-pixel lines), font-family (Arial) and font-size properties. +

+

+ This test was modified and renamed from linking-a-07-t.svg. +

+ +
+ + + diff --git a/test/W3C_SVG_12_TinyTestSuite_beta/htmlEmbedHarness/linking-frag-201-t.html b/test/W3C_SVG_12_TinyTestSuite_beta/htmlEmbedHarness/linking-frag-201-t.html new file mode 100755 index 00000000..f003f606 --- /dev/null +++ b/test/W3C_SVG_12_TinyTestSuite_beta/htmlEmbedHarness/linking-frag-201-t.html @@ -0,0 +1,102 @@ + + + + + + + + +SVG 1.2 Tiny test:linking-frag-201-t + + + + + + + + + + +
+ + + + + + + + + + + + +
+

linking-frag-201-t

+
+ + + raster image of linking-frag-201-t +
+
+ + +
+

+ Testing Links to external and internal 'svgView' with Transforms. +

+

+ The first part of the test is passed if the rect links on the top line go to the linking-frag-202-t.svg file and + adjust the resulting view according to their respective text; + - The rect with 'Rotate' must link to the linking-frag-202-t.svg file and rotate resulting view + - The rect with 'Shift' must link to the linking-frag-202-t.svg file and shitf the resulting view + - The rect with 'Scale' must link to the linking-frag-202-t.svg file and scale the resulting view + - The rect with 'skewX' must link to the linking-frag-202-t.svg file and skew the resulting view along the X axis + - The rect with 'skewY' must link to the linking-frag-202-t.svg file and skew the resulting view along the Y axis + - The rect with 'identity' must link to the linking-frag-202-t.svg file and restore the view to an identity transformation. +

+

+ The second part of the test is passed if the rect links on the bottom line link to this file and adjust the + resulting view according to their respective text; + - The rect with 'Rotate' must link to this file and rotate resulting view + - The rect with 'Shift' must link to this file and shitf the resulting view + - The rect with 'Scale' must link to this file and scale the resulting view + - The rect with 'skewX' must link to this file and skew the resulting view along the X axis + - The rect with 'skewY' must link to this file and skew the resulting view along the Y axis + - The rect with 'identity' must link to this file and restore the view to an identity transformation. +

+ +
+ + + diff --git a/test/W3C_SVG_12_TinyTestSuite_beta/htmlEmbedHarness/linking-frag-202-t.html b/test/W3C_SVG_12_TinyTestSuite_beta/htmlEmbedHarness/linking-frag-202-t.html new file mode 100755 index 00000000..937c77da --- /dev/null +++ b/test/W3C_SVG_12_TinyTestSuite_beta/htmlEmbedHarness/linking-frag-202-t.html @@ -0,0 +1,102 @@ + + + + + + + + +SVG 1.2 Tiny test:linking-frag-202-t + + + + + + + + + + +
+ + + + + + + + + + + + +
+

linking-frag-202-t

+
+ + + raster image of linking-frag-202-t +
+
+ + +
+

+ Testing Links to external and internal 'svgView' with Transforms. +

+

+ The first part of the test is passed if the rect links on the top line go to the linking-frag-202-t.svg file and + adjust the resulting view according to their respective text; + - The rect with 'Rotate' must link to the linking-frag-201-t.svg file and rotate resulting view + - The rect with 'Shift' must link to the linking-frag-201-t.svg file and shitf the resulting view + - The rect with 'Scale' must link to the linking-frag-201-t.svg file and scale the resulting view + - The rect with 'skewX' must link to the linking-frag-201-t.svg file and skew the resulting view along the X axis + - The rect with 'skewY' must link to the linking-frag-201-t.svg file and skew the resulting view along the Y axis + - The rect with 'identity' must link to the linking-frag-201-t.svg file and restore the view to an identity transformation. +

+

+ The second part of the test is passed if the rect links on the bottom line link to this file and adjust the + resulting view according to their respective text; + - The rect with 'Rotate' must link to this file and rotate resulting view + - The rect with 'Shift' must link to this file and shitf the resulting view + - The rect with 'Scale' must link to this file and scale the resulting view + - The rect with 'skewX' must link to this file and skew the resulting view along the X axis + - The rect with 'skewY' must link to this file and skew the resulting view along the Y axis + - The rect with 'identity' must link to this file and restore the view to an identity transformation. +

+ +
+ + + diff --git a/test/W3C_SVG_12_TinyTestSuite_beta/htmlEmbedHarness/linking-frag-203-t.html b/test/W3C_SVG_12_TinyTestSuite_beta/htmlEmbedHarness/linking-frag-203-t.html new file mode 100755 index 00000000..78d842ea --- /dev/null +++ b/test/W3C_SVG_12_TinyTestSuite_beta/htmlEmbedHarness/linking-frag-203-t.html @@ -0,0 +1,97 @@ + + + + + + + + +SVG 1.2 Tiny test:linking-frag-203-t + + + + + + + + + + +
+ + + + + + + + + + + + +
+

linking-frag-203-t

+
+ + + raster image of linking-frag-203-t +
+
+ + +
+

Tests links to internal fragment identifiers.

+

+ Activating the link on the red circle should pan the viewport to + center the orange circle (which is initially located outside the viewport). +

+

+ Activating the link on the orange circle should pan the viewport to + center the yellow circle, and zoom out to show the entire yellow circle. +

+

+ Activating the link on the yellow circle should pan the viewport to center + the red circle, but remain at the existing zoom level (i.e. not zoom in). +

+

+ Note that the visual effect is only part of the pass criteria, and that the + changes in the viewport should be made using currentTranslate and currentScale, + not the viewBox; this part is currently not tested. +

+ +
+ + + diff --git a/test/W3C_SVG_12_TinyTestSuite_beta/htmlEmbedHarness/linking-frag-204-t.html b/test/W3C_SVG_12_TinyTestSuite_beta/htmlEmbedHarness/linking-frag-204-t.html new file mode 100755 index 00000000..b6a4db48 --- /dev/null +++ b/test/W3C_SVG_12_TinyTestSuite_beta/htmlEmbedHarness/linking-frag-204-t.html @@ -0,0 +1,84 @@ + + + + + + + + +SVG 1.2 Tiny test:linking-frag-204-t + + + + + + + + + + +
+ + + + + + + + + + + + +
+

linking-frag-204-t

+
+ + + raster image of linking-frag-204-t +
+
+ + +
+

Tests links to external fragment identifiers.

+

+ Activating the link on the green circle should load linking-frag-203-t and pan the viewport to + center the orange circle. +

+ +
+ + + diff --git a/test/W3C_SVG_12_TinyTestSuite_beta/htmlEmbedHarness/linking-refs-201-t.html b/test/W3C_SVG_12_TinyTestSuite_beta/htmlEmbedHarness/linking-refs-201-t.html new file mode 100755 index 00000000..a1d98ef0 --- /dev/null +++ b/test/W3C_SVG_12_TinyTestSuite_beta/htmlEmbedHarness/linking-refs-201-t.html @@ -0,0 +1,85 @@ + + + + + + + + +SVG 1.2 Tiny test:linking-refs-201-t + + + + + + + + + + +
+ + + + + + + + + + + + +
+

linking-refs-201-t

+
+ + + raster image of linking-refs-201-t +
+
+ + +
+

External Animated Use Elements

+

+ A 'use' elements place various animated fragments. + A local animate element is then applied to further animate the fragment.- +

+

-

+ +
+ + + diff --git a/test/W3C_SVG_12_TinyTestSuite_beta/htmlEmbedHarness/linking-refs-202-t.html b/test/W3C_SVG_12_TinyTestSuite_beta/htmlEmbedHarness/linking-refs-202-t.html new file mode 100755 index 00000000..00e64258 --- /dev/null +++ b/test/W3C_SVG_12_TinyTestSuite_beta/htmlEmbedHarness/linking-refs-202-t.html @@ -0,0 +1,87 @@ + + + + + + + + +SVG 1.2 Tiny test:linking-refs-202-t + + + + + + + + + + +
+ + + + + + + + + + + + +
+

linking-refs-202-t

+
+ + + raster image of linking-refs-202-t +
+
+ + +
+

Images with 'use' Element

+

+ The first is an external PNG reference. + The second is an inline base64 image defined in an external file. +

+

+ Both images must be identical for the test to pass. +

+ +
+ + + diff --git a/test/W3C_SVG_12_TinyTestSuite_beta/htmlEmbedHarness/linking-refs-203-t.html b/test/W3C_SVG_12_TinyTestSuite_beta/htmlEmbedHarness/linking-refs-203-t.html new file mode 100755 index 00000000..14618eb8 --- /dev/null +++ b/test/W3C_SVG_12_TinyTestSuite_beta/htmlEmbedHarness/linking-refs-203-t.html @@ -0,0 +1,96 @@ + + + + + + + + +SVG 1.2 Tiny test:linking-refs-203-t + + + + + + + + + + +
+ + + + + + + + + + + + +
+

linking-refs-203-t

+
+ + + raster image of linking-refs-203-t +
+
+ + +
+

+ Tests various external fragments with 'use' element: + fill, stroke, text, group, multiple levels, name clash and circular references +

+

+ SVG fragments defined in an external file are invoked with the 'use' element. + The test is passed if the following objects are rendered: + - Right top; square with a horizontal gradient fill from orange to yellow, diagonal gradient stroke from blue to pink + - Right middle top; square with a diagonal gradient fill from blue to pink, horizontal gradient stroke from orange to yellow + - Right middle bottom; the letters ABC in an SVG font + - Right bottom; the English alphabet a to j in the shape of a square + - Left Top; square with horizontal gradient fill from orange to yellow, and 3 circles all with a blue to red gradient fill + running diagonally inside the square + - Left middle top; green square with a yellow circle in the middle + - Left middle bottom; red square + - Left bottom; two identical squares with light blue fill. +

+ +
+ + + diff --git a/test/W3C_SVG_12_TinyTestSuite_beta/htmlEmbedHarness/linking-refs-204-t.html b/test/W3C_SVG_12_TinyTestSuite_beta/htmlEmbedHarness/linking-refs-204-t.html new file mode 100755 index 00000000..bdb1db75 --- /dev/null +++ b/test/W3C_SVG_12_TinyTestSuite_beta/htmlEmbedHarness/linking-refs-204-t.html @@ -0,0 +1,92 @@ + + + + + + + + +SVG 1.2 Tiny test:linking-refs-204-t + + + + + + + + + + +
+ + + + + + + + + + + + +
+

linking-refs-204-t

+
+ + + raster image of linking-refs-204-t +
+
+ + +
+

+ External Fragments with 'use' Element. +

+

+ Tests SVG fragments defined in an external file are invoked with the 'use' element. + The test is passed if the following objects are rendered: + - Right top; square with red fill and blue stroke + - Right middle; square with black fill + - Right bottom; the letters 'A' in blue, 'B' in red, 'C' in blue + - Left top; square with red fill and a circle in the middle with a blue fill + - Left middle; square with green fill + - Left bottom; square with green transparent fill with an overlapping circle with a blue transparent fill. +

+ +
+ + + diff --git a/test/W3C_SVG_12_TinyTestSuite_beta/htmlEmbedHarness/linking-refs-205-t.html b/test/W3C_SVG_12_TinyTestSuite_beta/htmlEmbedHarness/linking-refs-205-t.html new file mode 100755 index 00000000..a41e82fa --- /dev/null +++ b/test/W3C_SVG_12_TinyTestSuite_beta/htmlEmbedHarness/linking-refs-205-t.html @@ -0,0 +1,92 @@ + + + + + + + + +SVG 1.2 Tiny test:linking-refs-205-t + + + + + + + + + + +
+ + + + + + + + + + + + +
+

linking-refs-205-t

+
+ + + raster image of linking-refs-205-t +
+
+ + +
+

+ Tests a 'use' element referencing an 'image' element and an 'a' element with xml:base. +

+

+ The test is passed if two identical images are displayed. +

+

+ The image on the right is located in the images directory (../images/) while the + image on the left is located in image2 directory (../images/image2). The image on + the right is specified in the svglib3.svg file using an 'image' element. The image + on the left is specified in the svglib3.svg using an 'a' element. The 'a' element + contains a group around it that specifies the image2 directory using 'xml:base'. +

+ +
+ + + diff --git a/test/W3C_SVG_12_TinyTestSuite_beta/htmlEmbedHarness/linking-refs-206-t.html b/test/W3C_SVG_12_TinyTestSuite_beta/htmlEmbedHarness/linking-refs-206-t.html new file mode 100755 index 00000000..55de6d0a --- /dev/null +++ b/test/W3C_SVG_12_TinyTestSuite_beta/htmlEmbedHarness/linking-refs-206-t.html @@ -0,0 +1,93 @@ + + + + + + + + +SVG 1.2 Tiny test:linking-refs-206-t + + + + + + + + + + +
+ + + + + + + + + + + + +
+

linking-refs-206-t

+
+ + + raster image of linking-refs-206-t +
+
+ + +
+

+ Tests that values for the xlink role and arcrole attributes are stored in the DOM. + The test is passed if the raster image and the vector image both have dark + green and light green borders, same as the reference image. +

+

+ The values for role and arcrole are based on the RDDL specifications of + well known link natures (role) and well known link purposes (arcrole). Roles uses the namespace URI (for XML content types) or the canonical IANA URI of the media type registration (for non-XML content). +

+

+ A uDOM script reads the values of the xlink role and arcrole attributes, + checks that they are the correct values, and sets the fill colour of some rectangles + from shades of red (meaning incorrect) to shades of green (meaning correct). +

+ +
+ + + diff --git a/test/W3C_SVG_12_TinyTestSuite_beta/htmlEmbedHarness/linking-uri-03-t.html b/test/W3C_SVG_12_TinyTestSuite_beta/htmlEmbedHarness/linking-uri-03-t.html new file mode 100755 index 00000000..d08c3c0c --- /dev/null +++ b/test/W3C_SVG_12_TinyTestSuite_beta/htmlEmbedHarness/linking-uri-03-t.html @@ -0,0 +1,104 @@ + + + + + + + + +SVG 1.2 Tiny test:linking-uri-03-t + + + + + + + + + + +
+ + + + + + + + + + + + +
+

linking-uri-03-t

+
+ + + raster image of linking-uri-03-t +
+
+ + +
+

+ Verify the handling of the allowable xlink attributes on the 'a' element. The initial view of this test contains a + single green triangle, labelling text, and the usual template legend and frame. +

+

+ There is a link on the triangle, pointing to an external SVG file, which is in the images directory (../images/). + The target file contains SVG 'text' elements which comprise a TOC and brief description of all of the SVG Tiny 1.2 + test files for Linking. Upon clicking the triangle, the image of the linkingToc-t.svg file should replace the + initial view of this test case in the viewer frame. +

+

+ The purpose of the test is to verify that viewers tolerate the presence of xlink attributes on the 'a' element. The + presence of the attributes should not change the behavior of the test in any way. The results of executing the link + should be identical to executing the first (topmost) link of linking-uri-01-t. +

+

+ There are two reference images associated with this test case. The first illustrates the correct "start" or initial + state of the rendered SVG file. The second illustrates the correct image after the link is activated (to the + linkingToc-t.svg file). (Note. This harness does not yet provide access to multiple PNGs; the first, initial-state + PNG is shown.) +

+

+ The test uses the 'rect' element, as well as basic fill (solid simple colors), stroke (black and colored wide and + 1-pixel lines), font-family (Arial) and font-size properties. +

+ +
+ + + diff --git a/test/W3C_SVG_12_TinyTestSuite_beta/htmlEmbedHarness/media-alevel-201-t.html b/test/W3C_SVG_12_TinyTestSuite_beta/htmlEmbedHarness/media-alevel-201-t.html new file mode 100755 index 00000000..fa174363 --- /dev/null +++ b/test/W3C_SVG_12_TinyTestSuite_beta/htmlEmbedHarness/media-alevel-201-t.html @@ -0,0 +1,87 @@ + + + + + + + + +SVG 1.2 Tiny test:media-alevel-201-t + + + + + + + + + + +
+ + + + + + + + + + + + +
+

media-alevel-201-t

+
+ + + raster image of media-alevel-201-t +
+
+ + +
+

Testing 'audio' Element with the 'audio-level' Attribute

+

+ The scale at the bottom of the slide uses a 'set' element to modify the 'audio-level' on the sample audio element. + The 'audio' element can be triggered by activating the current focus. +

+

+ If the user agent does not support the 3GP media format, the test is still a pass. +

+ +
+ + + diff --git a/test/W3C_SVG_12_TinyTestSuite_beta/htmlEmbedHarness/media-alevel-202-t.html b/test/W3C_SVG_12_TinyTestSuite_beta/htmlEmbedHarness/media-alevel-202-t.html new file mode 100755 index 00000000..0f7df035 --- /dev/null +++ b/test/W3C_SVG_12_TinyTestSuite_beta/htmlEmbedHarness/media-alevel-202-t.html @@ -0,0 +1,89 @@ + + + + + + + + +SVG 1.2 Tiny test:media-alevel-202-t + + + + + + + + + + +
+ + + + + + + + + + + + +
+

media-alevel-202-t

+
+ + + raster image of media-alevel-202-t +
+
+ + +
+

Testing 'video' Element with the 'audio-level' Attribute

+

+ The scale at the bottom of the slide uses a 'set' element to modify the 'audio-level' on the sample video element. +

+

+ The 'video' element can also be triggered by activating the current focus. +

+

+ If the user agent does not support the 3GP media format, the test is still a pass. +

+ +
+ + + diff --git a/test/W3C_SVG_12_TinyTestSuite_beta/htmlEmbedHarness/media-alevel-203-t.html b/test/W3C_SVG_12_TinyTestSuite_beta/htmlEmbedHarness/media-alevel-203-t.html new file mode 100755 index 00000000..01b30c1c --- /dev/null +++ b/test/W3C_SVG_12_TinyTestSuite_beta/htmlEmbedHarness/media-alevel-203-t.html @@ -0,0 +1,85 @@ + + + + + + + + +SVG 1.2 Tiny test:media-alevel-203-t + + + + + + + + + + +
+ + + + + + + + + + + + +
+

media-alevel-203-t

+
+ + + raster image of media-alevel-203-t +
+
+ + +
+

+ Test on audio level animation. audio-level is animated to many values between 0 and 1. The volume dial graphic animates to show the expected relative volume. +

+

+ If the user agent does not support the WAV media format, the test is still a pass. +

+ +
+ + + diff --git a/test/W3C_SVG_12_TinyTestSuite_beta/htmlEmbedHarness/media-alevel-204-t.html b/test/W3C_SVG_12_TinyTestSuite_beta/htmlEmbedHarness/media-alevel-204-t.html new file mode 100755 index 00000000..9cabdaac --- /dev/null +++ b/test/W3C_SVG_12_TinyTestSuite_beta/htmlEmbedHarness/media-alevel-204-t.html @@ -0,0 +1,85 @@ + + + + + + + + +SVG 1.2 Tiny test:media-alevel-204-t + + + + + + + + + + +
+ + + + + + + + + + + + +
+

media-alevel-204-t

+
+ + + raster image of media-alevel-204-t +
+
+ + +
+

+ Test on animated audio-level. Two sound-clips have their audio-level animated to different values over 10 seconds. +

+

+ If the user agent does not support the WAV media format, the test is still a pass. +

+ +
+ + + diff --git a/test/W3C_SVG_12_TinyTestSuite_beta/htmlEmbedHarness/media-alevel-205-t.html b/test/W3C_SVG_12_TinyTestSuite_beta/htmlEmbedHarness/media-alevel-205-t.html new file mode 100755 index 00000000..ca1cf4cb --- /dev/null +++ b/test/W3C_SVG_12_TinyTestSuite_beta/htmlEmbedHarness/media-alevel-205-t.html @@ -0,0 +1,85 @@ + + + + + + + + +SVG 1.2 Tiny test:media-alevel-205-t + + + + + + + + + + +
+ + + + + + + + + + + + +
+

media-alevel-205-t

+
+ + + raster image of media-alevel-205-t +
+
+ + +
+

+ Test on audio volume control by animation. audio-level is animated from 0 to 1 over 10 seconds. +

+

+ If the user agent does not support the WAV media format, the test is still a pass. +

+ +
+ + + diff --git a/test/W3C_SVG_12_TinyTestSuite_beta/htmlEmbedHarness/media-alevel-206-t.html b/test/W3C_SVG_12_TinyTestSuite_beta/htmlEmbedHarness/media-alevel-206-t.html new file mode 100755 index 00000000..c46c5659 --- /dev/null +++ b/test/W3C_SVG_12_TinyTestSuite_beta/htmlEmbedHarness/media-alevel-206-t.html @@ -0,0 +1,85 @@ + + + + + + + + +SVG 1.2 Tiny test:media-alevel-206-t + + + + + + + + + + +
+ + + + + + + + + + + + +
+

media-alevel-206-t

+
+ + + raster image of media-alevel-206-t +
+
+ + +
+

+ Test on audio-level inheritance in several child elements. audio-level on the first element is 0.5. audio-level on the second sound is halved to 0.25. audio-level on the third and fourth sounds are halved agian to 0.125 and 0.0625 respectively. +

+

+ If the user agent does not support the WAV media format, the test is still a pass. +

+ +
+ + + diff --git a/test/W3C_SVG_12_TinyTestSuite_beta/htmlEmbedHarness/media-alevel-207-t.html b/test/W3C_SVG_12_TinyTestSuite_beta/htmlEmbedHarness/media-alevel-207-t.html new file mode 100755 index 00000000..07b8c137 --- /dev/null +++ b/test/W3C_SVG_12_TinyTestSuite_beta/htmlEmbedHarness/media-alevel-207-t.html @@ -0,0 +1,85 @@ + + + + + + + + +SVG 1.2 Tiny test:media-alevel-207-t + + + + + + + + + + +
+ + + + + + + + + + + + +
+

media-alevel-207-t

+
+ + + raster image of media-alevel-207-t +
+
+ + +
+

+ Test on audio. audio-level is set to "0" so no sound should be heard. +

+

+ If the user agent does not support the WAV media format, the test is still a pass. +

+ +
+ + + diff --git a/test/W3C_SVG_12_TinyTestSuite_beta/htmlEmbedHarness/media-alevel-208-t.html b/test/W3C_SVG_12_TinyTestSuite_beta/htmlEmbedHarness/media-alevel-208-t.html new file mode 100755 index 00000000..9877b343 --- /dev/null +++ b/test/W3C_SVG_12_TinyTestSuite_beta/htmlEmbedHarness/media-alevel-208-t.html @@ -0,0 +1,85 @@ + + + + + + + + +SVG 1.2 Tiny test:media-alevel-208-t + + + + + + + + + + +
+ + + + + + + + + + + + +
+

media-alevel-208-t

+
+ + + raster image of media-alevel-208-t +
+
+ + +
+

+ Test on audio. audio-level is set to "1" so a audio-file being repeated for 10s should be heard. +

+

+ If the user agent does not support the WAV media format, the test is still a pass. +

+ +
+ + + diff --git a/test/W3C_SVG_12_TinyTestSuite_beta/htmlEmbedHarness/media-anim-201-t.html b/test/W3C_SVG_12_TinyTestSuite_beta/htmlEmbedHarness/media-anim-201-t.html new file mode 100755 index 00000000..202f815f --- /dev/null +++ b/test/W3C_SVG_12_TinyTestSuite_beta/htmlEmbedHarness/media-anim-201-t.html @@ -0,0 +1,87 @@ + + + + + + + + +SVG 1.2 Tiny test:media-anim-201-t + + + + + + + + + + +
+ + + + + + + + + + + + +
+

media-anim-201-t

+
+ + + raster image of media-anim-201-t +
+
+ + +
+

This test validates the Animation element with external references.

+

There are five references. Each one is a separate file.

+

The time scale loops from 0 to 10 seconds - the vertical red line pans from left to right.

+

In the first example the two rectangles are set to rotate 90 degrees alternatively.

+

In the second case the circle has focus. Since this is the only item that has focus it can not loose focus and should remain red even when an attempt is made to change focus.

+

The third example has a circle that is set to change to red on a mouseover event. On mouseout the circle should change back to grey.

+

The forth example invokes the same external file twice - two squares with a gradiant should be rotating in sync continously.

+

The last case calls an animation that should display a blue square with five gradiant circles all rotating continously.

+ +
+ + + diff --git a/test/W3C_SVG_12_TinyTestSuite_beta/htmlEmbedHarness/media-anim-202-t.html b/test/W3C_SVG_12_TinyTestSuite_beta/htmlEmbedHarness/media-anim-202-t.html new file mode 100755 index 00000000..765c012d --- /dev/null +++ b/test/W3C_SVG_12_TinyTestSuite_beta/htmlEmbedHarness/media-anim-202-t.html @@ -0,0 +1,89 @@ + + + + + + + + +SVG 1.2 Tiny test:media-anim-202-t + + + + + + + + + + +
+ + + + + + + + + + + + +
+

media-anim-202-t

+
+ + + raster image of media-anim-202-t +
+
+ + +
+

Animation Elements with External References

+

+ This test validates the animation element with external references with emphases on time based animations. + The same external file is used for all seven tests. +

+

+ The 'initialVisibility' attribute is not specified so the default should apply - 'whenStarted'. + In other words the animations should not be visible until they start and then they should disappear as the + fill is not set to 'freeze' so the initial state should be re-instated. +

+ +
+ + + diff --git a/test/W3C_SVG_12_TinyTestSuite_beta/htmlEmbedHarness/media-anim-203-t.html b/test/W3C_SVG_12_TinyTestSuite_beta/htmlEmbedHarness/media-anim-203-t.html new file mode 100755 index 00000000..ecf6b5cc --- /dev/null +++ b/test/W3C_SVG_12_TinyTestSuite_beta/htmlEmbedHarness/media-anim-203-t.html @@ -0,0 +1,89 @@ + + + + + + + + +SVG 1.2 Tiny test:media-anim-203-t + + + + + + + + + + +
+ + + + + + + + + + + + +
+

media-anim-203-t

+
+ + + raster image of media-anim-203-t +
+
+ + +
+

Animation Elements with External References

+

+ This test validates the animation element with external references with emphases on time based animations. + The same external file is used for all seven tests. +

+

+ The 'initialVisibility' attribute is not specified so the default should apply - 'whenStarted'. + In other words the animations should not be visible until they start and then they should disappear as the + fill is not set to 'freeze' so the initial state should be re-instated. +

+ +
+ + + diff --git a/test/W3C_SVG_12_TinyTestSuite_beta/htmlEmbedHarness/media-anim-204-t.html b/test/W3C_SVG_12_TinyTestSuite_beta/htmlEmbedHarness/media-anim-204-t.html new file mode 100755 index 00000000..cfcde19a --- /dev/null +++ b/test/W3C_SVG_12_TinyTestSuite_beta/htmlEmbedHarness/media-anim-204-t.html @@ -0,0 +1,84 @@ + + + + + + + + +SVG 1.2 Tiny test:media-anim-204-t + + + + + + + + + + +
+ + + + + + + + + + + + +
+

media-anim-204-t

+
+ + + raster image of media-anim-204-t +
+
+ + +
+

Animation Elements with External References

+

+ This test validates the animation element with external references with emphases on time based animations. + The same external file is used for all seven tests. +

+ +
+ + + diff --git a/test/W3C_SVG_12_TinyTestSuite_beta/htmlEmbedHarness/media-anim-205-t.html b/test/W3C_SVG_12_TinyTestSuite_beta/htmlEmbedHarness/media-anim-205-t.html new file mode 100755 index 00000000..33e27701 --- /dev/null +++ b/test/W3C_SVG_12_TinyTestSuite_beta/htmlEmbedHarness/media-anim-205-t.html @@ -0,0 +1,89 @@ + + + + + + + + +SVG 1.2 Tiny test:media-anim-205-t + + + + + + + + + + +
+ + + + + + + + + + + + +
+

media-anim-205-t

+
+ + + raster image of media-anim-205-t +
+
+ + +
+

Animation Elements with External References

+

+ This is one of a series of test slides that exercise all the permitted values for the 'preserveAspectRatio' + attribute values. +

+

+ The external resource referenced by the animation element has a viewport-fill defined with a solid color. + This should be ignored and the local color of blue should be used. +

+

A semi-transparent yellow rectangle should be animating within each viewport.

+ +
+ + + diff --git a/test/W3C_SVG_12_TinyTestSuite_beta/htmlEmbedHarness/media-anim-206-t.html b/test/W3C_SVG_12_TinyTestSuite_beta/htmlEmbedHarness/media-anim-206-t.html new file mode 100755 index 00000000..f52e3f47 --- /dev/null +++ b/test/W3C_SVG_12_TinyTestSuite_beta/htmlEmbedHarness/media-anim-206-t.html @@ -0,0 +1,86 @@ + + + + + + + + +SVG 1.2 Tiny test:media-anim-206-t + + + + + + + + + + +
+ + + + + + + + + + + + +
+

media-anim-206-t

+
+ + + raster image of media-anim-206-t +
+
+ + +
+

Animation Elements with External References

+

This slide tests the 'viewport-fill' and 'viewport-fill-opacity' attributes defined locally.

+

+ The externally resource referenced by the animation element has a 'viewport-fill' defined with a black to yellow gradient. + This should be ignored and the local definitions should be used - red for the left, blue for the middle and semi-transparent black for the right. +

+

A semi-transparent yellow rectangle should be animating within each viewport.

+ +
+ + + diff --git a/test/W3C_SVG_12_TinyTestSuite_beta/htmlEmbedHarness/media-anim-207-t.html b/test/W3C_SVG_12_TinyTestSuite_beta/htmlEmbedHarness/media-anim-207-t.html new file mode 100755 index 00000000..c8fda064 --- /dev/null +++ b/test/W3C_SVG_12_TinyTestSuite_beta/htmlEmbedHarness/media-anim-207-t.html @@ -0,0 +1,85 @@ + + + + + + + + +SVG 1.2 Tiny test:media-anim-207-t + + + + + + + + + + +
+ + + + + + + + + + + + +
+

media-anim-207-t

+
+ + + raster image of media-anim-207-t +
+
+ + +
+

Animation Elements with External References

+

This slide applies different transformations to the animation element.

+

+ The externally resource referenced by the animation element has a viewport-fill defined with a black to yellow gradient. + This should be ignored and over ridden by the color aqua. +

+ +
+ + + diff --git a/test/W3C_SVG_12_TinyTestSuite_beta/htmlEmbedHarness/media-anim-208-t.html b/test/W3C_SVG_12_TinyTestSuite_beta/htmlEmbedHarness/media-anim-208-t.html new file mode 100755 index 00000000..7634993b --- /dev/null +++ b/test/W3C_SVG_12_TinyTestSuite_beta/htmlEmbedHarness/media-anim-208-t.html @@ -0,0 +1,89 @@ + + + + + + + + +SVG 1.2 Tiny test:media-anim-208-t + + + + + + + + + + +
+ + + + + + + + + + + + +
+

media-anim-208-t

+
+ + + raster image of media-anim-208-t +
+
+ + +
+

Animation Elements with External References

+

+ This test validates the animation element with external references with emphases on time based animations. + The same external file is used for all seven tests. +

+

+ The 'initialVisibility' attribute is not specified so the default should apply - 'whenStarted'. + In other words the animations should not be visible until they start and then they should disappear as the + fill is not set to 'freeze' so the initial state should be re-instated. +

+ +
+ + + diff --git a/test/W3C_SVG_12_TinyTestSuite_beta/htmlEmbedHarness/media-anim-209-t.html b/test/W3C_SVG_12_TinyTestSuite_beta/htmlEmbedHarness/media-anim-209-t.html new file mode 100755 index 00000000..f342042c --- /dev/null +++ b/test/W3C_SVG_12_TinyTestSuite_beta/htmlEmbedHarness/media-anim-209-t.html @@ -0,0 +1,84 @@ + + + + + + + + +SVG 1.2 Tiny test:media-anim-209-t + + + + + + + + + + +
+ + + + + + + + + + + + +
+

media-anim-209-t

+
+ + + raster image of media-anim-209-t +
+
+ + +
+

Animation Elements with Discard

+

Four animation elements reference struct-discard-201.svg.

+

Each animation element is a target of a discard, at 6, 10, 14 and 18s.

+

To pass each animation element should discard at the specified time.

+

In addition, each referenced file should behave as indicated in the test struct-discard-201.

+ +
+ + + diff --git a/test/W3C_SVG_12_TinyTestSuite_beta/htmlEmbedHarness/media-anim-210-t.html b/test/W3C_SVG_12_TinyTestSuite_beta/htmlEmbedHarness/media-anim-210-t.html new file mode 100755 index 00000000..c19235f4 --- /dev/null +++ b/test/W3C_SVG_12_TinyTestSuite_beta/htmlEmbedHarness/media-anim-210-t.html @@ -0,0 +1,88 @@ + + + + + + + + +SVG 1.2 Tiny test:media-anim-210-t + + + + + + + + + + +
+ + + + + + + + + + + + +
+

media-anim-210-t

+
+ + + raster image of media-anim-210-t +
+
+ + +
+

Animation Elements with External References

+

+ This slide tests independent primary documents. Each referenced primary document has a separate script context. + This test is only applicable if application/ecmascript is available. +

+

Four animation elements reference a document which has an activate handler on a circle.

+

Focus should start on the top-left circle and move to top-right, bottom-left and bottom-right.

+

Activating the circle will toggle its radius size, but for the currently focused circle only.

+

This is due to the fact that each primary document has a separate script context.

+ +
+ + + diff --git a/test/W3C_SVG_12_TinyTestSuite_beta/htmlEmbedHarness/media-anim-211-t.html b/test/W3C_SVG_12_TinyTestSuite_beta/htmlEmbedHarness/media-anim-211-t.html new file mode 100755 index 00000000..a794d6f6 --- /dev/null +++ b/test/W3C_SVG_12_TinyTestSuite_beta/htmlEmbedHarness/media-anim-211-t.html @@ -0,0 +1,86 @@ + + + + + + + + +SVG 1.2 Tiny test:media-anim-211-t + + + + + + + + + + +
+ + + + + + + + + + + + +
+

media-anim-211-t

+
+ + + raster image of media-anim-211-t +
+
+ + +
+

+ Animation Elements with Incorrect xlink:href + This slide tests the animation xlink:href attribute with invalid values +

+

+ The test will pass if the area within the red rectangle remains empty. +

+ +
+ + + diff --git a/test/W3C_SVG_12_TinyTestSuite_beta/htmlEmbedHarness/media-anim-212-t.html b/test/W3C_SVG_12_TinyTestSuite_beta/htmlEmbedHarness/media-anim-212-t.html new file mode 100755 index 00000000..b8ac9b10 --- /dev/null +++ b/test/W3C_SVG_12_TinyTestSuite_beta/htmlEmbedHarness/media-anim-212-t.html @@ -0,0 +1,85 @@ + + + + + + + + +SVG 1.2 Tiny test:media-anim-212-t + + + + + + + + + + +
+ + + + + + + + + + + + +
+

media-anim-212-t

+
+ + + raster image of media-anim-212-t +
+
+ + +
+

+ Animation Element with animating xlink:href + This slide tests animating the xlink:href attribute of animation elements + Every 2.5 seconds the animation will display a circle instead of a timeline. + The circle is focusable and as such should receive the focus and turn red. +

+ +
+ + + diff --git a/test/W3C_SVG_12_TinyTestSuite_beta/htmlEmbedHarness/media-anim-213-t.html b/test/W3C_SVG_12_TinyTestSuite_beta/htmlEmbedHarness/media-anim-213-t.html new file mode 100755 index 00000000..4ec9db70 --- /dev/null +++ b/test/W3C_SVG_12_TinyTestSuite_beta/htmlEmbedHarness/media-anim-213-t.html @@ -0,0 +1,82 @@ + + + + + + + + +SVG 1.2 Tiny test:media-anim-213-t + + + + + + + + + + +
+ + + + + + + + + + + + +
+

media-anim-213-t

+
+ + + raster image of media-anim-213-t +
+
+ + +
+

The file is a basic test of animation element.

+

The rendered picture should match the reference image, except for possible variations in the labelling text (per CSS2 rules).

+

The test uses the 'rect' element, as well as basic fill (solid primary colors), stroke (black 1-pixel lines), font-family (Arial) and font-size properties.

+ +
+ + + diff --git a/test/W3C_SVG_12_TinyTestSuite_beta/htmlEmbedHarness/media-audio-201-t.html b/test/W3C_SVG_12_TinyTestSuite_beta/htmlEmbedHarness/media-audio-201-t.html new file mode 100755 index 00000000..4bfdf935 --- /dev/null +++ b/test/W3C_SVG_12_TinyTestSuite_beta/htmlEmbedHarness/media-audio-201-t.html @@ -0,0 +1,91 @@ + + + + + + + + +SVG 1.2 Tiny test:media-audio-201-t + + + + + + + + + + +
+ + + + + + + + + + + + +
+

media-audio-201-t

+
+ + + raster image of media-audio-201-t +
+
+ + +
+

+ Test on audio. +

+

+ Two audio elements referencing different media files start at 0s. +

+

+ Two distinct media audio file should be heard at the same time. +

+

+ If the user agent does not support the WAV media format, the test is still a pass. +

+ +
+ + + diff --git a/test/W3C_SVG_12_TinyTestSuite_beta/htmlEmbedHarness/media-audio-202-t.html b/test/W3C_SVG_12_TinyTestSuite_beta/htmlEmbedHarness/media-audio-202-t.html new file mode 100755 index 00000000..3296df7f --- /dev/null +++ b/test/W3C_SVG_12_TinyTestSuite_beta/htmlEmbedHarness/media-audio-202-t.html @@ -0,0 +1,91 @@ + + + + + + + + +SVG 1.2 Tiny test:media-audio-202-t + + + + + + + + + + +
+ + + + + + + + + + + + +
+

media-audio-202-t

+
+ + + raster image of media-audio-202-t +
+
+ + +
+

+ Test on audio with repeatCount. +

+

+ An audio element has a repeatCount of 2. +

+

+ The audio media file should play twice. +

+

+ If the user agent does not support the WAV media format, the test is still a pass. +

+ +
+ + + diff --git a/test/W3C_SVG_12_TinyTestSuite_beta/htmlEmbedHarness/media-audio-203-t.html b/test/W3C_SVG_12_TinyTestSuite_beta/htmlEmbedHarness/media-audio-203-t.html new file mode 100755 index 00000000..10c90ccf --- /dev/null +++ b/test/W3C_SVG_12_TinyTestSuite_beta/htmlEmbedHarness/media-audio-203-t.html @@ -0,0 +1,91 @@ + + + + + + + + +SVG 1.2 Tiny test:media-audio-203-t + + + + + + + + + + +
+ + + + + + + + + + + + +
+

media-audio-203-t

+
+ + + raster image of media-audio-203-t +
+
+ + +
+

+ Test on audio with repeatCount. +

+

+ An audio element has a repeatCount of indefinite. +

+

+ The audio media file should loop indefinitely. +

+

+ If the user agent does not support the WAV media format, the test is still a pass. +

+ +
+ + + diff --git a/test/W3C_SVG_12_TinyTestSuite_beta/htmlEmbedHarness/media-audio-204-t.html b/test/W3C_SVG_12_TinyTestSuite_beta/htmlEmbedHarness/media-audio-204-t.html new file mode 100755 index 00000000..f5b38df5 --- /dev/null +++ b/test/W3C_SVG_12_TinyTestSuite_beta/htmlEmbedHarness/media-audio-204-t.html @@ -0,0 +1,91 @@ + + + + + + + + +SVG 1.2 Tiny test:media-audio-204-t + + + + + + + + + + +
+ + + + + + + + + + + + +
+

media-audio-204-t

+
+ + + raster image of media-audio-204-t +
+
+ + +
+

+ Test on audio with repeatCount. +

+

+ An audio element has a repeatCount of 5 and an end attribute of 3s. +

+

+ To pass the audio media file should play for 3 seconds and NOT repeat 5 times. +

+

+ If the user agent does not support the WAV media format, the test is still a pass. +

+ +
+ + + diff --git a/test/W3C_SVG_12_TinyTestSuite_beta/htmlEmbedHarness/media-audio-205-t.html b/test/W3C_SVG_12_TinyTestSuite_beta/htmlEmbedHarness/media-audio-205-t.html new file mode 100755 index 00000000..b75ca7a8 --- /dev/null +++ b/test/W3C_SVG_12_TinyTestSuite_beta/htmlEmbedHarness/media-audio-205-t.html @@ -0,0 +1,88 @@ + + + + + + + + +SVG 1.2 Tiny test:media-audio-205-t + + + + + + + + + + +
+ + + + + + + + + + + + +
+

media-audio-205-t

+
+ + + raster image of media-audio-205-t +
+
+ + +
+

+ An audio element has a begin attribute of 3 seconds. +

+

+ To pass the audio media file should play 3 seconds after loading the svg file. +

+

+ If the user agent does not support the WAV media format, the test is still a pass. +

+ +
+ + + diff --git a/test/W3C_SVG_12_TinyTestSuite_beta/htmlEmbedHarness/media-audio-206-t.html b/test/W3C_SVG_12_TinyTestSuite_beta/htmlEmbedHarness/media-audio-206-t.html new file mode 100755 index 00000000..edad54b4 --- /dev/null +++ b/test/W3C_SVG_12_TinyTestSuite_beta/htmlEmbedHarness/media-audio-206-t.html @@ -0,0 +1,106 @@ + + + + + + + + +SVG 1.2 Tiny test:media-audio-206-t + + + + + + + + + + +
+ + + + + + + + + + + + +
+

media-audio-206-t

+
+ + + raster image of media-audio-206-t +
+
+ + +
+

+ An audio file begins at 2s and 10s, has a dur of 1, and a repeatCount of 2. +

+

+ A text element animates y values with begin at 2s and 10s, a dur of 1, and a repeatCount of 2. +

+

+ At 2s the media audio file should be audible and repeat twice. +

+

+ At 2s the media audio file should be audible and repeat twice. +

+

+ Also at 2s, the text should animate downwards twice. +

+

+ At 10s the media audio file should be audible and repeat twice. +

+

+ At 10s the media audio file should be audible and repeat twice. +

+

+ Also at 10s, the text should animate downwards twice. +

+

+ If the user agent does not support the WAV media format, the test is still a pass. +

+ +
+ + + diff --git a/test/W3C_SVG_12_TinyTestSuite_beta/htmlEmbedHarness/media-audio-207-t.html b/test/W3C_SVG_12_TinyTestSuite_beta/htmlEmbedHarness/media-audio-207-t.html new file mode 100755 index 00000000..3a7485d7 --- /dev/null +++ b/test/W3C_SVG_12_TinyTestSuite_beta/htmlEmbedHarness/media-audio-207-t.html @@ -0,0 +1,100 @@ + + + + + + + + +SVG 1.2 Tiny test:media-audio-207-t + + + + + + + + + + +
+ + + + + + + + + + + + +
+

media-audio-207-t

+
+ + + raster image of media-audio-207-t +
+
+ + +
+

+ An audio file begins at 4s and 11s, ends at 10s, has a dur of 1, repeatCount of 2 and repeatDur of 6. +

+

+ A text element animates y values with begin at 4s and 11s, end at 10s, a dur of 1, repeatCount of 2 and repeatDur of 6. +

+

+ At 4s the media audio file should be audible and repeat twice. +

+

+ At 4s the media audio file should be audible and repeat twice. +

+

+ Also at 4s, the text should animate downwards twice. +

+

+ Nothing should be audible or animate at 11s, since the animations end at 10s. +

+

+ If the user agent does not support the WAV media format, the test is still a pass. +

+ +
+ + + diff --git a/test/W3C_SVG_12_TinyTestSuite_beta/htmlEmbedHarness/media-audio-208-t.html b/test/W3C_SVG_12_TinyTestSuite_beta/htmlEmbedHarness/media-audio-208-t.html new file mode 100755 index 00000000..fe596f8d --- /dev/null +++ b/test/W3C_SVG_12_TinyTestSuite_beta/htmlEmbedHarness/media-audio-208-t.html @@ -0,0 +1,91 @@ + + + + + + + + +SVG 1.2 Tiny test:media-audio-208-t + + + + + + + + + + +
+ + + + + + + + + + + + +
+

media-audio-208-t

+
+ + + raster image of media-audio-208-t +
+
+ + +
+

+ An audio element 'sound1' starts at 0s. +

+

+ A second audio element 'sound2' starts at sound1.end. +

+

+ The audio media file for sound1 will play followed by the media file for sound2. +

+

+ If the user agent does not support the WAV media format, the test is still a pass. +

+ +
+ + + diff --git a/test/W3C_SVG_12_TinyTestSuite_beta/htmlEmbedHarness/media-audio-209-t.html b/test/W3C_SVG_12_TinyTestSuite_beta/htmlEmbedHarness/media-audio-209-t.html new file mode 100755 index 00000000..311e4829 --- /dev/null +++ b/test/W3C_SVG_12_TinyTestSuite_beta/htmlEmbedHarness/media-audio-209-t.html @@ -0,0 +1,91 @@ + + + + + + + + +SVG 1.2 Tiny test:media-audio-209-t + + + + + + + + + + +
+ + + + + + + + + + + + +
+

media-audio-209-t

+
+ + + raster image of media-audio-209-t +
+
+ + +
+

+ A rectangle is animating its width between 0 and 3s. +

+

+ An audio element has its begin and end attributes set to the begin and end attributes of the rect animation. +

+

+ The sound will repeat while the bar is moving. +

+

+ If the user agent does not support the WAV media format, the test is still a pass. +

+ +
+ + + diff --git a/test/W3C_SVG_12_TinyTestSuite_beta/htmlEmbedHarness/media-audio-210-t.html b/test/W3C_SVG_12_TinyTestSuite_beta/htmlEmbedHarness/media-audio-210-t.html new file mode 100755 index 00000000..c536bc48 --- /dev/null +++ b/test/W3C_SVG_12_TinyTestSuite_beta/htmlEmbedHarness/media-audio-210-t.html @@ -0,0 +1,91 @@ + + + + + + + + +SVG 1.2 Tiny test:media-audio-210-t + + + + + + + + + + +
+ + + + + + + + + + + + +
+

media-audio-210-t

+
+ + + raster image of media-audio-210-t +
+
+ + +
+

+ An audio element 'mondays' begains at 0s and also at problem.end, with a repeatDur of 3s. +

+

+ An audio element 'problem' begains at mondays.end, with a repeatDur of 3s. +

+

+ The two sounds should take turns and play for 3 seconds each. +

+

+ If the user agent does not support the WAV media format, the test is still a pass. +

+ +
+ + + diff --git a/test/W3C_SVG_12_TinyTestSuite_beta/htmlEmbedHarness/media-audio-211-t.html b/test/W3C_SVG_12_TinyTestSuite_beta/htmlEmbedHarness/media-audio-211-t.html new file mode 100755 index 00000000..d5bd4035 --- /dev/null +++ b/test/W3C_SVG_12_TinyTestSuite_beta/htmlEmbedHarness/media-audio-211-t.html @@ -0,0 +1,88 @@ + + + + + + + + +SVG 1.2 Tiny test:media-audio-211-t + + + + + + + + + + +
+ + + + + + + + + + + + +
+

media-audio-211-t

+
+ + + raster image of media-audio-211-t +
+
+ + +
+

+ An audio element begins at 1s and ends at 3s and is the child of a defs element. +

+

+ The audio media file should be muted. +

+

+ If the user agent does not support the WAV media format, the test is still a pass. +

+ +
+ + + diff --git a/test/W3C_SVG_12_TinyTestSuite_beta/htmlEmbedHarness/media-audio-212-t.html b/test/W3C_SVG_12_TinyTestSuite_beta/htmlEmbedHarness/media-audio-212-t.html new file mode 100755 index 00000000..9cc9426a --- /dev/null +++ b/test/W3C_SVG_12_TinyTestSuite_beta/htmlEmbedHarness/media-audio-212-t.html @@ -0,0 +1,97 @@ + + + + + + + + +SVG 1.2 Tiny test:media-audio-212-t + + + + + + + + + + +
+ + + + + + + + + + + + +
+

media-audio-212-t

+
+ + + raster image of media-audio-212-t +
+
+ + +
+

+ Two audio elements reference the same media file, start at 0s, have a dur of 2s and a repeatCount of 5. +

+

+ The 1st audio element has its display attribute set to none between 4 and 6 seconds. +

+

+ The 2nd use element has its visibility attribute set to hidden between 4 and 6 seconds. +

+

+ The 1st audio element should be muted bewteen 4-6 seconds +

+

+ The 2nd audio element should be muted bewteen 4-6 seconds +

+

+ If the user agent does not support the WAV media format, the test is still a pass. +

+ +
+ + + diff --git a/test/W3C_SVG_12_TinyTestSuite_beta/htmlEmbedHarness/media-audio-213-t.html b/test/W3C_SVG_12_TinyTestSuite_beta/htmlEmbedHarness/media-audio-213-t.html new file mode 100755 index 00000000..b23b4144 --- /dev/null +++ b/test/W3C_SVG_12_TinyTestSuite_beta/htmlEmbedHarness/media-audio-213-t.html @@ -0,0 +1,100 @@ + + + + + + + + +SVG 1.2 Tiny test:media-audio-213-t + + + + + + + + + + +
+ + + + + + + + + + + + +
+

media-audio-213-t

+
+ + + raster image of media-audio-213-t +
+
+ + +
+

+ Two audio elements are children of a defs element and reference the same media file, start at 0s, have a dur of 2s and a repeatCount of 5. +

+

+ The audio elements are each referenced by a single use element. +

+

+ The 1st use element has its display attribute set to none between 4 and 6 seconds. +

+

+ The 2nd use element has its visibility attribute set to hidden between 4 and 6 seconds. +

+

+ The 1st audio element should be muted bewteen 4-6 seconds +

+

+ The 2nd audio element should be muted bewteen 4-6 seconds +

+

+ If the user agent does not support the WAV media format, the test is still a pass. +

+ +
+ + + diff --git a/test/W3C_SVG_12_TinyTestSuite_beta/htmlEmbedHarness/media-audio-214-t.html b/test/W3C_SVG_12_TinyTestSuite_beta/htmlEmbedHarness/media-audio-214-t.html new file mode 100755 index 00000000..6bbe6f0d --- /dev/null +++ b/test/W3C_SVG_12_TinyTestSuite_beta/htmlEmbedHarness/media-audio-214-t.html @@ -0,0 +1,86 @@ + + + + + + + + +SVG 1.2 Tiny test:media-audio-214-t + + + + + + + + + + +
+ + + + + + + + + + + + +
+

media-audio-214-t

+
+ + + raster image of media-audio-214-t +
+
+ + +
+

+ Audio Elements with Incorrect xlink:href. + This slide tests the audio xlink:href attribute with invalid values. +

+

+ The test will pass if no audio can be heard. +

+ +
+ + + diff --git a/test/W3C_SVG_12_TinyTestSuite_beta/htmlEmbedHarness/media-audio-215-t.html b/test/W3C_SVG_12_TinyTestSuite_beta/htmlEmbedHarness/media-audio-215-t.html new file mode 100755 index 00000000..9d98aede --- /dev/null +++ b/test/W3C_SVG_12_TinyTestSuite_beta/htmlEmbedHarness/media-audio-215-t.html @@ -0,0 +1,131 @@ + + + + + + + + +SVG 1.2 Tiny test:media-audio-215-t + + + + + + + + + + +
+ + + + + + + + + + + + +
+

media-audio-215-t

+
+ + + raster image of media-audio-215-t +
+
+ + +
+

+ Tests the audio-level property for nested audio elements and clamping + of audio-level. +

+

+ The test consists of 6 subtests. When each audio sub-test is executed a + corresponding rect will turn blue. When each audio sub-test is + finished the corresponding rect will turn gray again. For this test to pass, all subtests must + have a green rectangle next to them. + + The audio must also be heard to pass this test. If the user agent does not support the WAV media format, the test is still a pass. +

+

+ The 1st subtest has an audio-level = 1. To pass this subtest the audio + must be played at the system volume. +

+

+ The 2nd subtest has an audio-level = 2. To pass this subtest the audio + must be played at the system volume. +

+

+ The 3rd subtest has an audio element with an audio-level = 2. Within + the audio element there is a child audio element with an + audio-level = 0.5. The source audio is the child audio element. To pass + this subtest the audio must be played at 1/2 the system volume. +

+

+ The 4th subtest has an audio element with an audio-level = 0.5. Within + the audio element there is a child audio element with an + audio-level = 2. The source audio is the child audio element. To pass + this subtest the audio must be played at 1/2 the system volume. +

+

+ The 5th subtest has three audio elements. The first audio element has + an audio-level = 0.5 and is the parent audio element. The second audio + element has an audio-level = 2 and is a child to the first audio + element. The third audio element has an audio-level = 0.5 and is a + child to the second audio element. The source audio is third audio + element. To pass this subtest the audio must be played at 1/4 the + system volume. +

+

+ The 6th subtest has four audio elements. The first audio element has + an audio-level = to the audio level of the 3rd audio element (0.5). The + second audio element references an audio element from another subtest + with an audio-level of 2. The second audio element is a child of the + first audio element. The third audio element has an audio-level = 0.5 + and is a child of the second audio element. The fourth audio element + has an audio-level of 2 and is a child of the third audio element. The + source audio is the fourth audio element. To pass this subtest the + audio must be played at 1/4 the system volume. +

+ +
+ + + diff --git a/test/W3C_SVG_12_TinyTestSuite_beta/htmlEmbedHarness/media-video-201-t.html b/test/W3C_SVG_12_TinyTestSuite_beta/htmlEmbedHarness/media-video-201-t.html new file mode 100755 index 00000000..b1f2a7f1 --- /dev/null +++ b/test/W3C_SVG_12_TinyTestSuite_beta/htmlEmbedHarness/media-video-201-t.html @@ -0,0 +1,87 @@ + + + + + + + + +SVG 1.2 Tiny test:media-video-201-t + + + + + + + + + + +
+ + + + + + + + + + + + +
+

media-video-201-t

+
+ + + raster image of media-video-201-t +
+
+ + +
+

Video Width and Height

+

+ The frame contains a video with width and height not specified - these should default + to 0 and nothing should be rendered. +

+

+ If the user agent does not support the 3GP media format, the test is still a pass. +

+ +
+ + + diff --git a/test/W3C_SVG_12_TinyTestSuite_beta/htmlEmbedHarness/media-video-202-t.html b/test/W3C_SVG_12_TinyTestSuite_beta/htmlEmbedHarness/media-video-202-t.html new file mode 100755 index 00000000..00d01810 --- /dev/null +++ b/test/W3C_SVG_12_TinyTestSuite_beta/htmlEmbedHarness/media-video-202-t.html @@ -0,0 +1,84 @@ + + + + + + + + +SVG 1.2 Tiny test:media-video-202-t + + + + + + + + + + +
+ + + + + + + + + + + + +
+

media-video-202-t

+
+ + + raster image of media-video-202-t +
+
+ + +
+

Video Width and Height

+

The video should play immediately and disappear once complete.

+

+ If the user agent does not support the 3GP media format, the test is still a pass. +

+ +
+ + + diff --git a/test/W3C_SVG_12_TinyTestSuite_beta/htmlEmbedHarness/media-video-203-t.html b/test/W3C_SVG_12_TinyTestSuite_beta/htmlEmbedHarness/media-video-203-t.html new file mode 100755 index 00000000..11ccfa9b --- /dev/null +++ b/test/W3C_SVG_12_TinyTestSuite_beta/htmlEmbedHarness/media-video-203-t.html @@ -0,0 +1,90 @@ + + + + + + + + +SVG 1.2 Tiny test:media-video-203-t + + + + + + + + + + +
+ + + + + + + + + + + + +
+

media-video-203-t

+
+ + + raster image of media-video-203-t +
+
+ + +
+

Video with TransformBehavior Set to Pinned

+

+ This file tests the transformBehavior attribute set to 'pinned'. + The video should always overlap the two crossing lines, even during zoom/pan, proving it + is always rendered at its native resolution, and pinned at its the center (the blue dot). + If the video is rendered inside the small rotated rectangle, it means the transformBehavior + attribute is not applied / supported. +

+

+ If the user agent does not support the 3GP media format, the test is still a pass. +

+ +
+ + + diff --git a/test/W3C_SVG_12_TinyTestSuite_beta/htmlEmbedHarness/media-video-204-t.html b/test/W3C_SVG_12_TinyTestSuite_beta/htmlEmbedHarness/media-video-204-t.html new file mode 100755 index 00000000..466cc594 --- /dev/null +++ b/test/W3C_SVG_12_TinyTestSuite_beta/htmlEmbedHarness/media-video-204-t.html @@ -0,0 +1,90 @@ + + + + + + + + +SVG 1.2 Tiny test:media-video-204-t + + + + + + + + + + +
+ + + + + + + + + + + + +
+

media-video-204-t

+
+ + + raster image of media-video-204-t +
+
+ + +
+

Video with PreserveAspectRatio Attribute

+

+ Testing variations of preserveAspectRatio attribute with viewports + having different aspect ratios. More specifically tests the case + of preserveAspectRatio set to 'none' on a video element. The width of + the video element has been made larger than the subsequent + preserveAspectRatio tets. +

+

+ If the user agent does not support the 3GP media format, the test is still a pass. +

+ +
+ + + diff --git a/test/W3C_SVG_12_TinyTestSuite_beta/htmlEmbedHarness/media-video-205-t.html b/test/W3C_SVG_12_TinyTestSuite_beta/htmlEmbedHarness/media-video-205-t.html new file mode 100755 index 00000000..ae9fe4b6 --- /dev/null +++ b/test/W3C_SVG_12_TinyTestSuite_beta/htmlEmbedHarness/media-video-205-t.html @@ -0,0 +1,88 @@ + + + + + + + + +SVG 1.2 Tiny test:media-video-205-t + + + + + + + + + + +
+ + + + + + + + + + + + +
+

media-video-205-t

+
+ + + raster image of media-video-205-t +
+
+ + +
+

Video with PreserveAspectRatio Attribute

+

+ Testing variations of preserveAspectRatio attribute with viewports + having different aspect ratios. More specifically tests the case + of preserveAspectRatio set to 'xMinYMin meet' on a video element. +

+

+ If the user agent does not support the 3GP media format, the test is still a pass. +

+ +
+ + + diff --git a/test/W3C_SVG_12_TinyTestSuite_beta/htmlEmbedHarness/media-video-206-t.html b/test/W3C_SVG_12_TinyTestSuite_beta/htmlEmbedHarness/media-video-206-t.html new file mode 100755 index 00000000..44782fad --- /dev/null +++ b/test/W3C_SVG_12_TinyTestSuite_beta/htmlEmbedHarness/media-video-206-t.html @@ -0,0 +1,88 @@ + + + + + + + + +SVG 1.2 Tiny test:media-video-206-t + + + + + + + + + + +
+ + + + + + + + + + + + +
+

media-video-206-t

+
+ + + raster image of media-video-206-t +
+
+ + +
+

Video with PreserveAspectRatio Attribute

+

+ Testing variations of preserveAspectRatio attribute with viewports + having different aspect ratios. More specifically tests the case + of preserveAspectRatio set to 'xMidYMid meet' on a video element. +

+

+ If the user agent does not support the 3GP media format, the test is still a pass. +

+ +
+ + + diff --git a/test/W3C_SVG_12_TinyTestSuite_beta/htmlEmbedHarness/media-video-207-t.html b/test/W3C_SVG_12_TinyTestSuite_beta/htmlEmbedHarness/media-video-207-t.html new file mode 100755 index 00000000..8da1bbb0 --- /dev/null +++ b/test/W3C_SVG_12_TinyTestSuite_beta/htmlEmbedHarness/media-video-207-t.html @@ -0,0 +1,88 @@ + + + + + + + + +SVG 1.2 Tiny test:media-video-207-t + + + + + + + + + + +
+ + + + + + + + + + + + +
+

media-video-207-t

+
+ + + raster image of media-video-207-t +
+
+ + +
+

Video with PreserveAspectRatio Attribute

+

+ Testing variations of preserveAspectRatio attribute with viewports + having different aspect ratios. More specifically tests the case + of preserveAspectRatio set to 'xMaxYMax meet' on a video element. +

+

+ If the user agent does not support the 3GP media format, the test is still a pass. +

+ +
+ + + diff --git a/test/W3C_SVG_12_TinyTestSuite_beta/htmlEmbedHarness/media-video-208-t.html b/test/W3C_SVG_12_TinyTestSuite_beta/htmlEmbedHarness/media-video-208-t.html new file mode 100755 index 00000000..054f03f0 --- /dev/null +++ b/test/W3C_SVG_12_TinyTestSuite_beta/htmlEmbedHarness/media-video-208-t.html @@ -0,0 +1,88 @@ + + + + + + + + +SVG 1.2 Tiny test:media-video-208-t + + + + + + + + + + +
+ + + + + + + + + + + + +
+

media-video-208-t

+
+ + + raster image of media-video-208-t +
+
+ + +
+

Video with PreserveAspectRatio Attribute

+

+ Testing variations of preserveAspectRatio attribute with viewports + having different aspect ratios. More specifically tests the case + of preserveAspectRatio set to 'xMinYMin meet' on a video element. +

+

+ If the user agent does not support the 3GP media format, the test is still a pass. +

+ +
+ + + diff --git a/test/W3C_SVG_12_TinyTestSuite_beta/htmlEmbedHarness/media-video-209-t.html b/test/W3C_SVG_12_TinyTestSuite_beta/htmlEmbedHarness/media-video-209-t.html new file mode 100755 index 00000000..c9ad40e4 --- /dev/null +++ b/test/W3C_SVG_12_TinyTestSuite_beta/htmlEmbedHarness/media-video-209-t.html @@ -0,0 +1,88 @@ + + + + + + + + +SVG 1.2 Tiny test:media-video-209-t + + + + + + + + + + +
+ + + + + + + + + + + + +
+

media-video-209-t

+
+ + + raster image of media-video-209-t +
+
+ + +
+

Video with PreserveAspectRatio Attribute

+

+ Testing variations of preserveAspectRatio attribute with viewports + having different aspect ratios. More specifically tests the case + of preserveAspectRatio set to 'xMinYMid meet' on a video element. +

+

+ If the user agent does not support the 3GP media format, the test is still a pass. +

+ +
+ + + diff --git a/test/W3C_SVG_12_TinyTestSuite_beta/htmlEmbedHarness/media-video-210-t.html b/test/W3C_SVG_12_TinyTestSuite_beta/htmlEmbedHarness/media-video-210-t.html new file mode 100755 index 00000000..81b65527 --- /dev/null +++ b/test/W3C_SVG_12_TinyTestSuite_beta/htmlEmbedHarness/media-video-210-t.html @@ -0,0 +1,88 @@ + + + + + + + + +SVG 1.2 Tiny test:media-video-210-t + + + + + + + + + + +
+ + + + + + + + + + + + +
+

media-video-210-t

+
+ + + raster image of media-video-210-t +
+
+ + +
+

Video with PreserveAspectRatio Attribute

+

+ Testing variations of preserveAspectRatio attribute with viewports + having different aspect ratios. More specifically tests the case + of preserveAspectRatio set to 'xMinYMax meet' on a video element. +

+

+ If the user agent does not support the 3GP media format, the test is still a pass. +

+ +
+ + + diff --git a/test/W3C_SVG_12_TinyTestSuite_beta/htmlEmbedHarness/media-video-211-t.html b/test/W3C_SVG_12_TinyTestSuite_beta/htmlEmbedHarness/media-video-211-t.html new file mode 100755 index 00000000..a6f35506 --- /dev/null +++ b/test/W3C_SVG_12_TinyTestSuite_beta/htmlEmbedHarness/media-video-211-t.html @@ -0,0 +1,88 @@ + + + + + + + + +SVG 1.2 Tiny test:media-video-211-t + + + + + + + + + + +
+ + + + + + + + + + + + +
+

media-video-211-t

+
+ + + raster image of media-video-211-t +
+
+ + +
+

Video with PreserveAspectRatio Attribute

+

+ Testing variations of preserveAspectRatio attribute with viewports + having different aspect ratios. More specifically tests the case + of preserveAspectRatio set to 'none' on a video element. +

+

+ If the user agent does not support the 3GP media format, the test is still a pass. +

+ +
+ + + diff --git a/test/W3C_SVG_12_TinyTestSuite_beta/htmlEmbedHarness/media-video-212-t.html b/test/W3C_SVG_12_TinyTestSuite_beta/htmlEmbedHarness/media-video-212-t.html new file mode 100755 index 00000000..ad97f98d --- /dev/null +++ b/test/W3C_SVG_12_TinyTestSuite_beta/htmlEmbedHarness/media-video-212-t.html @@ -0,0 +1,89 @@ + + + + + + + + +SVG 1.2 Tiny test:media-video-212-t + + + + + + + + + + +
+ + + + + + + + + + + + +
+

media-video-212-t

+
+ + + raster image of media-video-212-t +
+
+ + +
+

Video with rendering order

+

+ Colored circles should maintain rendering order as marked on them. + Video is 10 seconds in length and should freeze at the end. The circles should continue to animate indefinitely + Bottom frame contains a jpeg reference image. The jpeg image is rendering order is on the top and the video + rendering order is on the bottom. +

+

+ If the user agent does not support the 3GP media format, the test is still a pass. +

+ +
+ + + diff --git a/test/W3C_SVG_12_TinyTestSuite_beta/htmlEmbedHarness/media-video-213-t.html b/test/W3C_SVG_12_TinyTestSuite_beta/htmlEmbedHarness/media-video-213-t.html new file mode 100755 index 00000000..7e906d2f --- /dev/null +++ b/test/W3C_SVG_12_TinyTestSuite_beta/htmlEmbedHarness/media-video-213-t.html @@ -0,0 +1,89 @@ + + + + + + + + +SVG 1.2 Tiny test:media-video-213-t + + + + + + + + + + +
+ + + + + + + + + + + + +
+

media-video-213-t

+
+ + + raster image of media-video-213-t +
+
+ + +
+

Rotation with Video and Image

+

+ Tests the case when type is set to 'rotate' in animateTransform. The test + contains two objects; one video and one image. Both are rotated about a + point definied by the center of the black circle. The video will rotate + clockwise, and the image will rotate anti-clockwise. +

+

+ If the user agent does not support the 3GP media format, the test is still a pass. +

+ +
+ + + diff --git a/test/W3C_SVG_12_TinyTestSuite_beta/htmlEmbedHarness/media-video-214-t.html b/test/W3C_SVG_12_TinyTestSuite_beta/htmlEmbedHarness/media-video-214-t.html new file mode 100755 index 00000000..761b4c3d --- /dev/null +++ b/test/W3C_SVG_12_TinyTestSuite_beta/htmlEmbedHarness/media-video-214-t.html @@ -0,0 +1,88 @@ + + + + + + + + +SVG 1.2 Tiny test:media-video-214-t + + + + + + + + + + +
+ + + + + + + + + + + + +
+

media-video-214-t

+
+ + + raster image of media-video-214-t +
+
+ + +
+

Transformation and rendering order on Video

+

+ Tests the rendering order of Video with other objects. Test contains + a video element with a polygon rendered over the top. The polygon has + a solid fill; no video should be visible through the polygon. +

+

+ If the user agent does not support the 3GP media format, the test is still a pass. +

+ +
+ + + diff --git a/test/W3C_SVG_12_TinyTestSuite_beta/htmlEmbedHarness/media-video-215-t.html b/test/W3C_SVG_12_TinyTestSuite_beta/htmlEmbedHarness/media-video-215-t.html new file mode 100755 index 00000000..9cc802c1 --- /dev/null +++ b/test/W3C_SVG_12_TinyTestSuite_beta/htmlEmbedHarness/media-video-215-t.html @@ -0,0 +1,86 @@ + + + + + + + + +SVG 1.2 Tiny test:media-video-215-t + + + + + + + + + + +
+ + + + + + + + + + + + +
+

media-video-215-t

+
+ + + raster image of media-video-215-t +
+
+ + +
+

+ If a video is playing and xlink href is changed the stream should change. The + new stream should start playing at the same position as the reference video, if the media play time cannot be controlled. Otherwise the media time will be re-started. +

+

+ If the user agent does not support the 3GP media format, the test is still a pass. +

+ +
+ + + diff --git a/test/W3C_SVG_12_TinyTestSuite_beta/htmlEmbedHarness/media-video-216-t.html b/test/W3C_SVG_12_TinyTestSuite_beta/htmlEmbedHarness/media-video-216-t.html new file mode 100755 index 00000000..f317c050 --- /dev/null +++ b/test/W3C_SVG_12_TinyTestSuite_beta/htmlEmbedHarness/media-video-216-t.html @@ -0,0 +1,104 @@ + + + + + + + + +SVG 1.2 Tiny test:media-video-216-t + + + + + + + + + + +
+ + + + + + + + + + + + +
+

media-video-216-t

+
+ + + raster image of media-video-216-t +
+
+ + +
+

+ Tests the different transformBehavior values on video. + Pinned, Pinned90, Pinned180, Pinned270 +

+

+ The 1st video element has transformBehavior set to pinned and is displayed in the top-left of a 4-video box. +

+

+ The 2nd video element has transformBehavior set to pinned90 and is displayed in the top-right of a 4-video box. +

+

+ The 3rd video element has transformBehavior set to pinned180 and is displayed in the bottom-left of a 4-video box. +

+

+ The 4th video element has transformBehavior set to pinned270 and is displayed in the bottom-right of a 4-video box. +

+

+ There are 4 green-stroked rectangles indicating the expected position and orientation, but not size. +

+

+ The videos should display with the appropriate rotation, centered on the green rectangles but not bound by them in any way, since determining the exact pixel size of the rectangles is not possible. +

+

+ If the user agent does not support the 3GP media format, the test is still a pass. +

+ +
+ + + diff --git a/test/W3C_SVG_12_TinyTestSuite_beta/htmlEmbedHarness/media-video-218-t.html b/test/W3C_SVG_12_TinyTestSuite_beta/htmlEmbedHarness/media-video-218-t.html new file mode 100755 index 00000000..fe063515 --- /dev/null +++ b/test/W3C_SVG_12_TinyTestSuite_beta/htmlEmbedHarness/media-video-218-t.html @@ -0,0 +1,89 @@ + + + + + + + + +SVG 1.2 Tiny test:media-video-218-t + + + + + + + + + + +
+ + + + + + + + + + + + +
+

media-video-218-t

+
+ + + raster image of media-video-218-t +
+
+ + +
+

+ When no video element is displayable (visibility is hidden or display is none of the use element), + audio level should be set to 0 and video should not be rendered. + -Video1 should be displayed between 0-4s, not rendered between 4-6 s and displayed between 6-8s. + -Video2 should be displayed between 0-2s, not rendered between 2-6 s and displayed between 6-8s. + -The audio of the video should be muted between 4-6s as no video is then rendered. +

+

+ If the user agent does not support the 3GP media format, the test is still a pass. +

+ +
+ + + diff --git a/test/W3C_SVG_12_TinyTestSuite_beta/htmlEmbedHarness/media-video-219-t.html b/test/W3C_SVG_12_TinyTestSuite_beta/htmlEmbedHarness/media-video-219-t.html new file mode 100755 index 00000000..b014b051 --- /dev/null +++ b/test/W3C_SVG_12_TinyTestSuite_beta/htmlEmbedHarness/media-video-219-t.html @@ -0,0 +1,86 @@ + + + + + + + + +SVG 1.2 Tiny test:media-video-219-t + + + + + + + + + + +
+ + + + + + + + + + + + +
+

media-video-219-t

+
+ + + raster image of media-video-219-t +
+
+ + +
+

+ If a video is playing and it is repositioned by removing it's corresponding use + from tree and then reinserting it in tree the video should continue playing but change position +

+

+ If the user agent does not support the 3GP media format, the test is still a pass. +

+ +
+ + + diff --git a/test/W3C_SVG_12_TinyTestSuite_beta/htmlEmbedHarness/media-video-220-t.html b/test/W3C_SVG_12_TinyTestSuite_beta/htmlEmbedHarness/media-video-220-t.html new file mode 100755 index 00000000..b4dff917 --- /dev/null +++ b/test/W3C_SVG_12_TinyTestSuite_beta/htmlEmbedHarness/media-video-220-t.html @@ -0,0 +1,87 @@ + + + + + + + + +SVG 1.2 Tiny test:media-video-220-t + + + + + + + + + + +
+ + + + + + + + + + + + +
+

media-video-220-t

+
+ + + raster image of media-video-220-t +
+
+ + +
+

+ If a video is playing when it is removed from document tree + it should continue playing when re-inserted in tree. + - The video should change position at 2 seconds but continue playing. +

+

+ If the user agent does not support the 3GP media format, the test is still a pass. +

+ +
+ + + diff --git a/test/W3C_SVG_12_TinyTestSuite_beta/htmlEmbedHarness/media-video-221-t.html b/test/W3C_SVG_12_TinyTestSuite_beta/htmlEmbedHarness/media-video-221-t.html new file mode 100755 index 00000000..0fd35195 --- /dev/null +++ b/test/W3C_SVG_12_TinyTestSuite_beta/htmlEmbedHarness/media-video-221-t.html @@ -0,0 +1,87 @@ + + + + + + + + +SVG 1.2 Tiny test:media-video-221-t + + + + + + + + + + +
+ + + + + + + + + + + + +
+

media-video-221-t

+
+ + + raster image of media-video-221-t +
+
+ + +
+

+ When xlink:href is animated on a use element between two different video elements, the + displayed video should change and it should play at the current time. + -video1 should be displayed between 0-2 and 4-6s and video2 between 2-4s. +

+

+ If the user agent does not support the 3GP media format, the test is still a pass. +

+ +
+ + + diff --git a/test/W3C_SVG_12_TinyTestSuite_beta/htmlEmbedHarness/media-video-222-t.html b/test/W3C_SVG_12_TinyTestSuite_beta/htmlEmbedHarness/media-video-222-t.html new file mode 100755 index 00000000..386e65fd --- /dev/null +++ b/test/W3C_SVG_12_TinyTestSuite_beta/htmlEmbedHarness/media-video-222-t.html @@ -0,0 +1,83 @@ + + + + + + + + +SVG 1.2 Tiny test:media-video-222-t + + + + + + + + + + +
+ + + + + + + + + + + + +
+

media-video-222-t

+
+ + + raster image of media-video-222-t +
+
+ + +
+

+ Video Elements with Incorrect xlink:href + This slide tests the video xlink:href attribute with invalid values +

+ +
+ + + diff --git a/test/W3C_SVG_12_TinyTestSuite_beta/htmlEmbedHarness/metadata-example-01-t.html b/test/W3C_SVG_12_TinyTestSuite_beta/htmlEmbedHarness/metadata-example-01-t.html new file mode 100755 index 00000000..b7d59d37 --- /dev/null +++ b/test/W3C_SVG_12_TinyTestSuite_beta/htmlEmbedHarness/metadata-example-01-t.html @@ -0,0 +1,82 @@ + + + + + + + + +SVG 1.2 Tiny test:metadata-example-01-t + + + + + + + + + + +
+ + + + + + + + + + + + +
+

metadata-example-01-t

+
+ + + raster image of metadata-example-01-t +
+
+ + +
+

Check that metadata in a variety of namespaces, inside a metadata element, does not affect rendering in any way. The file is not valid to the DTD, but is well formed.

+

The diagram on the table is a visualization of the RDF metadata in the graphic.

+

The rendered result should match the reference image and there should be no error messages or warnings

+ +
+ + + diff --git a/test/W3C_SVG_12_TinyTestSuite_beta/htmlEmbedHarness/paint-color-01-t.html b/test/W3C_SVG_12_TinyTestSuite_beta/htmlEmbedHarness/paint-color-01-t.html new file mode 100755 index 00000000..67d37968 --- /dev/null +++ b/test/W3C_SVG_12_TinyTestSuite_beta/htmlEmbedHarness/paint-color-01-t.html @@ -0,0 +1,88 @@ + + + + + + + + +SVG 1.2 Tiny test:paint-color-01-t + + + + + + + + + + +
+ + + + + + + + + + + + +
+

paint-color-01-t

+
+ + + raster image of paint-color-01-t +
+
+ + +
+

+ The purpose of this test is to determine if an application has the basic capability to process the 'color' property. + There are three subtests. +

+

+ The first subtest, to the top left, is passed if the circle has a red fill. The second subtest, to the top right, is + passed if the circle has a red stroke. The third subtest shows a rectangle with a gradient fill, which has three stops. + The subtest is passed if central stop is red, fading off to blue to the left and pale yellow to the right. +

+ +
+ + + diff --git a/test/W3C_SVG_12_TinyTestSuite_beta/htmlEmbedHarness/paint-color-03-t.html b/test/W3C_SVG_12_TinyTestSuite_beta/htmlEmbedHarness/paint-color-03-t.html new file mode 100755 index 00000000..64a44e35 --- /dev/null +++ b/test/W3C_SVG_12_TinyTestSuite_beta/htmlEmbedHarness/paint-color-03-t.html @@ -0,0 +1,92 @@ + + + + + + + + +SVG 1.2 Tiny test:paint-color-03-t + + + + + + + + + + +
+ + + + + + + + + + + + +
+

paint-color-03-t

+
+ + + raster image of paint-color-03-t +
+
+ + +
+

+ Purpose of test is to determine if the color datatype is supported. There are multiple syntaxes for specifying the + same color, such as #37F and #3377FF. For each of the six groups shown here, each of the shapes in the group uses + one of the syntactical forms and all in the group should be identical in color. +

+

+ The first row uses five forms - 3-digit hex, 6-digit hex, rbg() integer form, rgb() percentage form, and named + ('HTML') colors. +

+

+ The second row uses only four forms - 3-digit hex, 6-digit hex, rbg() integer form, rgb() percentage form - as + there are no HTML or X11 names for those colors. +

+ +
+ + + diff --git a/test/W3C_SVG_12_TinyTestSuite_beta/htmlEmbedHarness/paint-color-04-t.html b/test/W3C_SVG_12_TinyTestSuite_beta/htmlEmbedHarness/paint-color-04-t.html new file mode 100755 index 00000000..75d534d9 --- /dev/null +++ b/test/W3C_SVG_12_TinyTestSuite_beta/htmlEmbedHarness/paint-color-04-t.html @@ -0,0 +1,84 @@ + + + + + + + + +SVG 1.2 Tiny test:paint-color-04-t + + + + + + + + + + +
+ + + + + + + + + + + + +
+

paint-color-04-t

+
+ + + raster image of paint-color-04-t +
+
+ + +
+

+ Tests system colors. The colors on your screen might not match the reference image at all, but they should at + minimum be legible and should preferably resemble the colors used on menus and other user interface elements on + your computer, pda or phone. +

+ +
+ + + diff --git a/test/W3C_SVG_12_TinyTestSuite_beta/htmlEmbedHarness/paint-color-05-t.html b/test/W3C_SVG_12_TinyTestSuite_beta/htmlEmbedHarness/paint-color-05-t.html new file mode 100755 index 00000000..efd670a2 --- /dev/null +++ b/test/W3C_SVG_12_TinyTestSuite_beta/htmlEmbedHarness/paint-color-05-t.html @@ -0,0 +1,81 @@ + + + + + + + + +SVG 1.2 Tiny test:paint-color-05-t + + + + + + + + + + +
+ + + + + + + + + + + + +
+

paint-color-05-t

+
+ + + raster image of paint-color-05-t +
+
+ + +
+

Tests the color that is used for the currentColor value in the fill attribute when more than one color is specified.

+

This is illustrated using a single rectangle that is a child of a group element. A fill is specified for the group element but not the rectangle. Colour is specifed for the rectangle and the group element. The user agent should render the rectangle with a RED fill.

+ +
+ + + diff --git a/test/W3C_SVG_12_TinyTestSuite_beta/htmlEmbedHarness/paint-color-201-t.html b/test/W3C_SVG_12_TinyTestSuite_beta/htmlEmbedHarness/paint-color-201-t.html new file mode 100755 index 00000000..6c9ae7c2 --- /dev/null +++ b/test/W3C_SVG_12_TinyTestSuite_beta/htmlEmbedHarness/paint-color-201-t.html @@ -0,0 +1,82 @@ + + + + + + + + +SVG 1.2 Tiny test:paint-color-201-t + + + + + + + + + + +
+ + + + + + + + + + + + +
+

paint-color-201-t

+
+ + + raster image of paint-color-201-t +
+
+ + +
+

+ Tests the sixteen color names that must be supported in SVG Tiny. +

+ +
+ + + diff --git a/test/W3C_SVG_12_TinyTestSuite_beta/htmlEmbedHarness/paint-fill-01-t.html b/test/W3C_SVG_12_TinyTestSuite_beta/htmlEmbedHarness/paint-fill-01-t.html new file mode 100755 index 00000000..c17f9207 --- /dev/null +++ b/test/W3C_SVG_12_TinyTestSuite_beta/htmlEmbedHarness/paint-fill-01-t.html @@ -0,0 +1,81 @@ + + + + + + + + +SVG 1.2 Tiny test:paint-fill-01-t + + + + + + + + + + +
+ + + + + + + + + + + + +
+

paint-fill-01-t

+
+ + + raster image of paint-fill-01-t +
+
+ + +
+

Verify the basic capability to handle the fill properties fill:none, and fill with a color (fill:red)

+

There should be two rectangles, the rectangle on the left hollow (fill:none) and the rectangle on the right filled with red.

+ +
+ + + diff --git a/test/W3C_SVG_12_TinyTestSuite_beta/htmlEmbedHarness/paint-fill-02-t.html b/test/W3C_SVG_12_TinyTestSuite_beta/htmlEmbedHarness/paint-fill-02-t.html new file mode 100755 index 00000000..533e1821 --- /dev/null +++ b/test/W3C_SVG_12_TinyTestSuite_beta/htmlEmbedHarness/paint-fill-02-t.html @@ -0,0 +1,84 @@ + + + + + + + + +SVG 1.2 Tiny test:paint-fill-02-t + + + + + + + + + + +
+ + + + + + + + + + + + +
+

paint-fill-02-t

+
+ + + raster image of paint-fill-02-t +
+
+ + +
+

The test uses the "currentColor" value for the "fill" attribute.

+

+ The rectangle on the left should be green filled, the rectangle on the right should be blue. The text above the + rectangles should be black. +

+ +
+ + + diff --git a/test/W3C_SVG_12_TinyTestSuite_beta/htmlEmbedHarness/paint-fill-03-t.html b/test/W3C_SVG_12_TinyTestSuite_beta/htmlEmbedHarness/paint-fill-03-t.html new file mode 100755 index 00000000..45e027b0 --- /dev/null +++ b/test/W3C_SVG_12_TinyTestSuite_beta/htmlEmbedHarness/paint-fill-03-t.html @@ -0,0 +1,81 @@ + + + + + + + + +SVG 1.2 Tiny test:paint-fill-03-t + + + + + + + + + + +
+ + + + + + + + + + + + +
+

paint-fill-03-t

+
+ + + raster image of paint-fill-03-t +
+
+ + +
+

Verify the basic capability to handle the fill rule properties evenodd and nonzero

+

There should be two red filled stars, the leftmost star should be unfilled in the very center.

+ +
+ + + diff --git a/test/W3C_SVG_12_TinyTestSuite_beta/htmlEmbedHarness/paint-fill-04-t.html b/test/W3C_SVG_12_TinyTestSuite_beta/htmlEmbedHarness/paint-fill-04-t.html new file mode 100755 index 00000000..51f8193c --- /dev/null +++ b/test/W3C_SVG_12_TinyTestSuite_beta/htmlEmbedHarness/paint-fill-04-t.html @@ -0,0 +1,94 @@ + + + + + + + + +SVG 1.2 Tiny test:paint-fill-04-t + + + + + + + + + + +
+ + + + + + + + + + + + +
+

paint-fill-04-t

+
+ + + raster image of paint-fill-04-t +
+
+ + +
+

+ This tests inheritance of three properties: "fill", "stroke" and "stroke-width". There is a "g" element (id="G1") + which sets fill="blue", stroke="red", and stroke-width="5". The first two rectangles on top should inherit all + those properties. The middle left rectangle has fill="yellow" and stroke-width="2", it should inherit the + stroke="red" from the parent container. The middle rectangle on the right has stroke="yellow", it should inherit + fill and stroke-width from the parent "g". The bottom two rectangles are in another "g" element (id="G2") which + is a child of "G1". "G2" sets fill="yellow". It should inherit the stroke and stroke width from the parent "G1". + The two bottom rectangles set no fill or stroke properties, they should inherit through the parents, stroke="red" + and stroke-width="5". +

+

The rendered picture should match the reference image, except for possible variations in the labeling text (per CSS2 rules).

+

+ The test uses the "rect" element, as well as basic fill (solid primary colors), stroke (black 1-pixel lines), + font-family (Arial) and font-size properties. +

+ +
+ + + diff --git a/test/W3C_SVG_12_TinyTestSuite_beta/htmlEmbedHarness/paint-fill-05-t.html b/test/W3C_SVG_12_TinyTestSuite_beta/htmlEmbedHarness/paint-fill-05-t.html new file mode 100755 index 00000000..c38e2939 --- /dev/null +++ b/test/W3C_SVG_12_TinyTestSuite_beta/htmlEmbedHarness/paint-fill-05-t.html @@ -0,0 +1,86 @@ + + + + + + + + +SVG 1.2 Tiny test:paint-fill-05-t + + + + + + + + + + +
+ + + + + + + + + + + + +
+

paint-fill-05-t

+
+ + + raster image of paint-fill-05-t +
+
+ + +
+

Test using "fill-opacity" values for "rect" element. This test verifies that opacity is clamped to the specified range.

+

+ The six rect elements on the left have varying 'fill-opacity' values within the valid range of 0 to 1. The six elements + on the right have 'fill-opacity' values outside the 0 to 1 range, and must be clamped. The top three rect elements on + the right must have their 'fill-opacity' clamped to 0, while the bottom three rect elements on the right must be clamped + to 1. +

+ +
+ + + diff --git a/test/W3C_SVG_12_TinyTestSuite_beta/htmlEmbedHarness/paint-grad-04-t.html b/test/W3C_SVG_12_TinyTestSuite_beta/htmlEmbedHarness/paint-grad-04-t.html new file mode 100755 index 00000000..378f0b19 --- /dev/null +++ b/test/W3C_SVG_12_TinyTestSuite_beta/htmlEmbedHarness/paint-grad-04-t.html @@ -0,0 +1,95 @@ + + + + + + + + +SVG 1.2 Tiny test:paint-grad-04-t + + + + + + + + + + +
+ + + + + + + + + + + + +
+

paint-grad-04-t

+
+ + + raster image of paint-grad-04-t +
+
+ + +
+

Test that checks the capability of the stop element in linear and radial gradients.

+

+ The first rectangle has a linear gradient fill with a vector starting at top left and going to bottom right. The + stop colors are at 20% spacing apart and are in the following order : violet, blue, lime, yellow, orange, red. + Because the gradient vector vector goes from (0,0) to (1,1) in object bounding box space and because the object + bounding box has a larger width than height, the gradient vector is skewed off of a pure 45 degree angle. The + gradient stripes are also skewed so that they are no longer perpendicular to the gradient vector. +

+

+ The next rectangle has a radial gradient fill with a multi-color stops from innermost to outermost in the following + order : black, yellow, red, blue, white, green. +

+

+ The rendered picture should match the reference image exactly, except for possible variations in the labelling + text (per CSS2 rules). +

+ +
+ + + diff --git a/test/W3C_SVG_12_TinyTestSuite_beta/htmlEmbedHarness/paint-grad-05-t.html b/test/W3C_SVG_12_TinyTestSuite_beta/htmlEmbedHarness/paint-grad-05-t.html new file mode 100755 index 00000000..558955f2 --- /dev/null +++ b/test/W3C_SVG_12_TinyTestSuite_beta/htmlEmbedHarness/paint-grad-05-t.html @@ -0,0 +1,102 @@ + + + + + + + + +SVG 1.2 Tiny test:paint-grad-05-t + + + + + + + + + + +
+ + + + + + + + + + + + +
+

paint-grad-05-t

+
+ + + raster image of paint-grad-05-t +
+
+ + +
+

Test that checks the capability of the stop opacity in linear and radial gradients.

+

+ There are two tests which contain rectangles with gradients using stop-opacity properties. A cyan color text string + "Background" is put behind both of the rectangles to help demonstrate the opacity concept. From top-down the appearance + of objects is as follows. +

+

+ The first rectangle has a linear gradient fill with a vector starting at top left and going to bottom right. The stop + colors are at 20% spacing apart and are in the following order : violet, blue, lime, yellow, orange, red. Also a stop + opacity is given to the colors in the following order: 1, 0.2, 0.5, 0, 0.8, 1 Because the gradient vector vector goes + from (0,0) to (1,1) in object bounding box space and because the object bounding box has a larger width than height, + the gradient vector is skewed off of a pure 45 degree angle. The gradient stripes are also skewed so that they are no + longer perpendicular to the gradient vector. +

+

+ The next rectangle has a radial gradient fill with a multi-color stops from innermost to outermost in the following + order : black, yellow, red, blue, white, green. Also a stop opacity is given to the colors in the following order: 1, + 0.2, 0.5, 0, 0.8, 1 +

+

+ The rendered picture should match the reference image exactly, except for possible variations in the labelling text + (per CSS2 rules). +

+ +
+ + + diff --git a/test/W3C_SVG_12_TinyTestSuite_beta/htmlEmbedHarness/paint-grad-07-t.html b/test/W3C_SVG_12_TinyTestSuite_beta/htmlEmbedHarness/paint-grad-07-t.html new file mode 100755 index 00000000..f9791650 --- /dev/null +++ b/test/W3C_SVG_12_TinyTestSuite_beta/htmlEmbedHarness/paint-grad-07-t.html @@ -0,0 +1,91 @@ + + + + + + + + +SVG 1.2 Tiny test:paint-grad-07-t + + + + + + + + + + +
+ + + + + + + + + + + + +
+

paint-grad-07-t

+
+ + + raster image of paint-grad-07-t +
+
+ + +
+

Test that the viewer has basic capability to handle linear gradients on fills and stroke of objects and text.

+

+ This test uses the following elements : <linearGradient>, <stop> and the following properties : stop-color, + fill:url(# ), stroke(url# ) +

+

+ Both elements in this test use the same simple gradient. It is a linear gradient from blue (left) to red (right). From + top-down the appearance of objects is as follows. +

+

The top rectangle should be filled with the gradient.

+

The next rectangle has no fill, but has a thick stroke on which the gradient is applied.

+

The rendered picture should match the reference image, except for possible variations in the labelling text (per CSS2 rules).

+ +
+ + + diff --git a/test/W3C_SVG_12_TinyTestSuite_beta/htmlEmbedHarness/paint-grad-08-t.html b/test/W3C_SVG_12_TinyTestSuite_beta/htmlEmbedHarness/paint-grad-08-t.html new file mode 100755 index 00000000..09c1742d --- /dev/null +++ b/test/W3C_SVG_12_TinyTestSuite_beta/htmlEmbedHarness/paint-grad-08-t.html @@ -0,0 +1,91 @@ + + + + + + + + +SVG 1.2 Tiny test:paint-grad-08-t + + + + + + + + + + +
+ + + + + + + + + + + + +
+

paint-grad-08-t

+
+ + + raster image of paint-grad-08-t +
+
+ + +
+

Test that the viewer has basic capability to handle linear gradients on fills and stroke of text.

+

+ This test uses the following elements : <linearGradient>, <stop> and the following properties : stop-color, + fill:url(# ), stroke(url# ) +

+

+ Both elements in this test use the same simple gradient. It is a linear gradient from blue (left) to red (right). From + top-down the appearance of objects is as follows. +

+

The first item is a text string "Gradient on fill" with the gradient on the fill of the text.

+

The second item is a text string that is not filled. It has a 2 user unit stroke on which the gradient is applied.

+

The rendered picture should match the reference image, except for possible variations in the labelling text (per CSS2 rules).

+ +
+ + + diff --git a/test/W3C_SVG_12_TinyTestSuite_beta/htmlEmbedHarness/paint-grad-09-t.html b/test/W3C_SVG_12_TinyTestSuite_beta/htmlEmbedHarness/paint-grad-09-t.html new file mode 100755 index 00000000..94528bb0 --- /dev/null +++ b/test/W3C_SVG_12_TinyTestSuite_beta/htmlEmbedHarness/paint-grad-09-t.html @@ -0,0 +1,100 @@ + + + + + + + + +SVG 1.2 Tiny test:paint-grad-09-t + + + + + + + + + + +
+ + + + + + + + + + + + +
+

paint-grad-09-t

+
+ + + raster image of paint-grad-09-t +
+
+ + +
+

+ Test that the viewer can handle the gradientUnits attribute on linear gradients. It tests the following values of + gradientUnits : default (objectBoundingBox), specifying objectBoundingBox, and specifying userSpaceOnUse. +

+

From top-down the appearance of objects is as follows.

+

+ The first rectangle uses the default attributes on the linearGradient element. Therefore the linear gradient should + default to objectBoundingBox. It should appear from the left edge of the rectangle (blue) to the right edge of the + rectangle (red). The rectangle is smaller than the viewport, because a previous version of the SVG spec had the + default value be 'viewport'. The test fails if only a portion of the gradient is shown. +

+

The next rectangle uses gradientUnits=objectBoundingBox. The linear gradient should travel from blue (top) to red (bottom).

+

+ The last rectangle uses gradientUnits=userSpaceOnUse. The rectangle element is given it's own transformation and the + gradient is assumed to be in this user space. The gradient should appear as a linear gradient from red (left) to blue + (right). +

+

+ The rendered picture should match the reference image exactly, except for possible variations in the labelling text + (per CSS2 rules). +

+ +
+ + + diff --git a/test/W3C_SVG_12_TinyTestSuite_beta/htmlEmbedHarness/paint-grad-11-t.html b/test/W3C_SVG_12_TinyTestSuite_beta/htmlEmbedHarness/paint-grad-11-t.html new file mode 100755 index 00000000..46ca3fe4 --- /dev/null +++ b/test/W3C_SVG_12_TinyTestSuite_beta/htmlEmbedHarness/paint-grad-11-t.html @@ -0,0 +1,99 @@ + + + + + + + + +SVG 1.2 Tiny test:paint-grad-11-t + + + + + + + + + + +
+ + + + + + + + + + + + +
+

paint-grad-11-t

+
+ + + raster image of paint-grad-11-t +
+
+ + +
+

Test that the viewer has basic capability to handle radial gradients on fills and stroke of objects and text.

+

+ This test uses the following elements : <radialGradient>, <stop> and the following properties : stop-color, + fill:url(# ), stroke(url# ) +

+

From top-down (left to right) the appearance of objects is as follows.

+

+ The top left rectangle should be a radial gradient from black(in) to red(outside). The gradiant is applied to the + fill of the rectangle. +

+

+ The next rectangle has no fill, but has a thick stroke on which the gradient is applied. The gradient goes from + red(in) to yellow (out). +

+

The next item is a text with a radial gradient on the fill. The gradient goes from black (in) to yellow (out).

+

The last item is a text with a 2 user unit stroke on which a black (in) to red (out) linear gradient is applied.

+

+ The rendered picture should match the reference image exactly, except for possible variations in the labelling text + (per CSS2 rules). +

+ +
+ + + diff --git a/test/W3C_SVG_12_TinyTestSuite_beta/htmlEmbedHarness/paint-grad-12-t.html b/test/W3C_SVG_12_TinyTestSuite_beta/htmlEmbedHarness/paint-grad-12-t.html new file mode 100755 index 00000000..871ee5d3 --- /dev/null +++ b/test/W3C_SVG_12_TinyTestSuite_beta/htmlEmbedHarness/paint-grad-12-t.html @@ -0,0 +1,102 @@ + + + + + + + + +SVG 1.2 Tiny test:paint-grad-12-t + + + + + + + + + + +
+ + + + + + + + + + + + +
+

paint-grad-12-t

+
+ + + raster image of paint-grad-12-t +
+
+ + +
+

+ Test that the viewer can handle the gradientUnits attribute on radial gradients. It tests the following values of + gradientUnits : default (objectBoundingBox), objectBoundingBox, and userSpaceOnUse. +

+

From top-down the appearance of objects is as follows.

+

+ The first rectangle uses the default attributes on the radialGradient element. Therefore the radial gradient should + be relative to the object bounding box. It should appear from the center of the viewport (blue) to the edges of the + viewport (red). The rectangle is wider than tall so it the gradient should be elliptical, not circular. +

+

+ The next rectangle uses gradientUnits=objectBoundingBox. The radial gradient should travel from a center of 20%, 20% + of the rectangle with a radius of 50%. +

+

+ The last rectangle uses gradientUnits=userSpaceOnUse. The rectangle element is given it's own transformation and the + gradient is assumed to be in this user space. The gradient should appear in the center of the rectangle as a radial + gradient from red (center) to blue (edge). +

+

+ The rendered picture should match the reference image exactly, except for possible variations in the labelling text + (per CSS2 rules). +

+ +
+ + + diff --git a/test/W3C_SVG_12_TinyTestSuite_beta/htmlEmbedHarness/paint-grad-15-t.html b/test/W3C_SVG_12_TinyTestSuite_beta/htmlEmbedHarness/paint-grad-15-t.html new file mode 100755 index 00000000..f1e17b7e --- /dev/null +++ b/test/W3C_SVG_12_TinyTestSuite_beta/htmlEmbedHarness/paint-grad-15-t.html @@ -0,0 +1,88 @@ + + + + + + + + +SVG 1.2 Tiny test:paint-grad-15-t + + + + + + + + + + +
+ + + + + + + + + + + + +
+

paint-grad-15-t

+
+ + + raster image of paint-grad-15-t +
+
+ + +
+

+ Test linear and radial gradient defaults. Includes testing defaults for linear grad x1,y1,y2 = 0.0, x2 = 1.0 and + testing defaults for radial grad cx,cy,r = 0.5 +

+

+ The top rectangle must be blue at the lefthand side and red at the right hand side, fading smoothly accross. The + lower rectangle must be red at the edges with a black centre to the radial gradient at the centre of the + rectangle, and the gradient occupying the whole rectangle. +

+ +
+ + + diff --git a/test/W3C_SVG_12_TinyTestSuite_beta/htmlEmbedHarness/paint-grad-16-t.html b/test/W3C_SVG_12_TinyTestSuite_beta/htmlEmbedHarness/paint-grad-16-t.html new file mode 100755 index 00000000..e533828b --- /dev/null +++ b/test/W3C_SVG_12_TinyTestSuite_beta/htmlEmbedHarness/paint-grad-16-t.html @@ -0,0 +1,89 @@ + + + + + + + + +SVG 1.2 Tiny test:paint-grad-16-t + + + + + + + + + + +
+ + + + + + + + + + + + +
+

paint-grad-16-t

+
+ + + raster image of paint-grad-16-t +
+
+ + +
+

+ Test gradient stop rules. Including: No stops, like fill = none. One stop, like fill = black. If a stop less than + all previous stops, it is set equal to the largest stop. If two stops are equal the last stop controls the color + at the overlap point. +

+

+ The top rectangle must have a red outline and no fill. The middle rectangle must have a solid black fill. The + lower rectangle must have a yellow to red to green linear gradient on the left-hand half and a solid blue fill + for the right hand half. +

+ +
+ + + diff --git a/test/W3C_SVG_12_TinyTestSuite_beta/htmlEmbedHarness/paint-grad-17-t.html b/test/W3C_SVG_12_TinyTestSuite_beta/htmlEmbedHarness/paint-grad-17-t.html new file mode 100755 index 00000000..39d131ad --- /dev/null +++ b/test/W3C_SVG_12_TinyTestSuite_beta/htmlEmbedHarness/paint-grad-17-t.html @@ -0,0 +1,96 @@ + + + + + + + + +SVG 1.2 Tiny test:paint-grad-17-t + + + + + + + + + + +
+ + + + + + + + + + + + +
+

paint-grad-17-t

+
+ + + raster image of paint-grad-17-t +
+
+ + +
+

+ This test has a gradient with gradientUnits='objectBoundingBox' which is a fade from black to white. The gradient + is used for the stroke of a line. Vertical and horizontal lines don't have a boundingbox, since they are + one-dimensional, even though the stroke-width makes it look like they should have a boundingbox with non-zero width + and height. See the coordinate chapter, last paragraph of 7.12. +

+

+ The left rectangle has four 'line' elements rotated in different ways. The stroke for the lines have a green solid + stroke fallback which should be used if the gradient should be ignored. For this sub-test to pass there must be + three lines with solid green stroke, and one line (from bottom left to top right) with a gradient stroke, visible + in the rectangle. +

+

+ The right rectangle is the same as the left rectangle except that the stroke paintservers don't have a fallback + specified. For this sub-test to pass only the line from bottom left to top right must be visible in the rectangle, + and it must have a gradient stroke. +

+ +
+ + + diff --git a/test/W3C_SVG_12_TinyTestSuite_beta/htmlEmbedHarness/paint-grad-18-t.html b/test/W3C_SVG_12_TinyTestSuite_beta/htmlEmbedHarness/paint-grad-18-t.html new file mode 100755 index 00000000..e734270b --- /dev/null +++ b/test/W3C_SVG_12_TinyTestSuite_beta/htmlEmbedHarness/paint-grad-18-t.html @@ -0,0 +1,84 @@ + + + + + + + + +SVG 1.2 Tiny test:paint-grad-18-t + + + + + + + + + + +
+ + + + + + + + + + + + +
+

paint-grad-18-t

+
+ + + raster image of paint-grad-18-t +
+
+ + +
+

This test shows rectangles filled with gradient. Several gradients are defined, with two stops:

+

For the top-left rectangle's gradient: The first stop defines a fully-opaque green color. The second stop explicitly inherits (i.e. using the 'inherit' keyword) its stop-color. The result should be that the top-left rectangle is filled with a gradient from green to red since the stop-color is inherited from the location of the gradient definition.

+

For the top-right rectangle's gradient: The first stop defines a fully-opaque green color. The second stop defines a green stop-color but explicitly inherits (i.e. using the 'inherit' keyword) the stop-opacity. The result should be that the top-right rectangle filled in green with a gradient opacity.

+

For the bottom-left rectangle's gradient: The first stop defines a fully-opaque green color. The second stop does not specify the stop-color and the stop-opacity. Since both properties are not inherited, the initial value should be used. The result should be that the lower-left rectangle filled with a gradient going from fully-opaque green to fully-opaque black.

+

For the bottom-right rectangle's gradient: The first stop defines a fully-opaque green color. The second stop specifies the stop-color using the 'currentColor' keyword. The result should be that the lower-right rectangle filled with a gradient going from fully-opaque green to fully-opaque yellow.

+ +
+ + + diff --git a/test/W3C_SVG_12_TinyTestSuite_beta/htmlEmbedHarness/paint-grad-19-t.html b/test/W3C_SVG_12_TinyTestSuite_beta/htmlEmbedHarness/paint-grad-19-t.html new file mode 100755 index 00000000..f9d9d1eb --- /dev/null +++ b/test/W3C_SVG_12_TinyTestSuite_beta/htmlEmbedHarness/paint-grad-19-t.html @@ -0,0 +1,87 @@ + + + + + + + + +SVG 1.2 Tiny test:paint-grad-19-t + + + + + + + + + + +
+ + + + + + + + + + + + +
+

paint-grad-19-t

+
+ + + raster image of paint-grad-19-t +
+
+ + +
+

+ This test shows rectangles filled with animated gradient which inherits some of their properties: stop-color, stop-opacity. + The correct result must show: - the top-left rectangle filled initially with a linear green-to-red gradient and turning into + a solid green color after 5s. - the top-right rectangle filled initially with a green gradient fully opaque on the left and + half transparent on the right, but after 5s the rectangle must be filled with a fully opaque solid green. - the bottom-left + rectangle filled with a static green-to-black opaque gradient - the bottom-right rectangle initially filled with a green-to-yellow + fully-opaque gradient animated and turning into a fully-opaque green solid color. Animations numbered a4 to a7 must have no impact. +

+ +
+ + + diff --git a/test/W3C_SVG_12_TinyTestSuite_beta/htmlEmbedHarness/paint-grad-201-t.html b/test/W3C_SVG_12_TinyTestSuite_beta/htmlEmbedHarness/paint-grad-201-t.html new file mode 100755 index 00000000..d01400b4 --- /dev/null +++ b/test/W3C_SVG_12_TinyTestSuite_beta/htmlEmbedHarness/paint-grad-201-t.html @@ -0,0 +1,85 @@ + + + + + + + + +SVG 1.2 Tiny test:paint-grad-201-t + + + + + + + + + + +
+ + + + + + + + + + + + +
+

paint-grad-201-t

+
+ + + raster image of paint-grad-201-t +
+
+ + +
+

Test Stop Opacity Attribute

+

+ A linearGradient is defined with a stop-opacity of 0 that is also animated from 0 to 1 (clear to solid). + The yellow star must initially be visible through the gradient. After 5 seconds most of the start must + be covered by the linearGradient. +

+ +
+ + + diff --git a/test/W3C_SVG_12_TinyTestSuite_beta/htmlEmbedHarness/paint-grad-202-t.html b/test/W3C_SVG_12_TinyTestSuite_beta/htmlEmbedHarness/paint-grad-202-t.html new file mode 100755 index 00000000..01d97ef0 --- /dev/null +++ b/test/W3C_SVG_12_TinyTestSuite_beta/htmlEmbedHarness/paint-grad-202-t.html @@ -0,0 +1,86 @@ + + + + + + + + +SVG 1.2 Tiny test:paint-grad-202-t + + + + + + + + + + +
+ + + + + + + + + + + + +
+

paint-grad-202-t

+
+ + + raster image of paint-grad-202-t +
+
+ + +
+

Stop Opacity Attribute with Text

+

+ There are three lines of text. For this test to pass each line of text must have the same gradient + from green to blue all set to a 'stop-opacity' of 0.4 . The reference rect at the bottom has a + similar gradient but with 'stop-opacity set to 1. The text of the poem should be lighter than + the reference line. +

+ +
+ + + diff --git a/test/W3C_SVG_12_TinyTestSuite_beta/htmlEmbedHarness/paint-grad-203-t.html b/test/W3C_SVG_12_TinyTestSuite_beta/htmlEmbedHarness/paint-grad-203-t.html new file mode 100755 index 00000000..af04febd --- /dev/null +++ b/test/W3C_SVG_12_TinyTestSuite_beta/htmlEmbedHarness/paint-grad-203-t.html @@ -0,0 +1,84 @@ + + + + + + + + +SVG 1.2 Tiny test:paint-grad-203-t + + + + + + + + + + +
+ + + + + + + + + + + + +
+

paint-grad-203-t

+
+ + + raster image of paint-grad-203-t +
+
+ + +
+

+ Test on gradients with gradientUnits set. There are two rects, one using a gradient with gradientUnits set to "objectBoundingBox" and one with "userSpaceOnUse". Both rects contain a smaller rect to visualise the use of gradientUnits. + In the top rect, the small one should appear as a smaller version of the big rect. + In the bottom rect, the small one should just as a "frame" on the big rect. +

+ +
+ + + diff --git a/test/W3C_SVG_12_TinyTestSuite_beta/htmlEmbedHarness/paint-grad-204-t.html b/test/W3C_SVG_12_TinyTestSuite_beta/htmlEmbedHarness/paint-grad-204-t.html new file mode 100755 index 00000000..3a0753a7 --- /dev/null +++ b/test/W3C_SVG_12_TinyTestSuite_beta/htmlEmbedHarness/paint-grad-204-t.html @@ -0,0 +1,87 @@ + + + + + + + + +SVG 1.2 Tiny test:paint-grad-204-t + + + + + + + + + + +
+ + + + + + + + + + + + +
+

paint-grad-204-t

+
+ + + raster image of paint-grad-204-t +
+
+ + +
+

+ Gradient with only one stop-color. This test is passed if the fill of + the rect on the right is identical to the fill of the rect on the left. +

+

+ For gradients with only a single stop-color the painting shall occur + with the solid color fill using the color defined for the gradient stop. +

+ +
+ + + diff --git a/test/W3C_SVG_12_TinyTestSuite_beta/htmlEmbedHarness/paint-grad-205-t.html b/test/W3C_SVG_12_TinyTestSuite_beta/htmlEmbedHarness/paint-grad-205-t.html new file mode 100755 index 00000000..44d6b63f --- /dev/null +++ b/test/W3C_SVG_12_TinyTestSuite_beta/htmlEmbedHarness/paint-grad-205-t.html @@ -0,0 +1,83 @@ + + + + + + + + +SVG 1.2 Tiny test:paint-grad-205-t + + + + + + + + + + +
+ + + + + + + + + + + + +
+

paint-grad-205-t

+
+ + + raster image of paint-grad-205-t +
+
+ + +
+

+ Gradient with no stop-elements. The painting shall occur as if 'none' were specified + as the paint style, thus allowing the pale blue rectangle to be seen inside the square. +

+ +
+ + + diff --git a/test/W3C_SVG_12_TinyTestSuite_beta/htmlEmbedHarness/paint-nsstroke-201-t.html b/test/W3C_SVG_12_TinyTestSuite_beta/htmlEmbedHarness/paint-nsstroke-201-t.html new file mode 100755 index 00000000..5f2d5fc1 --- /dev/null +++ b/test/W3C_SVG_12_TinyTestSuite_beta/htmlEmbedHarness/paint-nsstroke-201-t.html @@ -0,0 +1,87 @@ + + + + + + + + +SVG 1.2 Tiny test:paint-nsstroke-201-t + + + + + + + + + + +
+ + + + + + + + + + + + +
+

paint-nsstroke-201-t

+
+ + + raster image of paint-nsstroke-201-t +
+
+ + +
+

Non-scaling Stroke

+

Testing non-scaling-stroke on basic shapes and text.

+

The bottom shapes - triangle and oval - also have a gradient applied to the outline stroke.

+

+ At the start the two sets of shapes may not appear identical - depending on viewport size. + As the geometric shapes are zoomed out the outline strokes of the left-hand set of shapes + should remain fixed while the strokes of the right-hand set should scale in proportion to the shapes. +

+ +
+ + + diff --git a/test/W3C_SVG_12_TinyTestSuite_beta/htmlEmbedHarness/paint-nsstroke-203-t.html b/test/W3C_SVG_12_TinyTestSuite_beta/htmlEmbedHarness/paint-nsstroke-203-t.html new file mode 100755 index 00000000..7e7065dc --- /dev/null +++ b/test/W3C_SVG_12_TinyTestSuite_beta/htmlEmbedHarness/paint-nsstroke-203-t.html @@ -0,0 +1,82 @@ + + + + + + + + +SVG 1.2 Tiny test:paint-nsstroke-203-t + + + + + + + + + + +
+ + + + + + + + + + + + +
+

paint-nsstroke-203-t

+
+ + + raster image of paint-nsstroke-203-t +
+
+ + +
+

Non-scaling Stroke

+

Testing "non-scaling-stroke" on basic shapes with "animate" and "animateTranform".

+

The animation should run indefinitely.

+ +
+ + + diff --git a/test/W3C_SVG_12_TinyTestSuite_beta/htmlEmbedHarness/paint-other-201-t.html b/test/W3C_SVG_12_TinyTestSuite_beta/htmlEmbedHarness/paint-other-201-t.html new file mode 100755 index 00000000..08ece328 --- /dev/null +++ b/test/W3C_SVG_12_TinyTestSuite_beta/htmlEmbedHarness/paint-other-201-t.html @@ -0,0 +1,84 @@ + + + + + + + + +SVG 1.2 Tiny test:paint-other-201-t + + + + + + + + + + +
+ + + + + + + + + + + + +
+

paint-other-201-t

+
+ + + raster image of paint-other-201-t +
+
+ + +
+

Test solidColor paint server with 'solid-opacity' attribute.

+

+ There are three 'solidColor' definitions - red, green, blue. + These are used for both the fill and outlines of the rectangle and circle. +

+ +
+ + + diff --git a/test/W3C_SVG_12_TinyTestSuite_beta/htmlEmbedHarness/paint-other-203-t.html b/test/W3C_SVG_12_TinyTestSuite_beta/htmlEmbedHarness/paint-other-203-t.html new file mode 100755 index 00000000..6713c0ea --- /dev/null +++ b/test/W3C_SVG_12_TinyTestSuite_beta/htmlEmbedHarness/paint-other-203-t.html @@ -0,0 +1,96 @@ + + + + + + + + +SVG 1.2 Tiny test:paint-other-203-t + + + + + + + + + + +
+ + + + + + + + + + + + +
+

paint-other-203-t

+
+ + + raster image of paint-other-203-t +
+
+ + +
+

+ Test solidColor animation. Animates solid-color and solid-opacity on two rects. +

+

+ The test is passed if the following objects are displayed: + Rect 1 + - Fill: blue animated to red, opacity 0 animated to 1 + - Stroke: none + + Rect 2 (roated -30 degrees) + - Fill: none + - Stroke: red animated to yellow, opacity 1 animated to 0 +

+

+ One rect animates its fill from blue to red over 3 seconds and has its solid-opacity animated from 0 to 1 over 5 seconds. + The other rect (no fill and rotated -30) has its stroke animated from red to yellow over 3s and solid-opacity from 1 to 0 over 5 seconds. +

+ +
+ + + diff --git a/test/W3C_SVG_12_TinyTestSuite_beta/htmlEmbedHarness/paint-stroke-01-t.html b/test/W3C_SVG_12_TinyTestSuite_beta/htmlEmbedHarness/paint-stroke-01-t.html new file mode 100755 index 00000000..bf4f61cc --- /dev/null +++ b/test/W3C_SVG_12_TinyTestSuite_beta/htmlEmbedHarness/paint-stroke-01-t.html @@ -0,0 +1,88 @@ + + + + + + + + +SVG 1.2 Tiny test:paint-stroke-01-t + + + + + + + + + + +
+ + + + + + + + + + + + +
+

paint-stroke-01-t

+
+ + + raster image of paint-stroke-01-t +
+
+ + +
+

+ Verify the basic capability to handle the stroke properties ("stroke") in combination with the "rect" element. The + pair should be rendered as two blue rectangles, the upper one without a stroke and the lower with a red stroke. +

+

The rendered picture should match the reference image, except for possible variations in the labeling text (per CSS2 rules).

+

+ The test uses the "rect" element, as well as basic "fill" (solid primary colors), "stroke", stroke="red", + "font-family" (Arial) and "font-size" attributes. +

+ +
+ + + diff --git a/test/W3C_SVG_12_TinyTestSuite_beta/htmlEmbedHarness/paint-stroke-02-t.html b/test/W3C_SVG_12_TinyTestSuite_beta/htmlEmbedHarness/paint-stroke-02-t.html new file mode 100755 index 00000000..5b47b3a7 --- /dev/null +++ b/test/W3C_SVG_12_TinyTestSuite_beta/htmlEmbedHarness/paint-stroke-02-t.html @@ -0,0 +1,89 @@ + + + + + + + + +SVG 1.2 Tiny test:paint-stroke-02-t + + + + + + + + + + +
+ + + + + + + + + + + + +
+

paint-stroke-02-t

+
+ + + raster image of paint-stroke-02-t +
+
+ + +
+

+ Verify the basic capability to handle the stroke properties ("stroke", "stroke-width", "stroke-linejoin") in + combination with the "rect" element. The pair should be rendered as two red rectangles without an interior fill. + The upper rectangle should have a stroke width of 5 with sharp corners. The lower rectangle should have a stroke + width of 5 with round corners. +

+

+ The test uses the "rect" element, as well as basic "fill" (solid primary colors), "stroke", stroke="red" + stroke-width="10" stroke-linejoin="round", "font-family" (Arial) and "font-size" properties. +

+ +
+ + + diff --git a/test/W3C_SVG_12_TinyTestSuite_beta/htmlEmbedHarness/paint-stroke-03-t.html b/test/W3C_SVG_12_TinyTestSuite_beta/htmlEmbedHarness/paint-stroke-03-t.html new file mode 100755 index 00000000..6a199fc0 --- /dev/null +++ b/test/W3C_SVG_12_TinyTestSuite_beta/htmlEmbedHarness/paint-stroke-03-t.html @@ -0,0 +1,88 @@ + + + + + + + + +SVG 1.2 Tiny test:paint-stroke-03-t + + + + + + + + + + +
+ + + + + + + + + + + + +
+

paint-stroke-03-t

+
+ + + raster image of paint-stroke-03-t +
+
+ + +
+

+ Verify the basic capability to handle the stroke properties ("stroke", "stroke-width" "stroke-linejoin", "stroke-linecap", + "stroke-miter") in combination with straight-line path commands. The pair should be rendered as as two red line segments. + The upper segment should have round end caps. The lower segment should be chopped off where the two line segments meet. +

+

+ The test uses the "path" element, as well as basic "fill" (solid primary colors), "stroke", "stroke-width", + "stroke-linejoin", "stroke-linecap", "stroke-miter", "font-family" (Arial) and "font-size" properties. +

+ +
+ + + diff --git a/test/W3C_SVG_12_TinyTestSuite_beta/htmlEmbedHarness/paint-stroke-04-t.html b/test/W3C_SVG_12_TinyTestSuite_beta/htmlEmbedHarness/paint-stroke-04-t.html new file mode 100755 index 00000000..58d3f64a --- /dev/null +++ b/test/W3C_SVG_12_TinyTestSuite_beta/htmlEmbedHarness/paint-stroke-04-t.html @@ -0,0 +1,89 @@ + + + + + + + + +SVG 1.2 Tiny test:paint-stroke-04-t + + + + + + + + + + +
+ + + + + + + + + + + + +
+

paint-stroke-04-t

+
+ + + raster image of paint-stroke-04-t +
+
+ + +
+

+ Verify the "stroke-dasharray" and "stroke-dashoffset" properties. Two lines are drawn, one red and one black. + Both have a "stroke-dasharray" of "10,10" giving a dashed appearance where the size of the gaps and the size of + the dash is equal. The help show this, the black line has a "stroke-dashoffset" so that the dashes in the black + line match up with the gaps in the red line. +

+

+ The test uses the "path" element, "stroke", "stroke-width", "stroke-dasharray" and "stroke-dashoffset", "font-family" + (Arial) and "font-size" properties. +

+ +
+ + + diff --git a/test/W3C_SVG_12_TinyTestSuite_beta/htmlEmbedHarness/paint-stroke-05-t.html b/test/W3C_SVG_12_TinyTestSuite_beta/htmlEmbedHarness/paint-stroke-05-t.html new file mode 100755 index 00000000..75c93535 --- /dev/null +++ b/test/W3C_SVG_12_TinyTestSuite_beta/htmlEmbedHarness/paint-stroke-05-t.html @@ -0,0 +1,89 @@ + + + + + + + + +SVG 1.2 Tiny test:paint-stroke-05-t + + + + + + + + + + +
+ + + + + + + + + + + + +
+

paint-stroke-05-t

+
+ + + raster image of paint-stroke-05-t +
+
+ + +
+

+ User agents may render graphical primitives with different levels of accurancy. + This test is aimed at determining how does a UA render thin strokes. +

+

+ The test file contains a number of vertical and horizontal lines. + The stroke width of the vertical lines are increasing from left to right. + The stroke width of the horizontal lines are increasing from top to bottom. + The user should be able to see a smooth stroke width increment for the vertical and horizontal lines. +

+ +
+ + + diff --git a/test/W3C_SVG_12_TinyTestSuite_beta/htmlEmbedHarness/paint-stroke-06-t.html b/test/W3C_SVG_12_TinyTestSuite_beta/htmlEmbedHarness/paint-stroke-06-t.html new file mode 100755 index 00000000..5931aab0 --- /dev/null +++ b/test/W3C_SVG_12_TinyTestSuite_beta/htmlEmbedHarness/paint-stroke-06-t.html @@ -0,0 +1,93 @@ + + + + + + + + +SVG 1.2 Tiny test:paint-stroke-06-t + + + + + + + + + + +
+ + + + + + + + + + + + +
+

paint-stroke-06-t

+
+ + + raster image of paint-stroke-06-t +
+
+ + +
+

+ Test default effects of stroke-dasharray. +

+

+ This specifically tests the values of none and 0. + This also tests an odd number of values in a dash-array attribute + and in combination with an offset. +

+

+ The top two lines must be solid black. The next line shows a thick + black line with a thinner red line on top; both must have the same + dash pattern. The bottom two lines, one black and one blue, must render + so that the gaps of one correspond to the dashes of the other. +

+ +
+ + + diff --git a/test/W3C_SVG_12_TinyTestSuite_beta/htmlEmbedHarness/paint-stroke-07-t.html b/test/W3C_SVG_12_TinyTestSuite_beta/htmlEmbedHarness/paint-stroke-07-t.html new file mode 100755 index 00000000..656afb27 --- /dev/null +++ b/test/W3C_SVG_12_TinyTestSuite_beta/htmlEmbedHarness/paint-stroke-07-t.html @@ -0,0 +1,84 @@ + + + + + + + + +SVG 1.2 Tiny test:paint-stroke-07-t + + + + + + + + + + +
+ + + + + + + + + + + + +
+

paint-stroke-07-t

+
+ + + raster image of paint-stroke-07-t +
+
+ + +
+

+ Test effect of different stroke-miterlimits. For this particular combination of stroke width and angle, + the cut off value of stroke-miterlimit is 18.028. Thus, the first and second subtests should not truncate + the stroke, and all the rest must truncate it. +

+ +
+ + + diff --git a/test/W3C_SVG_12_TinyTestSuite_beta/htmlEmbedHarness/paint-stroke-08-t.html b/test/W3C_SVG_12_TinyTestSuite_beta/htmlEmbedHarness/paint-stroke-08-t.html new file mode 100755 index 00000000..a10c9bdb --- /dev/null +++ b/test/W3C_SVG_12_TinyTestSuite_beta/htmlEmbedHarness/paint-stroke-08-t.html @@ -0,0 +1,89 @@ + + + + + + + + +SVG 1.2 Tiny test:paint-stroke-08-t + + + + + + + + + + +
+ + + + + + + + + + + + +
+

paint-stroke-08-t

+
+ + + raster image of paint-stroke-08-t +
+
+ + +
+

+ Test effects of stroke-opacity range. Values + outside the range 0-1.0 must be clamped. +

+

+ There must be no blue bars visible beside the three pink dots. + Four semitransparent blue bars, increasingly more opaque, + must line up with the yellow dots. Three fully opaque + blue bars must line up with the green dots. +

+ +
+ + + diff --git a/test/W3C_SVG_12_TinyTestSuite_beta/htmlEmbedHarness/paint-stroke-201-t.html b/test/W3C_SVG_12_TinyTestSuite_beta/htmlEmbedHarness/paint-stroke-201-t.html new file mode 100755 index 00000000..7932643a --- /dev/null +++ b/test/W3C_SVG_12_TinyTestSuite_beta/htmlEmbedHarness/paint-stroke-201-t.html @@ -0,0 +1,98 @@ + + + + + + + + +SVG 1.2 Tiny test:paint-stroke-201-t + + + + + + + + + + +
+ + + + + + + + + + + + +
+

paint-stroke-201-t

+
+ + + raster image of paint-stroke-201-t +
+
+ + +
+

+ Stroking for circle, large stroke-width, small r. +

+

+ The main indication for a failed test is the appearence of something red. + A second indication is a thin white line inside a blue area. +

+

+ For smaller circles the radius gets smaller than the half stroke-width, therefore the fill is not + visible anymore for them. Only the animated circle at the beginning and the next circle + on its right have a visible fill. +

+

+ To test the correct rendering, the blue circles cover always red filled circles without a stroke. + Additionally the size of the circles is given with a thin white stroke on top. If something + red gets visible or blue parts of the stroke of the circle are outside of the related white + stroked circle, an error is occured. If the circles are not displayed as circles with an accuracy of + one device pixel, an error is occured too. +

+ +
+ + + diff --git a/test/W3C_SVG_12_TinyTestSuite_beta/htmlEmbedHarness/paint-stroke-202-t.html b/test/W3C_SVG_12_TinyTestSuite_beta/htmlEmbedHarness/paint-stroke-202-t.html new file mode 100755 index 00000000..6a4eb084 --- /dev/null +++ b/test/W3C_SVG_12_TinyTestSuite_beta/htmlEmbedHarness/paint-stroke-202-t.html @@ -0,0 +1,99 @@ + + + + + + + + +SVG 1.2 Tiny test:paint-stroke-202-t + + + + + + + + + + +
+ + + + + + + + + + + + +
+

paint-stroke-202-t

+
+ + + raster image of paint-stroke-202-t +
+
+ + +
+

+ Direction of stroke-dasharray and stroke-dashoffset for basic shapes. +

+

+ The main indication for a failed test is the appearence of a blue path on + a white background area. It is passed, if all blue paths are on a gray background area. +

+

+ stroke-dasharray and stroke-dashoffset are tested on basic shapes circle, ellipse, rectangle, + rectangle with rounded corners, line, polyline and polygon. The test is sensitive to the + direction of stroke-dasharray and stroke-dashoffset and on the starting point on the basic + shape. +

+

+ The dashes are positioned correctly, if they are only on a gray background area. + If there are dashes on a white background, this is an indication for an error. + Additional information given in the elements title and desc for the related subtest + may help to identify the tested shape and property combination and the error, + if there is one. +

+ +
+ + + diff --git a/test/W3C_SVG_12_TinyTestSuite_beta/htmlEmbedHarness/paint-stroke-204-t.html b/test/W3C_SVG_12_TinyTestSuite_beta/htmlEmbedHarness/paint-stroke-204-t.html new file mode 100755 index 00000000..f4a86438 --- /dev/null +++ b/test/W3C_SVG_12_TinyTestSuite_beta/htmlEmbedHarness/paint-stroke-204-t.html @@ -0,0 +1,97 @@ + + + + + + + + +SVG 1.2 Tiny test:paint-stroke-204-t + + + + + + + + + + +
+ + + + + + + + + + + + +
+

paint-stroke-204-t

+
+ + + raster image of paint-stroke-204-t +
+
+ + +
+

+ Precision tests for stroke-linejoin. +

+

+ The main indication for a failed test is the appearence of something red. +

+

+ stroke-linejoin is tested, using a comparsion with filled or stroked paths or shapes with the same appearance. + This is tested for different three miter angles for the values round, miter and bevel, for each of them one with + test path on top of the comparsion shapes and one with the path below. +

+ The four paths top right test the inheritance either for the value explicitely set to 'inherit' or a missing stroke-linejoin property. +

+

+

+ The top is always blue. If something + red gets visible, an error is occured. +

+ +
+ + + diff --git a/test/W3C_SVG_12_TinyTestSuite_beta/htmlEmbedHarness/paint-stroke-205-t.html b/test/W3C_SVG_12_TinyTestSuite_beta/htmlEmbedHarness/paint-stroke-205-t.html new file mode 100755 index 00000000..45b74b14 --- /dev/null +++ b/test/W3C_SVG_12_TinyTestSuite_beta/htmlEmbedHarness/paint-stroke-205-t.html @@ -0,0 +1,113 @@ + + + + + + + + +SVG 1.2 Tiny test:paint-stroke-205-t + + + + + + + + + + +
+ + + + + + + + + + + + +
+

paint-stroke-205-t

+
+ + + raster image of paint-stroke-205-t +
+
+ + +
+

+ Stroking for subpaths with path length zero, depending on stroke-linecap. +

+

+ The main indication for a failed test is the appearence of something red + (this simple indication may fail itself, if the viewer does not support stroke-linecap). +

+

+ Several paths containing a subpath with length zero are + stroked and some of them animated. +

+

+ The zero length subpath is placed between two + other subpaths of finite length or before or after a + subpath of finite length or in one case the path consists of two + subpaths of length zero. + The behaviour is checked for stroke-linecap round, + square (subpath visible) and bevel (subpath not visible) + on the left. +

+

+ On the right the behaviour is tested with simple + animations to check the correct alignment + or shrinking to zero length. + stroke-linecap is animated between round or square too + for some of them. +

+

+ The behaviour is compared with similar paths with a + subpath of a very small length. Because the red stroked + paths have a slightly smaller stroke, they are always covered + by blue paths. + If something red gets visible, an error is occured. +

+ +
+ + + diff --git a/test/W3C_SVG_12_TinyTestSuite_beta/htmlEmbedHarness/paint-stroke-207-t.html b/test/W3C_SVG_12_TinyTestSuite_beta/htmlEmbedHarness/paint-stroke-207-t.html new file mode 100755 index 00000000..b2a55611 --- /dev/null +++ b/test/W3C_SVG_12_TinyTestSuite_beta/htmlEmbedHarness/paint-stroke-207-t.html @@ -0,0 +1,102 @@ + + + + + + + + +SVG 1.2 Tiny test:paint-stroke-207-t + + + + + + + + + + +
+ + + + + + + + + + + + +
+

paint-stroke-207-t

+
+ + + raster image of paint-stroke-207-t +
+
+ + +
+

+ Centering of stroke on the outline of rectangles. +

+

+ The main indication for a failed test is the appearence of something red. +

+

+ The width and position of the stroke centered on the outline of a rectangle is tested with four stroked rectangles, + one is the thin black stroked test frame rectangle, the second one a large blue rectangle, the third a rectangle + with rounded corners, looking like a circle and the fourth a small square. +

+

+ The correct position is tested by a comparsion with several filled rectangles in the background or in the fourth case + covering the test square completely. The parts of the background covered with the blue test rectangles are filled red, + respectively the test square is stroked red too. + Therefore if something red gets visible, the position of the stroke of + the related test rectangle is wrong. +

+

+ According to the conformance criteria all visual rendering should be accurate to within one px unit to the mathematically + correct result. Therefore possible residuals from the red background parts have to be in this + range of accuracy to pass the test. +

+ +
+ + + diff --git a/test/W3C_SVG_12_TinyTestSuite_beta/htmlEmbedHarness/paint-vfill-201-t.html b/test/W3C_SVG_12_TinyTestSuite_beta/htmlEmbedHarness/paint-vfill-201-t.html new file mode 100755 index 00000000..56e43c39 --- /dev/null +++ b/test/W3C_SVG_12_TinyTestSuite_beta/htmlEmbedHarness/paint-vfill-201-t.html @@ -0,0 +1,85 @@ + + + + + + + + +SVG 1.2 Tiny test:paint-vfill-201-t + + + + + + + + + + +
+ + + + + + + + + + + + +
+

paint-vfill-201-t

+
+ + + raster image of paint-vfill-201-t +
+
+ + +
+

Viewport Fill Attribute

+

+ The root SVG element of this test slide has a 'viewport-fill' attribute set to 'silver'. + At the start the entire background should be a light grey.This should then change to aqua. + There are two reference squares in the center - silver and aqua. +

+ +
+ + + diff --git a/test/W3C_SVG_12_TinyTestSuite_beta/htmlEmbedHarness/paint-vfill-202-t.html b/test/W3C_SVG_12_TinyTestSuite_beta/htmlEmbedHarness/paint-vfill-202-t.html new file mode 100755 index 00000000..355037c2 --- /dev/null +++ b/test/W3C_SVG_12_TinyTestSuite_beta/htmlEmbedHarness/paint-vfill-202-t.html @@ -0,0 +1,83 @@ + + + + + + + + +SVG 1.2 Tiny test:paint-vfill-202-t + + + + + + + + + + +
+ + + + + + + + + + + + +
+

paint-vfill-202-t

+
+ + + raster image of paint-vfill-202-t +
+
+ + +
+

+ Tests viewport-fill and viewport-fill-opacity. + The image should show the correct viewport-fill (green). +

+ +
+ + + diff --git a/test/W3C_SVG_12_TinyTestSuite_beta/htmlEmbedHarness/paint-vfill-203-t.html b/test/W3C_SVG_12_TinyTestSuite_beta/htmlEmbedHarness/paint-vfill-203-t.html new file mode 100755 index 00000000..9a861134 --- /dev/null +++ b/test/W3C_SVG_12_TinyTestSuite_beta/htmlEmbedHarness/paint-vfill-203-t.html @@ -0,0 +1,83 @@ + + + + + + + + +SVG 1.2 Tiny test:paint-vfill-203-t + + + + + + + + + + +
+ + + + + + + + + + + + +
+

paint-vfill-203-t

+
+ + + raster image of paint-vfill-203-t +
+
+ + +
+

+ Test on viewport-fill and viewport-fill-opacity. + Animates viewport-fill from yellow to blue over one second, and animates viewport-fill-opacity from 1.0 to 0.5. +

+ +
+ + + diff --git a/test/W3C_SVG_12_TinyTestSuite_beta/htmlEmbedHarness/paint-vfill-204-t.html b/test/W3C_SVG_12_TinyTestSuite_beta/htmlEmbedHarness/paint-vfill-204-t.html new file mode 100755 index 00000000..7198cf4b --- /dev/null +++ b/test/W3C_SVG_12_TinyTestSuite_beta/htmlEmbedHarness/paint-vfill-204-t.html @@ -0,0 +1,84 @@ + + + + + + + + +SVG 1.2 Tiny test:paint-vfill-204-t + + + + + + + + + + +
+ + + + + + + + + + + + +
+

paint-vfill-204-t

+
+ + + raster image of paint-vfill-204-t +
+
+ + +
+

+ Test on viewport-fill and viewport-fill-opacity. viewport-fill-opacity is set to 0.0 so the set viewport-fill + color should not be visible. The image has its viewport-fill set to "inherit" and viewport-fill-opacity to 1.0 + so the image should show with a yellow viewport-fill and full opacity. +

+ +
+ + + diff --git a/test/W3C_SVG_12_TinyTestSuite_beta/htmlEmbedHarness/paint-vfill-205-t.html b/test/W3C_SVG_12_TinyTestSuite_beta/htmlEmbedHarness/paint-vfill-205-t.html new file mode 100755 index 00000000..05ae3fc0 --- /dev/null +++ b/test/W3C_SVG_12_TinyTestSuite_beta/htmlEmbedHarness/paint-vfill-205-t.html @@ -0,0 +1,83 @@ + + + + + + + + +SVG 1.2 Tiny test:paint-vfill-205-t + + + + + + + + + + +
+ + + + + + + + + + + + +
+

paint-vfill-205-t

+
+ + + raster image of paint-vfill-205-t +
+
+ + +
+

+ Tests viewport-fill and viewport-fill-opacity. + Output should match reference image. +

+ +
+ + + diff --git a/test/W3C_SVG_12_TinyTestSuite_beta/htmlEmbedHarness/paint-vfill-206-t.html b/test/W3C_SVG_12_TinyTestSuite_beta/htmlEmbedHarness/paint-vfill-206-t.html new file mode 100755 index 00000000..bc5858e2 --- /dev/null +++ b/test/W3C_SVG_12_TinyTestSuite_beta/htmlEmbedHarness/paint-vfill-206-t.html @@ -0,0 +1,86 @@ + + + + + + + + +SVG 1.2 Tiny test:paint-vfill-206-t + + + + + + + + + + +
+ + + + + + + + + + + + +
+

paint-vfill-206-t

+
+ + + raster image of paint-vfill-206-t +
+
+ + +
+

Viewport Fill Opacity Attribute

+

+ The root SVG element of this test slide has a 'viewport-fill' attribute set to 'yellow' + with a 'viewport-fill-opacity' of 1. At the start the entire background should be solid yellow. + This should then change to a pale bluish gray. There are two reference squares in the center - solid yellow - to + match the background at the start and a pale yellow that should match the backgound after a few seconds. +

+ +
+ + + diff --git a/test/W3C_SVG_12_TinyTestSuite_beta/htmlEmbedHarness/paths-data-01-t.html b/test/W3C_SVG_12_TinyTestSuite_beta/htmlEmbedHarness/paths-data-01-t.html new file mode 100755 index 00000000..6a67567b --- /dev/null +++ b/test/W3C_SVG_12_TinyTestSuite_beta/htmlEmbedHarness/paths-data-01-t.html @@ -0,0 +1,82 @@ + + + + + + + + +SVG 1.2 Tiny test:paths-data-01-t + + + + + + + + + + +
+ + + + + + + + + + + + +
+

paths-data-01-t

+
+ + + raster image of paths-data-01-t +
+
+ + +
+

Test that the viewer has the basic capability to handle the 'path' element and its data (d) attribute in combination with the cubic Bezier curveto commands, C, c, S, s (plus Mm and Zz).

+

There are 8 subtests, each composed from the cubic Bezier path commands per the label by the subtest. On-curve control points (i.e., the curve position) are marked by small blue squares. Subtests are filled, or stroked, or both, using simple style properties and colors.

+

The rendered picture should match the reference image exactly, except for possible variations in the labelling text (per CSS2 rules).

+ +
+ + + diff --git a/test/W3C_SVG_12_TinyTestSuite_beta/htmlEmbedHarness/paths-data-02-t.html b/test/W3C_SVG_12_TinyTestSuite_beta/htmlEmbedHarness/paths-data-02-t.html new file mode 100755 index 00000000..2cab1366 --- /dev/null +++ b/test/W3C_SVG_12_TinyTestSuite_beta/htmlEmbedHarness/paths-data-02-t.html @@ -0,0 +1,82 @@ + + + + + + + + +SVG 1.2 Tiny test:paths-data-02-t + + + + + + + + + + +
+ + + + + + + + + + + + +
+

paths-data-02-t

+
+ + + raster image of paths-data-02-t +
+
+ + +
+

Test that the viewer has the basic capability to handle the 'path' element and its data (d) attribute in combination with the quadratic Bezier curveto commands, Q, q, T, t (plus Mm and Zz).

+

There are 7 subtests, each composed from the quadric Bezier path commands per the label by the subtest. On-curve control points (i.e., the curve position) are marked by small colored squares. Subtests are filled, or stroked, or both, using simple style properties and colors.

+

The rendered picture should match the reference image exactly, except for possible variations in the labelling text (per CSS2 rules).

+ +
+ + + diff --git a/test/W3C_SVG_12_TinyTestSuite_beta/htmlEmbedHarness/paths-data-04-t.html b/test/W3C_SVG_12_TinyTestSuite_beta/htmlEmbedHarness/paths-data-04-t.html new file mode 100755 index 00000000..942cc91d --- /dev/null +++ b/test/W3C_SVG_12_TinyTestSuite_beta/htmlEmbedHarness/paths-data-04-t.html @@ -0,0 +1,81 @@ + + + + + + + + +SVG 1.2 Tiny test:paths-data-04-t + + + + + + + + + + +
+ + + + + + + + + + + + +
+

paths-data-04-t

+
+ + + raster image of paths-data-04-t +
+
+ + +
+

Verify the basic capability to handle the 'path' element, and its data attribute (d) in combination with the straight-line path commands. Two pairs of concentric equilateral triangles are drawn using respectively M,L,Z and m,l,z. The shapes are identical, with one stroked and one filled. The fill-mode default of "even-odd" means that the inner triangle is hollow.

+

The rendered picture should match the reference image exactly, except for possible variations in the labelling text (per CSS2 rules).

+ +
+ + + diff --git a/test/W3C_SVG_12_TinyTestSuite_beta/htmlEmbedHarness/paths-data-05-t.html b/test/W3C_SVG_12_TinyTestSuite_beta/htmlEmbedHarness/paths-data-05-t.html new file mode 100755 index 00000000..f4ddb0ea --- /dev/null +++ b/test/W3C_SVG_12_TinyTestSuite_beta/htmlEmbedHarness/paths-data-05-t.html @@ -0,0 +1,81 @@ + + + + + + + + +SVG 1.2 Tiny test:paths-data-05-t + + + + + + + + + + +
+ + + + + + + + + + + + +
+

paths-data-05-t

+
+ + + raster image of paths-data-05-t +
+
+ + +
+

Verify the basic capability to handle the 'path' element, and its data attribute (d) in combination with the straight-line path commands. Two pairs of concentric equilateral triangles are drawn using respectively M,L,Z and m,l,z. The shapes in each pair are identical, with one stroked and one filled. The fill-mode default of "even-odd" means that the inner triangle is hollow.

+

The rendered picture should match the reference image exactly, except for possible variations in the labelling text (per CSS2 rules).

+ +
+ + + diff --git a/test/W3C_SVG_12_TinyTestSuite_beta/htmlEmbedHarness/paths-data-06-t.html b/test/W3C_SVG_12_TinyTestSuite_beta/htmlEmbedHarness/paths-data-06-t.html new file mode 100755 index 00000000..a9adabc7 --- /dev/null +++ b/test/W3C_SVG_12_TinyTestSuite_beta/htmlEmbedHarness/paths-data-06-t.html @@ -0,0 +1,81 @@ + + + + + + + + +SVG 1.2 Tiny test:paths-data-06-t + + + + + + + + + + +
+ + + + + + + + + + + + +
+

paths-data-06-t

+
+ + + raster image of paths-data-06-t +
+
+ + +
+

Verify the basic capability to handle the 'path' element, and its data attribute (d) in combination with the straight-line path commands. Two pairs of staircase figures are drawn using respectively M,H,V,Z and m,h,v,z. The shapes in each pair are identical, with one stroked and one filled.

+

The rendered picture should match the reference image exactly, except for possible variations in the labelling text (per CSS2 rules).

+ +
+ + + diff --git a/test/W3C_SVG_12_TinyTestSuite_beta/htmlEmbedHarness/paths-data-07-t.html b/test/W3C_SVG_12_TinyTestSuite_beta/htmlEmbedHarness/paths-data-07-t.html new file mode 100755 index 00000000..f33c0a57 --- /dev/null +++ b/test/W3C_SVG_12_TinyTestSuite_beta/htmlEmbedHarness/paths-data-07-t.html @@ -0,0 +1,81 @@ + + + + + + + + +SVG 1.2 Tiny test:paths-data-07-t + + + + + + + + + + +
+ + + + + + + + + + + + +
+

paths-data-07-t

+
+ + + raster image of paths-data-07-t +
+
+ + +
+

Verify the basic capability to handle the 'path' element, and its data attribute (d) in combination with the straight-line path commands. Two pairs of staircase figures are drawn using respectively M,H,V,Z and m,h,v,z. The shapes in each pair are identical, with one stroked and one filled.

+

The rendered picture should match the reference image exactly, except for possible variations in the labelling text (per CSS2 rules).

+ +
+ + + diff --git a/test/W3C_SVG_12_TinyTestSuite_beta/htmlEmbedHarness/paths-data-08-t.html b/test/W3C_SVG_12_TinyTestSuite_beta/htmlEmbedHarness/paths-data-08-t.html new file mode 100755 index 00000000..306c6d40 --- /dev/null +++ b/test/W3C_SVG_12_TinyTestSuite_beta/htmlEmbedHarness/paths-data-08-t.html @@ -0,0 +1,81 @@ + + + + + + + + +SVG 1.2 Tiny test:paths-data-08-t + + + + + + + + + + +
+ + + + + + + + + + + + +
+

paths-data-08-t

+
+ + + raster image of paths-data-08-t +
+
+ + +
+

Verify the basic capability to handle the 'path' element, and its data attribute (d) in combination with the straight-line path commands. Two pairs of concentric equilateral triangles are drawn using M and Z. No L commands are used in this test as they are implied after an M or Z command. The shapes are identical, with one stroked and one filled. The fill-mode default of "even-odd" means that the inner triangle is hollow.

+

The rendered picture should match the reference image exactly, except for possible variations in the labelling text (per CSS2 rules).

+ +
+ + + diff --git a/test/W3C_SVG_12_TinyTestSuite_beta/htmlEmbedHarness/paths-data-09-t.html b/test/W3C_SVG_12_TinyTestSuite_beta/htmlEmbedHarness/paths-data-09-t.html new file mode 100755 index 00000000..94afe644 --- /dev/null +++ b/test/W3C_SVG_12_TinyTestSuite_beta/htmlEmbedHarness/paths-data-09-t.html @@ -0,0 +1,81 @@ + + + + + + + + +SVG 1.2 Tiny test:paths-data-09-t + + + + + + + + + + +
+ + + + + + + + + + + + +
+

paths-data-09-t

+
+ + + raster image of paths-data-09-t +
+
+ + +
+

Verify the basic capability to handle the 'path' element, and its data attribute (d) in combination with the straight-line path commands. Two pairs of concentric equilateral triangles are drawn using m and z. No l commands are used in this test as they are implied after an m or z command. The shapes are identical, with one stroked and one filled. The fill-mode default of "even-odd" means that the inner triangle is hollow.

+

The rendered picture should match the reference image exactly, except for possible variations in the labelling text (per CSS2 rules).

+ +
+ + + diff --git a/test/W3C_SVG_12_TinyTestSuite_beta/htmlEmbedHarness/paths-data-10-t.html b/test/W3C_SVG_12_TinyTestSuite_beta/htmlEmbedHarness/paths-data-10-t.html new file mode 100755 index 00000000..a2424099 --- /dev/null +++ b/test/W3C_SVG_12_TinyTestSuite_beta/htmlEmbedHarness/paths-data-10-t.html @@ -0,0 +1,81 @@ + + + + + + + + +SVG 1.2 Tiny test:paths-data-10-t + + + + + + + + + + +
+ + + + + + + + + + + + +
+

paths-data-10-t

+
+ + + raster image of paths-data-10-t +
+
+ + +
+

Verify that the viewer renders the line caps and line joins for open and closed paths properly. Verify that the open triangular paths are stroked differently at ends of the path than they are at their intermediate corners. In contrast, the corners of a closed path should all appear the same.

+

The rendered picture should match the reference image, except for possible variations in the labelling text (per CSS2 rules).

+ +
+ + + diff --git a/test/W3C_SVG_12_TinyTestSuite_beta/htmlEmbedHarness/paths-data-12-t.html b/test/W3C_SVG_12_TinyTestSuite_beta/htmlEmbedHarness/paths-data-12-t.html new file mode 100755 index 00000000..f15811b1 --- /dev/null +++ b/test/W3C_SVG_12_TinyTestSuite_beta/htmlEmbedHarness/paths-data-12-t.html @@ -0,0 +1,81 @@ + + + + + + + + +SVG 1.2 Tiny test:paths-data-12-t + + + + + + + + + + +
+ + + + + + + + + + + + +
+

paths-data-12-t

+
+ + + raster image of paths-data-12-t +
+
+ + +
+

Test using multiple coord sets to build a polybézier, and implicit values for initial S.

+

The rendered picture should match the reference image exactly, except for possible variations in the labelling text (per CSS2 rules).

+ +
+ + + diff --git a/test/W3C_SVG_12_TinyTestSuite_beta/htmlEmbedHarness/paths-data-13-t.html b/test/W3C_SVG_12_TinyTestSuite_beta/htmlEmbedHarness/paths-data-13-t.html new file mode 100755 index 00000000..4c487648 --- /dev/null +++ b/test/W3C_SVG_12_TinyTestSuite_beta/htmlEmbedHarness/paths-data-13-t.html @@ -0,0 +1,81 @@ + + + + + + + + +SVG 1.2 Tiny test:paths-data-13-t + + + + + + + + + + +
+ + + + + + + + + + + + +
+

paths-data-13-t

+
+ + + raster image of paths-data-13-t +
+
+ + +
+

Test multiple coordinates for V and H. There should be one horizontal red line and one vertical blue line.

+

The rendered picture should match the reference image exactly, except for possible variations in the labelling text (per CSS2 rules).

+ +
+ + + diff --git a/test/W3C_SVG_12_TinyTestSuite_beta/htmlEmbedHarness/paths-data-14-t.html b/test/W3C_SVG_12_TinyTestSuite_beta/htmlEmbedHarness/paths-data-14-t.html new file mode 100755 index 00000000..257f6423 --- /dev/null +++ b/test/W3C_SVG_12_TinyTestSuite_beta/htmlEmbedHarness/paths-data-14-t.html @@ -0,0 +1,81 @@ + + + + + + + + +SVG 1.2 Tiny test:paths-data-14-t + + + + + + + + + + +
+ + + + + + + + + + + + +
+

paths-data-14-t

+
+ + + raster image of paths-data-14-t +
+
+ + +
+

Test implicit values for moveto. If the first command is 'm' it should be taken as an absolute moveto, plus implicit lineto.

+

The rendered picture should match the reference image exactly, except for possible variations in the labelling text (per CSS2 rules).

+ +
+ + + diff --git a/test/W3C_SVG_12_TinyTestSuite_beta/htmlEmbedHarness/paths-data-15-t.html b/test/W3C_SVG_12_TinyTestSuite_beta/htmlEmbedHarness/paths-data-15-t.html new file mode 100755 index 00000000..e47ef9fa --- /dev/null +++ b/test/W3C_SVG_12_TinyTestSuite_beta/htmlEmbedHarness/paths-data-15-t.html @@ -0,0 +1,81 @@ + + + + + + + + +SVG 1.2 Tiny test:paths-data-15-t + + + + + + + + + + +
+ + + + + + + + + + + + +
+

paths-data-15-t

+
+ + + raster image of paths-data-15-t +
+
+ + +
+

Test using multiple coord sets to build a polybézier, then T with no preceding Q or T.

+

The rendered picture should match the reference image exactly, except for possible variations in the labeling text (per CSS2 rules).

+ +
+ + + diff --git a/test/W3C_SVG_12_TinyTestSuite_beta/htmlEmbedHarness/render-elems-01-t.html b/test/W3C_SVG_12_TinyTestSuite_beta/htmlEmbedHarness/render-elems-01-t.html new file mode 100755 index 00000000..202e14f6 --- /dev/null +++ b/test/W3C_SVG_12_TinyTestSuite_beta/htmlEmbedHarness/render-elems-01-t.html @@ -0,0 +1,83 @@ + + + + + + + + +SVG 1.2 Tiny test:render-elems-01-t + + + + + + + + + + +
+ + + + + + + + + + + + +
+

render-elems-01-t

+
+ + + raster image of render-elems-01-t +
+
+ + +
+

Verifies that shapes can be filled.

+

There is one pair of octagons. These are filled.

+

The rendered image should match the reference image except for the text which may show minor layout differences.

+

The test uses the 'path' element, as well as basic fill (solid primary colors), stroke (primary color 1-pixel and wide lines), font-family (Arial) and font-size properties - the common prerequisites.

+ +
+ + + diff --git a/test/W3C_SVG_12_TinyTestSuite_beta/htmlEmbedHarness/render-elems-02-t.html b/test/W3C_SVG_12_TinyTestSuite_beta/htmlEmbedHarness/render-elems-02-t.html new file mode 100755 index 00000000..e23d6cdb --- /dev/null +++ b/test/W3C_SVG_12_TinyTestSuite_beta/htmlEmbedHarness/render-elems-02-t.html @@ -0,0 +1,83 @@ + + + + + + + + +SVG 1.2 Tiny test:render-elems-02-t + + + + + + + + + + +
+ + + + + + + + + + + + +
+

render-elems-02-t

+
+ + + raster image of render-elems-02-t +
+
+ + +
+

Verifies that shapes can be stroked.

+

There is one pair of octagons. These are stroked.

+

The rendered image should match the reference image except for the text which may show minor layout differences.

+

The test uses the 'rect' element, as well as basic fill (solid primary colors), stroke (primary color 1-pixel and wide lines), font-family (Arial) and font-size properties - the common prerequisites.

+ +
+ + + diff --git a/test/W3C_SVG_12_TinyTestSuite_beta/htmlEmbedHarness/render-elems-03-t.html b/test/W3C_SVG_12_TinyTestSuite_beta/htmlEmbedHarness/render-elems-03-t.html new file mode 100755 index 00000000..236f1d2b --- /dev/null +++ b/test/W3C_SVG_12_TinyTestSuite_beta/htmlEmbedHarness/render-elems-03-t.html @@ -0,0 +1,83 @@ + + + + + + + + +SVG 1.2 Tiny test:render-elems-03-t + + + + + + + + + + +
+ + + + + + + + + + + + +
+

render-elems-03-t

+
+ + + raster image of render-elems-03-t +
+
+ + +
+

Verifies that shapes can be filled, stroked and the order of filling and stroking.

+

There is one pair of octagons. These are filled plus stroked.

+

The rendered image should match the reference image except for the text which may show minor layout differences.

+

The test uses the 'rect' element, as well as basic fill (solid primary colors), stroke (primary color 1-pixel and wide lines), font-family (Arial) and font-size properties - the common prerequisites.

+ +
+ + + diff --git a/test/W3C_SVG_12_TinyTestSuite_beta/htmlEmbedHarness/render-elems-06-t.html b/test/W3C_SVG_12_TinyTestSuite_beta/htmlEmbedHarness/render-elems-06-t.html new file mode 100755 index 00000000..d8259a41 --- /dev/null +++ b/test/W3C_SVG_12_TinyTestSuite_beta/htmlEmbedHarness/render-elems-06-t.html @@ -0,0 +1,81 @@ + + + + + + + + +SVG 1.2 Tiny test:render-elems-06-t + + + + + + + + + + +
+ + + + + + + + + + + + +
+

render-elems-06-t

+
+ + + raster image of render-elems-06-t +
+
+ + +
+

Verifies that text can be filled. The test shows two 'A' characters that are filled and not stroked.

+

The rendered image should match the reference image except for the text which may show minor layout differences.

+ +
+ + + diff --git a/test/W3C_SVG_12_TinyTestSuite_beta/htmlEmbedHarness/render-elems-07-t.html b/test/W3C_SVG_12_TinyTestSuite_beta/htmlEmbedHarness/render-elems-07-t.html new file mode 100755 index 00000000..00dc3a53 --- /dev/null +++ b/test/W3C_SVG_12_TinyTestSuite_beta/htmlEmbedHarness/render-elems-07-t.html @@ -0,0 +1,81 @@ + + + + + + + + +SVG 1.2 Tiny test:render-elems-07-t + + + + + + + + + + +
+ + + + + + + + + + + + +
+

render-elems-07-t

+
+ + + raster image of render-elems-07-t +
+
+ + +
+

Verifies that text can be stroked. The The test shows two characters that are stroked and not filled.

+

The rendered image should match the reference image except for the text which may show minor layout differences.

+ +
+ + + diff --git a/test/W3C_SVG_12_TinyTestSuite_beta/htmlEmbedHarness/render-elems-08-t.html b/test/W3C_SVG_12_TinyTestSuite_beta/htmlEmbedHarness/render-elems-08-t.html new file mode 100755 index 00000000..d9941b84 --- /dev/null +++ b/test/W3C_SVG_12_TinyTestSuite_beta/htmlEmbedHarness/render-elems-08-t.html @@ -0,0 +1,81 @@ + + + + + + + + +SVG 1.2 Tiny test:render-elems-08-t + + + + + + + + + + +
+ + + + + + + + + + + + +
+

render-elems-08-t

+
+ + + raster image of render-elems-08-t +
+
+ + +
+

Verifies that text can be stroked. The test shows two 'A' characters that are both stroked and filled.

+

The rendered image should match the reference image except for the text which may show minor layout differences.

+ +
+ + + diff --git a/test/W3C_SVG_12_TinyTestSuite_beta/htmlEmbedHarness/render-groups-01-t.html b/test/W3C_SVG_12_TinyTestSuite_beta/htmlEmbedHarness/render-groups-01-t.html new file mode 100755 index 00000000..8726da32 --- /dev/null +++ b/test/W3C_SVG_12_TinyTestSuite_beta/htmlEmbedHarness/render-groups-01-t.html @@ -0,0 +1,83 @@ + + + + + + + + +SVG 1.2 Tiny test:render-groups-01-t + + + + + + + + + + +
+ + + + + + + + + + + + +
+

render-groups-01-t

+
+ + + raster image of render-groups-01-t +
+
+ + +
+

Verifies implicit rendering order (paragraph 3.3) and grouping mechanism (paragraphs 3.4). It also validates basic Shape, Image and text rendering.

+

This test renders 3 elements: a text string "SVG", then a shape, then an image. Because of their definition order and coordinates, the image should be on top of the rectangle and the rectangle on top of the text. None of the "SVG" should show through the rectangle and none of the rectangle should show through the image.

+

Prerequisites: the test assumes proper handling of the fill stroke, stroke-width, font-size rendering properties. It uses the rect, line, text and image elements, as well as all the elements required for the test template. To ensure that the text string is overlapped by the other elements and to avoid a dependency on system fonts, an SVG font is used.

+

The rendered image should match the reference image exactly.

+ +
+ + + diff --git a/test/W3C_SVG_12_TinyTestSuite_beta/htmlEmbedHarness/render-groups-03-t.html b/test/W3C_SVG_12_TinyTestSuite_beta/htmlEmbedHarness/render-groups-03-t.html new file mode 100755 index 00000000..72033d24 --- /dev/null +++ b/test/W3C_SVG_12_TinyTestSuite_beta/htmlEmbedHarness/render-groups-03-t.html @@ -0,0 +1,83 @@ + + + + + + + + +SVG 1.2 Tiny test:render-groups-03-t + + + + + + + + + + +
+ + + + + + + + + + + + +
+

render-groups-03-t

+
+ + + raster image of render-groups-03-t +
+
+ + +
+

Verifies implicit rendering order (paragraph 3.3) and grouping mechanism (paragraphs 3.4). It also validates basic Shape, Image and text rendering.

+

This test renders 3 elements: a text string "SVG", then a shape, then an image. Because of their definition order and coordinates, the image should be on top of the rectangle and the rectangle on top of the text. None of the "SVG" should show through the rectangle and none of the rectangle should show through the image.

+

Prerequisites: the test assumes proper handling of the fill stroke, stroke-width, font-size rendering properties. It uses the rect, line, text and image elements, as well as all the elements required for the test template. To ensure that the text string is overlapped by the other elements and to avoid a dependency on system fonts, an SVG font is used.

+

The rendered image should match the reference image exactly.

+ +
+ + + diff --git a/test/W3C_SVG_12_TinyTestSuite_beta/htmlEmbedHarness/script-element-201-t.html b/test/W3C_SVG_12_TinyTestSuite_beta/htmlEmbedHarness/script-element-201-t.html new file mode 100755 index 00000000..90489650 --- /dev/null +++ b/test/W3C_SVG_12_TinyTestSuite_beta/htmlEmbedHarness/script-element-201-t.html @@ -0,0 +1,92 @@ + + + + + + + + +SVG 1.2 Tiny test:script-element-201-t + + + + + + + + + + +
+ + + + + + + + + + + + +
+

script-element-201-t

+
+ + + raster image of script-element-201-t +
+
+ + +
+

+ Test that when a script element has both an xlink:href attribute and child character data, + the executable content for the script is retrieved from the IRI of the xlink:href attribute, + and the child content is not added to the scripting context. +

+

+ The test loads an external script resource, which if executed sets the fill or the blue rect to green. + If the child content is executed the fill will be set to red and an alert will be displayed. +

+

+ The test has passed if the rect is green after script execution has taken place and there has been no + alert displayed. +

+ +
+ + + diff --git a/test/W3C_SVG_12_TinyTestSuite_beta/htmlEmbedHarness/script-element-202-t.html b/test/W3C_SVG_12_TinyTestSuite_beta/htmlEmbedHarness/script-element-202-t.html new file mode 100755 index 00000000..551d678d --- /dev/null +++ b/test/W3C_SVG_12_TinyTestSuite_beta/htmlEmbedHarness/script-element-202-t.html @@ -0,0 +1,91 @@ + + + + + + + + +SVG 1.2 Tiny test:script-element-202-t + + + + + + + + + + +
+ + + + + + + + + + + + +
+

script-element-202-t

+
+ + + raster image of script-element-202-t +
+
+ + +
+

+ Test that scripts are not processed until added to the DOM tree. Also test that a function defined in a script + element can be called from a handler element in the same scripting context. +

+

+ When the blue rect is clicked a script element is created. The script to be run must not be processed until + the script element is added to the tree. If it is processed before added to the tree, the rect that is + inserted into the document will be red. If not, then it will be green. +

+

+ The test has passed if after clicking the blue rect a green rect is displayed in its place. +

+ +
+ + + diff --git a/test/W3C_SVG_12_TinyTestSuite_beta/htmlEmbedHarness/script-element-203-t.html b/test/W3C_SVG_12_TinyTestSuite_beta/htmlEmbedHarness/script-element-203-t.html new file mode 100755 index 00000000..062f9f25 --- /dev/null +++ b/test/W3C_SVG_12_TinyTestSuite_beta/htmlEmbedHarness/script-element-203-t.html @@ -0,0 +1,86 @@ + + + + + + + + +SVG 1.2 Tiny test:script-element-203-t + + + + + + + + + + +
+ + + + + + + + + + + + +
+

script-element-203-t

+
+ + + raster image of script-element-203-t +
+
+ + +
+

+ The test consists of 8 subtests, each testing requirements from the script processing section. + When the test is first loaded it shows 8 red circles. After the scripts have been executed the circles should all be green. +

+

+ The test has passed if all 8 circles are green after the script processing has taken place. +

+ +
+ + + diff --git a/test/W3C_SVG_12_TinyTestSuite_beta/htmlEmbedHarness/script-handle-05-t.html b/test/W3C_SVG_12_TinyTestSuite_beta/htmlEmbedHarness/script-handle-05-t.html new file mode 100755 index 00000000..eb244993 --- /dev/null +++ b/test/W3C_SVG_12_TinyTestSuite_beta/htmlEmbedHarness/script-handle-05-t.html @@ -0,0 +1,81 @@ + + + + + + + + +SVG 1.2 Tiny test:script-handle-05-t + + + + + + + + + + +
+ + + + + + + + + + + + +
+

script-handle-05-t

+
+ + + raster image of script-handle-05-t +
+
+ + +
+

Tests basic mouse event handler and DOM manipulation through ECMA script binding.

+

The test uses ECMA Script and initially displays a target with a message asking the user to click on the target. Once the user has done so, and if both event handling and DOM manipulation are supported, then the target and initial text are hidden and a text message indicating that the test was successful is displayed.

+ +
+ + + diff --git a/test/W3C_SVG_12_TinyTestSuite_beta/htmlEmbedHarness/script-handle-06-t.html b/test/W3C_SVG_12_TinyTestSuite_beta/htmlEmbedHarness/script-handle-06-t.html new file mode 100755 index 00000000..d5968b8a --- /dev/null +++ b/test/W3C_SVG_12_TinyTestSuite_beta/htmlEmbedHarness/script-handle-06-t.html @@ -0,0 +1,82 @@ + + + + + + + + +SVG 1.2 Tiny test:script-handle-06-t + + + + + + + + + + +
+ + + + + + + + + + + + +
+

script-handle-06-t

+
+ + + raster image of script-handle-06-t +
+
+ + +
+

Tests basic mouse event handlers.

+

The test shows a target that can be used to generate the various kinds of mouse and keyboard events supported in SVG. Below the target, the list of events is shown with red markers next to each.

+

If the test passes, all the markers should have turned to green after the events have been triggered on the target. If any event has not triggered, its marker will remain red.

+ +
+ + + diff --git a/test/W3C_SVG_12_TinyTestSuite_beta/htmlEmbedHarness/script-handle-07-t.html b/test/W3C_SVG_12_TinyTestSuite_beta/htmlEmbedHarness/script-handle-07-t.html new file mode 100755 index 00000000..40f70366 --- /dev/null +++ b/test/W3C_SVG_12_TinyTestSuite_beta/htmlEmbedHarness/script-handle-07-t.html @@ -0,0 +1,82 @@ + + + + + + + + +SVG 1.2 Tiny test:script-handle-07-t + + + + + + + + + + +
+ + + + + + + + + + + + +
+

script-handle-07-t

+
+ + + raster image of script-handle-07-t +
+
+ + +
+

Tests basic mouse event handlers.

+

The test shows a target that can be used to generate the various kinds of mouse and keyboard events supported in SVG. Below the target, the list of events is shown with red markers next to each.

+

If the test passes, all the markers should have turned to green after the events have been triggered on the target. If any event has not triggered, its marker will remain red.

+ +
+ + + diff --git a/test/W3C_SVG_12_TinyTestSuite_beta/htmlEmbedHarness/script-handle-08-t.html b/test/W3C_SVG_12_TinyTestSuite_beta/htmlEmbedHarness/script-handle-08-t.html new file mode 100755 index 00000000..f2f51e5b --- /dev/null +++ b/test/W3C_SVG_12_TinyTestSuite_beta/htmlEmbedHarness/script-handle-08-t.html @@ -0,0 +1,82 @@ + + + + + + + + +SVG 1.2 Tiny test:script-handle-08-t + + + + + + + + + + +
+ + + + + + + + + + + + +
+

script-handle-08-t

+
+ + + raster image of script-handle-08-t +
+
+ + +
+

Tests basic mouse event handlers.

+

The test shows a target that can be used to generate the various kinds of mouse and keyboard events supported in SVG. Below the target, the list of events is shown with red markers next to each.

+

If the test passes, all the markers should have turned to green after the events have been triggered on the target. If any event has not triggered, its marker will remain red.

+ +
+ + + diff --git a/test/W3C_SVG_12_TinyTestSuite_beta/htmlEmbedHarness/script-handle-201-t.html b/test/W3C_SVG_12_TinyTestSuite_beta/htmlEmbedHarness/script-handle-201-t.html new file mode 100755 index 00000000..f8d86984 --- /dev/null +++ b/test/W3C_SVG_12_TinyTestSuite_beta/htmlEmbedHarness/script-handle-201-t.html @@ -0,0 +1,82 @@ + + + + + + + + +SVG 1.2 Tiny test:script-handle-201-t + + + + + + + + + + +
+ + + + + + + + + + + + +
+

script-handle-201-t

+
+ + + raster image of script-handle-201-t +
+
+ + +
+

+ Test on event handling and scripting. While the mouse is over the rect, a new red rect should become visible underneath. +

+ +
+ + + diff --git a/test/W3C_SVG_12_TinyTestSuite_beta/htmlEmbedHarness/script-handle-202-t.html b/test/W3C_SVG_12_TinyTestSuite_beta/htmlEmbedHarness/script-handle-202-t.html new file mode 100755 index 00000000..565885c4 --- /dev/null +++ b/test/W3C_SVG_12_TinyTestSuite_beta/htmlEmbedHarness/script-handle-202-t.html @@ -0,0 +1,82 @@ + + + + + + + + +SVG 1.2 Tiny test:script-handle-202-t + + + + + + + + + + +
+ + + + + + + + + + + + +
+

script-handle-202-t

+
+ + + raster image of script-handle-202-t +
+
+ + +
+

+ Test of script handlers for SMIL events. A red square should flash on the screen six times. +

+ +
+ + + diff --git a/test/W3C_SVG_12_TinyTestSuite_beta/htmlEmbedHarness/script-listener-201-t.html b/test/W3C_SVG_12_TinyTestSuite_beta/htmlEmbedHarness/script-listener-201-t.html new file mode 100755 index 00000000..cdec3203 --- /dev/null +++ b/test/W3C_SVG_12_TinyTestSuite_beta/htmlEmbedHarness/script-listener-201-t.html @@ -0,0 +1,98 @@ + + + + + + + + +SVG 1.2 Tiny test:script-listener-201-t + + + + + + + + + + +
+ + + + + + + + + + + + +
+

script-listener-201-t

+
+ + + raster image of script-listener-201-t +
+
+ + +
+

+ This test tests the assertion from the Namespaces in XML specification, + "The namespace prefix, unless it is xml or xmlns, MUST have been declared + in a namespace declaration attribute in either the start-tag of the element + where the prefix is used or in an ancestor element (i.e. an element in whose content the prefixed markup occurs)." + The root element doesn't declare the XML Event namespace for the prefix "ev". + +

+ The test has passed if handlers are implemented (the handler with xml:id="passhandler" has run) + but the handler with xml:id="failhandler" has not run. + If the handler is run then the text in the testcase will show "Test failed: magic prefixes!". + If handlers are not implemented at all, the testcase will show "Test failed: handlers not implemented." +

+

+ The test is also passed if the implementation states somehow that the test case is not namespace + well formed (by overlaying it on the image, informing the user in the error console, not + showing the document at all, etc.). +

+

+ +
+ + + diff --git a/test/W3C_SVG_12_TinyTestSuite_beta/htmlEmbedHarness/script-listener-202-t.html b/test/W3C_SVG_12_TinyTestSuite_beta/htmlEmbedHarness/script-listener-202-t.html new file mode 100755 index 00000000..ce74edbb --- /dev/null +++ b/test/W3C_SVG_12_TinyTestSuite_beta/htmlEmbedHarness/script-listener-202-t.html @@ -0,0 +1,83 @@ + + + + + + + + +SVG 1.2 Tiny test:script-listener-202-t + + + + + + + + + + +
+ + + + + + + + + + + + +
+

script-listener-202-t

+
+ + + raster image of script-listener-202-t +
+
+ + +
+

+ This test tests that a handler is not found when the 'handler' attribute contains + an IDREF. The test fails if a red rectangle covers the text content area or the string "Test failed" is displayed. +

+ +
+ + + diff --git a/test/W3C_SVG_12_TinyTestSuite_beta/htmlEmbedHarness/script-listener-203-t.html b/test/W3C_SVG_12_TinyTestSuite_beta/htmlEmbedHarness/script-listener-203-t.html new file mode 100755 index 00000000..641dcd74 --- /dev/null +++ b/test/W3C_SVG_12_TinyTestSuite_beta/htmlEmbedHarness/script-listener-203-t.html @@ -0,0 +1,92 @@ + + + + + + + + +SVG 1.2 Tiny test:script-listener-203-t + + + + + + + + + + +
+ + + + + + + + + + + + +
+

script-listener-203-t

+
+ + + raster image of script-listener-203-t +
+
+ + +
+

+ This test tests that an element with the name 'listener' is not interpreted as an svg element, + and that it's not the same as an element named 'listener' in the XML Events namespace. +

+

+ The test has passed if handlers are implemented (the handler with xml:id="passhandler" has run) + but the handler with xml:id="failhandler" has not run. + + If the handler is run then the text in the testcase will show "Test failed: 'listener' is not an svg element.". + + The pass condition is indicated by two rects that must both be green after running the test, if + either of the rects is red then the test has failed. +

+ +
+ + + diff --git a/test/W3C_SVG_12_TinyTestSuite_beta/htmlEmbedHarness/script-listener-204-t.html b/test/W3C_SVG_12_TinyTestSuite_beta/htmlEmbedHarness/script-listener-204-t.html new file mode 100755 index 00000000..4681d461 --- /dev/null +++ b/test/W3C_SVG_12_TinyTestSuite_beta/htmlEmbedHarness/script-listener-204-t.html @@ -0,0 +1,87 @@ + + + + + + + + +SVG 1.2 Tiny test:script-listener-204-t + + + + + + + + + + +
+ + + + + + + + + + + + +
+

script-listener-204-t

+
+ + + raster image of script-listener-204-t +
+
+ + +
+

+ This test tests the 'propagate' and 'defaultAction' attributes on the XML Event 'listener' element. +

+

+ The test has passed if after clicking the each of the blue rects they both turn green and show the text "Passed", + and that clicking the leftmost rect doesn't traverse the link. If any of the rects are blue or red after clicking + them the test has failed. +

+ +
+ + + diff --git a/test/W3C_SVG_12_TinyTestSuite_beta/htmlEmbedHarness/shapes-circle-01-t.html b/test/W3C_SVG_12_TinyTestSuite_beta/htmlEmbedHarness/shapes-circle-01-t.html new file mode 100755 index 00000000..9cd76d6e --- /dev/null +++ b/test/W3C_SVG_12_TinyTestSuite_beta/htmlEmbedHarness/shapes-circle-01-t.html @@ -0,0 +1,80 @@ + + + + + + + + +SVG 1.2 Tiny test:shapes-circle-01-t + + + + + + + + + + +
+ + + + + + + + + + + + +
+

shapes-circle-01-t

+
+ + + raster image of shapes-circle-01-t +
+
+ + +
+

The rendered picture should match the reference image, except for possible variations in the labelling text (per CSS2 rules).

+ +
+ + + diff --git a/test/W3C_SVG_12_TinyTestSuite_beta/htmlEmbedHarness/shapes-circle-02-t.html b/test/W3C_SVG_12_TinyTestSuite_beta/htmlEmbedHarness/shapes-circle-02-t.html new file mode 100755 index 00000000..03905344 --- /dev/null +++ b/test/W3C_SVG_12_TinyTestSuite_beta/htmlEmbedHarness/shapes-circle-02-t.html @@ -0,0 +1,80 @@ + + + + + + + + +SVG 1.2 Tiny test:shapes-circle-02-t + + + + + + + + + + +
+ + + + + + + + + + + + +
+

shapes-circle-02-t

+
+ + + raster image of shapes-circle-02-t +
+
+ + +
+

Defaults test with circle.

+ +
+ + + diff --git a/test/W3C_SVG_12_TinyTestSuite_beta/htmlEmbedHarness/shapes-circle-03-t.html b/test/W3C_SVG_12_TinyTestSuite_beta/htmlEmbedHarness/shapes-circle-03-t.html new file mode 100755 index 00000000..cf355388 --- /dev/null +++ b/test/W3C_SVG_12_TinyTestSuite_beta/htmlEmbedHarness/shapes-circle-03-t.html @@ -0,0 +1,80 @@ + + + + + + + + +SVG 1.2 Tiny test:shapes-circle-03-t + + + + + + + + + + +
+ + + + + + + + + + + + +
+

shapes-circle-03-t

+
+ + + raster image of shapes-circle-03-t +
+
+ + +
+

Defaults test with circle.

+ +
+ + + diff --git a/test/W3C_SVG_12_TinyTestSuite_beta/htmlEmbedHarness/shapes-ellipse-01-t.html b/test/W3C_SVG_12_TinyTestSuite_beta/htmlEmbedHarness/shapes-ellipse-01-t.html new file mode 100755 index 00000000..e8884032 --- /dev/null +++ b/test/W3C_SVG_12_TinyTestSuite_beta/htmlEmbedHarness/shapes-ellipse-01-t.html @@ -0,0 +1,80 @@ + + + + + + + + +SVG 1.2 Tiny test:shapes-ellipse-01-t + + + + + + + + + + +
+ + + + + + + + + + + + +
+

shapes-ellipse-01-t

+
+ + + raster image of shapes-ellipse-01-t +
+
+ + +
+

The rendered picture should match the reference image, except for possible variations in the labelling text (per CSS2 rules).

+ +
+ + + diff --git a/test/W3C_SVG_12_TinyTestSuite_beta/htmlEmbedHarness/shapes-ellipse-02-t.html b/test/W3C_SVG_12_TinyTestSuite_beta/htmlEmbedHarness/shapes-ellipse-02-t.html new file mode 100755 index 00000000..40b8169a --- /dev/null +++ b/test/W3C_SVG_12_TinyTestSuite_beta/htmlEmbedHarness/shapes-ellipse-02-t.html @@ -0,0 +1,80 @@ + + + + + + + + +SVG 1.2 Tiny test:shapes-ellipse-02-t + + + + + + + + + + +
+ + + + + + + + + + + + +
+

shapes-ellipse-02-t

+
+ + + raster image of shapes-ellipse-02-t +
+
+ + +
+

Defaults test with ellipse. Ellipses with rx or ry set to zero shouldn't be drawn. Unspecified cx and cy attributes default to zero.

+ +
+ + + diff --git a/test/W3C_SVG_12_TinyTestSuite_beta/htmlEmbedHarness/shapes-ellipse-03-t.html b/test/W3C_SVG_12_TinyTestSuite_beta/htmlEmbedHarness/shapes-ellipse-03-t.html new file mode 100755 index 00000000..db79b31e --- /dev/null +++ b/test/W3C_SVG_12_TinyTestSuite_beta/htmlEmbedHarness/shapes-ellipse-03-t.html @@ -0,0 +1,80 @@ + + + + + + + + +SVG 1.2 Tiny test:shapes-ellipse-03-t + + + + + + + + + + +
+ + + + + + + + + + + + +
+

shapes-ellipse-03-t

+
+ + + raster image of shapes-ellipse-03-t +
+
+ + +
+

Defaults test with circle.

+ +
+ + + diff --git a/test/W3C_SVG_12_TinyTestSuite_beta/htmlEmbedHarness/shapes-intro-01-t.html b/test/W3C_SVG_12_TinyTestSuite_beta/htmlEmbedHarness/shapes-intro-01-t.html new file mode 100755 index 00000000..85aac787 --- /dev/null +++ b/test/W3C_SVG_12_TinyTestSuite_beta/htmlEmbedHarness/shapes-intro-01-t.html @@ -0,0 +1,81 @@ + + + + + + + + +SVG 1.2 Tiny test:shapes-intro-01-t + + + + + + + + + + +
+ + + + + + + + + + + + +
+

shapes-intro-01-t

+
+ + + raster image of shapes-intro-01-t +
+
+ + +
+

Tests the degenerate cases of the basic shapes. The shapes are positioned within the black rectangles.

+

None of the shapes should be visible (each of the ten black rectangles should be empty). The rendered picture should match the reference image, except for possible variations in the labelling text (per CSS2 rules).

+ +
+ + + diff --git a/test/W3C_SVG_12_TinyTestSuite_beta/htmlEmbedHarness/shapes-line-01-t.html b/test/W3C_SVG_12_TinyTestSuite_beta/htmlEmbedHarness/shapes-line-01-t.html new file mode 100755 index 00000000..8f538db7 --- /dev/null +++ b/test/W3C_SVG_12_TinyTestSuite_beta/htmlEmbedHarness/shapes-line-01-t.html @@ -0,0 +1,80 @@ + + + + + + + + +SVG 1.2 Tiny test:shapes-line-01-t + + + + + + + + + + +
+ + + + + + + + + + + + +
+

shapes-line-01-t

+
+ + + raster image of shapes-line-01-t +
+
+ + +
+

The rendered picture should match the reference image, except for possible variations in the labelling text (per CSS2 rules).

+ +
+ + + diff --git a/test/W3C_SVG_12_TinyTestSuite_beta/htmlEmbedHarness/shapes-line-02-t.html b/test/W3C_SVG_12_TinyTestSuite_beta/htmlEmbedHarness/shapes-line-02-t.html new file mode 100755 index 00000000..28759169 --- /dev/null +++ b/test/W3C_SVG_12_TinyTestSuite_beta/htmlEmbedHarness/shapes-line-02-t.html @@ -0,0 +1,97 @@ + + + + + + + + +SVG 1.2 Tiny test:shapes-line-02-t + + + + + + + + + + +
+ + + + + + + + + + + + +
+

shapes-line-02-t

+
+ + + raster image of shapes-line-02-t +
+
+ + +
+

+ For this test to pass the following lines must be drawn: + - Green line across the top from 480,0 to 0,0 + - Red line across the left hand side from 0,0 to 0,360 + - Blue line across the bottom from 480,360 to 0,360 + - Purple line across the test from 480,85 to 0,0 + - Fuchsia line across the test from 0,0 to 480,170 + - Aqua line across the test from 0,360 to 480,170 + - Teal line across the test from 480,256 to 0,360 +

+

+ If the x1, x2, y1, or y2 attribute is not specified the effect is as if + a value of "0" were specified. +

+

+ The rendered picture should match the reference image, except for possible + variations in the labelling text (per CSS2 rules). +

+ +
+ + + diff --git a/test/W3C_SVG_12_TinyTestSuite_beta/htmlEmbedHarness/shapes-polygon-01-t.html b/test/W3C_SVG_12_TinyTestSuite_beta/htmlEmbedHarness/shapes-polygon-01-t.html new file mode 100755 index 00000000..d40ae508 --- /dev/null +++ b/test/W3C_SVG_12_TinyTestSuite_beta/htmlEmbedHarness/shapes-polygon-01-t.html @@ -0,0 +1,80 @@ + + + + + + + + +SVG 1.2 Tiny test:shapes-polygon-01-t + + + + + + + + + + +
+ + + + + + + + + + + + +
+

shapes-polygon-01-t

+
+ + + raster image of shapes-polygon-01-t +
+
+ + +
+

The rendered picture should match the reference image, except for possible variations in the labelling text (per CSS2 rules).

+ +
+ + + diff --git a/test/W3C_SVG_12_TinyTestSuite_beta/htmlEmbedHarness/shapes-polygon-02-t.html b/test/W3C_SVG_12_TinyTestSuite_beta/htmlEmbedHarness/shapes-polygon-02-t.html new file mode 100755 index 00000000..90caf36c --- /dev/null +++ b/test/W3C_SVG_12_TinyTestSuite_beta/htmlEmbedHarness/shapes-polygon-02-t.html @@ -0,0 +1,91 @@ + + + + + + + + +SVG 1.2 Tiny test:shapes-polygon-02-t + + + + + + + + + + +
+ + + + + + + + + + + + +
+

shapes-polygon-02-t

+
+ + + raster image of shapes-polygon-02-t +
+
+ + +
+

+ Testing different points attribute syntaxes, empty and invalid points + attributes (e.g. odd number of coordinates). +

+

+ Only three identical polygon elements should be rendered down the + right hand side of the test. +

+

+ The rendered picture should match the reference image, except for + possible variations in the labelling text (per CSS2 rules). +

+ +
+ + + diff --git a/test/W3C_SVG_12_TinyTestSuite_beta/htmlEmbedHarness/shapes-polyline-01-t.html b/test/W3C_SVG_12_TinyTestSuite_beta/htmlEmbedHarness/shapes-polyline-01-t.html new file mode 100755 index 00000000..6998c164 --- /dev/null +++ b/test/W3C_SVG_12_TinyTestSuite_beta/htmlEmbedHarness/shapes-polyline-01-t.html @@ -0,0 +1,80 @@ + + + + + + + + +SVG 1.2 Tiny test:shapes-polyline-01-t + + + + + + + + + + +
+ + + + + + + + + + + + +
+

shapes-polyline-01-t

+
+ + + raster image of shapes-polyline-01-t +
+
+ + +
+

The rendered picture should match the reference image, except for possible variations in the labelling text (per CSS2 rules).

+ +
+ + + diff --git a/test/W3C_SVG_12_TinyTestSuite_beta/htmlEmbedHarness/shapes-polyline-02-t.html b/test/W3C_SVG_12_TinyTestSuite_beta/htmlEmbedHarness/shapes-polyline-02-t.html new file mode 100755 index 00000000..6de176d6 --- /dev/null +++ b/test/W3C_SVG_12_TinyTestSuite_beta/htmlEmbedHarness/shapes-polyline-02-t.html @@ -0,0 +1,91 @@ + + + + + + + + +SVG 1.2 Tiny test:shapes-polyline-02-t + + + + + + + + + + +
+ + + + + + + + + + + + +
+

shapes-polyline-02-t

+
+ + + raster image of shapes-polyline-02-t +
+
+ + +
+

+ Testing different points attribute syntaxes, empty and invalid points + attributes (e.g. odd number of coordinates). +

+

+ Only three identical polygon elements should be rendered down the + right hand side of the test. +

+

+ The rendered picture should match the reference image, except for possible + variations in the labelling text (per CSS2 rules). +

+ +
+ + + diff --git a/test/W3C_SVG_12_TinyTestSuite_beta/htmlEmbedHarness/shapes-rect-01-t.html b/test/W3C_SVG_12_TinyTestSuite_beta/htmlEmbedHarness/shapes-rect-01-t.html new file mode 100755 index 00000000..1e77aa4f --- /dev/null +++ b/test/W3C_SVG_12_TinyTestSuite_beta/htmlEmbedHarness/shapes-rect-01-t.html @@ -0,0 +1,80 @@ + + + + + + + + +SVG 1.2 Tiny test:shapes-rect-01-t + + + + + + + + + + +
+ + + + + + + + + + + + +
+

shapes-rect-01-t

+
+ + + raster image of shapes-rect-01-t +
+
+ + +
+

The rendered picture should match the reference image, except for possible variations in the labelling text (per CSS2 rules).

+ +
+ + + diff --git a/test/W3C_SVG_12_TinyTestSuite_beta/htmlEmbedHarness/shapes-rect-02-t.html b/test/W3C_SVG_12_TinyTestSuite_beta/htmlEmbedHarness/shapes-rect-02-t.html new file mode 100755 index 00000000..03513e04 --- /dev/null +++ b/test/W3C_SVG_12_TinyTestSuite_beta/htmlEmbedHarness/shapes-rect-02-t.html @@ -0,0 +1,81 @@ + + + + + + + + +SVG 1.2 Tiny test:shapes-rect-02-t + + + + + + + + + + +
+ + + + + + + + + + + + +
+

shapes-rect-02-t

+
+ + + raster image of shapes-rect-02-t +
+
+ + +
+

The rendered picture should match the reference image, except for possible variations in the labelling text (per CSS2 rules).

+

Testing the default attributes on the rect element. There should be four rectangles. One should be placed on the left (default x), one on the top (default y). Two rounded rectangles should appear where rx and ry are of the same value (one of the two had been omitted).

+ +
+ + + diff --git a/test/W3C_SVG_12_TinyTestSuite_beta/htmlEmbedHarness/shapes-rect-03-t.html b/test/W3C_SVG_12_TinyTestSuite_beta/htmlEmbedHarness/shapes-rect-03-t.html new file mode 100755 index 00000000..2d213452 --- /dev/null +++ b/test/W3C_SVG_12_TinyTestSuite_beta/htmlEmbedHarness/shapes-rect-03-t.html @@ -0,0 +1,80 @@ + + + + + + + + +SVG 1.2 Tiny test:shapes-rect-03-t + + + + + + + + + + +
+ + + + + + + + + + + + +
+

shapes-rect-03-t

+
+ + + raster image of shapes-rect-03-t +
+
+ + +
+

Testing the correct stroking of the rect element. The blue lines indicate where a dash or gap should start and end. For the test to pass, it has to match the reference image.

+ +
+ + + diff --git a/test/W3C_SVG_12_TinyTestSuite_beta/htmlEmbedHarness/struct-class-201-t.html b/test/W3C_SVG_12_TinyTestSuite_beta/htmlEmbedHarness/struct-class-201-t.html new file mode 100755 index 00000000..6413737a --- /dev/null +++ b/test/W3C_SVG_12_TinyTestSuite_beta/htmlEmbedHarness/struct-class-201-t.html @@ -0,0 +1,93 @@ + + + + + + + + +SVG 1.2 Tiny test:struct-class-201-t + + + + + + + + + + +
+ + + + + + + + + + + + +
+

struct-class-201-t

+
+ + + raster image of struct-class-201-t +
+
+ + +
+

+ Tests that the value of the 'class' attribute is included in the DOM, + including space-separated values, and values with extraneous spaces. +

+

+ The rendered picture should match the reference image, except for + possible variations in the labelling text (per CSS2 rules). The pass + condition is seeing three green circles, with text below each circle + reflecting the normalized space-separated values for the class of that + circle. The leftmost circle has the value "foo", the middle circle has + the value "bar baz", and the rightmost circle has the value + " funky spacing ", normalized to "funky spacing". If any of the + circles are red, the test has failed. +

+ +
+ + + diff --git a/test/W3C_SVG_12_TinyTestSuite_beta/htmlEmbedHarness/struct-common-201-t.html b/test/W3C_SVG_12_TinyTestSuite_beta/htmlEmbedHarness/struct-common-201-t.html new file mode 100755 index 00000000..22e35751 --- /dev/null +++ b/test/W3C_SVG_12_TinyTestSuite_beta/htmlEmbedHarness/struct-common-201-t.html @@ -0,0 +1,88 @@ + + + + + + + + +SVG 1.2 Tiny test:struct-common-201-t + + + + + + + + + + +
+ + + + + + + + + + + + +
+

struct-common-201-t

+
+ + + raster image of struct-common-201-t +
+
+ + +
+

+ Tests that reading of IDs and modification of id and xml:id is conformant to the SVG and xml:id specifications. The test passes if four green circles are shown. +

+

+ The first circle has an id only; the second, xml:id only. The third circle has both, with the same values; and the fourth has both, with different values. All four circles have a red fill; on loading the document, a script + gets each of the circles by its ID and then sets the fill to green. Lastly, the script attempts + to get the fourth circle by ID, using the value of the id attribute; this must fail. If the fourth + circle is dark red, the implementation is not giving priority to the value of xml:id. +

+ +
+ + + diff --git a/test/W3C_SVG_12_TinyTestSuite_beta/htmlEmbedHarness/struct-cond-01-t.html b/test/W3C_SVG_12_TinyTestSuite_beta/htmlEmbedHarness/struct-cond-01-t.html new file mode 100755 index 00000000..5a5bf9cd --- /dev/null +++ b/test/W3C_SVG_12_TinyTestSuite_beta/htmlEmbedHarness/struct-cond-01-t.html @@ -0,0 +1,82 @@ + + + + + + + + +SVG 1.2 Tiny test:struct-cond-01-t + + + + + + + + + + +
+ + + + + + + + + + + + +
+

struct-cond-01-t

+
+ + + raster image of struct-cond-01-t +
+
+ + +
+

This test evaluates a switch statement. The result should be a green rectangle in the lower left quarter of the output window.

+

The rendered picture should match the reference image, except for possible variations in the labelling text (per CSS2 rules).

+

The test uses the 'rect' element, as well as basic fill (solid primary colors), stroke (black 1-pixel lines), font-family (Arial) and font-size properties.

+ +
+ + + diff --git a/test/W3C_SVG_12_TinyTestSuite_beta/htmlEmbedHarness/struct-cond-02-t.html b/test/W3C_SVG_12_TinyTestSuite_beta/htmlEmbedHarness/struct-cond-02-t.html new file mode 100755 index 00000000..5f94e61b --- /dev/null +++ b/test/W3C_SVG_12_TinyTestSuite_beta/htmlEmbedHarness/struct-cond-02-t.html @@ -0,0 +1,82 @@ + + + + + + + + +SVG 1.2 Tiny test:struct-cond-02-t + + + + + + + + + + +
+ + + + + + + + + + + + +
+

struct-cond-02-t

+
+ + + raster image of struct-cond-02-t +
+
+ + +
+

This tests ability to use the 'systemLanguage' as a test attribute within a switch element. To pass, either

+

It is an error to display no output; the last child of switch has no test, so it will always be taken unless a more suitable child has already evaluated to true.

+

In addition, the string "Why don't they just speak <language>" should appear in the center of the graphic, translated into that language. It is not an error for some or all of this string to display as 'missing character' glyphs, if no suitable font is available - however, this is unlikely if the language is indeed the users primary language. (It can easily occur during testing, however).

+ +
+ + + diff --git a/test/W3C_SVG_12_TinyTestSuite_beta/htmlEmbedHarness/struct-cond-03-t.html b/test/W3C_SVG_12_TinyTestSuite_beta/htmlEmbedHarness/struct-cond-03-t.html new file mode 100755 index 00000000..142379b5 --- /dev/null +++ b/test/W3C_SVG_12_TinyTestSuite_beta/htmlEmbedHarness/struct-cond-03-t.html @@ -0,0 +1,109 @@ + + + + + + + + +SVG 1.2 Tiny test:struct-cond-03-t + + + + + + + + + + +
+ + + + + + + + + + + + +
+

struct-cond-03-t

+
+ + + raster image of struct-cond-03-t +
+
+ + +
+

+ Tests the <switch> element with requiredFeature. If a red rectangle with white text 'FAIL' is + displayed, the test fails. Otherwise, if a green rectangle is displayed in the lower part with the text '', + the test is passed. +

+

+ The red rectangle and the white text each require a non-existent feature; the test attribute will thus + evaluate to false and neither element will be rendered by a compliant implementation. +

+

+ The upper subtest is informative; it distinguishes between a purely SVG Tiny 1.2 + implementation and others which also implement more (eg SVG Full 1.1, or + some profile of SVG 1.2 greater than Tiny). The results of this subtest + does not affect the pass/fail criteria. +

+

+ Because SVG Tiny does not support for SVG Full DOM, an SVG Tiny implementation which + does not support other SVG Profiles should show a rectangle + like this. + If the application supports the DOM, meaning that it does more than just SVG Tiny, it + should show a rectangle like this. + Either result is a pass. +

+

+ The lower subtest,has another switch. The first child has a requiredFeature + set to http://www.w3.org/TR/SVG11/feature#BasicText which all SVG Tiny implementations + must support. If the application does, the lower rectangle is displayed in green + like this. Otherwise, a red rectangle + indicates that the text has failed. +

+ +
+ + + diff --git a/test/W3C_SVG_12_TinyTestSuite_beta/htmlEmbedHarness/struct-cond-204-t.html b/test/W3C_SVG_12_TinyTestSuite_beta/htmlEmbedHarness/struct-cond-204-t.html new file mode 100755 index 00000000..3aeb3315 --- /dev/null +++ b/test/W3C_SVG_12_TinyTestSuite_beta/htmlEmbedHarness/struct-cond-204-t.html @@ -0,0 +1,107 @@ + + + + + + + + +SVG 1.2 Tiny test:struct-cond-204-t + + + + + + + + + + +
+ + + + + + + + + + + + +
+

struct-cond-204-t

+
+ + + raster image of struct-cond-204-t +
+
+ + +
+

Required Formats Attribute

+

+ A series of switches are used to determine which Internet Media types ('MIME types') + are supported, using the 'requiredFormats' attribute, + displaying a 'yes' or 'no' as appropriate. The test is passed if there is text in + the second row of each column, and that text is only + green (in the top table) + or blueviolet (in the bottom table); + no red text is displayed. +

+

+ The SVG Tiny 1.2 specification mandates certain formats, so these must be supported: + image/jpeg, image/png, image/svg+xml. + It is an error not to support them, therefore 'yes' is green and 'no' is red. +

+

+ This test also checks for support of Internet Media types which are + assumed to not exist and are unlikely to ever be registered: garbage/garbage. + Therefore, 'yes' is red and 'no' is green. +

+

+ Lastly, most media types are optional. For example, image/tiff may be + supported but support is not mandated by the SVG Tiny 1.2 specification. + The second table examines these optional formats. + Both 'yes' and 'no' are displayed in blueviolet. Whether the particular Internet Media type + is supported or not does not affect whether the test is passed or failed, but does provide useful + information about the optional capabilities of a particular implementation. +

+ +
+ + + diff --git a/test/W3C_SVG_12_TinyTestSuite_beta/htmlEmbedHarness/struct-cond-205-t.html b/test/W3C_SVG_12_TinyTestSuite_beta/htmlEmbedHarness/struct-cond-205-t.html new file mode 100755 index 00000000..04edc6ad --- /dev/null +++ b/test/W3C_SVG_12_TinyTestSuite_beta/htmlEmbedHarness/struct-cond-205-t.html @@ -0,0 +1,82 @@ + + + + + + + + +SVG 1.2 Tiny test:struct-cond-205-t + + + + + + + + + + +
+ + + + + + + + + + + + +
+

struct-cond-205-t

+
+ + + raster image of struct-cond-205-t +
+
+ + +
+

+ Tests all the SVG Tiny 1.2 feature strings using requiredFeatures. +

+ +
+ + + diff --git a/test/W3C_SVG_12_TinyTestSuite_beta/htmlEmbedHarness/struct-cond-209-t.html b/test/W3C_SVG_12_TinyTestSuite_beta/htmlEmbedHarness/struct-cond-209-t.html new file mode 100755 index 00000000..0e5638f8 --- /dev/null +++ b/test/W3C_SVG_12_TinyTestSuite_beta/htmlEmbedHarness/struct-cond-209-t.html @@ -0,0 +1,101 @@ + + + + + + + + +SVG 1.2 Tiny test:struct-cond-209-t + + + + + + + + + + +
+ + + + + + + + + + + + +
+

struct-cond-209-t

+
+ + + raster image of struct-cond-209-t +
+
+ + +
+

+ This test evaluates the effects of the 'display' or 'visibility' + attributes on a switch statement. The result should be a green circle + in the center of the output window. +

+

+ The rendered picture should match the reference image, except for + possible variations in the labelling text (per CSS2 rules). The pass + condition is seeing a green circle in the center of the image. If a + gray rectangle is visible, the test cannot be evaluated because the + 'display' attribute is not supported. If a blue rectangle is visible, + the test cannot be evaluated because the 'visibility' attribute is not + supported. If a red rectangle with a gray stroke is visible, the test + is failed because the switch is affected by the 'display' attribute. + If a red rectangle with a black stroke is visible, the test is failed + because the switch is affected by the 'display' attribute. +

+

+ The test uses the 'rect' and 'circle' elements, as well as basic fill + (solid primary colors), stroke (black or gray 2-pixel lines), and the + 'display' and 'visibility' attributes. +

+ +
+ + + diff --git a/test/W3C_SVG_12_TinyTestSuite_beta/htmlEmbedHarness/struct-cond-210-t.html b/test/W3C_SVG_12_TinyTestSuite_beta/htmlEmbedHarness/struct-cond-210-t.html new file mode 100755 index 00000000..3f22c23b --- /dev/null +++ b/test/W3C_SVG_12_TinyTestSuite_beta/htmlEmbedHarness/struct-cond-210-t.html @@ -0,0 +1,103 @@ + + + + + + + + +SVG 1.2 Tiny test:struct-cond-210-t + + + + + + + + + + +
+ + + + + + + + + + + + +
+

struct-cond-210-t

+
+ + + raster image of struct-cond-210-t +
+
+ + +
+

+ This test evaluates the effects of the switch statement on referencing + content such as gradients or elements. The result should be a yellow + rectangle in the center of the output window, with green circles in + three of the corners of the rectangle. +

+

+ The rendered picture should match the reference image, except for + possible variations in the labelling text (per CSS2 rules). The pass + condition is seeing three circles, one solid green circle in upper + right corner of the rectangle, and a circle with a green gradient in + each of the bottom corners of the rectangle. If a red or black circle + is visible in the upper left corner of the rectangle, the test cannot + be evaluated because the 'switch' is not correctly supported. If any of + the upper-right or lower circles is not visible, or does not have the + correct fill, the test is failed. If the bottom-right circle is not + visible or does not have the gradient fill, then the 'switch' is not + correctly supported, and does not allow one conditionally hidden + resource to reference another. +

+

+ The test uses the 'rect', 'circle', 'gradient', and 'use' elements, as + well as basic fill (solid primary colors) and radial gradients. +

+ +
+ + + diff --git a/test/W3C_SVG_12_TinyTestSuite_beta/htmlEmbedHarness/struct-defs-01-t.html b/test/W3C_SVG_12_TinyTestSuite_beta/htmlEmbedHarness/struct-defs-01-t.html new file mode 100755 index 00000000..4e822501 --- /dev/null +++ b/test/W3C_SVG_12_TinyTestSuite_beta/htmlEmbedHarness/struct-defs-01-t.html @@ -0,0 +1,83 @@ + + + + + + + + +SVG 1.2 Tiny test:struct-defs-01-t + + + + + + + + + + +
+ + + + + + + + + + + + +
+

struct-defs-01-t

+
+ + + raster image of struct-defs-01-t +
+
+ + +
+

Test to verify that the defs element is used as a container correctly.

+

In this test a fill is created which is solid red. The view should be a solid red rectangle centered in the viewport 100 pixels from from left,top and right,bottom. Also, in the defs sections there are rectangle defined, one to paint over the entire canvas with a green fill and the other to obscure most of the red rectangle. The green rectangles should not show in the view as defs are referenced items and are not rendered. No green should show.

+

The rendered picture should match the reference image, except for possible variations in the labelling text (per CSS2 rules).

+

The test uses the 'rect' element, as well as basic fill (solid primary colors), stroke (black 1-pixel lines), font-family (Arial) and font-size properties.

+ +
+ + + diff --git a/test/W3C_SVG_12_TinyTestSuite_beta/htmlEmbedHarness/struct-defs-201-t.html b/test/W3C_SVG_12_TinyTestSuite_beta/htmlEmbedHarness/struct-defs-201-t.html new file mode 100755 index 00000000..29890b0d --- /dev/null +++ b/test/W3C_SVG_12_TinyTestSuite_beta/htmlEmbedHarness/struct-defs-201-t.html @@ -0,0 +1,92 @@ + + + + + + + + +SVG 1.2 Tiny test:struct-defs-201-t + + + + + + + + + + +
+ + + + + + + + + + + + +
+

struct-defs-201-t

+
+ + + raster image of struct-defs-201-t +
+
+ + +
+

+ Tests that the value of the display property on the defs element or on its descendants + doesn't prevent the elements from being referenced. +

+

+ The test has passed if the following conditions are met: +

+
    +
  1. there are 8 big rects visible each of a different color.
  2. +
  3. on top of the 8 big rects there are 8 circles that contain the reference color, the color of each circle must match the color of the rect to the right of its center
  4. +
  5. from the top-left to the top-right corner the colors must be: green, lime, yellow, olive.
  6. +
  7. from the bottom-left to the bottom-right corner the colors must be: navy, teal, blue, fuchsia.
  8. +
+ +
+ + + diff --git a/test/W3C_SVG_12_TinyTestSuite_beta/htmlEmbedHarness/struct-discard-201-t.html b/test/W3C_SVG_12_TinyTestSuite_beta/htmlEmbedHarness/struct-discard-201-t.html new file mode 100755 index 00000000..2359e1ea --- /dev/null +++ b/test/W3C_SVG_12_TinyTestSuite_beta/htmlEmbedHarness/struct-discard-201-t.html @@ -0,0 +1,81 @@ + + + + + + + + +SVG 1.2 Tiny test:struct-discard-201-t + + + + + + + + + + +
+ + + + + + + + + + + + +
+

struct-discard-201-t

+
+ + + raster image of struct-discard-201-t +
+
+ + +
+

Discard Element

+

The blue bars are animated then 'discarded' as indicated by comments.

+ +
+ + + diff --git a/test/W3C_SVG_12_TinyTestSuite_beta/htmlEmbedHarness/struct-discard-204-t.html b/test/W3C_SVG_12_TinyTestSuite_beta/htmlEmbedHarness/struct-discard-204-t.html new file mode 100755 index 00000000..c1ce8bf2 --- /dev/null +++ b/test/W3C_SVG_12_TinyTestSuite_beta/htmlEmbedHarness/struct-discard-204-t.html @@ -0,0 +1,87 @@ + + + + + + + + +SVG 1.2 Tiny test:struct-discard-204-t + + + + + + + + + + +
+ + + + + + + + + + + + +
+

struct-discard-204-t

+
+ + + raster image of struct-discard-204-t +
+
+ + +
+

+ This test tests that trying to animate xlink:href on the discard element will not + apply. +

+

+ The test has passed if after 3 seconds there are 4 green circles visible, and + no red. +

+ +
+ + + diff --git a/test/W3C_SVG_12_TinyTestSuite_beta/htmlEmbedHarness/struct-discard-205-t.html b/test/W3C_SVG_12_TinyTestSuite_beta/htmlEmbedHarness/struct-discard-205-t.html new file mode 100755 index 00000000..47292be5 --- /dev/null +++ b/test/W3C_SVG_12_TinyTestSuite_beta/htmlEmbedHarness/struct-discard-205-t.html @@ -0,0 +1,85 @@ + + + + + + + + +SVG 1.2 Tiny test:struct-discard-205-t + + + + + + + + + + +
+ + + + + + + + + + + + +
+

struct-discard-205-t

+
+ + + raster image of struct-discard-205-t +
+
+ + +
+

+ This test tests that discard elements themselves are discarded after being activated. +

+

+ The test has passed if after 3 seconds there are three green circles visible, and no red. +

+ +
+ + + diff --git a/test/W3C_SVG_12_TinyTestSuite_beta/htmlEmbedHarness/struct-discard-206-t.html b/test/W3C_SVG_12_TinyTestSuite_beta/htmlEmbedHarness/struct-discard-206-t.html new file mode 100755 index 00000000..a9635bd6 --- /dev/null +++ b/test/W3C_SVG_12_TinyTestSuite_beta/htmlEmbedHarness/struct-discard-206-t.html @@ -0,0 +1,86 @@ + + + + + + + + +SVG 1.2 Tiny test:struct-discard-206-t + + + + + + + + + + +
+ + + + + + + + + + + + +
+

struct-discard-206-t

+
+ + + raster image of struct-discard-206-t +
+
+ + +
+

+ Tests that discard elements can be discarded before activation. +

+

+ The test has passed if after 3 seconds there is there are 4 green rects visible, + and nothing red. +

+ +
+ + + diff --git a/test/W3C_SVG_12_TinyTestSuite_beta/htmlEmbedHarness/struct-discard-207-t.html b/test/W3C_SVG_12_TinyTestSuite_beta/htmlEmbedHarness/struct-discard-207-t.html new file mode 100755 index 00000000..7498bcaf --- /dev/null +++ b/test/W3C_SVG_12_TinyTestSuite_beta/htmlEmbedHarness/struct-discard-207-t.html @@ -0,0 +1,89 @@ + + + + + + + + +SVG 1.2 Tiny test:struct-discard-207-t + + + + + + + + + + +
+ + + + + + + + + + + + +
+

struct-discard-207-t

+
+ + + raster image of struct-discard-207-t +
+
+ + +
+

+ This test tests that discard acts the same as removeChild. + First two red rects and a blue circle should be seen. The blue circle has + its radius animated to 0 over the course of 3 seconds. At the point where + the blue circle disappears the two red rects should be removed from the + tree. This reveals two green circles. +

+

+ The test has passed if in the interval 0-3 seconds there are two red rects and a blue circle, and after 3 seconds two green circles can be seen and the text at the bottom says "Test passed". +

+ +
+ + + diff --git a/test/W3C_SVG_12_TinyTestSuite_beta/htmlEmbedHarness/struct-frag-02-t.html b/test/W3C_SVG_12_TinyTestSuite_beta/htmlEmbedHarness/struct-frag-02-t.html new file mode 100755 index 00000000..1b42d7ff --- /dev/null +++ b/test/W3C_SVG_12_TinyTestSuite_beta/htmlEmbedHarness/struct-frag-02-t.html @@ -0,0 +1,82 @@ + + + + + + + + +SVG 1.2 Tiny test:struct-frag-02-t + + + + + + + + + + +
+ + + + + + + + + + + + +
+

struct-frag-02-t

+
+ + + raster image of struct-frag-02-t +
+
+ + +
+

This test validates the use of the preserveAspectRatio attribute on the root svg element in an SVG Tiny document. In this document, preserveAspectRatio is set to none and the width and height of the document set to 100%.

+

The document's viewBox is defined to be 100 by 100 with an origin in (100, 100). The content is made of 2 red squares and 2 orange circles.

+

Because preserveAspectRatio is set to 'none', the content should appear distorted: squares show as rectangles and circles show as ellipses.

+ +
+ + + diff --git a/test/W3C_SVG_12_TinyTestSuite_beta/htmlEmbedHarness/struct-frag-03-t.html b/test/W3C_SVG_12_TinyTestSuite_beta/htmlEmbedHarness/struct-frag-03-t.html new file mode 100755 index 00000000..37de8a05 --- /dev/null +++ b/test/W3C_SVG_12_TinyTestSuite_beta/htmlEmbedHarness/struct-frag-03-t.html @@ -0,0 +1,82 @@ + + + + + + + + +SVG 1.2 Tiny test:struct-frag-03-t + + + + + + + + + + +
+ + + + + + + + + + + + +
+

struct-frag-03-t

+
+ + + raster image of struct-frag-03-t +
+
+ + +
+

This test validates the use of the preserveAspectRatio attribute on the root svg element in an SVG Tiny document. In this document, preserveAspectRatio is set to 'xMidYMid meet' and the width and height of the document set to 100%.

+

The document's viewBox is defined to be 100 by 100 with an origin in (100, 100). The content is made of 2 red squares and 2 orange circles.

+

Because preserveAspectRatio is set to 'xMidYMid meet', the content should appear centered within the viewport: squares show as squares (and not rectangles) and circles show as circles (and not ellipses).

+ +
+ + + diff --git a/test/W3C_SVG_12_TinyTestSuite_beta/htmlEmbedHarness/struct-frag-04-t.html b/test/W3C_SVG_12_TinyTestSuite_beta/htmlEmbedHarness/struct-frag-04-t.html new file mode 100755 index 00000000..9b9b26d1 --- /dev/null +++ b/test/W3C_SVG_12_TinyTestSuite_beta/htmlEmbedHarness/struct-frag-04-t.html @@ -0,0 +1,82 @@ + + + + + + + + +SVG 1.2 Tiny test:struct-frag-04-t + + + + + + + + + + +
+ + + + + + + + + + + + +
+

struct-frag-04-t

+
+ + + raster image of struct-frag-04-t +
+
+ + +
+

This test validates the operation of the svg element when there is no viewbox.

+

The document's size is 480 by 360 with an x/y origin in (1000, 1000). Because x/y are ignored on the root svg element, the x/y origin should have no effect on the drawing.

+

The document contains squares and circles between the (100,100) and (200, 200) coordinates. Changing the viewport size should have no effect on the placement or scale of the document's conten.

+ +
+ + + diff --git a/test/W3C_SVG_12_TinyTestSuite_beta/htmlEmbedHarness/struct-frag-05-t.html b/test/W3C_SVG_12_TinyTestSuite_beta/htmlEmbedHarness/struct-frag-05-t.html new file mode 100755 index 00000000..56029902 --- /dev/null +++ b/test/W3C_SVG_12_TinyTestSuite_beta/htmlEmbedHarness/struct-frag-05-t.html @@ -0,0 +1,82 @@ + + + + + + + + +SVG 1.2 Tiny test:struct-frag-05-t + + + + + + + + + + +
+ + + + + + + + + + + + +
+

struct-frag-05-t

+
+ + + raster image of struct-frag-05-t +
+
+ + +
+

This tests that XML Namespaces are correctly implemented, in that the tuple of local name and namespace URI, rather than the prefix, is important. The first subtest is a group where the namespace prefix 's' is bound to the SVG namespace and an 's:circle' is drawn in pale yellow. The same group declares the default namespace to be a non-SVG namespace; the blue circle element in that namespace must not be drawn.

+

The second subtest puts the namespace declarations on the elements themselves. The prefix 'toto' is bound to the SVG namespace and the XLink namespace is made the default namespace. Thus, the blue '<toto:a href="uri">Valid</toto:a>' is a valid link and must be traversable. Select this link, then go back to the test.

+

The third subtest has no prefix on the element name 'a' and uses the usual 'xlink:' prefix on the 'href' attribute. However, both the default namespace and the namespace bound to the 'xlink' prefix are dummy namespaces. Not only should the link not be traversable, it must not even display at all. If the text 'Invalid' is displayed, the test fails.

+ +
+ + + diff --git a/test/W3C_SVG_12_TinyTestSuite_beta/htmlEmbedHarness/struct-frag-06-t.html b/test/W3C_SVG_12_TinyTestSuite_beta/htmlEmbedHarness/struct-frag-06-t.html new file mode 100755 index 00000000..7c0c6b6c --- /dev/null +++ b/test/W3C_SVG_12_TinyTestSuite_beta/htmlEmbedHarness/struct-frag-06-t.html @@ -0,0 +1,83 @@ + + + + + + + + +SVG 1.2 Tiny test:struct-frag-06-t + + + + + + + + + + +
+ + + + + + + + + + + + +
+

struct-frag-06-t

+
+ + + raster image of struct-frag-06-t +
+
+ + +
+

This test adds testing of some basic XML features SVG User Agents should support.

+

First, the test checks support for the default entities amp, lt, gt, apos and quot. This is what the first line shows in gray.

+

Second, the test checks support for hexadecimal and decimal character entities, as shown in the second line, again in gray

+

Finally, the last line shows usage of an entity defined in the document's internal DTD subset. The same geometry (a path) is reused twice, once filled in gray and ones stroked in gray.

+ +
+ + + diff --git a/test/W3C_SVG_12_TinyTestSuite_beta/htmlEmbedHarness/struct-group-01-t.html b/test/W3C_SVG_12_TinyTestSuite_beta/htmlEmbedHarness/struct-group-01-t.html new file mode 100755 index 00000000..26541333 --- /dev/null +++ b/test/W3C_SVG_12_TinyTestSuite_beta/htmlEmbedHarness/struct-group-01-t.html @@ -0,0 +1,82 @@ + + + + + + + + +SVG 1.2 Tiny test:struct-group-01-t + + + + + + + + + + +
+ + + + + + + + + + + + +
+

struct-group-01-t

+
+ + + raster image of struct-group-01-t +
+
+ + +
+

The test checks to see that graphics elements (g) can be nested and that the like attributes can be passed to the children. All the g elements for this test are in the g element whose xml:id=allGs. The two red rectangles and the yellow are in the g labeled rects. The reds inherit a fill color the green rect has a fill specified and it should not be overwritten. The two yellow rectangles should inherit the fill color and the transform attribute, they should be yellow and rotated at -20 degrees. These two rectangles are in g "yellowNrotate", that g is nested inside g "gratuitiousG". The black rectangle in the upper right, has no attributes inherited from its parent. The focus is nesting of g elements and passing on of attributes.

+

The rendered picture should match the reference image, except for possible variations in the labelling text (per CSS2 rules).

+

The test uses the 'rect' element, as well as basic fill (solid primary colors), stroke (black 1-pixel lines), font-family (Arial) and font-size properties.

+ +
+ + + diff --git a/test/W3C_SVG_12_TinyTestSuite_beta/htmlEmbedHarness/struct-group-03-t.html b/test/W3C_SVG_12_TinyTestSuite_beta/htmlEmbedHarness/struct-group-03-t.html new file mode 100755 index 00000000..74724580 --- /dev/null +++ b/test/W3C_SVG_12_TinyTestSuite_beta/htmlEmbedHarness/struct-group-03-t.html @@ -0,0 +1,81 @@ + + + + + + + + +SVG 1.2 Tiny test:struct-group-03-t + + + + + + + + + + +
+ + + + + + + + + + + + +
+

struct-group-03-t

+
+ + + raster image of struct-group-03-t +
+
+ + +
+

This test validates that properties are inherited (or not, depending on their defintion), from a group to its children.

+

The two rows displayed in this test should be identical. In the top row, each property is set to the value 'inherit'. In the bottom row, which is the reference, each property is set to the value that should be inherited in the top row.

+ +
+ + + diff --git a/test/W3C_SVG_12_TinyTestSuite_beta/htmlEmbedHarness/struct-image-01-t.html b/test/W3C_SVG_12_TinyTestSuite_beta/htmlEmbedHarness/struct-image-01-t.html new file mode 100755 index 00000000..4a0c3d06 --- /dev/null +++ b/test/W3C_SVG_12_TinyTestSuite_beta/htmlEmbedHarness/struct-image-01-t.html @@ -0,0 +1,81 @@ + + + + + + + + +SVG 1.2 Tiny test:struct-image-01-t + + + + + + + + + + +
+ + + + + + + + + + + + +
+

struct-image-01-t

+
+ + + raster image of struct-image-01-t +
+
+ + +
+

The image test case checks to see if the basic image formats allowed in the tiny profile are supported. The upper right has an JPG image the lower right has a PNG image. They are the same image. Those positions are relative to the upper left of the entire canvas. If any of the components are missing, then an image format is not being properly supported.

+

The rendered picture should match the reference image, except for possible variations in the labelling text (per CSS2 rules).

+ +
+ + + diff --git a/test/W3C_SVG_12_TinyTestSuite_beta/htmlEmbedHarness/struct-image-03-t.html b/test/W3C_SVG_12_TinyTestSuite_beta/htmlEmbedHarness/struct-image-03-t.html new file mode 100755 index 00000000..9106582a --- /dev/null +++ b/test/W3C_SVG_12_TinyTestSuite_beta/htmlEmbedHarness/struct-image-03-t.html @@ -0,0 +1,80 @@ + + + + + + + + +SVG 1.2 Tiny test:struct-image-03-t + + + + + + + + + + +
+ + + + + + + + + + + + +
+

struct-image-03-t

+
+ + + raster image of struct-image-03-t +
+
+ + +
+

This test verifies the support for gamma correction of displayed PNG images. Several different images are displayed one above the other; if gamma correction is correctly performed based on the values in the gAMA chunk in the PNG file, the resulting displayed values are the same in all of the files (except for rounding error, which gives some artefacts at the right side of the lowest two images due to the very high levels of gamma correction needed for this test).

+ +
+ + + diff --git a/test/W3C_SVG_12_TinyTestSuite_beta/htmlEmbedHarness/struct-image-04-t.html b/test/W3C_SVG_12_TinyTestSuite_beta/htmlEmbedHarness/struct-image-04-t.html new file mode 100755 index 00000000..27b4f02f --- /dev/null +++ b/test/W3C_SVG_12_TinyTestSuite_beta/htmlEmbedHarness/struct-image-04-t.html @@ -0,0 +1,81 @@ + + + + + + + + +SVG 1.2 Tiny test:struct-image-04-t + + + + + + + + + + +
+ + + + + + + + + + + + +
+

struct-image-04-t

+
+ + + raster image of struct-image-04-t +
+
+ + +
+

The image test case checks to see if the basic image formats allowed in the tiny profile are supported using the data: URI schema and base64 encoding.. The upper right has an JPG image the lower right has a PNG image. They are the same image. Those positions are relative to the upper left of the entire canvas. If any of the components are missing, then an image format is not being properly supported.

+

The rendered picture should match the reference image, except for possible variations in the labelling text (per CSS2 rules).

+ +
+ + + diff --git a/test/W3C_SVG_12_TinyTestSuite_beta/htmlEmbedHarness/struct-image-06-t.html b/test/W3C_SVG_12_TinyTestSuite_beta/htmlEmbedHarness/struct-image-06-t.html new file mode 100755 index 00000000..38ab9f4d --- /dev/null +++ b/test/W3C_SVG_12_TinyTestSuite_beta/htmlEmbedHarness/struct-image-06-t.html @@ -0,0 +1,80 @@ + + + + + + + + +SVG 1.2 Tiny test:struct-image-06-t + + + + + + + + + + +
+ + + + + + + + + + + + +
+

struct-image-06-t

+
+ + + raster image of struct-image-06-t +
+
+ + +
+

Check that all the preserveAspectRatio values are supported for the <image> element. In particular, check that values which are not supported on the svg element's preserveAspectRatio are supported for <image>.

+ +
+ + + diff --git a/test/W3C_SVG_12_TinyTestSuite_beta/htmlEmbedHarness/struct-image-07-t.html b/test/W3C_SVG_12_TinyTestSuite_beta/htmlEmbedHarness/struct-image-07-t.html new file mode 100755 index 00000000..88bf16a5 --- /dev/null +++ b/test/W3C_SVG_12_TinyTestSuite_beta/htmlEmbedHarness/struct-image-07-t.html @@ -0,0 +1,80 @@ + + + + + + + + +SVG 1.2 Tiny test:struct-image-07-t + + + + + + + + + + +
+ + + + + + + + + + + + +
+

struct-image-07-t

+
+ + + raster image of struct-image-07-t +
+
+ + +
+

This test validates that xml:base is properly handled on the <image> element. It shows the same image three times, with different xml:base and xlink:href values.

+ +
+ + + diff --git a/test/W3C_SVG_12_TinyTestSuite_beta/htmlEmbedHarness/struct-image-08-t.html b/test/W3C_SVG_12_TinyTestSuite_beta/htmlEmbedHarness/struct-image-08-t.html new file mode 100755 index 00000000..14576bb2 --- /dev/null +++ b/test/W3C_SVG_12_TinyTestSuite_beta/htmlEmbedHarness/struct-image-08-t.html @@ -0,0 +1,80 @@ + + + + + + + + +SVG 1.2 Tiny test:struct-image-08-t + + + + + + + + + + +
+ + + + + + + + + + + + +
+

struct-image-08-t

+
+ + + raster image of struct-image-08-t +
+
+ + +
+

Tests PNG images with alpha. The result should be identical to the reference image.

+ +
+ + + diff --git a/test/W3C_SVG_12_TinyTestSuite_beta/htmlEmbedHarness/struct-image-09-t.html b/test/W3C_SVG_12_TinyTestSuite_beta/htmlEmbedHarness/struct-image-09-t.html new file mode 100755 index 00000000..3b7eb44a --- /dev/null +++ b/test/W3C_SVG_12_TinyTestSuite_beta/htmlEmbedHarness/struct-image-09-t.html @@ -0,0 +1,80 @@ + + + + + + + + +SVG 1.2 Tiny test:struct-image-09-t + + + + + + + + + + +
+ + + + + + + + + + + + +
+

struct-image-09-t

+
+ + + raster image of struct-image-09-t +
+
+ + +
+

Tests PNG images with pallete ransparency (tRNS chunk). The result should be identical to the reference image.

+ +
+ + + diff --git a/test/W3C_SVG_12_TinyTestSuite_beta/htmlEmbedHarness/struct-image-10-t.html b/test/W3C_SVG_12_TinyTestSuite_beta/htmlEmbedHarness/struct-image-10-t.html new file mode 100755 index 00000000..0aefb09b --- /dev/null +++ b/test/W3C_SVG_12_TinyTestSuite_beta/htmlEmbedHarness/struct-image-10-t.html @@ -0,0 +1,80 @@ + + + + + + + + +SVG 1.2 Tiny test:struct-image-10-t + + + + + + + + + + +
+ + + + + + + + + + + + +
+

struct-image-10-t

+
+ + + raster image of struct-image-10-t +
+
+ + +
+

Tests PNG greyscale images with alpha. The result should be identical to the reference image.

+ +
+ + + diff --git a/test/W3C_SVG_12_TinyTestSuite_beta/htmlEmbedHarness/struct-progressive-201-t.html b/test/W3C_SVG_12_TinyTestSuite_beta/htmlEmbedHarness/struct-progressive-201-t.html new file mode 100755 index 00000000..01e9a803 --- /dev/null +++ b/test/W3C_SVG_12_TinyTestSuite_beta/htmlEmbedHarness/struct-progressive-201-t.html @@ -0,0 +1,91 @@ + + + + + + + + +SVG 1.2 Tiny test:struct-progressive-201-t + + + + + + + + + + +
+ + + + + + + + + + + + +
+

struct-progressive-201-t

+
+ + + raster image of struct-progressive-201-t +
+
+ + +
+

+ Tests progressive rendering. Progressive rendering is an optional feature. +

+

+ On user agents which support progressive rendering, the test is passed + if the circles render progressively. The update frequency is + implementation dependant. +

+

+ On user agents which do not support progressive rendering, the test is passed + if all the circles are all displayed in a single render. +

+ +
+ + + diff --git a/test/W3C_SVG_12_TinyTestSuite_beta/htmlEmbedHarness/struct-progressive-202-t.html b/test/W3C_SVG_12_TinyTestSuite_beta/htmlEmbedHarness/struct-progressive-202-t.html new file mode 100755 index 00000000..809f9ac4 --- /dev/null +++ b/test/W3C_SVG_12_TinyTestSuite_beta/htmlEmbedHarness/struct-progressive-202-t.html @@ -0,0 +1,84 @@ + + + + + + + + +SVG 1.2 Tiny test:struct-progressive-202-t + + + + + + + + + + +
+ + + + + + + + + + + + +
+

struct-progressive-202-t

+
+ + + raster image of struct-progressive-202-t +
+
+ + +
+

+ Tests progressive rendering. On user agents which support progressive rendering, + the rectangle should be full of circles, rendered all at once because of forward use with externalResourcesRequired. + The update frequency is implementation dependant. +

+ +
+ + + diff --git a/test/W3C_SVG_12_TinyTestSuite_beta/htmlEmbedHarness/struct-progressive-203-t.html b/test/W3C_SVG_12_TinyTestSuite_beta/htmlEmbedHarness/struct-progressive-203-t.html new file mode 100755 index 00000000..036031a9 --- /dev/null +++ b/test/W3C_SVG_12_TinyTestSuite_beta/htmlEmbedHarness/struct-progressive-203-t.html @@ -0,0 +1,85 @@ + + + + + + + + +SVG 1.2 Tiny test:struct-progressive-203-t + + + + + + + + + + +
+ + + + + + + + + + + + +
+

struct-progressive-203-t

+
+ + + raster image of struct-progressive-203-t +
+
+ + +
+

+ Tests progressive rendering. On user agents which support progressive rendering, + the rectangle should be full of circles, rendered progressively. + Images should appear as the circles pass the yellow dots. + The update frequency is implementation dependant. +

+ +
+ + + diff --git a/test/W3C_SVG_12_TinyTestSuite_beta/htmlEmbedHarness/struct-progressive-204-t.html b/test/W3C_SVG_12_TinyTestSuite_beta/htmlEmbedHarness/struct-progressive-204-t.html new file mode 100755 index 00000000..4ad40f6c --- /dev/null +++ b/test/W3C_SVG_12_TinyTestSuite_beta/htmlEmbedHarness/struct-progressive-204-t.html @@ -0,0 +1,84 @@ + + + + + + + + +SVG 1.2 Tiny test:struct-progressive-204-t + + + + + + + + + + +
+ + + + + + + + + + + + +
+

struct-progressive-204-t

+
+ + + raster image of struct-progressive-204-t +
+
+ + +
+

+ Tests progressive rendering. On user agents which support progressive rendering, + the content should be rendered all at once due to forward use of externalResourcesRequired on top-level SVG. + The update frequency is implementation dependant. +

+ +
+ + + diff --git a/test/W3C_SVG_12_TinyTestSuite_beta/htmlEmbedHarness/struct-svg-201-t.html b/test/W3C_SVG_12_TinyTestSuite_beta/htmlEmbedHarness/struct-svg-201-t.html new file mode 100755 index 00000000..6d2b3e2e --- /dev/null +++ b/test/W3C_SVG_12_TinyTestSuite_beta/htmlEmbedHarness/struct-svg-201-t.html @@ -0,0 +1,83 @@ + + + + + + + + +SVG 1.2 Tiny test:struct-svg-201-t + + + + + + + + + + +
+ + + + + + + + + + + + +
+

struct-svg-201-t

+
+ + + raster image of struct-svg-201-t +
+
+ + +
+

+ The svg should look the same on both sides and the text + should read "OK". +

+ +
+ + + diff --git a/test/W3C_SVG_12_TinyTestSuite_beta/htmlEmbedHarness/struct-svg-202-t.html b/test/W3C_SVG_12_TinyTestSuite_beta/htmlEmbedHarness/struct-svg-202-t.html new file mode 100755 index 00000000..78ce7603 --- /dev/null +++ b/test/W3C_SVG_12_TinyTestSuite_beta/htmlEmbedHarness/struct-svg-202-t.html @@ -0,0 +1,83 @@ + + + + + + + + +SVG 1.2 Tiny test:struct-svg-202-t + + + + + + + + + + +
+ + + + + + + + + + + + +
+

struct-svg-202-t

+
+ + + raster image of struct-svg-202-t +
+
+ + +
+

+ The svg shold look the same on both sides and the text + should read "OK". +

+ +
+ + + diff --git a/test/W3C_SVG_12_TinyTestSuite_beta/htmlEmbedHarness/struct-svg-203-t.html b/test/W3C_SVG_12_TinyTestSuite_beta/htmlEmbedHarness/struct-svg-203-t.html new file mode 100755 index 00000000..b6e29200 --- /dev/null +++ b/test/W3C_SVG_12_TinyTestSuite_beta/htmlEmbedHarness/struct-svg-203-t.html @@ -0,0 +1,97 @@ + + + + + + + + +SVG 1.2 Tiny test:struct-svg-203-t + + + + + + + + + + +
+ + + + + + + + + + + + +
+

struct-svg-203-t

+
+ + + raster image of struct-svg-203-t +
+
+ + +
+

+ This test tests that any <svg> elements that are encountered inside + an <svg> element are ignored, if the user agent supports SVG Tiny 1.2 only. +

+

+ If the user agent can handle SVG 1.1 Basic or Full, then the test has passed + if only the string "This text should be visible if the viewer supports at least SVG 1.1 Basic." + is visible. +

+

+ If the user agent supports only SVG 1.2 Tiny then the test has passed if + the svg element and it's contents have been ignored. Only the string + "This text should be visible if the viewer supports only SVG 1.2 Tiny." should + be visible. +

+

+ If both strings are visible then the test has failed. +

+ +
+ + + diff --git a/test/W3C_SVG_12_TinyTestSuite_beta/htmlEmbedHarness/struct-svg-204-t.html b/test/W3C_SVG_12_TinyTestSuite_beta/htmlEmbedHarness/struct-svg-204-t.html new file mode 100755 index 00000000..1f1d372d --- /dev/null +++ b/test/W3C_SVG_12_TinyTestSuite_beta/htmlEmbedHarness/struct-svg-204-t.html @@ -0,0 +1,83 @@ + + + + + + + + +SVG 1.2 Tiny test:struct-svg-204-t + + + + + + + + + + +
+ + + + + + + + + + + + +
+

struct-svg-204-t

+
+ + + raster image of struct-svg-204-t +
+
+ + +
+

+ This test is passed if nothing is rendered as the SVG root element + contains negative values for the width and height. +

+ +
+ + + diff --git a/test/W3C_SVG_12_TinyTestSuite_beta/htmlEmbedHarness/struct-use-01-t.html b/test/W3C_SVG_12_TinyTestSuite_beta/htmlEmbedHarness/struct-use-01-t.html new file mode 100755 index 00000000..380ebe69 --- /dev/null +++ b/test/W3C_SVG_12_TinyTestSuite_beta/htmlEmbedHarness/struct-use-01-t.html @@ -0,0 +1,81 @@ + + + + + + + + +SVG 1.2 Tiny test:struct-use-01-t + + + + + + + + + + +
+ + + + + + + + + + + + +
+

struct-use-01-t

+
+ + + raster image of struct-use-01-t +
+
+ + +
+

The purpose of this test is to validate proper handling of the use element. In particular, the test checks the proper inheritance of properties through the shadow tree (rather than through the document tree).

+

The test should display various elements in different shades of green. If an element is not displayed in green, but in red fill and/or yellow stroke, then it is in error.

+ +
+ + + diff --git a/test/W3C_SVG_12_TinyTestSuite_beta/htmlEmbedHarness/struct-use-03-t.html b/test/W3C_SVG_12_TinyTestSuite_beta/htmlEmbedHarness/struct-use-03-t.html new file mode 100755 index 00000000..ef7bd523 --- /dev/null +++ b/test/W3C_SVG_12_TinyTestSuite_beta/htmlEmbedHarness/struct-use-03-t.html @@ -0,0 +1,81 @@ + + + + + + + + +SVG 1.2 Tiny test:struct-use-03-t + + + + + + + + + + +
+ + + + + + + + + + + + +
+

struct-use-03-t

+
+ + + raster image of struct-use-03-t +
+
+ + +
+

The purpose of this test is to validate proper handling of the x/y attributes on the use element.

+

The test shows a <use> element displayed on the right. On the left, a group built as described in section 5.6 of the SVG 1.1 specification validates that the <use element is properly processed.

+ +
+ + + diff --git a/test/W3C_SVG_12_TinyTestSuite_beta/htmlEmbedHarness/struct-use-09-t.html b/test/W3C_SVG_12_TinyTestSuite_beta/htmlEmbedHarness/struct-use-09-t.html new file mode 100755 index 00000000..c42659b9 --- /dev/null +++ b/test/W3C_SVG_12_TinyTestSuite_beta/htmlEmbedHarness/struct-use-09-t.html @@ -0,0 +1,85 @@ + + + + + + + + +SVG 1.2 Tiny test:struct-use-09-t + + + + + + + + + + +
+ + + + + + + + + + + + +
+

struct-use-09-t

+
+ + + raster image of struct-use-09-t +
+
+ + +
+

+ This tests a set of 'use' and 'rect' elements inside 'g' elements, with + each referencing the one before. For the test to pass, 5 nested + rectangles with a green stroke must be rendered, and no red rectangles + must be rendered. +

+ +
+ + + diff --git a/test/W3C_SVG_12_TinyTestSuite_beta/htmlEmbedHarness/struct-use-201-t.html b/test/W3C_SVG_12_TinyTestSuite_beta/htmlEmbedHarness/struct-use-201-t.html new file mode 100755 index 00000000..1800e314 --- /dev/null +++ b/test/W3C_SVG_12_TinyTestSuite_beta/htmlEmbedHarness/struct-use-201-t.html @@ -0,0 +1,93 @@ + + + + + + + + +SVG 1.2 Tiny test:struct-use-201-t + + + + + + + + + + +
+ + + + + + + + + + + + +
+

struct-use-201-t

+
+ + + raster image of struct-use-201-t +
+
+ + +
+

+ This test tests reference restrictions on the use element. Each of the 5 different + restrictions is tested. +

+

+ A compliant SVG Tiny 1.2 user agent must treat each of the invalid IRI:s as if the xlink:href + attribute hadn't been specified, which is the same as disabling rendering of the use element + in question. Thus for the test to pass none of the content that the use elements try to reference + must be visible, the end result should be 5 empty (white) rects. +

+

+ For a user agent that handles at least SVG 1.1 Basic the testcase has still passed if the referenced + content in the rect that is labelled "B" is visible since this is allowed for 1.1. +

+ +
+ + + diff --git a/test/W3C_SVG_12_TinyTestSuite_beta/htmlEmbedHarness/struct-use-202-t.html b/test/W3C_SVG_12_TinyTestSuite_beta/htmlEmbedHarness/struct-use-202-t.html new file mode 100755 index 00000000..31d1371e --- /dev/null +++ b/test/W3C_SVG_12_TinyTestSuite_beta/htmlEmbedHarness/struct-use-202-t.html @@ -0,0 +1,94 @@ + + + + + + + + +SVG 1.2 Tiny test:struct-use-202-t + + + + + + + + + + +
+ + + + + + + + + + + + +
+

struct-use-202-t

+
+ + + raster image of struct-use-202-t +
+
+ + +
+

+ This test tests the reference restriction B on the use element. +

+

+ A compliant SVG Tiny 1.2 user agent must treat each of the invalid IRI:s as if the xlink:href + attribute hadn't been specified, which is the same as disabling rendering of the use element + in question. Thus for the test to pass the content that the use element tries to reference + must be invisible, the end result should be an empty (white) rect. +

+

+ For a user agent that handles at least SVG 1.1 Basic the testcase has still passed if the referenced + content in the rect that is labelled "B" is visible since this is allowed for 1.1. + If the script in the external resource is executed then the color of the rect will be green. + If not then the rect will be red. +

+ +
+ + + diff --git a/test/W3C_SVG_12_TinyTestSuite_beta/htmlEmbedHarness/struct-use-203-t.html b/test/W3C_SVG_12_TinyTestSuite_beta/htmlEmbedHarness/struct-use-203-t.html new file mode 100755 index 00000000..f3dbce39 --- /dev/null +++ b/test/W3C_SVG_12_TinyTestSuite_beta/htmlEmbedHarness/struct-use-203-t.html @@ -0,0 +1,80 @@ + + + + + + + + +SVG 1.2 Tiny test:struct-use-203-t + + + + + + + + + + +
+ + + + + + + + + + + + +
+

struct-use-203-t

+
+ + + raster image of struct-use-203-t +
+
+ + +
+

The intent of the file is to determine if the UA supports references to external SVG fragments. To pass this test, the UA agent must display a total of 8 graphical primitives (2 rectangles, 2 circles, 2 ellipses and 2 triangles). For each object, the UA should display a semi transparent duplicate copy at an offset position. See referenced image.

+ +
+ + + diff --git a/test/W3C_SVG_12_TinyTestSuite_beta/htmlEmbedHarness/struct-use-204-t.html b/test/W3C_SVG_12_TinyTestSuite_beta/htmlEmbedHarness/struct-use-204-t.html new file mode 100755 index 00000000..478f999e --- /dev/null +++ b/test/W3C_SVG_12_TinyTestSuite_beta/htmlEmbedHarness/struct-use-204-t.html @@ -0,0 +1,80 @@ + + + + + + + + +SVG 1.2 Tiny test:struct-use-204-t + + + + + + + + + + +
+ + + + + + + + + + + + +
+

struct-use-204-t

+
+ + + raster image of struct-use-204-t +
+
+ + +
+

The intent of the file is to determine if the UA supports references to external SVG fragments. To pass this test, the UA agent must display a total of 8 graphical primitives (2 rectangles, 2 circles, 2 ellipses and 2 triangles). For each object, the UA should display a semi-transparent duplicate copy at an offset position. See referenced image.

+ +
+ + + diff --git a/test/W3C_SVG_12_TinyTestSuite_beta/htmlEmbedHarness/struct-use-205-t.html b/test/W3C_SVG_12_TinyTestSuite_beta/htmlEmbedHarness/struct-use-205-t.html new file mode 100755 index 00000000..6eeabdec --- /dev/null +++ b/test/W3C_SVG_12_TinyTestSuite_beta/htmlEmbedHarness/struct-use-205-t.html @@ -0,0 +1,105 @@ + + + + + + + + +SVG 1.2 Tiny test:struct-use-205-t + + + + + + + + + + +
+ + + + + + + + + + + + +
+

struct-use-205-t

+
+ + + raster image of struct-use-205-t +
+
+ + +
+

+ This test checks some aspects of the SVGElementInstance with regards to events. +

+

+ Four blue rects should be visible at first. To run the test each rect must be clicked a minimum of two times. Once + to run the basic test, and once to verify that the event handler was removed properly. The test has passed if after + clicking all the rects two times or more there are four green rects with the word "Passed" on them. If anything red + is visible or the text on any of the rects say "Failed" then the test has failed. +

+

+ The top-left rect checks that correspondingUseElement and correspondingElement are returning the correct values, and + also that the currentTarget isn't the same as target here. +

+

+ The top-right rect checks that events bubble the correct way when SVGElementInstance is involved. It's almost the same + as the first subtest, but uses another 'use' element. +

+

+ The bottom-left rect doesn't use 'use' elements at all, it's to illustrate event bubbling in normal trees as compared + to SVGElementInstance trees. +

+

+ The bottom-right rect uses nested 'use' elements. The event handler 'nestedhandler' should be executed first, and will + check some aspects of nested use elements. It will modify what it references, and that is checked in the 'h4' event + handler. +

+ +
+ + + diff --git a/test/W3C_SVG_12_TinyTestSuite_beta/htmlEmbedHarness/struct-use-206-t.html b/test/W3C_SVG_12_TinyTestSuite_beta/htmlEmbedHarness/struct-use-206-t.html new file mode 100755 index 00000000..6ef0ce21 --- /dev/null +++ b/test/W3C_SVG_12_TinyTestSuite_beta/htmlEmbedHarness/struct-use-206-t.html @@ -0,0 +1,82 @@ + + + + + + + + +SVG 1.2 Tiny test:struct-use-206-t + + + + + + + + + + +
+ + + + + + + + + + + + +
+

struct-use-206-t

+
+ + + raster image of struct-use-206-t +
+
+ + +
+

+ If the user agent supports referencing external content you should see three green rects. +

+ +
+ + + diff --git a/test/W3C_SVG_12_TinyTestSuite_beta/htmlEmbedHarness/struct-use-207-t.html b/test/W3C_SVG_12_TinyTestSuite_beta/htmlEmbedHarness/struct-use-207-t.html new file mode 100755 index 00000000..87b6b911 --- /dev/null +++ b/test/W3C_SVG_12_TinyTestSuite_beta/htmlEmbedHarness/struct-use-207-t.html @@ -0,0 +1,96 @@ + + + + + + + + +SVG 1.2 Tiny test:struct-use-207-t + + + + + + + + + + +
+ + + + + + + + + + + + +
+

struct-use-207-t

+
+ + + raster image of struct-use-207-t +
+
+ + +
+

+ This file is intented to test the computed values in external + references. Both files (referencing and referenced) define similar + colors/gradients via 'color', 'linearGradient' and 'radialGradient'. + The ids of those definitions are the same but the actual appearance are + different. These definitions are used to test the property inheritance + feature of SVG. +

+

+ The top left rectangle should be filled with the blue linear gradient + since the 'use' has a specified value defined in the 'defs' section. + The top right rectangle is forestgreen since the 'use' has a computed + value. The bottom left rectangle is also forestgreen since the fill is + not inherited from the referenced element's original parent. The bottom + right rectangle is filled with the orange radial gradient since the + computed value is given by the CSS cascade. +

+ +
+ + + diff --git a/test/W3C_SVG_12_TinyTestSuite_beta/htmlEmbedHarness/struct-use-208-t.html b/test/W3C_SVG_12_TinyTestSuite_beta/htmlEmbedHarness/struct-use-208-t.html new file mode 100755 index 00000000..4dbe0806 --- /dev/null +++ b/test/W3C_SVG_12_TinyTestSuite_beta/htmlEmbedHarness/struct-use-208-t.html @@ -0,0 +1,86 @@ + + + + + + + + +SVG 1.2 Tiny test:struct-use-208-t + + + + + + + + + + +
+ + + + + + + + + + + + +
+

struct-use-208-t

+
+ + + raster image of struct-use-208-t +
+
+ + +
+

+ Tests the reference a group of shapes with the use element. +

+

+ The test is passed if two green circles with a black border are + rendered. +

+ +
+ + + diff --git a/test/W3C_SVG_12_TinyTestSuite_beta/htmlEmbedHarness/struct-use-209-t.html b/test/W3C_SVG_12_TinyTestSuite_beta/htmlEmbedHarness/struct-use-209-t.html new file mode 100755 index 00000000..da7fda22 --- /dev/null +++ b/test/W3C_SVG_12_TinyTestSuite_beta/htmlEmbedHarness/struct-use-209-t.html @@ -0,0 +1,88 @@ + + + + + + + + +SVG 1.2 Tiny test:struct-use-209-t + + + + + + + + + + +
+ + + + + + + + + + + + +
+

struct-use-209-t

+
+ + + raster image of struct-use-209-t +
+
+ + +
+

+ Tests circular references. +

+

+ For this test to pass the green text "This text should be visible." must + be rendered. It is not an error if graphics are visible in addition to + the green text. It is not a requirement that graphics be rendered in + addition to the green text. +

+ +
+ + + diff --git a/test/W3C_SVG_12_TinyTestSuite_beta/htmlEmbedHarness/struct-use-recursion-01-t.html b/test/W3C_SVG_12_TinyTestSuite_beta/htmlEmbedHarness/struct-use-recursion-01-t.html new file mode 100755 index 00000000..48eb2a92 --- /dev/null +++ b/test/W3C_SVG_12_TinyTestSuite_beta/htmlEmbedHarness/struct-use-recursion-01-t.html @@ -0,0 +1,82 @@ + + + + + + + + +SVG 1.2 Tiny test:struct-use-recursion-01-t + + + + + + + + + + +
+ + + + + + + + + + + + +
+

struct-use-recursion-01-t

+
+ + + raster image of struct-use-recursion-01-t +
+
+ + +
+

+ This test checks for recursion in 'use' elements. The passing conditions are that the browser does not crash, and that at least one orange circle, and one yellow circle, and a line of green text are rendered. + Also, on an implementation-specific basis, additional orange and yellow circles with a dashed gray stroke may or may not be rendered, depending upon when and how the implementation detects the circular reference, + with the number of dashed circles of a given color indicating now many times the level of recurrsion permitted by the implementation. +

+ +
+ + + diff --git a/test/W3C_SVG_12_TinyTestSuite_beta/htmlEmbedHarness/struct-use-recursion-02-t.html b/test/W3C_SVG_12_TinyTestSuite_beta/htmlEmbedHarness/struct-use-recursion-02-t.html new file mode 100755 index 00000000..c6058008 --- /dev/null +++ b/test/W3C_SVG_12_TinyTestSuite_beta/htmlEmbedHarness/struct-use-recursion-02-t.html @@ -0,0 +1,85 @@ + + + + + + + + +SVG 1.2 Tiny test:struct-use-recursion-02-t + + + + + + + + + + +
+ + + + + + + + + + + + +
+

struct-use-recursion-02-t

+
+ + + raster image of struct-use-recursion-02-t +
+
+ + +
+

+ This test checks for recursion in 'use' elements with external references. The passing conditions are that the browser does not crash, and that the green test is rendered. The passing conditions are that the + browser does not crash, and that at least one orange circle and a line of green text are rendered. Also, on an implementation-specific basis, additional orange and yellow circles with a dashed gray stroke may or may + not be rendered, depending upon when and how the implementation detects the circular reference, with the number of dashed circles of a given color indicating now many times the level of recurrsion permitted by the implementation.. +

+

+ This test depends upon 'struct-use-recursion-03-t.svg'. +

+ +
+ + + diff --git a/test/W3C_SVG_12_TinyTestSuite_beta/htmlEmbedHarness/struct-use-recursion-03-t.html b/test/W3C_SVG_12_TinyTestSuite_beta/htmlEmbedHarness/struct-use-recursion-03-t.html new file mode 100755 index 00000000..84cfffe5 --- /dev/null +++ b/test/W3C_SVG_12_TinyTestSuite_beta/htmlEmbedHarness/struct-use-recursion-03-t.html @@ -0,0 +1,85 @@ + + + + + + + + +SVG 1.2 Tiny test:struct-use-recursion-03-t + + + + + + + + + + +
+ + + + + + + + + + + + +
+

struct-use-recursion-03-t

+
+ + + raster image of struct-use-recursion-03-t +
+
+ + +
+

+ This test checks for recursion in 'use' elements with external references. The passing conditions are that the browser does not crash, and that at least one yellow circle and a line of green text are rendered. + Also, on an implementation-specific basis, additional orange and yellow circles with a dashed gray stroke may or may not be rendered, depending upon when and how the implementation detects the circular reference, + with the number of dashed circles of a given color indicating now many times the level of recurrsion permitted by the implementation. +

+

+ This test depends upon 'struct-use-recursion-02-t.svg'. It differs from 'struct-use-recursion-02-t.svg' in that the 'use' element comes before the 'circle' element. +

+ +
+ + + diff --git a/test/W3C_SVG_12_TinyTestSuite_beta/htmlEmbedHarness/styling-inherit-01-t.html b/test/W3C_SVG_12_TinyTestSuite_beta/htmlEmbedHarness/styling-inherit-01-t.html new file mode 100755 index 00000000..f2a497e9 --- /dev/null +++ b/test/W3C_SVG_12_TinyTestSuite_beta/htmlEmbedHarness/styling-inherit-01-t.html @@ -0,0 +1,84 @@ + + + + + + + + +SVG 1.2 Tiny test:styling-inherit-01-t + + + + + + + + + + +
+ + + + + + + + + + + + +
+

styling-inherit-01-t

+
+ + + raster image of styling-inherit-01-t +
+
+ + +
+

Verify property inheritance as required by 6.7 "Property inheritance".

+

For this test to pass:

+

At the center right, there is an ellipse. The fill color is not specified on that element but on its parent. The ellipse must be filled a solid yellow

+

At the top left, an oval shape is formed from a rectangle with a radial gradient. The color of the middle stop uses the keyword 'inherit' and thus takes its parent's value of green, giving a yellow, green, white gradient from the center to the edge.

+

At the bottom left, an oval shape is formed from a rectangle with a radial gradient. The color of the middle stop uses the value 'currentColor' and thus takes the value its parent's color property, a dark red, giving a yellow, dark red, white gradient from the center to the edge

+ +
+ + + diff --git a/test/W3C_SVG_12_TinyTestSuite_beta/htmlEmbedHarness/styling-inherit-02-t.html b/test/W3C_SVG_12_TinyTestSuite_beta/htmlEmbedHarness/styling-inherit-02-t.html new file mode 100755 index 00000000..8d09407d --- /dev/null +++ b/test/W3C_SVG_12_TinyTestSuite_beta/htmlEmbedHarness/styling-inherit-02-t.html @@ -0,0 +1,107 @@ + + + + + + + + +SVG 1.2 Tiny test:styling-inherit-02-t + + + + + + + + + + +
+ + + + + + + + + + + + +
+

styling-inherit-02-t

+
+ + + raster image of styling-inherit-02-t +
+
+ + +
+

+ Tests inheritance, animation and effect of display:none on stop-color. Three + rectangles are displayed. After a five second animation has completed, + the test is passed if all three rectangles display a green to blue gradient. +

+

+ The stop-color property is not inherited by default, but the value 'inherit' forces it to + inherit the current animated value from its parent. +

+

+ In the first subtest, the value of the stop-color property on the second stop is + 'inherit'. Its parent, linearGradient with id "MyGradient" also has stop-color set to + "inherit". The parent of this gradient is the group with id "g2" and the property + stop-color is animated on that group. Thus, after the animation finishes, + the inherited value is blue. +

+

+ In the second subtest, the value of the stop-color property on the second stop is + 'currentColor'. Its parent, linearGradient with id "MyGradient" does not have the + color property set, but the property is inherited, so it inherits from the + parent - the group with id "g2". The property color is animated on that group. + Thus, after the animation finishes, the inherited value is again blue. +

+

+ The third subtest is not animated. It checks that, per specification, the properties + on a gradient are inherited from the point of definition, not the point of use. An + implementation which does this incorrectly will show a green to red fill. +

+ +
+ + + diff --git a/test/W3C_SVG_12_TinyTestSuite_beta/htmlEmbedHarness/styling-inherit-03-t.html b/test/W3C_SVG_12_TinyTestSuite_beta/htmlEmbedHarness/styling-inherit-03-t.html new file mode 100755 index 00000000..4306446d --- /dev/null +++ b/test/W3C_SVG_12_TinyTestSuite_beta/htmlEmbedHarness/styling-inherit-03-t.html @@ -0,0 +1,126 @@ + + + + + + + + +SVG 1.2 Tiny test:styling-inherit-03-t + + + + + + + + + + +
+ + + + + + + + + + + + +
+

styling-inherit-03-t

+
+ + + raster image of styling-inherit-03-t +
+
+ + +
+

+ Tests inheritance, animation, currentColor on solid-color. Four + rectangles are displayed. After a five second animation has completed, + the test is passed if all four rectangles display a solid green fill. +

+

+ Note: The solid-color property is not inherited by default, but the value 'inherit' forces it to + inherit the current animated value from its parent. +

+ +

+ In the first subtest, the rectangle has a solid fill. + On the solidColor element, the value of the solid-color property is + 'inherit'. Its parent, a group, also has solid-color set to + "inherit". The parent of this group is another group, the property + solid-color is green on it. +

+

+ In the second subtest, the rectangle has a solid fill. + On the solidColor element, the value of the solid-color property is + 'inherit'. Its parent has solid-color set to + "inherit". The parent of this group is another group whose solid-color + property is yellow. + The solid-color property on the solidColor element is + animated from yellow to green. Thus, after the animation finishes, + the inherited value is green. +

+

+ In the third subtest, the rectangle has a solid fill. + On the solidColor element, the value of the solid-color property is + 'inherit'. Its parent has solid-color set to + "inherit". The parent of this group is another group whose solid-color + property is yellow. + The solid-color property on the outermost group is + animated from yellow to green. Thus, after the animation finishes, + the inherited value is green. +

+

+ In the fourth subtest, the rectangle has a solid fill. + On the solidColor element, the value of the solid-color property is + 'currentColor'. Its parent has color set to + "inherit". The parent of this group is another group whose color + property is yellow. + The color property on theoutermost group is + animated from yellow to green. Thus, after the animation finishes, + the inherited value of color, and thus the value used by currentColor, is green. +

+ +
+ + + diff --git a/test/W3C_SVG_12_TinyTestSuite_beta/htmlEmbedHarness/styling-pres-01-t.html b/test/W3C_SVG_12_TinyTestSuite_beta/htmlEmbedHarness/styling-pres-01-t.html new file mode 100755 index 00000000..072c90f3 --- /dev/null +++ b/test/W3C_SVG_12_TinyTestSuite_beta/htmlEmbedHarness/styling-pres-01-t.html @@ -0,0 +1,85 @@ + + + + + + + + +SVG 1.2 Tiny test:styling-pres-01-t + + + + + + + + + + +
+ + + + + + + + + + + + +
+

styling-pres-01-t

+
+ + + raster image of styling-pres-01-t +
+
+ + +
+

Check that !important in presentation attribute is an unsupported attribute value. To pass, two rectangles should be drawn. A black filled rectangle and a lime green stroked rectangle.

+

+ A fill attribute is set to red with !important. This is an unsupported attribute value, + consequently the fill attribute should be the lacuna value, which is black. Therefore, to pass, the rectangle should be filled with black. +

+

A lime green border is also drawn, to check that rendering continues after the element with the unsupported value.

+ +
+ + + diff --git a/test/W3C_SVG_12_TinyTestSuite_beta/htmlEmbedHarness/text-align-01-t.html b/test/W3C_SVG_12_TinyTestSuite_beta/htmlEmbedHarness/text-align-01-t.html new file mode 100755 index 00000000..e3ca062c --- /dev/null +++ b/test/W3C_SVG_12_TinyTestSuite_beta/htmlEmbedHarness/text-align-01-t.html @@ -0,0 +1,81 @@ + + + + + + + + +SVG 1.2 Tiny test:text-align-01-t + + + + + + + + + + +
+ + + + + + + + + + + + +
+

text-align-01-t

+
+ + + raster image of text-align-01-t +
+
+ + +
+

Test 'text-anchor' property (horizontal).

+

The three lines test the three values for property 'text-anchor': start, middle and end.

+ +
+ + + diff --git a/test/W3C_SVG_12_TinyTestSuite_beta/htmlEmbedHarness/text-align-07-t.html b/test/W3C_SVG_12_TinyTestSuite_beta/htmlEmbedHarness/text-align-07-t.html new file mode 100755 index 00000000..b2c94c1c --- /dev/null +++ b/test/W3C_SVG_12_TinyTestSuite_beta/htmlEmbedHarness/text-align-07-t.html @@ -0,0 +1,90 @@ + + + + + + + + +SVG 1.2 Tiny test:text-align-07-t + + + + + + + + + + +
+ + + + + + + + + + + + +
+

text-align-07-t

+
+ + + raster image of text-align-07-t +
+
+ + +
+

Test horizontal baselines across script and font size changes.

+

+ The dominant baseline should be alphabetic, so the 'ab' will be sitting + on the blue line, the japanese glyphs will be on the ideographic + baseline and 'ण' is a devangari character and will use the hanging + baseline. The smaller versions of the characters should be aligned to + the same baselines. So 'ab' on the blue line, the ideographic chars + slightly below the line and the devangari should be hanging from the + hanging baseline. +

+

Original test authored by Rodney Hardy at CISRA.

+ +
+ + + diff --git a/test/W3C_SVG_12_TinyTestSuite_beta/htmlEmbedHarness/text-align-08-t.html b/test/W3C_SVG_12_TinyTestSuite_beta/htmlEmbedHarness/text-align-08-t.html new file mode 100755 index 00000000..a96bbdec --- /dev/null +++ b/test/W3C_SVG_12_TinyTestSuite_beta/htmlEmbedHarness/text-align-08-t.html @@ -0,0 +1,95 @@ + + + + + + + + +SVG 1.2 Tiny test:text-align-08-t + + + + + + + + + + +
+ + + + + + + + + + + + +
+

text-align-08-t

+
+ + + raster image of text-align-08-t +
+
+ + +
+

+ Test horizontal baselines across script and font size changes. It uses + an SVG Font, where the Latin letter "a" is a rectangle, the Japanese + letter "犜" is an upward-pointing triangle, and the Devanagari letter + "ण" is a downward-pointing triangle. +

+

+ The dominant baseline should be alphabetic, so the 'a' will be sitting + on the alphabetic (blue) line, the japanese glyph (upward pointing + triangle) will be aligned on the ideographic (red) baseline and 'ण' is + a devangari character (downward pointing triangle) and will use the + hanging baseline (green). The smaller versions of the characters should + be aligned to the same baselines as the respective larger characters, + so all like shapes align to the same baseline.. +

+

Original test authored by Rodney Hardy at CISRA.

+ +
+ + + diff --git a/test/W3C_SVG_12_TinyTestSuite_beta/htmlEmbedHarness/text-align-201-t.html b/test/W3C_SVG_12_TinyTestSuite_beta/htmlEmbedHarness/text-align-201-t.html new file mode 100755 index 00000000..3365cd7f --- /dev/null +++ b/test/W3C_SVG_12_TinyTestSuite_beta/htmlEmbedHarness/text-align-201-t.html @@ -0,0 +1,96 @@ + + + + + + + + +SVG 1.2 Tiny test:text-align-201-t + + + + + + + + + + +
+ + + + + + + + + + + + +
+

text-align-201-t

+
+ + + raster image of text-align-201-t +
+
+ + +
+

+ Test for viewer capability to handle the basics of the 'textAnchor' + alignment property for 'text' when it has child elements. +

+

+ The first line from the top tests that a 'tspan' element is rendered + after the text content of the parent 'text' element. +

+

+ The second line from the top tests that all the text content, including + that of child 'tspan' elements, is taken into account when positioning + the text with respect to its alignment point. +

+

+ The rendered picture should match the reference image, except for + possible variations in the text fonts and layout (per CSS2 rules). +

+ +
+ + + diff --git a/test/W3C_SVG_12_TinyTestSuite_beta/htmlEmbedHarness/text-align-202-t.html b/test/W3C_SVG_12_TinyTestSuite_beta/htmlEmbedHarness/text-align-202-t.html new file mode 100755 index 00000000..4294bbe6 --- /dev/null +++ b/test/W3C_SVG_12_TinyTestSuite_beta/htmlEmbedHarness/text-align-202-t.html @@ -0,0 +1,83 @@ + + + + + + + + +SVG 1.2 Tiny test:text-align-202-t + + + + + + + + + + +
+ + + + + + + + + + + + +
+

text-align-202-t

+
+ + + raster image of text-align-202-t +
+
+ + +
+

This test checks for text alignment on right-to-left text.

+

The first subtest has the word for 'Egypt', مص

+

The second subtest has the hebrew text פעילות

+

Text-anchor values of start are black, middle are maroon and end are dark blue.

+ +
+ + + diff --git a/test/W3C_SVG_12_TinyTestSuite_beta/htmlEmbedHarness/text-area-201-t.html b/test/W3C_SVG_12_TinyTestSuite_beta/htmlEmbedHarness/text-area-201-t.html new file mode 100755 index 00000000..3b3a9682 --- /dev/null +++ b/test/W3C_SVG_12_TinyTestSuite_beta/htmlEmbedHarness/text-area-201-t.html @@ -0,0 +1,86 @@ + + + + + + + + +SVG 1.2 Tiny test:text-area-201-t + + + + + + + + + + +
+ + + + + + + + + + + + +
+

text-area-201-t

+
+ + + raster image of text-area-201-t +
+
+ + +
+

Testing 'textArea' with fixed 'width' and 'height'

+

+ Lines should break at character boundaries if there is not enough room to perform word breaks. + The 'height' of the first 'textArea' below (top-right) is less than that of the characters + so nothing should appear. +

+

The text is taken from "The Lost Princess of Oz" by Baum, L. Frank (Lyman Frank), 1856-1919

+ +
+ + + diff --git a/test/W3C_SVG_12_TinyTestSuite_beta/htmlEmbedHarness/text-area-202-t.html b/test/W3C_SVG_12_TinyTestSuite_beta/htmlEmbedHarness/text-area-202-t.html new file mode 100755 index 00000000..5829e3ec --- /dev/null +++ b/test/W3C_SVG_12_TinyTestSuite_beta/htmlEmbedHarness/text-area-202-t.html @@ -0,0 +1,92 @@ + + + + + + + + +SVG 1.2 Tiny test:text-area-202-t + + + + + + + + + + +
+ + + + + + + + + + + + +
+

text-area-202-t

+
+ + + raster image of text-area-202-t +
+
+ + +
+

Testing 'textArea' with fixed 'width' and 'height'

+

+ Three 'textArea' elements contain words which are increasing in 'font-size'. + + To pass, no characters should appear in the top-right box since the 'height' of the 'textArea' is less + than that of the characters. + + There should be no characters outside of the border of the larger bottom-left box. + + In the left-side box, there may be characters outside of the border, depending on whether + the implementation breaks words or not. +

+

The text is taken from "The Lost Princess of Oz" by Baum, L. Frank (Lyman Frank), 1856-1919

+ +
+ + + diff --git a/test/W3C_SVG_12_TinyTestSuite_beta/htmlEmbedHarness/text-area-203-t.html b/test/W3C_SVG_12_TinyTestSuite_beta/htmlEmbedHarness/text-area-203-t.html new file mode 100755 index 00000000..efc9b8e5 --- /dev/null +++ b/test/W3C_SVG_12_TinyTestSuite_beta/htmlEmbedHarness/text-area-203-t.html @@ -0,0 +1,93 @@ + + + + + + + + +SVG 1.2 Tiny test:text-area-203-t + + + + + + + + + + +
+ + + + + + + + + + + + +
+

text-area-203-t

+
+ + + raster image of text-area-203-t +
+
+ + +
+

TextArea with Animated Width and Height

+

+ A visible rectangle is drawn the same size as the textArea. The text + contained in the textArea should automatically wrap. +

+

+ The textArea starts off as a 24x 24 square and is animated down to full + size. The text should continually rewrap as the textArea increases in + size. +

+

+ The text is taken from "The Lost Princess of Oz" by Baum, L. Frank + (Lyman Frank), 1856-1919 +

+ +
+ + + diff --git a/test/W3C_SVG_12_TinyTestSuite_beta/htmlEmbedHarness/text-area-204-t.html b/test/W3C_SVG_12_TinyTestSuite_beta/htmlEmbedHarness/text-area-204-t.html new file mode 100755 index 00000000..5af5cc71 --- /dev/null +++ b/test/W3C_SVG_12_TinyTestSuite_beta/htmlEmbedHarness/text-area-204-t.html @@ -0,0 +1,82 @@ + + + + + + + + +SVG 1.2 Tiny test:text-area-204-t + + + + + + + + + + +
+ + + + + + + + + + + + +
+

text-area-204-t

+
+ + + raster image of text-area-204-t +
+
+ + +
+

TextArea with Animated Font-size

+

The font-size is animated from 32 to 8.5 - text should continually rewrap as the font-size decreases in size.

+

The text is taken from "The Lost Princess of Oz" by Baum, L. Frank (Lyman Frank), 1856-1919

+ +
+ + + diff --git a/test/W3C_SVG_12_TinyTestSuite_beta/htmlEmbedHarness/text-area-205-t.html b/test/W3C_SVG_12_TinyTestSuite_beta/htmlEmbedHarness/text-area-205-t.html new file mode 100755 index 00000000..26d0fd5c --- /dev/null +++ b/test/W3C_SVG_12_TinyTestSuite_beta/htmlEmbedHarness/text-area-205-t.html @@ -0,0 +1,82 @@ + + + + + + + + +SVG 1.2 Tiny test:text-area-205-t + + + + + + + + + + +
+ + + + + + + + + + + + +
+

text-area-205-t

+
+ + + raster image of text-area-205-t +
+
+ + +
+

TextArea with Height Set to Auto

+

Text should wrap at the right-hand margin and continue to the end of the paragraph.

+

The text is taken from "The Lost Princess of Oz" by Baum, L. Frank (Lyman Frank), 1856-1919

+ +
+ + + diff --git a/test/W3C_SVG_12_TinyTestSuite_beta/htmlEmbedHarness/text-area-206-t.html b/test/W3C_SVG_12_TinyTestSuite_beta/htmlEmbedHarness/text-area-206-t.html new file mode 100755 index 00000000..1482aa41 --- /dev/null +++ b/test/W3C_SVG_12_TinyTestSuite_beta/htmlEmbedHarness/text-area-206-t.html @@ -0,0 +1,81 @@ + + + + + + + + +SVG 1.2 Tiny test:text-area-206-t + + + + + + + + + + +
+ + + + + + + + + + + + +
+

text-area-206-t

+
+ + + raster image of text-area-206-t +
+
+ + +
+

TextArea with Line-increment and Tbreak

+

The blue lines should appear below each of the five text lines in the 'textArea'.

+ +
+ + + diff --git a/test/W3C_SVG_12_TinyTestSuite_beta/htmlEmbedHarness/text-area-207-t.html b/test/W3C_SVG_12_TinyTestSuite_beta/htmlEmbedHarness/text-area-207-t.html new file mode 100755 index 00000000..bd86ef1a --- /dev/null +++ b/test/W3C_SVG_12_TinyTestSuite_beta/htmlEmbedHarness/text-area-207-t.html @@ -0,0 +1,82 @@ + + + + + + + + +SVG 1.2 Tiny test:text-area-207-t + + + + + + + + + + +
+ + + + + + + + + + + + +
+

text-area-207-t

+
+ + + raster image of text-area-207-t +
+
+ + +
+

TextArea Transformed by Rotation

+

The three 'textArea's should be rotated by 35, 90 and 180 degrees.

+

The text is taken from "The Lost Princess of Oz" by Baum, L. Frank (Lyman Frank), 1856-1919

+ +
+ + + diff --git a/test/W3C_SVG_12_TinyTestSuite_beta/htmlEmbedHarness/text-area-208-t.html b/test/W3C_SVG_12_TinyTestSuite_beta/htmlEmbedHarness/text-area-208-t.html new file mode 100755 index 00000000..ff1f11a1 --- /dev/null +++ b/test/W3C_SVG_12_TinyTestSuite_beta/htmlEmbedHarness/text-area-208-t.html @@ -0,0 +1,90 @@ + + + + + + + + +SVG 1.2 Tiny test:text-area-208-t + + + + + + + + + + +
+ + + + + + + + + + + + +
+

text-area-208-t

+
+ + + raster image of text-area-208-t +
+
+ + +
+

TextArea with Both Width and Height Set to Auto

+

+ The eight lines of numbers should not wrap. Each line is terminated by a tbreak element. + They have numbers from 0 to 50. Each line increases the 'font-size' by 25%. + The 'line-increment' attribute is not used. +

+

+ This test is passed if eight lines of numbers are rendered and not + wrapped to a new line. Numbers displayed will decrease with each line. + Every line must begin with number 0. +

+ +
+ + + diff --git a/test/W3C_SVG_12_TinyTestSuite_beta/htmlEmbedHarness/text-area-209-t.html b/test/W3C_SVG_12_TinyTestSuite_beta/htmlEmbedHarness/text-area-209-t.html new file mode 100755 index 00000000..a1b8f006 --- /dev/null +++ b/test/W3C_SVG_12_TinyTestSuite_beta/htmlEmbedHarness/text-area-209-t.html @@ -0,0 +1,84 @@ + + + + + + + + +SVG 1.2 Tiny test:text-area-209-t + + + + + + + + + + +
+ + + + + + + + + + + + +
+

text-area-209-t

+
+ + + raster image of text-area-209-t +
+
+ + +
+

TextArea Testing Word Breaks and Tbreak

+

+ Each word should break onto a new line. The left-hand 'textArea' has no 'tbreak' elements + while the right-hand one uses 'tbreak' after each word. Both should appear the same. +

+ +
+ + + diff --git a/test/W3C_SVG_12_TinyTestSuite_beta/htmlEmbedHarness/text-area-210-t.html b/test/W3C_SVG_12_TinyTestSuite_beta/htmlEmbedHarness/text-area-210-t.html new file mode 100755 index 00000000..ac761c5a --- /dev/null +++ b/test/W3C_SVG_12_TinyTestSuite_beta/htmlEmbedHarness/text-area-210-t.html @@ -0,0 +1,81 @@ + + + + + + + + +SVG 1.2 Tiny test:text-area-210-t + + + + + + + + + + +
+ + + + + + + + + + + + +
+

text-area-210-t

+
+ + + raster image of text-area-210-t +
+
+ + +
+

Testing "tbreak"

+

The gap between the lines should be as described

+ +
+ + + diff --git a/test/W3C_SVG_12_TinyTestSuite_beta/htmlEmbedHarness/text-area-211-t.html b/test/W3C_SVG_12_TinyTestSuite_beta/htmlEmbedHarness/text-area-211-t.html new file mode 100755 index 00000000..63a89478 --- /dev/null +++ b/test/W3C_SVG_12_TinyTestSuite_beta/htmlEmbedHarness/text-area-211-t.html @@ -0,0 +1,89 @@ + + + + + + + + +SVG 1.2 Tiny test:text-area-211-t + + + + + + + + + + +
+ + + + + + + + + + + + +
+

text-area-211-t

+
+ + + raster image of text-area-211-t +
+
+ + +
+

TextArea with Line-increment and Tbreak

+

Testing 'tbreak' while animating the 'font-size' attribute in 'tspan' in 'textArea'

+

+ This test defines one 'textArea' element with a 'tspan' child. The 'tspan' has as red fill and also an animation + which animates the font-size from 0 to 20. The tspan element has a tbreak element before and after it. +

+

+ To pass, the red text should both start and end on a new line, even when the font-size of the tspan is animated. +

+

The text is taken from "The Lost Princess of Oz" by Baum, L. Frank (Lyman Frank), 1856-1919

+ +
+ + + diff --git a/test/W3C_SVG_12_TinyTestSuite_beta/htmlEmbedHarness/text-area-213-t.html b/test/W3C_SVG_12_TinyTestSuite_beta/htmlEmbedHarness/text-area-213-t.html new file mode 100755 index 00000000..8873af85 --- /dev/null +++ b/test/W3C_SVG_12_TinyTestSuite_beta/htmlEmbedHarness/text-area-213-t.html @@ -0,0 +1,89 @@ + + + + + + + + +SVG 1.2 Tiny test:text-area-213-t + + + + + + + + + + +
+ + + + + + + + + + + + +
+

text-area-213-t

+
+ + + raster image of text-area-213-t +
+
+ + +
+

TextArea with Animated Width and Height

+

+ A visible rectangle is drawn the same size as the textArea. The text contained in the textArea should + automatically wrap. +

+

+ The textArea starts off as a 24x 24 square and is animated down to full size. The text should continually + rewrap as the textArea increases in size. +

+

The text is taken from "The Lost Princess of Oz" by Baum, L. Frank (Lyman Frank), 1856-1919

+ +
+ + + diff --git a/test/W3C_SVG_12_TinyTestSuite_beta/htmlEmbedHarness/text-area-220-t.html b/test/W3C_SVG_12_TinyTestSuite_beta/htmlEmbedHarness/text-area-220-t.html new file mode 100755 index 00000000..4eba347f --- /dev/null +++ b/test/W3C_SVG_12_TinyTestSuite_beta/htmlEmbedHarness/text-area-220-t.html @@ -0,0 +1,83 @@ + + + + + + + + +SVG 1.2 Tiny test:text-area-220-t + + + + + + + + + + +
+ + + + + + + + + + + + +
+

text-area-220-t

+
+ + + raster image of text-area-220-t +
+
+ + +
+

Testing "textArea"

+

A visible rectangle is drawn the same size as the textArea. The text contained in the textArea should automatically wrap.

+

The textArea starts off as a 24x 24 square and is animated down to full size. The text should continually rewrap as the textArea increases in size.

+

The text is taken from "The Lost Princess of Oz" by Baum, L. Frank (Lyman Frank), 1856-1919

+ +
+ + + diff --git a/test/W3C_SVG_12_TinyTestSuite_beta/htmlEmbedHarness/text-area-221-t.html b/test/W3C_SVG_12_TinyTestSuite_beta/htmlEmbedHarness/text-area-221-t.html new file mode 100755 index 00000000..d25ff73e --- /dev/null +++ b/test/W3C_SVG_12_TinyTestSuite_beta/htmlEmbedHarness/text-area-221-t.html @@ -0,0 +1,85 @@ + + + + + + + + +SVG 1.2 Tiny test:text-area-221-t + + + + + + + + + + +
+ + + + + + + + + + + + +
+

text-area-221-t

+
+ + + raster image of text-area-221-t +
+
+ + +
+

TextArea with line-increment, text-align and display-align

+

+ All text should be centered vertically and horizontally. + The 'font-size' is varied along with 'line-increment'. +

+

The text is taken from "The Lost Princess of Oz" by Baum, L. Frank (Lyman Frank), 1856-1919

+ +
+ + + diff --git a/test/W3C_SVG_12_TinyTestSuite_beta/htmlEmbedHarness/text-area-222-t.html b/test/W3C_SVG_12_TinyTestSuite_beta/htmlEmbedHarness/text-area-222-t.html new file mode 100755 index 00000000..f38b8e80 --- /dev/null +++ b/test/W3C_SVG_12_TinyTestSuite_beta/htmlEmbedHarness/text-area-222-t.html @@ -0,0 +1,82 @@ + + + + + + + + +SVG 1.2 Tiny test:text-area-222-t + + + + + + + + + + +
+ + + + + + + + + + + + +
+

text-area-222-t

+
+ + + raster image of text-area-222-t +
+
+ + +
+

Testing 'textArea' with editable attribute

+

Activating a textArea element should bring up UI asking for new text

+

The initial text is taken from "The Lost Princess of Oz" by Baum, L. Frank (Lyman Frank), 1856-1919

+ +
+ + + diff --git a/test/W3C_SVG_12_TinyTestSuite_beta/htmlEmbedHarness/text-edit-201-t.html b/test/W3C_SVG_12_TinyTestSuite_beta/htmlEmbedHarness/text-edit-201-t.html new file mode 100755 index 00000000..fb32c2ba --- /dev/null +++ b/test/W3C_SVG_12_TinyTestSuite_beta/htmlEmbedHarness/text-edit-201-t.html @@ -0,0 +1,112 @@ + + + + + + + + +SVG 1.2 Tiny test:text-edit-201-t + + + + + + + + + + +
+ + + + + + + + + + + + +
+

text-edit-201-t

+
+ + + raster image of text-edit-201-t +
+
+ + +
+

+ This test checks basic text-editing capabilities. +

+

+ Start editing by activating the textArea that has a green dashed outline. + This textArea has no child text content, but has a defined width and height. + Input the string "123 456" (one two three, space, space, four five six). + + After input is complete, click the button labeled "Check #1". If the frame around + the textArea goes from being dashed to being solid then that part of the test has passed. + Another condition is that the text string "123 456" should look like it only has one space + and not two due to the whitespace handling rules. +

+

+ Next activate the middle textArea that has a red dashed outline. + Input two spaces between 3 and 4. Now since this textArea has xml:space="preserve" those + two spaces should be rendered as two spaces, meaning it must look different from the first + textArea on the left. The textContent must be the same in both cases though, and this is + verified by clicking the button labeled "Check #2". If the test is successful the frame + will turn from dashed red to solid red. +

+

+ Finally activate the rightmost textArea that has a blue dashed outline. + Then exit the editing mode without changing the text. The text must not change and the 'tbreak' element + must be kept in the position it's in. Now activate the textArea again and input an additional linebreak between 3 and 4. + The line "345" must now be on the third line, the second line being blank. + Click the button labeled "Check #3" to verify the result, the frame will turn from dashed + blue to solid blue if successful. +

+

+ The test has passed if after inputting text according to the instructions above and clicking the three + buttons the rendered image matches the reference image exactly. +

+ +
+ + + diff --git a/test/W3C_SVG_12_TinyTestSuite_beta/htmlEmbedHarness/text-fonts-01-t.html b/test/W3C_SVG_12_TinyTestSuite_beta/htmlEmbedHarness/text-fonts-01-t.html new file mode 100755 index 00000000..c662d231 --- /dev/null +++ b/test/W3C_SVG_12_TinyTestSuite_beta/htmlEmbedHarness/text-fonts-01-t.html @@ -0,0 +1,82 @@ + + + + + + + + +SVG 1.2 Tiny test:text-fonts-01-t + + + + + + + + + + +
+ + + + + + + + + + + + +
+

text-fonts-01-t

+
+ + + raster image of text-fonts-01-t +
+
+ + +
+

Purpose of test is to determine if the font family is being correctly selected. The top two lines of text test serif fonts; the top line in maroon tests the generic font family 'serif' and the second line in black tests a selection of commonly available named serif fonts. The next two lines of text test sans-serif fonts; the top line in maroon tests the generic font family 'sans-serif' and the second line in black tests a selection of commonly available named sans serif fonts. The following two lines of text test monospaced fonts; the top line in maroon tests the generic font family 'monospaced' and the second line in black tests a selection of commonly available named monospaced fonts. The lowercase 'i' and uppercase'W' should be the same width,for monospaced fonts.

+

The seventh line of text, in green, tests for three non-existent fonts (nonsense names). There is no fallback generic font specified. The text must be displayed anyway.

+

The first six lines contain two Japanese characters (画像) at the end of the line. Both of these characters must be displayed, although it is compliant to display them with the 'missing glyph' if no suitable font containing Japanese characters can be found. Most but not all fonts have a visible missing glyph character. If the selected font has a visible missing glyph character, it should appear wherever the corresponding glyph is not available.

+ +
+ + + diff --git a/test/W3C_SVG_12_TinyTestSuite_beta/htmlEmbedHarness/text-fonts-02-t.html b/test/W3C_SVG_12_TinyTestSuite_beta/htmlEmbedHarness/text-fonts-02-t.html new file mode 100755 index 00000000..fe1dec06 --- /dev/null +++ b/test/W3C_SVG_12_TinyTestSuite_beta/htmlEmbedHarness/text-fonts-02-t.html @@ -0,0 +1,82 @@ + + + + + + + + +SVG 1.2 Tiny test:text-fonts-02-t + + + + + + + + + + +
+ + + + + + + + + + + + +
+

text-fonts-02-t

+
+ + + raster image of text-fonts-02-t +
+
+ + +
+

Purpose of test is to determine if the font weight is being correctly rendered. A number of font families are specified. The numerical weight values (100 to 900) should show the lighter weights on the lower numbers and the heavier weights on the larger numbers. Heavier is defined to mean 'no lighter'.

+

If only one font weight is available, they should all display at the same weight. The transition from black to green figures shows the correct light to bold transition for the common case where two weights are available. If three or more weights are available, see the CSS2 specification for how these are allocated to the nine weight numbers.

+

The absolute keywords 'normal' and bold' are tested by the first two lines on the right hand side of the test, the third line of text tests the to 'bolder' relative keyword and the fourth tests the 'lighter' relative keyword.

+ +
+ + + diff --git a/test/W3C_SVG_12_TinyTestSuite_beta/htmlEmbedHarness/text-fonts-03-t.html b/test/W3C_SVG_12_TinyTestSuite_beta/htmlEmbedHarness/text-fonts-03-t.html new file mode 100755 index 00000000..7f8463e1 --- /dev/null +++ b/test/W3C_SVG_12_TinyTestSuite_beta/htmlEmbedHarness/text-fonts-03-t.html @@ -0,0 +1,81 @@ + + + + + + + + +SVG 1.2 Tiny test:text-fonts-03-t + + + + + + + + + + +
+ + + + + + + + + + + + +
+

text-fonts-03-t

+
+ + + raster image of text-fonts-03-t +
+
+ + +
+

Testing font-family attribute. Two SVG fonts are defined. Various text elements are then used with varying values for the font-family attribute. The first two text elements should display in their respective fonts, the last two should be displayed using the system font since the value specified for font-family is either invalid or not specified.

+

The rendered picture should match the reference image exactly, except for possible variations in the labelling text (per CSS2 rules).

+ +
+ + + diff --git a/test/W3C_SVG_12_TinyTestSuite_beta/htmlEmbedHarness/text-fonts-04-t.html b/test/W3C_SVG_12_TinyTestSuite_beta/htmlEmbedHarness/text-fonts-04-t.html new file mode 100755 index 00000000..f053a3b2 --- /dev/null +++ b/test/W3C_SVG_12_TinyTestSuite_beta/htmlEmbedHarness/text-fonts-04-t.html @@ -0,0 +1,100 @@ + + + + + + + + +SVG 1.2 Tiny test:text-fonts-04-t + + + + + + + + + + +
+ + + + + + + + + + + + +
+

text-fonts-04-t

+
+ + + raster image of text-fonts-04-t +
+
+ + +
+

+ Testing font-family attribute. + Various text elements are + used with varying values for the font-family attribute. + The first two text elements should display in their respective fonts, + Haettenschweiler and + , + if they are installed on the target system. Otherwise, simply + displaying + the text in some fallback font is enough to pass the test. + The last two should be displayed using a fallback font since the + value specified for font-family is either invalid or not specified. + Failing to display the text means the test is not passed. +

+

+ If the two named fonts are available on the system, + the rendered picture should match the reference image exactly, + except for possible + variations in the labelling text (per CSS2 rules) + and variations in text antialiasing or hinting. +

+ +
+ + + diff --git a/test/W3C_SVG_12_TinyTestSuite_beta/htmlEmbedHarness/text-fonts-202-t.html b/test/W3C_SVG_12_TinyTestSuite_beta/htmlEmbedHarness/text-fonts-202-t.html new file mode 100755 index 00000000..43e8d9b8 --- /dev/null +++ b/test/W3C_SVG_12_TinyTestSuite_beta/htmlEmbedHarness/text-fonts-202-t.html @@ -0,0 +1,103 @@ + + + + + + + + +SVG 1.2 Tiny test:text-fonts-202-t + + + + + + + + + + +
+ + + + + + + + + + + + +
+

text-fonts-202-t

+
+ + + raster image of text-fonts-202-t +
+
+ + +
+

+ This tests the 'font-weight' property when multiple weights are available. A + font family with six weights is specified, with a fallback to 'serif'. If + the platform supports installable opentype fonts, please download + Zalamander Caps + by Tim Ahrens of Just Another Foundry. +

+

+ The numerical weight values (100 to 900) should show the lighter weights on the + lower numbers and the heavier weights on the larger numbers. Heavier is defined + to mean 'no lighter'. +

+

+ If only one font weight is available, they should all display at the same weight. + The transition from black to green figures shows the correct light to bold transition + for the common case where two weights are available. If three or more weights are + available, see the CSS2 specification for how these are allocated to the nine weight + numbers. +

+

+ The absolute keywords 'normal' and bold' are tested by the first two lines on the + right hand side of the test, the third line of text tests the to 'bolder' relative + keyword and the fourth tests the 'lighter' relative keyword. +

+ +
+ + + diff --git a/test/W3C_SVG_12_TinyTestSuite_beta/htmlEmbedHarness/text-intro-01-t.html b/test/W3C_SVG_12_TinyTestSuite_beta/htmlEmbedHarness/text-intro-01-t.html new file mode 100755 index 00000000..1fdbfffb --- /dev/null +++ b/test/W3C_SVG_12_TinyTestSuite_beta/htmlEmbedHarness/text-intro-01-t.html @@ -0,0 +1,82 @@ + + + + + + + + +SVG 1.2 Tiny test:text-intro-01-t + + + + + + + + + + +
+ + + + + + + + + + + + +
+

text-intro-01-t

+
+ + + raster image of text-intro-01-t +
+
+ + +
+

Test left-to-right aspect of internationalized text.

+

Various text strings in various languages appear. The main purpose of the test is to verify that the correct characters appear and that they appear in the correct order and orientation, even though the first choice font does not have the right glyphs.

+

Correct rendering requires that each character is rendered. it may be rendered with the 'missing glyph' if no glyphs are found in the fonts listed in the content, or in any fallback font that is available. The first choice font is a special SVG font that only contains the 'missing glyph'. Missing glyph from other fonts may conformantly be used, however.

+ +
+ + + diff --git a/test/W3C_SVG_12_TinyTestSuite_beta/htmlEmbedHarness/text-intro-04-t.html b/test/W3C_SVG_12_TinyTestSuite_beta/htmlEmbedHarness/text-intro-04-t.html new file mode 100755 index 00000000..56a9bdce --- /dev/null +++ b/test/W3C_SVG_12_TinyTestSuite_beta/htmlEmbedHarness/text-intro-04-t.html @@ -0,0 +1,83 @@ + + + + + + + + +SVG 1.2 Tiny test:text-intro-04-t + + + + + + + + + + +
+ + + + + + + + + + + + +
+

text-intro-04-t

+
+ + + raster image of text-intro-04-t +
+
+ + +
+

Test basic aspect of internationalized text.

+

Various text strings in various languages appear. The main purpose of the test is to verify that the correct characters appear and that they appear in the correct order and orientation.

+

Correct rendering requires that each character is rendered. It is not required that a given character be rendered with any particular font; just that it is rendered. It may be rendered with the 'missing glyph' if no glyphs are found in the fonts listed in the content, or in any fallback font that is available.

+

A future version of this test might include all necessary glyphs as an SVG font.

+ +
+ + + diff --git a/test/W3C_SVG_12_TinyTestSuite_beta/htmlEmbedHarness/text-intro-05-t.html b/test/W3C_SVG_12_TinyTestSuite_beta/htmlEmbedHarness/text-intro-05-t.html new file mode 100755 index 00000000..69fbcde6 --- /dev/null +++ b/test/W3C_SVG_12_TinyTestSuite_beta/htmlEmbedHarness/text-intro-05-t.html @@ -0,0 +1,80 @@ + + + + + + + + +SVG 1.2 Tiny test:text-intro-05-t + + + + + + + + + + +
+ + + + + + + + + + + + +
+

text-intro-05-t

+
+ + + raster image of text-intro-05-t +
+
+ + +
+

Tests Arabic text using various platform fonts. If these fonts are not available, a fallback font should be used that has Arabic glyphs. If such a font is not available, the 'missing glyph' (typically an open rectangle) should be displayed. It is an error to display the wrong Arabic glyphs, for example to display all isolate forms.

+ +
+ + + diff --git a/test/W3C_SVG_12_TinyTestSuite_beta/htmlEmbedHarness/text-intro-06-t.html b/test/W3C_SVG_12_TinyTestSuite_beta/htmlEmbedHarness/text-intro-06-t.html new file mode 100755 index 00000000..90cba70e --- /dev/null +++ b/test/W3C_SVG_12_TinyTestSuite_beta/htmlEmbedHarness/text-intro-06-t.html @@ -0,0 +1,91 @@ + + + + + + + + +SVG 1.2 Tiny test:text-intro-06-t + + + + + + + + + + +
+ + + + + + + + + + + + +
+

text-intro-06-t

+
+ + + raster image of text-intro-06-t +
+
+ + +
+

This test ensures that mandatory ligatures in Arabic are displayed.

+

+ There are two subtests. The first requires an isolate lam-alef ligature + and the second requires a right-joining lam-alef ligature. +

+

+ The test is passed if subtests are displayed as following: +

+ + +
+ + + diff --git a/test/W3C_SVG_12_TinyTestSuite_beta/htmlEmbedHarness/text-intro-201-t.html b/test/W3C_SVG_12_TinyTestSuite_beta/htmlEmbedHarness/text-intro-201-t.html new file mode 100755 index 00000000..caf2e53b --- /dev/null +++ b/test/W3C_SVG_12_TinyTestSuite_beta/htmlEmbedHarness/text-intro-201-t.html @@ -0,0 +1,82 @@ + + + + + + + + +SVG 1.2 Tiny test:text-intro-201-t + + + + + + + + + + +
+ + + + + + + + + + + + +
+

text-intro-201-t

+
+ + + raster image of text-intro-201-t +
+
+ + +
+

Test text element, tspan element and various text styles.

+

The first group tests that text displays at all, that it displays in a straight line, and that the font style can be made italic or bold.

+

The second group tests that text can be treated as any other graphical element, with stroke and fill properties. The first word tests that fill color can be specified. The second word tests that stroke color can be specified in absence of fill. The third group tests the combination of all these effects. The final group tests positioning of 'text' elements.

+ +
+ + + diff --git a/test/W3C_SVG_12_TinyTestSuite_beta/htmlEmbedHarness/text-text-04-t.html b/test/W3C_SVG_12_TinyTestSuite_beta/htmlEmbedHarness/text-text-04-t.html new file mode 100755 index 00000000..686fc2b5 --- /dev/null +++ b/test/W3C_SVG_12_TinyTestSuite_beta/htmlEmbedHarness/text-text-04-t.html @@ -0,0 +1,87 @@ + + + + + + + + +SVG 1.2 Tiny test:text-text-04-t + + + + + + + + + + +
+ + + + + + + + + + + + +
+

text-text-04-t

+
+ + + raster image of text-text-04-t +
+
+ + +
+

The purpose of this test is to validate proper handling of the text element's x and y attributes. In the various samples, a red marker shows the text's (0,0) coordinate. The blue markers show the current text positions. These are either defined by absolute x/y positioning or they are computed from the embeded font's glyphs advances.

+

The first text sample shows a reference piece of text.

+

The second text sample (x all) shows a piece of text where all the glyphs are positioned along the x axis.

+

The third text sample (x more) is a text element where there are more x values than characters (5 values for 4 characters). The last x value should be ignored and the result should be the same as the third sample.

+

The fourth text sample (x fewer) is a text element where there are fewer x values than characters (3 values for 4 characters). The last character should not be positioned but laid out normally, following its previous character sibling.

+

The fifth (y all), sixth (y more) and seventh (y fewer) text sample parallel the second, third and fourth test, but for the y attribute values.

+

The samples in the right column show combinations of x/y value sets.

+

In all the above tests, blue markers represent the expected glyph positions. The red markers are showing positions where no glyph should appear. The glyphs are black squares of increasing sizes.

+ +
+ + + diff --git a/test/W3C_SVG_12_TinyTestSuite_beta/htmlEmbedHarness/text-text-06-t.html b/test/W3C_SVG_12_TinyTestSuite_beta/htmlEmbedHarness/text-text-06-t.html new file mode 100755 index 00000000..0eadf13c --- /dev/null +++ b/test/W3C_SVG_12_TinyTestSuite_beta/htmlEmbedHarness/text-text-06-t.html @@ -0,0 +1,83 @@ + + + + + + + + +SVG 1.2 Tiny test:text-text-06-t + + + + + + + + + + +
+ + + + + + + + + + + + +
+

text-text-06-t

+
+ + + raster image of text-text-06-t +
+
+ + +
+

The purpose of this test is to validate the interaction of x/y glyph positioning and ligatures.

+

The first line shows an example where there is a ligature (fi) which should be accounted for before breaking into text chunks (see specification section 10.5, additional x/y/dx/dy processing rules, bullet discussing ligatures). In this first line, the ligatures cause the x position 180 (shown in red), to be ignored. As a result, a glyph should be shown over each pale blue square markers. The glyphs are black squares of increasing sizes except for the initial ligature which has the form of two small black triangles joined at their tops. The ligature should show on the first pale blue marker position.

+

The second line shows the same test but using multiple y positions.

+

The third line shows the same test but using multiple x and y positions.

+ +
+ + + diff --git a/test/W3C_SVG_12_TinyTestSuite_beta/htmlEmbedHarness/text-text-07-t.html b/test/W3C_SVG_12_TinyTestSuite_beta/htmlEmbedHarness/text-text-07-t.html new file mode 100755 index 00000000..91fbbef8 --- /dev/null +++ b/test/W3C_SVG_12_TinyTestSuite_beta/htmlEmbedHarness/text-text-07-t.html @@ -0,0 +1,81 @@ + + + + + + + + +SVG 1.2 Tiny test:text-text-07-t + + + + + + + + + + +
+ + + + + + + + + + + + +
+

text-text-07-t

+
+ + + raster image of text-text-07-t +
+
+ + +
+

Tests multiple x, y, rotate, with various combinations. Since an array of values is given, each glyph must use the value from the corresponding character in the list.

+

The rendered picture should match the reference image exactly, except for possible variations in the labelling text (per CSS2 rules).

+ +
+ + + diff --git a/test/W3C_SVG_12_TinyTestSuite_beta/htmlEmbedHarness/text-text-08-t.html b/test/W3C_SVG_12_TinyTestSuite_beta/htmlEmbedHarness/text-text-08-t.html new file mode 100755 index 00000000..1423f68e --- /dev/null +++ b/test/W3C_SVG_12_TinyTestSuite_beta/htmlEmbedHarness/text-text-08-t.html @@ -0,0 +1,80 @@ + + + + + + + + +SVG 1.2 Tiny test:text-text-08-t + + + + + + + + + + +
+ + + + + + + + + + + + +
+

text-text-08-t

+
+ + + raster image of text-text-08-t +
+
+ + +
+

Two opacity properties (fill-opacity and stroke-opacity) of 'text' elements are covered in this test.

+ +
+ + + diff --git a/test/W3C_SVG_12_TinyTestSuite_beta/htmlEmbedHarness/text-text-09-t.html b/test/W3C_SVG_12_TinyTestSuite_beta/htmlEmbedHarness/text-text-09-t.html new file mode 100755 index 00000000..83ddfa22 --- /dev/null +++ b/test/W3C_SVG_12_TinyTestSuite_beta/htmlEmbedHarness/text-text-09-t.html @@ -0,0 +1,90 @@ + + + + + + + + +SVG 1.2 Tiny test:text-text-09-t + + + + + + + + + + +
+ + + + + + + + + + + + +
+

text-text-09-t

+
+ + + raster image of text-text-09-t +
+
+ + +
+

+ Tests multiple x, y, rotate, with various combinations. Since an + array of values is given, each glyph must use the value from the + corresponding character in the list. In this test, there are less values + in the array than there are characters. + +

+

+ The rendered picture should match the reference image exactly, except for possible + variations in the labelling text (per CSS2 rules). +

+ +
+ + + diff --git a/test/W3C_SVG_12_TinyTestSuite_beta/htmlEmbedHarness/text-tselect-03-t.html b/test/W3C_SVG_12_TinyTestSuite_beta/htmlEmbedHarness/text-tselect-03-t.html new file mode 100755 index 00000000..5447ad14 --- /dev/null +++ b/test/W3C_SVG_12_TinyTestSuite_beta/htmlEmbedHarness/text-tselect-03-t.html @@ -0,0 +1,89 @@ + + + + + + + + +SVG 1.2 Tiny test:text-tselect-03-t + + + + + + + + + + +
+ + + + + + + + + + + + +
+

text-tselect-03-t

+
+ + + raster image of text-tselect-03-t +
+
+ + +
+

+ This test demonstrates text selection of bidirectional text. +

+

To pass the test the the first 9 characters in logical order starting from logical position 0 are to be selected. This must be done by the tester since there's no way to control the selection in DOM. The selection should be started at the letter 'a' and proceed to the number '1' as indicated by the arrows. Visually this makes the selection discontigous and these substrings must be selected (listed in visual order):

+

"abc"

+

the space between "c" and "ו"

+

"1"

+

the space between "3" and "ג"

+

"אבג"

+

If only the substrings listed above were selected then the test has passed.

+ +
+ + + diff --git a/test/W3C_SVG_12_TinyTestSuite_beta/htmlEmbedHarness/text-ws-01-t.html b/test/W3C_SVG_12_TinyTestSuite_beta/htmlEmbedHarness/text-ws-01-t.html new file mode 100755 index 00000000..af60e2a7 --- /dev/null +++ b/test/W3C_SVG_12_TinyTestSuite_beta/htmlEmbedHarness/text-ws-01-t.html @@ -0,0 +1,83 @@ + + + + + + + + +SVG 1.2 Tiny test:text-ws-01-t + + + + + + + + + + +
+ + + + + + + + + + + + +
+

text-ws-01-t

+
+ + + raster image of text-ws-01-t +
+
+ + +
+

Test for viewer correct handling of whitespace and the 'xml:space' attribute. There are two sub-tests, for xml:space value "default". In each test, the content of the 'text' element is written on multiple lines. The first test of each pair has indented text with leading space characters, tabs, etc. The second has no indentation, but a line break before the content and after it. There are no space (or other whitespace) characters at the ends of the lines.

+

The two test cases are self-descriptive. From the top; first, "default" value applied to 3 lines of content with indents, space characters, tabs, etc; second, "default" applied to two lines content with no indent;

+

In each test, the test string is in blue and the reference image is in black. The rendered picture should approximately match the reference image, however there is some question in the reference image concerning the exact amount of space in the long-space areas. The third test uses the nbsp unicode character to force the reference white spaces display, which provides an accurate match if the font in use has the same metrics for that character and the default white space. Also, variations are possible in the text fonts and layout (per CSS2 rules).

+

The test also uses the 'rect' element, as well as basic fill (solid primary colors), stroke (black 1-pixel lines), font-family (Arial) and font-size properties.

+ +
+ + + diff --git a/test/W3C_SVG_12_TinyTestSuite_beta/htmlEmbedHarness/text-ws-02-t.html b/test/W3C_SVG_12_TinyTestSuite_beta/htmlEmbedHarness/text-ws-02-t.html new file mode 100755 index 00000000..eb263659 --- /dev/null +++ b/test/W3C_SVG_12_TinyTestSuite_beta/htmlEmbedHarness/text-ws-02-t.html @@ -0,0 +1,83 @@ + + + + + + + + +SVG 1.2 Tiny test:text-ws-02-t + + + + + + + + + + +
+ + + + + + + + + + + + +
+

text-ws-02-t

+
+ + + raster image of text-ws-02-t +
+
+ + +
+

Test for viewer correct handling of whitespace and the 'xml:space' attribute. There are two sub-tests, for value "preserve". In each test, the content of the 'text' element is written on multiple lines. The first test of each pair has indented text with leading space characters, tabs, etc. The second has no indentation, but a line break before the content and after it. There are no space (or other whitespace) characters at the ends of the lines.

+

The two test cases are self-descriptive. From the top; first, "preserve" applied to essentially the same content as first; second, "preserve" applied to essentially the same content as second.

+

In each test, the test string is in blue and the reference image is in black. The rendered picture should approximately match the reference image, however there is some question in the reference image concerning the exact amount of space in the long-space areas. The third test uses the nbsp unicode character to force the reference white spaces display, which provides an accurate match if the font in use has the same metrics for that character and the default white space. Also, variations are possible in the text fonts and layout (per CSS2 rules).

+

The test also uses the 'rect' element, as well as basic fill (solid primary colors), stroke (black 1-pixel lines), font-family (Arial) and font-size properties.

+ +
+ + + diff --git a/test/W3C_SVG_12_TinyTestSuite_beta/htmlEmbedHarness/udom-conform-201-t.html b/test/W3C_SVG_12_TinyTestSuite_beta/htmlEmbedHarness/udom-conform-201-t.html new file mode 100755 index 00000000..7265bce8 --- /dev/null +++ b/test/W3C_SVG_12_TinyTestSuite_beta/htmlEmbedHarness/udom-conform-201-t.html @@ -0,0 +1,94 @@ + + + + + + + + +SVG 1.2 Tiny test:udom-conform-201-t + + + + + + + + + + +
+ + + + + + + + + + + + +
+

udom-conform-201-t

+
+ + + raster image of udom-conform-201-t +
+
+ + +
+

+ This tests that the getTrait[NS] and setTrait[NS] + methods of the TraitAccess interface work for the special + '#text' trait on the desc, title, + metadata, text, tspan and textArea + elements. +

+

+ The rectangle in the top left corner indicates whether the + getTrait and getTraitNS returned the expected + strings for each of the relevant elements; blue for pass, + red for fail. The four text strings below it indicate whether + setTrait and setTraitNS worked on the text + and textArea elements; they must all be the string “PASS”. +

+ +
+ + + diff --git a/test/W3C_SVG_12_TinyTestSuite_beta/htmlEmbedHarness/udom-dom-201-t.html b/test/W3C_SVG_12_TinyTestSuite_beta/htmlEmbedHarness/udom-dom-201-t.html new file mode 100755 index 00000000..290ee7c4 --- /dev/null +++ b/test/W3C_SVG_12_TinyTestSuite_beta/htmlEmbedHarness/udom-dom-201-t.html @@ -0,0 +1,88 @@ + + + + + + + + +SVG 1.2 Tiny test:udom-dom-201-t + + + + + + + + + + +
+ + + + + + + + + + + + +
+

udom-dom-201-t

+
+ + + raster image of udom-dom-201-t +
+
+ + +
+

+ This tests that the DOMException interface is present + and that all of its constant fields exist and are correct. +

+

+ The rectangle in the top left corner indicates whether all + of the constant fields are correct; green for pass, red for fail. +

+ + +
+ + + diff --git a/test/W3C_SVG_12_TinyTestSuite_beta/htmlEmbedHarness/udom-dom-202-t.html b/test/W3C_SVG_12_TinyTestSuite_beta/htmlEmbedHarness/udom-dom-202-t.html new file mode 100755 index 00000000..9b273113 --- /dev/null +++ b/test/W3C_SVG_12_TinyTestSuite_beta/htmlEmbedHarness/udom-dom-202-t.html @@ -0,0 +1,89 @@ + + + + + + + + +SVG 1.2 Tiny test:udom-dom-202-t + + + + + + + + + + +
+ + + + + + + + + + + + +
+

udom-dom-202-t

+
+ + + raster image of udom-dom-202-t +
+
+ + +
+

+ This tests that the Node interface attributes + namespaceURI, localName, parentNode + and ownerDocument are correct, for some simple cases. +

+

+ The rectangle in the top left corner indicates whether all + of the attributes being tested have the expected values; green for + pass, red for fail. +

+ +
+ + + diff --git a/test/W3C_SVG_12_TinyTestSuite_beta/htmlEmbedHarness/udom-dom-203-t.html b/test/W3C_SVG_12_TinyTestSuite_beta/htmlEmbedHarness/udom-dom-203-t.html new file mode 100755 index 00000000..d453f30b --- /dev/null +++ b/test/W3C_SVG_12_TinyTestSuite_beta/htmlEmbedHarness/udom-dom-203-t.html @@ -0,0 +1,92 @@ + + + + + + + + +SVG 1.2 Tiny test:udom-dom-203-t + + + + + + + + + + +
+ + + + + + + + + + + + +
+

udom-dom-203-t

+
+ + + raster image of udom-dom-203-t +
+
+ + +
+

+ This tests that the textContent attribute of the + Node interface works correctly. The test is passed + if a blue square and two "PASS" are displayed. +

+

+ The rectangle in the top left corner indicates whether the + behavior when manipulating the textContent attribute + on various elements. + The two text strings below it indicate whether setting + textContent on the text and textArea + elements succeeded. +

+ +
+ + + diff --git a/test/W3C_SVG_12_TinyTestSuite_beta/htmlEmbedHarness/udom-dom-204-t.html b/test/W3C_SVG_12_TinyTestSuite_beta/htmlEmbedHarness/udom-dom-204-t.html new file mode 100755 index 00000000..d6b5f93d --- /dev/null +++ b/test/W3C_SVG_12_TinyTestSuite_beta/htmlEmbedHarness/udom-dom-204-t.html @@ -0,0 +1,126 @@ + + + + + + + + +SVG 1.2 Tiny test:udom-dom-204-t + + + + + + + + + + +
+ + + + + + + + + + + + +
+

udom-dom-204-t

+
+ + + raster image of udom-dom-204-t +
+
+ + +
+

+ This tests that the appendChild method of the + Node interface works correctly. +

+

+ The test has been passed if six blue rectangles are displayed. + Each rectangle indicates the result of a different aspect of + appendChild behavior being tested: +

+ + +
+ + + diff --git a/test/W3C_SVG_12_TinyTestSuite_beta/htmlEmbedHarness/udom-dom-206-t.html b/test/W3C_SVG_12_TinyTestSuite_beta/htmlEmbedHarness/udom-dom-206-t.html new file mode 100755 index 00000000..410c7a6b --- /dev/null +++ b/test/W3C_SVG_12_TinyTestSuite_beta/htmlEmbedHarness/udom-dom-206-t.html @@ -0,0 +1,126 @@ + + + + + + + + +SVG 1.2 Tiny test:udom-dom-206-t + + + + + + + + + + +
+ + + + + + + + + + + + +
+

udom-dom-206-t

+
+ + + raster image of udom-dom-206-t +
+
+ + +
+

+ This tests that the removeChild method of the + Node interface works correctly. +

+

+ The test has three sub-tests, for different removeChild + behavior, which consist of a paired rectangle and circle: +

+ +

+ The test has been passed if the top row shows three blue rectangles + and the bottom row shows three blue circles. +

+ +
+ + + diff --git a/test/W3C_SVG_12_TinyTestSuite_beta/htmlEmbedHarness/udom-dom-207-t.html b/test/W3C_SVG_12_TinyTestSuite_beta/htmlEmbedHarness/udom-dom-207-t.html new file mode 100755 index 00000000..fde4d8fc --- /dev/null +++ b/test/W3C_SVG_12_TinyTestSuite_beta/htmlEmbedHarness/udom-dom-207-t.html @@ -0,0 +1,110 @@ + + + + + + + + +SVG 1.2 Tiny test:udom-dom-207-t + + + + + + + + + + +
+ + + + + + + + + + + + +
+

udom-dom-207-t

+
+ + + raster image of udom-dom-207-t +
+
+ + +
+

+ This tests that the cloneNode method of the + Node interface works correctly. +

+

+ The test has two sub-tests: one for a deep clone, and + one for a shallow clone. +

+ + +
+ + + diff --git a/test/W3C_SVG_12_TinyTestSuite_beta/htmlEmbedHarness/udom-dom-209-t.html b/test/W3C_SVG_12_TinyTestSuite_beta/htmlEmbedHarness/udom-dom-209-t.html new file mode 100755 index 00000000..df816120 --- /dev/null +++ b/test/W3C_SVG_12_TinyTestSuite_beta/htmlEmbedHarness/udom-dom-209-t.html @@ -0,0 +1,101 @@ + + + + + + + + +SVG 1.2 Tiny test:udom-dom-209-t + + + + + + + + + + +
+ + + + + + + + + + + + +
+

udom-dom-209-t

+
+ + + raster image of udom-dom-209-t +
+
+ + +
+

+ This tests that the setAttribute and setAttributeNS + methods on the Element interface work correctly, for some + simple cases. +

+

+ There are five sub-tests (a rectangle for each). These are: +

+ +

+ The test has been passed if all five rectangles are blue. +

+ +
+ + + diff --git a/test/W3C_SVG_12_TinyTestSuite_beta/htmlEmbedHarness/udom-dom-210-t.html b/test/W3C_SVG_12_TinyTestSuite_beta/htmlEmbedHarness/udom-dom-210-t.html new file mode 100755 index 00000000..936234b7 --- /dev/null +++ b/test/W3C_SVG_12_TinyTestSuite_beta/htmlEmbedHarness/udom-dom-210-t.html @@ -0,0 +1,100 @@ + + + + + + + + +SVG 1.2 Tiny test:udom-dom-210-t + + + + + + + + + + +
+ + + + + + + + + + + + +
+

udom-dom-210-t

+
+ + + raster image of udom-dom-210-t +
+
+ + +
+

+ This tests that the createElementNS method on the + Document interface works correctly, for each SVG Tiny 1.2 + element, and for some unknown elements. +

+

+ There are four sub-tests (a rectangle for each). The test has been + passed if all four rectangles are blue. +

+

+ Thes are: +

+ +

+ +

+ +
+ + + diff --git a/test/W3C_SVG_12_TinyTestSuite_beta/htmlEmbedHarness/udom-dom-211-t.html b/test/W3C_SVG_12_TinyTestSuite_beta/htmlEmbedHarness/udom-dom-211-t.html new file mode 100755 index 00000000..366e13e0 --- /dev/null +++ b/test/W3C_SVG_12_TinyTestSuite_beta/htmlEmbedHarness/udom-dom-211-t.html @@ -0,0 +1,86 @@ + + + + + + + + +SVG 1.2 Tiny test:udom-dom-211-t + + + + + + + + + + +
+ + + + + + + + + + + + +
+

udom-dom-211-t

+
+ + + raster image of udom-dom-211-t +
+
+ + +
+

+ This performs a simple test on the documentElement attribute + on the Document interface. +

+

+ The test has been passed if there is a single green rectangle. +

+ +
+ + + diff --git a/test/W3C_SVG_12_TinyTestSuite_beta/htmlEmbedHarness/udom-dom-213-t.html b/test/W3C_SVG_12_TinyTestSuite_beta/htmlEmbedHarness/udom-dom-213-t.html new file mode 100755 index 00000000..640d5f2a --- /dev/null +++ b/test/W3C_SVG_12_TinyTestSuite_beta/htmlEmbedHarness/udom-dom-213-t.html @@ -0,0 +1,90 @@ + + + + + + + + +SVG 1.2 Tiny test:udom-dom-213-t + + + + + + + + + + +
+ + + + + + + + + + + + +
+

udom-dom-213-t

+
+ + + raster image of udom-dom-213-t +
+
+ + +
+

+ This tests that the firstElementChild, + lastElementChild, nextElementSibling and + previousElementSibling methods of the ElementTraversal + interface works correctly. +

+

+ The rectangle in the top left corner indicates whether all + of the attributes being tested have the expected values; green for + pass, red for fail. +

+ +
+ + + diff --git a/test/W3C_SVG_12_TinyTestSuite_beta/htmlEmbedHarness/udom-event-201-t.html b/test/W3C_SVG_12_TinyTestSuite_beta/htmlEmbedHarness/udom-event-201-t.html new file mode 100755 index 00000000..71252a5e --- /dev/null +++ b/test/W3C_SVG_12_TinyTestSuite_beta/htmlEmbedHarness/udom-event-201-t.html @@ -0,0 +1,100 @@ + + + + + + + + +SVG 1.2 Tiny test:udom-event-201-t + + + + + + + + + + +
+ + + + + + + + + + + + +
+

udom-event-201-t

+
+ + + raster image of udom-event-201-t +
+
+ + +
+

+ This tests that the methods of the EventTarget interface work + correctly. +

+

+ There are three sub-tests (a rectangle for each). These are: +

+ +

+ The test has been passed if all three rectangles are blue. +

+ +
+ + + diff --git a/test/W3C_SVG_12_TinyTestSuite_beta/htmlEmbedHarness/udom-event-202-t.html b/test/W3C_SVG_12_TinyTestSuite_beta/htmlEmbedHarness/udom-event-202-t.html new file mode 100755 index 00000000..144759d6 --- /dev/null +++ b/test/W3C_SVG_12_TinyTestSuite_beta/htmlEmbedHarness/udom-event-202-t.html @@ -0,0 +1,95 @@ + + + + + + + + +SVG 1.2 Tiny test:udom-event-202-t + + + + + + + + + + +
+ + + + + + + + + + + + +
+

udom-event-202-t

+
+ + + raster image of udom-event-202-t +
+
+ + +
+

+ This tests that the target, currentTarget, + type and cancelable + attributes of the Event interface work correctly. +

+

+ The test consists of a single rectangle, which has event listeners + registered on it and all of its ancestor nodes. Clicking on the + rectangle will test that the attribute of the Event object + all have expected values, for each invocation of an event listener. + It also tests whether each of the event listeners is indeed invoked. +

+

+ The test has been passed if the rectangle becomes blue when clicking + it. +

+ +
+ + + diff --git a/test/W3C_SVG_12_TinyTestSuite_beta/htmlEmbedHarness/udom-event-203-t.html b/test/W3C_SVG_12_TinyTestSuite_beta/htmlEmbedHarness/udom-event-203-t.html new file mode 100755 index 00000000..9eea4c59 --- /dev/null +++ b/test/W3C_SVG_12_TinyTestSuite_beta/htmlEmbedHarness/udom-event-203-t.html @@ -0,0 +1,95 @@ + + + + + + + + +SVG 1.2 Tiny test:udom-event-203-t + + + + + + + + + + +
+ + + + + + + + + + + + +
+

udom-event-203-t

+
+ + + raster image of udom-event-203-t +
+
+ + +
+

+ This tests the stopPropagation method of the + Event interface. +

+

+ The test consists of a single rectangle, which has event listeners + registered on it and some of its ancestor nodes. Clicking on the + rectangle will dispatch the click event. The listener on + the parent node of the rect calls stopPropagation(). + The test checks that the listener for the grandparent node is not + dispatched. +

+

+ The test has been passed if the rectangle becomes blue when clicking + it. +

+ +
+ + + diff --git a/test/W3C_SVG_12_TinyTestSuite_beta/htmlEmbedHarness/udom-event-204-t.html b/test/W3C_SVG_12_TinyTestSuite_beta/htmlEmbedHarness/udom-event-204-t.html new file mode 100755 index 00000000..2854420c --- /dev/null +++ b/test/W3C_SVG_12_TinyTestSuite_beta/htmlEmbedHarness/udom-event-204-t.html @@ -0,0 +1,95 @@ + + + + + + + + +SVG 1.2 Tiny test:udom-event-204-t + + + + + + + + + + +
+ + + + + + + + + + + + +
+

udom-event-204-t

+
+ + + raster image of udom-event-204-t +
+
+ + +
+

+ This tests the defaultPrevented attribute and the + preventDefault method of the Event interface. +

+

+ The test consists of a single rectangle, which has event listeners + registered on it and some of its ancestor nodes. Clicking on the + rectangle will dispatch the click event. The listener on + the grandparent node of the rect calls + preventDefault(). The test checks that the event object has + defaultPrevented set to true. +

+

+ The test has been passed if the rectangle becomes blue when clicking + it. +

+ +
+ + + diff --git a/test/W3C_SVG_12_TinyTestSuite_beta/htmlEmbedHarness/udom-event-205-t.html b/test/W3C_SVG_12_TinyTestSuite_beta/htmlEmbedHarness/udom-event-205-t.html new file mode 100755 index 00000000..cf260462 --- /dev/null +++ b/test/W3C_SVG_12_TinyTestSuite_beta/htmlEmbedHarness/udom-event-205-t.html @@ -0,0 +1,102 @@ + + + + + + + + +SVG 1.2 Tiny test:udom-event-205-t + + + + + + + + + + +
+ + + + + + + + + + + + +
+

udom-event-205-t

+
+ + + raster image of udom-event-205-t +
+
+ + +
+

+ This tests the clientX, clientY and button + attributes of the MouseEvent interface. +

+

+ The test consists of three rectangles, one for each of the three + common mouse buttons. To perform the test, the user must move the + mouse cursor over a rectangle, press the mouse button down, then + move the mouse cursor out of the rectangle. If after this the + rectangle becomes blue, then that sub-test has been passed, indicating + that the clientX, clientY and button + attributes of the MouseEvent object had expected values for + the mouseover, mousedown and mouseout + events. +

+

+ The test as a whole has been passed if, for each rectangle that + corresponds to a button on the pointing device that the user + agent supports, it becomes blue after performing the interaction. + If the user agent does not support a pointing device at all, + then the test is passed automatically without needing to + perform any interaction. +

+ +
+ + + diff --git a/test/W3C_SVG_12_TinyTestSuite_beta/htmlEmbedHarness/udom-event-207-t.html b/test/W3C_SVG_12_TinyTestSuite_beta/htmlEmbedHarness/udom-event-207-t.html new file mode 100755 index 00000000..9b46e038 --- /dev/null +++ b/test/W3C_SVG_12_TinyTestSuite_beta/htmlEmbedHarness/udom-event-207-t.html @@ -0,0 +1,102 @@ + + + + + + + + +SVG 1.2 Tiny test:udom-event-207-t + + + + + + + + + + +
+ + + + + + + + + + + + +
+

udom-event-207-t

+
+ + + raster image of udom-event-207-t +
+
+ + +
+

+ This tests the data attribute of the TextEvent + interface. +

+

+ To perform the test, the user must input some text. This can be + from a variety of sources, such characters directly from a keyboard, + text pasted from the clipboard, input from an IME or input from a + speech recognizer. + Once the text has been input, the black rectangle should turn blue to + indicate that the test has been passed. In addition, the + text element below the rectangle will show the text that was + input. +

+

+ If the rectangle becomes red, the test failed because the + data attribute had an invalid value. If the rectangle + remains black, the test failed because the textInput + event is not supported. If the text string does not appear, + or does not match the input text, the test failed because the + textInput event is not supported correctly (e.g. it + only tests for any keyboard activity). +

+ +
+ + + diff --git a/test/W3C_SVG_12_TinyTestSuite_beta/htmlEmbedHarness/udom-event-208-t.html b/test/W3C_SVG_12_TinyTestSuite_beta/htmlEmbedHarness/udom-event-208-t.html new file mode 100755 index 00000000..c5e85ff6 --- /dev/null +++ b/test/W3C_SVG_12_TinyTestSuite_beta/htmlEmbedHarness/udom-event-208-t.html @@ -0,0 +1,102 @@ + + + + + + + + +SVG 1.2 Tiny test:udom-event-208-t + + + + + + + + + + +
+ + + + + + + + + + + + +
+

udom-event-208-t

+
+ + + raster image of udom-event-208-t +
+
+ + +
+

+ This tests the detail attribute of the UIEvent + interface and the dispatch order of mouse events when clicking. +

+

+ To perform the test, the user must triple click on the circle. + The nine rectangles to the right of the circle indicate whether the + detail attribute of the UIEvent object was correct + for the mousedown, click and mouseup + events. The first row of rectangles checks the three events when + detail = 1, the second row for detail = 2 and + the third row for detail = 3. +

+

+ In addition, the circle should remain black after the nine rectangles + have become blue. If the circle becomes red, it indicates that + the test failed because the mousedown, click and + mouseup events were fired in an incorrect order. +

+

+ The test has been passed if, after triple clicking the circle, all nine + rectangles are blue and the circle remains black. +

+ +
+ + + diff --git a/test/W3C_SVG_12_TinyTestSuite_beta/htmlEmbedHarness/udom-event-209-t.html b/test/W3C_SVG_12_TinyTestSuite_beta/htmlEmbedHarness/udom-event-209-t.html new file mode 100755 index 00000000..76b12caa --- /dev/null +++ b/test/W3C_SVG_12_TinyTestSuite_beta/htmlEmbedHarness/udom-event-209-t.html @@ -0,0 +1,98 @@ + + + + + + + + +SVG 1.2 Tiny test:udom-event-209-t + + + + + + + + + + +
+ + + + + + + + + + + + +
+

udom-event-209-t

+
+ + + raster image of udom-event-209-t +
+
+ + +
+

+ This tests that the target, currentTarget, + type and cancelable + attributes of the Event interface work correctly. It + is the same as udom-event-202-t except that the event listener + is given by an ECMAScript object with a handleEvent + property, rather than by an ECMAScript Function object. +

+

+ The test consists of a single rectangle, which has event listeners + registered on it and all of its ancestor nodes. Clicking on the + rectangle will test that the attribute of the Event object + all have expected values, for each invocation of an event listener. + It also tests whether each of the event listeners is indeed invoked. +

+

+ The test has been passed if the rectangle becomes blue when clicking + it. +

+ +
+ + + diff --git a/test/W3C_SVG_12_TinyTestSuite_beta/htmlEmbedHarness/udom-event-210-t.html b/test/W3C_SVG_12_TinyTestSuite_beta/htmlEmbedHarness/udom-event-210-t.html new file mode 100755 index 00000000..a3f44256 --- /dev/null +++ b/test/W3C_SVG_12_TinyTestSuite_beta/htmlEmbedHarness/udom-event-210-t.html @@ -0,0 +1,89 @@ + + + + + + + + +SVG 1.2 Tiny test:udom-event-210-t + + + + + + + + + + +
+ + + + + + + + + + + + +
+

udom-event-210-t

+
+ + + raster image of udom-event-210-t +
+
+ + +
+

+ The test at first should show a green rectangle. +

+

+ Trigger some mousewheel events, for example by using a mouse with a scrollwheel + or a jog dial. + The test has passed if, when you scroll down, the rectangle rotates clockwise; + and when you scroll up, the rectangle rotates counter clockwise. + For reference the values of the Mousewheel event are displayed as text. +

+ +
+ + + diff --git a/test/W3C_SVG_12_TinyTestSuite_beta/htmlEmbedHarness/udom-glob-201-t.html b/test/W3C_SVG_12_TinyTestSuite_beta/htmlEmbedHarness/udom-glob-201-t.html new file mode 100755 index 00000000..2b7d86cb --- /dev/null +++ b/test/W3C_SVG_12_TinyTestSuite_beta/htmlEmbedHarness/udom-glob-201-t.html @@ -0,0 +1,87 @@ + + + + + + + + +SVG 1.2 Tiny test:udom-glob-201-t + + + + + + + + + + +
+ + + + + + + + + + + + +
+

udom-glob-201-t

+
+ + + raster image of udom-glob-201-t +
+
+ + +
+

+ This tests that the GlobalException interface is present + and that all of its constant fields exist and are correct. +

+

+ The rectangle in the top left corner indicates whether all + of the constant fields are correct; green for pass, red for fail. +

+ +
+ + + diff --git a/test/W3C_SVG_12_TinyTestSuite_beta/htmlEmbedHarness/udom-glob-202-t.html b/test/W3C_SVG_12_TinyTestSuite_beta/htmlEmbedHarness/udom-glob-202-t.html new file mode 100755 index 00000000..4259d10e --- /dev/null +++ b/test/W3C_SVG_12_TinyTestSuite_beta/htmlEmbedHarness/udom-glob-202-t.html @@ -0,0 +1,87 @@ + + + + + + + + +SVG 1.2 Tiny test:udom-glob-202-t + + + + + + + + + + +
+ + + + + + + + + + + + +
+

udom-glob-202-t

+
+ + + raster image of udom-glob-202-t +
+
+ + +
+

+ This tests that the gotoLocation method is present + and works for a simple case. +

+

+ Once loaded, the SVG file will be replaced by the words success. Note that the + contents of this file may be displayed for a short interval until the new file is loaded. +

+ +
+ + + diff --git a/test/W3C_SVG_12_TinyTestSuite_beta/htmlEmbedHarness/udom-glob-203-t.html b/test/W3C_SVG_12_TinyTestSuite_beta/htmlEmbedHarness/udom-glob-203-t.html new file mode 100755 index 00000000..98b2b627 --- /dev/null +++ b/test/W3C_SVG_12_TinyTestSuite_beta/htmlEmbedHarness/udom-glob-203-t.html @@ -0,0 +1,110 @@ + + + + + + + + +SVG 1.2 Tiny test:udom-glob-203-t + + + + + + + + + + +
+ + + + + + + + + + + + +
+

udom-glob-203-t

+
+ + + raster image of udom-glob-203-t +
+
+ + +
+

+ This SVG will test the SVGGlobal's postURL() callback status. The test + is passed if, on each row, both squares have the same color. +

+

+ There are multiple calls to postURL(), each with a different expected + HTTP return code. +

+

+ The test works in conjunction with a JSP servlet called HttpCodeTest, + which will simulate the various HTTP return codes, based on the query + parameter from the client. +

+

+ For each call to postURL(), two squares will appear. The first square + represents the "expected" status code. The second square represents the + "actual" status code that the callback function receives. The status + codes are color-coded. +

+

+ Note that the status codes may take some time to update, due to the + asynchronous nature of the postURL() callback. Tester should allow some + time for all postURL() calls to receive ther return codes. The latency + will vary depending on the network environment, but normally, it should + only be a couple minutes at most. +

+

+ 100-ranges status codes are not tested here because the spec states that + these status codes should be ignored. It is not clear what the expected + callback status should be in this case. +

+ +
+ + + diff --git a/test/W3C_SVG_12_TinyTestSuite_beta/htmlEmbedHarness/udom-glob-204-t.html b/test/W3C_SVG_12_TinyTestSuite_beta/htmlEmbedHarness/udom-glob-204-t.html new file mode 100755 index 00000000..3d0b0d4d --- /dev/null +++ b/test/W3C_SVG_12_TinyTestSuite_beta/htmlEmbedHarness/udom-glob-204-t.html @@ -0,0 +1,111 @@ + + + + + + + + +SVG 1.2 Tiny test:udom-glob-204-t + + + + + + + + + + +
+ + + + + + + + + + + + +
+

udom-glob-204-t

+
+ + + raster image of udom-glob-204-t +
+
+ + +
+

+ This SVG will test the SVGGlobal's getURL() callback status. The test is + passed if, on each row, both squares have the same color. +

+

+ There are multiple calls to getURL(), each with a different expected + HTTP return code. +

+

+ The test works in conjunction with a JSP servlet called HttpCodeTest, + which will simulate the various HTTP return codes, based on the query + parameter from the client. +

+

+ For each call to getURL(), two squares will appear. The first square + represents the "expected" status code. The second square represents the + "actual" status code that the callback function receives. The status + codes are color-coded. +

+

+ Note that the status codes may take some time to update, due to the + asynchronous nature of the getURL() callback. Tester should allow some + time for all getURL() calls to receive ther return codes. The latency + will vary depending on the network environment, but normally, it should + only be a couple minutes at most. Once all calls have returned, the text + "Callbacks now finished" will show, in green. +

+

+ 100-ranges status codes are not tested here because the spec states that + these status codes should be ignored. It is not clear what the expected + callback status should be in this case. +

+ +
+ + + diff --git a/test/W3C_SVG_12_TinyTestSuite_beta/htmlEmbedHarness/udom-node-201-t.html b/test/W3C_SVG_12_TinyTestSuite_beta/htmlEmbedHarness/udom-node-201-t.html new file mode 100755 index 00000000..e76b86df --- /dev/null +++ b/test/W3C_SVG_12_TinyTestSuite_beta/htmlEmbedHarness/udom-node-201-t.html @@ -0,0 +1,83 @@ + + + + + + + + +SVG 1.2 Tiny test:udom-node-201-t + + + + + + + + + + +
+ + + + + + + + + + + + +
+

udom-node-201-t

+
+ + + raster image of udom-node-201-t +
+
+ + +
+

+ Test with cloneNode on a use element. The red rect is cloned directly on the rect element. + The yellow rect is cloned on the use element. Two red and two yellow rects must be showing. +

+ +
+ + + diff --git a/test/W3C_SVG_12_TinyTestSuite_beta/htmlEmbedHarness/udom-node-202-t.html b/test/W3C_SVG_12_TinyTestSuite_beta/htmlEmbedHarness/udom-node-202-t.html new file mode 100755 index 00000000..60d09783 --- /dev/null +++ b/test/W3C_SVG_12_TinyTestSuite_beta/htmlEmbedHarness/udom-node-202-t.html @@ -0,0 +1,84 @@ + + + + + + + + +SVG 1.2 Tiny test:udom-node-202-t + + + + + + + + + + +
+ + + + + + + + + + + + +
+

udom-node-202-t

+
+ + + raster image of udom-node-202-t +
+
+ + +
+

+ Testing CloneNode with different values of the "deep" parameter. + In this test an image with animations inside is cloned twice, one which should keep the animations and the second that should only clone image node. + The first and second image should animate from opacity 0 and width 20 to opacity 1 and width 100. The third image should not animate. +

+ +
+ + + diff --git a/test/W3C_SVG_12_TinyTestSuite_beta/htmlEmbedHarness/udom-node-204-t.html b/test/W3C_SVG_12_TinyTestSuite_beta/htmlEmbedHarness/udom-node-204-t.html new file mode 100755 index 00000000..09da0ad9 --- /dev/null +++ b/test/W3C_SVG_12_TinyTestSuite_beta/htmlEmbedHarness/udom-node-204-t.html @@ -0,0 +1,84 @@ + + + + + + + + +SVG 1.2 Tiny test:udom-node-204-t + + + + + + + + + + +
+ + + + + + + + + + + + +
+

udom-node-204-t

+
+ + + raster image of udom-node-204-t +
+
+ + +
+

+ Test basic uDOM support with node (parentNode) and trait access. + The svg shold look the same on both sides and the text + should read "OK". +

+ +
+ + + diff --git a/test/W3C_SVG_12_TinyTestSuite_beta/htmlEmbedHarness/udom-over-01-t.html b/test/W3C_SVG_12_TinyTestSuite_beta/htmlEmbedHarness/udom-over-01-t.html new file mode 100755 index 00000000..4f56fd1f --- /dev/null +++ b/test/W3C_SVG_12_TinyTestSuite_beta/htmlEmbedHarness/udom-over-01-t.html @@ -0,0 +1,94 @@ + + + + + + + + +SVG 1.2 Tiny test:udom-over-01-t + + + + + + + + + + +
+ + + + + + + + + + + + +
+

udom-over-01-t

+
+ + + raster image of udom-over-01-t +
+
+ + +
+

+ Verify the basic capability to handle the SVG DOM API. + The test is composed of a top level svg element with an 'onload' event handler and a rect element. + Both the svg and the rect elements have an identifier. The 'onload' handler invokes SVG-specific DOM API methods which use these identifiers. +

+

+ First, the handler gets the SVG root element and checks it has the expected identifier. + Then, the handler accesses the coordinates of the rect element and uses them to build a 'shadow' rectangle under the existing one. + Finally, the 'shadow' rectangle is created using the createElementNS method. +

+

+ If an implementation supports the ECMAScript DOM binding for SVG, then the image must show the following text: + "This document's root identifier is: svg-root" and a red rectangle with a black shadow rectangle. Otherwise, only a red rectangle will show. +

+

The rendered picture should match the reference image.

+ +
+ + + diff --git a/test/W3C_SVG_12_TinyTestSuite_beta/htmlEmbedHarness/udom-smil-201-t.html b/test/W3C_SVG_12_TinyTestSuite_beta/htmlEmbedHarness/udom-smil-201-t.html new file mode 100755 index 00000000..80faabf9 --- /dev/null +++ b/test/W3C_SVG_12_TinyTestSuite_beta/htmlEmbedHarness/udom-smil-201-t.html @@ -0,0 +1,106 @@ + + + + + + + + +SVG 1.2 Tiny test:udom-smil-201-t + + + + + + + + + + +
+ + + + + + + + + + + + +
+

udom-smil-201-t

+
+ + + raster image of udom-smil-201-t +
+
+ + +
+

+ This tests the beginElement and beginElementAt + methods of the ElementTimeControl interface. +

+

+ The test consists of four animated rectangles, one pink, three blue. + To perform the test, the user must click the pink rectangle. + The pink rectangle is set to animate with begin='mousedown', + while the three blue rectangles have begin='indefinite', + and are begun with calls to methods on the ElementTimeControl + interface: +

+ +

+ The test has been passed if the three blue rectangles reach their + destination at the same time as the pink rectangle. +

+ +
+ + + diff --git a/test/W3C_SVG_12_TinyTestSuite_beta/htmlEmbedHarness/udom-smil-202-t.html b/test/W3C_SVG_12_TinyTestSuite_beta/htmlEmbedHarness/udom-smil-202-t.html new file mode 100755 index 00000000..212286f1 --- /dev/null +++ b/test/W3C_SVG_12_TinyTestSuite_beta/htmlEmbedHarness/udom-smil-202-t.html @@ -0,0 +1,118 @@ + + + + + + + + +SVG 1.2 Tiny test:udom-smil-202-t + + + + + + + + + + +
+ + + + + + + + + + + + +
+

udom-smil-202-t

+
+ + + raster image of udom-smil-202-t +
+
+ + +
+

+ This tests the beginElement and beginElementAt + methods of the ElementTimeControl interface, with different + begin instance time lists. +

+

+ The test has been passed if all the three rectangles and the circle + become blue one second after clicking the circle. +

+

+ The test consists of a pink circle and three animated rectangles. + To perform the test, the user must click the pink circle. + The three rectangles all have animations that begin='0s' + and run indefinitely, and are also set to restart='none'. + Clicking the circle will attempt to begin the three animations as follows: +

+ +

+ All three animations should not begin with these method calls, since + the animations have already started and are set to restart='none'. + If an animation does restart, its endEvent will be captured + and the rectangle will become red. If the animation does not restart, + it will become blue one second after clicking the pink circle. +

+

+ In addition, the circle should become blue one second after clicking + it. This indicates that the implementation correctly dispatches an + endEvent when an element restarts. +

+ +
+ + + diff --git a/test/W3C_SVG_12_TinyTestSuite_beta/htmlEmbedHarness/udom-smil-203-t.html b/test/W3C_SVG_12_TinyTestSuite_beta/htmlEmbedHarness/udom-smil-203-t.html new file mode 100755 index 00000000..08952d0a --- /dev/null +++ b/test/W3C_SVG_12_TinyTestSuite_beta/htmlEmbedHarness/udom-smil-203-t.html @@ -0,0 +1,111 @@ + + + + + + + + +SVG 1.2 Tiny test:udom-smil-203-t + + + + + + + + + + +
+ + + + + + + + + + + + +
+

udom-smil-203-t

+
+ + + raster image of udom-smil-203-t +
+
+ + +
+

+ This tests the endElement and endElementAt + methods of the ElementTimeControl interface. +

+

+ The test consists of four animated rectangles, one pink, three blue. + To perform the test, the user must click the pink rectangle. + The pink rectangle is set to animate with begin='mousedown'. + The three blue rectangles have two animations each: the first is + an animation element that moves the rectangle along its + corresponding line, with begin='0s' dur='5s'. After the + animation element is a set element with + end='indefinite'. Each set animation is ended with + calls to methods on the ElementTimeControl interface: +

+ +

+ The test has been passed if the first two blue rectangles follow the + animation of the pink rectangle, and the third blue rectangle follows + the animation of the pink rectangle after 2.5 seconds (i.e., half way + through the pink rectangle's animation). +

+ +
+ + + diff --git a/test/W3C_SVG_12_TinyTestSuite_beta/htmlEmbedHarness/udom-svg-201-t.html b/test/W3C_SVG_12_TinyTestSuite_beta/htmlEmbedHarness/udom-svg-201-t.html new file mode 100755 index 00000000..a16f714e --- /dev/null +++ b/test/W3C_SVG_12_TinyTestSuite_beta/htmlEmbedHarness/udom-svg-201-t.html @@ -0,0 +1,87 @@ + + + + + + + + +SVG 1.2 Tiny test:udom-svg-201-t + + + + + + + + + + +
+ + + + + + + + + + + + +
+

udom-svg-201-t

+
+ + + raster image of udom-svg-201-t +
+
+ + +
+

+ This tests that the SVGException interface is present + and that all of its constant fields exist and are correct. +

+

+ The rectangle in the top left corner indicates whether all + of the constant fields are correct; green for pass, red for fail. +

+ +
+ + + diff --git a/test/W3C_SVG_12_TinyTestSuite_beta/htmlEmbedHarness/udom-svg-202-t.html b/test/W3C_SVG_12_TinyTestSuite_beta/htmlEmbedHarness/udom-svg-202-t.html new file mode 100755 index 00000000..055f1c51 --- /dev/null +++ b/test/W3C_SVG_12_TinyTestSuite_beta/htmlEmbedHarness/udom-svg-202-t.html @@ -0,0 +1,87 @@ + + + + + + + + +SVG 1.2 Tiny test:udom-svg-202-t + + + + + + + + + + +
+ + + + + + + + + + + + +
+

udom-svg-202-t

+
+ + + raster image of udom-svg-202-t +
+
+ + +
+

+ This tests that the global attribute of the + SVGException interface does refer to the global script context. +

+

+ The rectangle in the top left corner indicates whether the test + passed; green for pass, red for fail. +

+ +
+ + + diff --git a/test/W3C_SVG_12_TinyTestSuite_beta/htmlEmbedHarness/udom-svg-204-t.html b/test/W3C_SVG_12_TinyTestSuite_beta/htmlEmbedHarness/udom-svg-204-t.html new file mode 100755 index 00000000..d09fc001 --- /dev/null +++ b/test/W3C_SVG_12_TinyTestSuite_beta/htmlEmbedHarness/udom-svg-204-t.html @@ -0,0 +1,95 @@ + + + + + + + + +SVG 1.2 Tiny test:udom-svg-204-t + + + + + + + + + + +
+ + + + + + + + + + + + +
+

udom-svg-204-t

+
+ + + raster image of udom-svg-204-t +
+
+ + +
+

+ This tests that the correspondingElement and + correspondingUseElement attributes of the + SVGElementInstance interface have expected values. +

+

+ The test consists of a single rectangle that is a descendant + of a number of g elements and a couple of nested + use shadow trees. When the user clicks the rectangle, + a mousedown event is dispatched, which travels up + the nested shadow trees. If the correspondingElement and + correspondingUseElement attributes of the + SVGElementInstance object (which is the currentTarget + of the event) are correct, the rectangle becomes blue. Otherwise, + it becomes red. +

+ +
+ + + diff --git a/test/W3C_SVG_12_TinyTestSuite_beta/htmlEmbedHarness/udom-svg-205-t.html b/test/W3C_SVG_12_TinyTestSuite_beta/htmlEmbedHarness/udom-svg-205-t.html new file mode 100755 index 00000000..337e0f89 --- /dev/null +++ b/test/W3C_SVG_12_TinyTestSuite_beta/htmlEmbedHarness/udom-svg-205-t.html @@ -0,0 +1,87 @@ + + + + + + + + +SVG 1.2 Tiny test:udom-svg-205-t + + + + + + + + + + +
+ + + + + + + + + + + + +
+

udom-svg-205-t

+
+ + + raster image of udom-svg-205-t +
+
+ + +
+

+ This tests that the NAV_* constants on the + SVGSVGElement exist. +

+

+ The rectangle in the top left corner indicates whether all + of the constant fields are correct; green for pass, red for fail. +

+ +
+ + + diff --git a/test/W3C_SVG_12_TinyTestSuite_beta/htmlEmbedHarness/udom-svg-206-t.html b/test/W3C_SVG_12_TinyTestSuite_beta/htmlEmbedHarness/udom-svg-206-t.html new file mode 100755 index 00000000..21e5703a --- /dev/null +++ b/test/W3C_SVG_12_TinyTestSuite_beta/htmlEmbedHarness/udom-svg-206-t.html @@ -0,0 +1,97 @@ + + + + + + + + +SVG 1.2 Tiny test:udom-svg-206-t + + + + + + + + + + +
+ + + + + + + + + + + + +
+

udom-svg-206-t

+
+ + + raster image of udom-svg-206-t +
+
+ + +
+

+ This tests setting and getting the currentScale attribute of + the SVGSVGElement interface. +

+

+ There are three sub-tests, each represented by a rectangle (blue for + pass, red for fail). The test has been passed if all three rectangles are blue, and + the test slide is shown at 90% of its regular size (i.e., the + range (0, 0) -> (533.333, 400) user units is shown). +

+ +

+ The first sub-test checks that the initial value of + currentScale is 1. The second checks setting + currentScale to a valid value (in this case, 0.9), and + looks at the resulting screenCTM. The third exercises retrieving + the newly set value. +

+ +
+ + + diff --git a/test/W3C_SVG_12_TinyTestSuite_beta/htmlEmbedHarness/udom-svg-208-t.html b/test/W3C_SVG_12_TinyTestSuite_beta/htmlEmbedHarness/udom-svg-208-t.html new file mode 100755 index 00000000..500025af --- /dev/null +++ b/test/W3C_SVG_12_TinyTestSuite_beta/htmlEmbedHarness/udom-svg-208-t.html @@ -0,0 +1,83 @@ + + + + + + + + +SVG 1.2 Tiny test:udom-svg-208-t + + + + + + + + + + +
+ + + + + + + + + + + + +
+

udom-svg-208-t

+
+ + + raster image of udom-svg-208-t +
+
+ + +
+

+ Test on SMIL with scripting. The animated bar should pause for 3s at 1.5s and resume at 4.5s. + The smaller rects should change color at the indicated times. +

+ +
+ + + diff --git a/test/W3C_SVG_12_TinyTestSuite_beta/htmlEmbedHarness/udom-svg-209-t.html b/test/W3C_SVG_12_TinyTestSuite_beta/htmlEmbedHarness/udom-svg-209-t.html new file mode 100755 index 00000000..4a5f8526 --- /dev/null +++ b/test/W3C_SVG_12_TinyTestSuite_beta/htmlEmbedHarness/udom-svg-209-t.html @@ -0,0 +1,82 @@ + + + + + + + + +SVG 1.2 Tiny test:udom-svg-209-t + + + + + + + + + + +
+ + + + + + + + + + + + +
+

udom-svg-209-t

+
+ + + raster image of udom-svg-209-t +
+
+ + +
+

+ Test on SMIL with scripting. Animation should match the indicated begin- repeat- and end-values +

+ +
+ + + diff --git a/test/W3C_SVG_12_TinyTestSuite_beta/htmlEmbedHarness/udom-svg-210-t.html b/test/W3C_SVG_12_TinyTestSuite_beta/htmlEmbedHarness/udom-svg-210-t.html new file mode 100755 index 00000000..83d20fdd --- /dev/null +++ b/test/W3C_SVG_12_TinyTestSuite_beta/htmlEmbedHarness/udom-svg-210-t.html @@ -0,0 +1,83 @@ + + + + + + + + +SVG 1.2 Tiny test:udom-svg-210-t + + + + + + + + + + +
+ + + + + + + + + + + + +
+

udom-svg-210-t

+
+ + + raster image of udom-svg-210-t +
+
+ + +
+

+ Test on SMIL with scripting. Animation should match the indicated begin- and end-values, + and should pause for three seconds when the pause-sign turn red. +

+ +
+ + + diff --git a/test/W3C_SVG_12_TinyTestSuite_beta/htmlEmbedHarness/udom-svg-211-t.html b/test/W3C_SVG_12_TinyTestSuite_beta/htmlEmbedHarness/udom-svg-211-t.html new file mode 100755 index 00000000..2873a1f1 --- /dev/null +++ b/test/W3C_SVG_12_TinyTestSuite_beta/htmlEmbedHarness/udom-svg-211-t.html @@ -0,0 +1,83 @@ + + + + + + + + +SVG 1.2 Tiny test:udom-svg-211-t + + + + + + + + + + +
+ + + + + + + + + + + + +
+

udom-svg-211-t

+
+ + + raster image of udom-svg-211-t +
+
+ + +
+

+ Test on SMIL with scripting. Animation should match the indicated begin- and end-values, + and should pause for three seconds when the pause-sign turns red. restart is set to "never" so should NOT restart. +

+ +
+ + + diff --git a/test/W3C_SVG_12_TinyTestSuite_beta/htmlEmbedHarness/udom-svg-213-t.html b/test/W3C_SVG_12_TinyTestSuite_beta/htmlEmbedHarness/udom-svg-213-t.html new file mode 100755 index 00000000..7e7cc807 --- /dev/null +++ b/test/W3C_SVG_12_TinyTestSuite_beta/htmlEmbedHarness/udom-svg-213-t.html @@ -0,0 +1,98 @@ + + + + + + + + +SVG 1.2 Tiny test:udom-svg-213-t + + + + + + + + + + +
+ + + + + + + + + + + + +
+

udom-svg-213-t

+
+ + + raster image of udom-svg-213-t +
+
+ + +
+

+ This tests that the getCurrentTime method of the + SVGSVGElement interface returns sensible values. +

+

+ The test shows three rectangles. The test is passed if the first rectangle is blue, and after + clicking the second rectangle it turns blue, and after clicking + the third rectangle it also turns blue. +

+

+ The first one represents + whether calling getCurrentTime before the load + event is dispatched returns 0. Clicking the second rectangle + (which is red to begin with) then tests that the current time is + greater than 0. Finally, clicking the third rectangle (which + also is red to begin with) tests that the current time is greater + than the time at which the second rectangle was clicked. + +

+ +
+ + + diff --git a/test/W3C_SVG_12_TinyTestSuite_beta/htmlEmbedHarness/udom-svg-216-t.html b/test/W3C_SVG_12_TinyTestSuite_beta/htmlEmbedHarness/udom-svg-216-t.html new file mode 100755 index 00000000..e17c4436 --- /dev/null +++ b/test/W3C_SVG_12_TinyTestSuite_beta/htmlEmbedHarness/udom-svg-216-t.html @@ -0,0 +1,90 @@ + + + + + + + + +SVG 1.2 Tiny test:udom-svg-216-t + + + + + + + + + + +
+ + + + + + + + + + + + +
+

udom-svg-216-t

+
+ + + raster image of udom-svg-216-t +
+
+ + +
+

+ This tests the basic functionality of + SVGSVGElement.createSVGPath(). It + verifies that the returned path object has no path segments + initially, that a path segment can be added to the path object, + and that the object returned is actually + instanceof SVGPath. +

+

+ The test is passed if the rectangle is green. +

+ +
+ + + diff --git a/test/W3C_SVG_12_TinyTestSuite_beta/htmlEmbedHarness/udom-svg-218-t.html b/test/W3C_SVG_12_TinyTestSuite_beta/htmlEmbedHarness/udom-svg-218-t.html new file mode 100755 index 00000000..a1981654 --- /dev/null +++ b/test/W3C_SVG_12_TinyTestSuite_beta/htmlEmbedHarness/udom-svg-218-t.html @@ -0,0 +1,98 @@ + + + + + + + + +SVG 1.2 Tiny test:udom-svg-218-t + + + + + + + + + + +
+ + + + + + + + + + + + +
+

udom-svg-218-t

+
+ + + raster image of udom-svg-218-t +
+
+ + +
+

+ This test some more complex invocations of SVGGlobal.getURL(). +

+

+ The test contains 3 subtests. The test is passed if all 3 rectangles + relating to a respective subtest turn green upon test completion. +

+

+ The first subtest tests fetching a text/plain resource via a 3xx + redirection status code using SVGGlobal.getURL(). +

+

+ The second subtest tests a text/plain resource returned with status + code 403 using SVGGlobal.getURL(). +

+

+ The third subtest tests a text/plain resource returned with status + code 500 using SVGGlobal.getURL(). +

+ +
+ + + diff --git a/test/W3C_SVG_12_TinyTestSuite_beta/htmlEmbedHarness/udom-svg-220-t.html b/test/W3C_SVG_12_TinyTestSuite_beta/htmlEmbedHarness/udom-svg-220-t.html new file mode 100755 index 00000000..e1b84d0d --- /dev/null +++ b/test/W3C_SVG_12_TinyTestSuite_beta/htmlEmbedHarness/udom-svg-220-t.html @@ -0,0 +1,90 @@ + + + + + + + + +SVG 1.2 Tiny test:udom-svg-220-t + + + + + + + + + + +
+ + + + + + + + + + + + +
+

udom-svg-220-t

+
+ + + raster image of udom-svg-220-t +
+
+ + +
+

+ This tests trait access methods on the TraitAccess interface + for the 'accumulate' trait. Each trait getter and setter method is called on + each applicable SVG Tiny 1.2 element. +

+

+ The test is passed if the rendering matches the reference rendering. + The rectangle must be blue, and there must be a blue circle to the + right of it whose diameter is the same as the height of the rectangle. + There must be no text displayed below the rectangle. +

+ +
+ + + diff --git a/test/W3C_SVG_12_TinyTestSuite_beta/htmlEmbedHarness/udom-svg-224-t.html b/test/W3C_SVG_12_TinyTestSuite_beta/htmlEmbedHarness/udom-svg-224-t.html new file mode 100755 index 00000000..73b642bd --- /dev/null +++ b/test/W3C_SVG_12_TinyTestSuite_beta/htmlEmbedHarness/udom-svg-224-t.html @@ -0,0 +1,100 @@ + + + + + + + + +SVG 1.2 Tiny test:udom-svg-224-t + + + + + + + + + + +
+ + + + + + + + + + + + +
+

udom-svg-224-t

+
+ + + raster image of udom-svg-224-t +
+
+ + +
+

+ This tests trait access methods on the TraitAccess interface + for the 'begin' trait. Each trait getter and setter method is called on + each applicable SVG Tiny 1.2 element. +

+

+ The test is passed if, five seconds after the document begins: +

+ +

+ Also, there must be no text displayed inside the rounded green rectangle. +

+ +
+ + + diff --git a/test/W3C_SVG_12_TinyTestSuite_beta/htmlEmbedHarness/udom-svg-225-t.html b/test/W3C_SVG_12_TinyTestSuite_beta/htmlEmbedHarness/udom-svg-225-t.html new file mode 100755 index 00000000..8a82ec84 --- /dev/null +++ b/test/W3C_SVG_12_TinyTestSuite_beta/htmlEmbedHarness/udom-svg-225-t.html @@ -0,0 +1,89 @@ + + + + + + + + +SVG 1.2 Tiny test:udom-svg-225-t + + + + + + + + + + +
+ + + + + + + + + + + + +
+

udom-svg-225-t

+
+ + + raster image of udom-svg-225-t +
+
+ + +
+

+ This test verifies that the CTM fetched by getScreenCTM is a snapshot value of the current animated state. + + The CTM values are inspected on 'beginEvent', 'endEvent' and 'repeatEvent' times. The expected values are + calculated from the SMIL Animation equations and the current document time. + + The test has passed if the testcase reports "Results match expected values." 8 times, and each such string + is prefixed with a green rectangle. When this happens the text in the rect with blue stroke changes from + 'failed' to 'passed'. +

+ +
+ + + diff --git a/test/W3C_SVG_12_TinyTestSuite_beta/htmlEmbedHarness/udom-svg-226-t.html b/test/W3C_SVG_12_TinyTestSuite_beta/htmlEmbedHarness/udom-svg-226-t.html new file mode 100755 index 00000000..9263f6da --- /dev/null +++ b/test/W3C_SVG_12_TinyTestSuite_beta/htmlEmbedHarness/udom-svg-226-t.html @@ -0,0 +1,86 @@ + + + + + + + + +SVG 1.2 Tiny test:udom-svg-226-t + + + + + + + + + + +
+ + + + + + + + + + + + +
+

udom-svg-226-t

+
+ + + raster image of udom-svg-226-t +
+
+ + +
+

+ Four animations begin at time 0 and end at times 1, 2, 5 and 9 seconds. Event listeners are registered + for the "endEvent" event. + As each animation ends, getCurrentTime() is called and verified with the expected time. The expected time is compared with + the minimum time to take into account implementation-specific document time resolution. + If all times have the expected values, the text changes from 'testing' to 'passed' +

+ +
+ + + diff --git a/test/W3C_SVG_12_TinyTestSuite_beta/htmlEmbedHarness/udom-svg-227-t.html b/test/W3C_SVG_12_TinyTestSuite_beta/htmlEmbedHarness/udom-svg-227-t.html new file mode 100755 index 00000000..bd62af36 --- /dev/null +++ b/test/W3C_SVG_12_TinyTestSuite_beta/htmlEmbedHarness/udom-svg-227-t.html @@ -0,0 +1,93 @@ + + + + + + + + +SVG 1.2 Tiny test:udom-svg-227-t + + + + + + + + + + +
+ + + + + + + + + + + + +
+

udom-svg-227-t

+
+ + + raster image of udom-svg-227-t +
+
+ + +
+

+ Tests setCurrentTime. The test is passed if the the moving bar skips + from 2 to 4 , and from 5 to 8; and after the animation completes, the + text "passed" appears at the bottom right. +

+

+ Four animations begin at time 0 and end at times 1, 2, 5 and 9 seconds. + Event listeners are registered for the "endEvent" event. + As each animation ends, getCurrentTime() is called to verify the expected current time, which + is them followed by a call to setCurrentTime. + If all times have the expected values, the text changes from 'testing' to 'passed' + The expected time is compared with + the minimum time to take into account implementation-specific document time resolution. +

+ +
+ + + diff --git a/test/W3C_SVG_12_TinyTestSuite_beta/htmlEmbedHarness/udom-svg-228-t.html b/test/W3C_SVG_12_TinyTestSuite_beta/htmlEmbedHarness/udom-svg-228-t.html new file mode 100755 index 00000000..f72e3621 --- /dev/null +++ b/test/W3C_SVG_12_TinyTestSuite_beta/htmlEmbedHarness/udom-svg-228-t.html @@ -0,0 +1,87 @@ + + + + + + + + +SVG 1.2 Tiny test:udom-svg-228-t + + + + + + + + + + +
+ + + + + + + + + + + + +
+

udom-svg-228-t

+
+ + + raster image of udom-svg-228-t +
+
+ + +
+

+ This tests setFocus and getCurrentFocusedObject, setting the focus and then checking that the correct element has focus. Successes are shown in green, + failures in red. If all subtests pass, the text in the blue box changes from "failed" to "passed". +

+

+ A numeric keypad is shown. Focus starts on the "5" and is then moved programatically + to each of the other numbers, finally returning to "5". Since this happens on the load event, there is no indication of the focus moving. +

+ +
+ + + diff --git a/test/W3C_SVG_12_TinyTestSuite_beta/htmlEmbedHarness/udom-svg-231-t.html b/test/W3C_SVG_12_TinyTestSuite_beta/htmlEmbedHarness/udom-svg-231-t.html new file mode 100755 index 00000000..4677c2f1 --- /dev/null +++ b/test/W3C_SVG_12_TinyTestSuite_beta/htmlEmbedHarness/udom-svg-231-t.html @@ -0,0 +1,82 @@ + + + + + + + + +SVG 1.2 Tiny test:udom-svg-231-t + + + + + + + + + + +
+ + + + + + + + + + + + +
+

udom-svg-231-t

+
+ + + raster image of udom-svg-231-t +
+
+ + +
+

+ The TraitAccess tests uses a set of common ECMAScript code to test various trait combinations with expected values. If a result is not as expected, an error is displayed in red text, indicating the returned result and what was expected. When all subtests have returned success, the result is set to 'passed'. The pass condition for the test is that all subtests are green, and the word 'passed' is at the bottom right. +

+ +
+ + + diff --git a/test/W3C_SVG_12_TinyTestSuite_beta/htmlEmbedHarness/udom-svg-232-t.html b/test/W3C_SVG_12_TinyTestSuite_beta/htmlEmbedHarness/udom-svg-232-t.html new file mode 100755 index 00000000..19a32035 --- /dev/null +++ b/test/W3C_SVG_12_TinyTestSuite_beta/htmlEmbedHarness/udom-svg-232-t.html @@ -0,0 +1,82 @@ + + + + + + + + +SVG 1.2 Tiny test:udom-svg-232-t + + + + + + + + + + +
+ + + + + + + + + + + + +
+

udom-svg-232-t

+
+ + + raster image of udom-svg-232-t +
+
+ + +
+

+ The TraitAccess tests uses a set of common ECMAScript code to test various trait combinations with expected values. If a result is not as expected, an error is displayed in red text, indicating the returned result and what was expected. When all subtests have returned success, the result is set to 'passed'. The pass condition for the test is that all subtests are green, and the word 'passed' is at the bottom right. +

+ +
+ + + diff --git a/test/W3C_SVG_12_TinyTestSuite_beta/htmlEmbedHarness/udom-svg-233-t.html b/test/W3C_SVG_12_TinyTestSuite_beta/htmlEmbedHarness/udom-svg-233-t.html new file mode 100755 index 00000000..029e4ce6 --- /dev/null +++ b/test/W3C_SVG_12_TinyTestSuite_beta/htmlEmbedHarness/udom-svg-233-t.html @@ -0,0 +1,82 @@ + + + + + + + + +SVG 1.2 Tiny test:udom-svg-233-t + + + + + + + + + + +
+ + + + + + + + + + + + +
+

udom-svg-233-t

+
+ + + raster image of udom-svg-233-t +
+
+ + +
+

+ The TraitAccess tests uses a set of common ECMAScript code to test various trait combinations with expected values. If a result is not as expected, an error is displayed in red text, indicating the returned result and what was expected. When all subtests have returned success, the result is set to 'passed'. The pass condition for the test is that all subtests are green, and the word 'passed' is at the bottom right. +

+ +
+ + + diff --git a/test/W3C_SVG_12_TinyTestSuite_beta/htmlEmbedHarness/udom-svg-236-t.html b/test/W3C_SVG_12_TinyTestSuite_beta/htmlEmbedHarness/udom-svg-236-t.html new file mode 100755 index 00000000..ba671e54 --- /dev/null +++ b/test/W3C_SVG_12_TinyTestSuite_beta/htmlEmbedHarness/udom-svg-236-t.html @@ -0,0 +1,82 @@ + + + + + + + + +SVG 1.2 Tiny test:udom-svg-236-t + + + + + + + + + + +
+ + + + + + + + + + + + +
+

udom-svg-236-t

+
+ + + raster image of udom-svg-236-t +
+
+ + +
+

+ The TraitAccess tests uses a set of common ECMAScript code to test various trait combinations with expected values. If a result is not as expected, an error is displayed in red text, indicating the returned result and what was expected. When all subtests have returned success, the result is set to 'passed'. The pass condition for the test is that all subtests are green, and the word 'passed' is at the bottom right. +

+ +
+ + + diff --git a/test/W3C_SVG_12_TinyTestSuite_beta/htmlEmbedHarness/udom-svg-237-t.html b/test/W3C_SVG_12_TinyTestSuite_beta/htmlEmbedHarness/udom-svg-237-t.html new file mode 100755 index 00000000..6acb13e1 --- /dev/null +++ b/test/W3C_SVG_12_TinyTestSuite_beta/htmlEmbedHarness/udom-svg-237-t.html @@ -0,0 +1,87 @@ + + + + + + + + +SVG 1.2 Tiny test:udom-svg-237-t + + + + + + + + + + +
+ + + + + + + + + + + + +
+

udom-svg-237-t

+
+ + + raster image of udom-svg-237-t +
+
+ + +
+

+ The TraitAccess tests uses a set of common ECMAScript code to test + various trait combinations with expected values. If a result is not as + expected, an error is displayed in red text, indicating the returned + result and what was expected. When all subtests have returned success, + the result is set to 'passed'. The pass condition for the test is that + all subtests are green, and the word 'passed' is at the bottom right. +

+ +
+ + + diff --git a/test/W3C_SVG_12_TinyTestSuite_beta/htmlEmbedHarness/udom-svgcolor-201-t.html b/test/W3C_SVG_12_TinyTestSuite_beta/htmlEmbedHarness/udom-svgcolor-201-t.html new file mode 100755 index 00000000..fa6fa7bd --- /dev/null +++ b/test/W3C_SVG_12_TinyTestSuite_beta/htmlEmbedHarness/udom-svgcolor-201-t.html @@ -0,0 +1,85 @@ + + + + + + + + +SVG 1.2 Tiny test:udom-svgcolor-201-t + + + + + + + + + + +
+ + + + + + + + + + + + +
+

udom-svgcolor-201-t

+
+ + + raster image of udom-svgcolor-201-t +
+
+ + +
+

+ This test creates an SVGColor object and verifies that the intial data is all zero. It then modifies the red, green, and blue attributes. + To pass, the resulting attributes should be as expected should be correct, and when this happens the text + changes from 'failed' to 'passed' +

+

Note that, since the test does not insert this object into the document, it is not displayed. The test simply verifies that the object has been created correctly.

+ +
+ + + diff --git a/test/W3C_SVG_12_TinyTestSuite_beta/htmlEmbedHarness/udom-svglocatable-201-t.html b/test/W3C_SVG_12_TinyTestSuite_beta/htmlEmbedHarness/udom-svglocatable-201-t.html new file mode 100755 index 00000000..ec1b00c7 --- /dev/null +++ b/test/W3C_SVG_12_TinyTestSuite_beta/htmlEmbedHarness/udom-svglocatable-201-t.html @@ -0,0 +1,84 @@ + + + + + + + + +SVG 1.2 Tiny test:udom-svglocatable-201-t + + + + + + + + + + +
+ + + + + + + + + + + + +
+

udom-svglocatable-201-t

+
+ + + raster image of udom-svglocatable-201-t +
+
+ + +
+

+ This test draws a few basic shapes and checks for correct values from getBBox(). + To pass, each returned bounding box must be correct (indicated by printing the values in green), and when this happens the text + in the rect with blue stroke changes from 'failed' to 'passed'. +

+ +
+ + + diff --git a/test/W3C_SVG_12_TinyTestSuite_beta/htmlEmbedHarness/udom-svglocatable-202-t.html b/test/W3C_SVG_12_TinyTestSuite_beta/htmlEmbedHarness/udom-svglocatable-202-t.html new file mode 100755 index 00000000..a04cdbfd --- /dev/null +++ b/test/W3C_SVG_12_TinyTestSuite_beta/htmlEmbedHarness/udom-svglocatable-202-t.html @@ -0,0 +1,88 @@ + + + + + + + + +SVG 1.2 Tiny test:udom-svglocatable-202-t + + + + + + + + + + +
+ + + + + + + + + + + + +
+

udom-svglocatable-202-t

+
+ + + raster image of udom-svglocatable-202-t +
+
+ + +
+

+ Note, this test does not have 100% for the svg width and height on purpose as to have exact + expected results for the screen bounding boxes +

+

+ This test draws a few basic shapes and checks for correct values from getScreenBBox(). + To pass, each returned bounding box must be correct (indicated by printing the values in green), and when this happens the text + changes from 'failed' to 'passed' +

+ +
+ + + diff --git a/test/W3C_SVG_12_TinyTestSuite_beta/htmlEmbedHarness/udom-svglocatable-203-t.html b/test/W3C_SVG_12_TinyTestSuite_beta/htmlEmbedHarness/udom-svglocatable-203-t.html new file mode 100755 index 00000000..85191cd8 --- /dev/null +++ b/test/W3C_SVG_12_TinyTestSuite_beta/htmlEmbedHarness/udom-svglocatable-203-t.html @@ -0,0 +1,89 @@ + + + + + + + + +SVG 1.2 Tiny test:udom-svglocatable-203-t + + + + + + + + + + +
+ + + + + + + + + + + + +
+

udom-svglocatable-203-t

+
+ + + raster image of udom-svglocatable-203-t +
+
+ + +
+ +

+ This test draws a few basic shapes and checks for correct values from getScreenCTM(). + To pass, each returned CTM must be correct (indicated by printing the values in green), + and the string 'passed' appears in the lower right. +

+

+ Note, this test does not have 100% for the svg width and height on purpose as to have exact + expected results for the screen CTM. +

+ +
+ + + diff --git a/test/W3C_SVG_12_TinyTestSuite_beta/htmlEmbedHarness/udom-svgmatrix-201-t.html b/test/W3C_SVG_12_TinyTestSuite_beta/htmlEmbedHarness/udom-svgmatrix-201-t.html new file mode 100755 index 00000000..9c1d2b75 --- /dev/null +++ b/test/W3C_SVG_12_TinyTestSuite_beta/htmlEmbedHarness/udom-svgmatrix-201-t.html @@ -0,0 +1,85 @@ + + + + + + + + +SVG 1.2 Tiny test:udom-svgmatrix-201-t + + + + + + + + + + +
+ + + + + + + + + + + + +
+

udom-svgmatrix-201-t

+
+ + + raster image of udom-svgmatrix-201-t +
+
+ + +
+

+ This test creates a SVGMatrix object and calls getComponent to verify the result + To pass, each returned component must be correct. To indicate a pass + the result of the test changes to green and the text at the bottom right + hand corner changes from "failed" to "passed". +

+ +
+ + + diff --git a/test/W3C_SVG_12_TinyTestSuite_beta/htmlEmbedHarness/udom-svgmatrix-202-t.html b/test/W3C_SVG_12_TinyTestSuite_beta/htmlEmbedHarness/udom-svgmatrix-202-t.html new file mode 100755 index 00000000..3be7f46d --- /dev/null +++ b/test/W3C_SVG_12_TinyTestSuite_beta/htmlEmbedHarness/udom-svgmatrix-202-t.html @@ -0,0 +1,86 @@ + + + + + + + + +SVG 1.2 Tiny test:udom-svgmatrix-202-t + + + + + + + + + + +
+ + + + + + + + + + + + +
+

udom-svgmatrix-202-t

+
+ + + raster image of udom-svgmatrix-202-t +
+
+ + +
+

+ This test creates two SVGMatrix objects and calls inverse on each. + The first matrix is invertable, but the second one is not, and should throw an exception when inverse() is called. + To pass, the inverted matrix must be correct, and the exception for the second matrix must be thrown. + To indicate a pass the result of the test changes to green and the text at the bottom right + hand corner changes from "failed" to "passed". +

+ +
+ + + diff --git a/test/W3C_SVG_12_TinyTestSuite_beta/htmlEmbedHarness/udom-svgmatrix-203-t.html b/test/W3C_SVG_12_TinyTestSuite_beta/htmlEmbedHarness/udom-svgmatrix-203-t.html new file mode 100755 index 00000000..836f5c5d --- /dev/null +++ b/test/W3C_SVG_12_TinyTestSuite_beta/htmlEmbedHarness/udom-svgmatrix-203-t.html @@ -0,0 +1,84 @@ + + + + + + + + +SVG 1.2 Tiny test:udom-svgmatrix-203-t + + + + + + + + + + +
+ + + + + + + + + + + + +
+

udom-svgmatrix-203-t

+
+ + + raster image of udom-svgmatrix-203-t +
+
+ + +
+

+ This test creates a few SVGMatrix objects and calls mMultiply. + To pass, the result matrices should be correct, and when this happens the text + changes from 'failed' to 'passed'. +

+ +
+ + + diff --git a/test/W3C_SVG_12_TinyTestSuite_beta/htmlEmbedHarness/udom-svgmatrix-204-t.html b/test/W3C_SVG_12_TinyTestSuite_beta/htmlEmbedHarness/udom-svgmatrix-204-t.html new file mode 100755 index 00000000..05cdd866 --- /dev/null +++ b/test/W3C_SVG_12_TinyTestSuite_beta/htmlEmbedHarness/udom-svgmatrix-204-t.html @@ -0,0 +1,84 @@ + + + + + + + + +SVG 1.2 Tiny test:udom-svgmatrix-204-t + + + + + + + + + + +
+ + + + + + + + + + + + +
+

udom-svgmatrix-204-t

+
+ + + raster image of udom-svgmatrix-204-t +
+
+ + +
+

+ This test creates some SVGMatrix objects and then calls mRotate. + To pass, the result matrices should be correct, and when this happens the text + changes from 'failed' to 'passed'. +

+ +
+ + + diff --git a/test/W3C_SVG_12_TinyTestSuite_beta/htmlEmbedHarness/udom-svgmatrix-205-t.html b/test/W3C_SVG_12_TinyTestSuite_beta/htmlEmbedHarness/udom-svgmatrix-205-t.html new file mode 100755 index 00000000..1100b152 --- /dev/null +++ b/test/W3C_SVG_12_TinyTestSuite_beta/htmlEmbedHarness/udom-svgmatrix-205-t.html @@ -0,0 +1,84 @@ + + + + + + + + +SVG 1.2 Tiny test:udom-svgmatrix-205-t + + + + + + + + + + +
+ + + + + + + + + + + + +
+

udom-svgmatrix-205-t

+
+ + + raster image of udom-svgmatrix-205-t +
+
+ + +
+

+ This test creates an SVGMatrix object and calls mScale. + To pass, the result matrix should be correct, and when this happens the text + changes from 'failed' to 'passed'. +

+ +
+ + + diff --git a/test/W3C_SVG_12_TinyTestSuite_beta/htmlEmbedHarness/udom-svgmatrix-206-t.html b/test/W3C_SVG_12_TinyTestSuite_beta/htmlEmbedHarness/udom-svgmatrix-206-t.html new file mode 100755 index 00000000..1bb4abd7 --- /dev/null +++ b/test/W3C_SVG_12_TinyTestSuite_beta/htmlEmbedHarness/udom-svgmatrix-206-t.html @@ -0,0 +1,84 @@ + + + + + + + + +SVG 1.2 Tiny test:udom-svgmatrix-206-t + + + + + + + + + + +
+ + + + + + + + + + + + +
+

udom-svgmatrix-206-t

+
+ + + raster image of udom-svgmatrix-206-t +
+
+ + +
+

+ This test creates an SVGMatrix object and calls mTranslate. + To pass, the result matrix should be correct, and when this happens the text + changes from 'failed' to 'passed'. +

+ +
+ + + diff --git a/test/W3C_SVG_12_TinyTestSuite_beta/htmlEmbedHarness/udom-svgpath-201-t.html b/test/W3C_SVG_12_TinyTestSuite_beta/htmlEmbedHarness/udom-svgpath-201-t.html new file mode 100755 index 00000000..b1ec97f9 --- /dev/null +++ b/test/W3C_SVG_12_TinyTestSuite_beta/htmlEmbedHarness/udom-svgpath-201-t.html @@ -0,0 +1,85 @@ + + + + + + + + +SVG 1.2 Tiny test:udom-svgpath-201-t + + + + + + + + + + +
+ + + + + + + + + + + + +
+

udom-svgpath-201-t

+
+ + + raster image of udom-svgpath-201-t +
+
+ + +
+

+ This test creates path data using the SVGPath interface, with emphasis on support for close, moveTo and quadTo + To pass, the path data must match expected results for the text at the bottom of the test to read 'pass'. + The path data is verified by calling getSegment and getSegmentParam. + In addition, no red should be seen through the path element. +

+ +
+ + + diff --git a/test/W3C_SVG_12_TinyTestSuite_beta/htmlEmbedHarness/udom-svgpath-202-t.html b/test/W3C_SVG_12_TinyTestSuite_beta/htmlEmbedHarness/udom-svgpath-202-t.html new file mode 100755 index 00000000..47286090 --- /dev/null +++ b/test/W3C_SVG_12_TinyTestSuite_beta/htmlEmbedHarness/udom-svgpath-202-t.html @@ -0,0 +1,85 @@ + + + + + + + + +SVG 1.2 Tiny test:udom-svgpath-202-t + + + + + + + + + + +
+ + + + + + + + + + + + +
+

udom-svgpath-202-t

+
+ + + raster image of udom-svgpath-202-t +
+
+ + +
+

+ This test creates path data using the SVGPath interface, with emphasis on support for lineTo and curveTo + To pass, the path data must match expected results for the text at the bottom of the test to read 'pass'. + The path data is verified by calling getSegment and getSegmentParam. + In addition, no red should be seen through the path element. +

+ +
+ + + diff --git a/test/W3C_SVG_12_TinyTestSuite_beta/htmlEmbedHarness/udom-svgpoint-201-t.html b/test/W3C_SVG_12_TinyTestSuite_beta/htmlEmbedHarness/udom-svgpoint-201-t.html new file mode 100755 index 00000000..74d164af --- /dev/null +++ b/test/W3C_SVG_12_TinyTestSuite_beta/htmlEmbedHarness/udom-svgpoint-201-t.html @@ -0,0 +1,83 @@ + + + + + + + + +SVG 1.2 Tiny test:udom-svgpoint-201-t + + + + + + + + + + +
+ + + + + + + + + + + + +
+

udom-svgpoint-201-t

+
+ + + raster image of udom-svgpoint-201-t +
+
+ + +
+

+ This test creates a SVGPoint and sets some basic values for x and y. To pass, the text at the + bottom of the screen should read 'passed'. +

+ +
+ + + diff --git a/test/W3C_SVG_12_TinyTestSuite_beta/htmlEmbedHarness/udom-svgrect-201-t.html b/test/W3C_SVG_12_TinyTestSuite_beta/htmlEmbedHarness/udom-svgrect-201-t.html new file mode 100755 index 00000000..e403072b --- /dev/null +++ b/test/W3C_SVG_12_TinyTestSuite_beta/htmlEmbedHarness/udom-svgrect-201-t.html @@ -0,0 +1,84 @@ + + + + + + + + +SVG 1.2 Tiny test:udom-svgrect-201-t + + + + + + + + + + +
+ + + + + + + + + + + + +
+

udom-svgrect-201-t

+
+ + + raster image of udom-svgrect-201-t +
+
+ + +
+

+ This test creates SVGRect object and verifies that the initial data is all zero. It then modifies the x, y, width and height. + To pass, the result matrix should be correct, and when this happens the text + changes from 'failed' to 'passed' +

+ +
+ + + diff --git a/test/W3C_SVG_12_TinyTestSuite_beta/htmlEmbedHarness/udom-textcontent-201-t.html b/test/W3C_SVG_12_TinyTestSuite_beta/htmlEmbedHarness/udom-textcontent-201-t.html new file mode 100755 index 00000000..f538a9cb --- /dev/null +++ b/test/W3C_SVG_12_TinyTestSuite_beta/htmlEmbedHarness/udom-textcontent-201-t.html @@ -0,0 +1,103 @@ + + + + + + + + +SVG 1.2 Tiny test:udom-textcontent-201-t + + + + + + + + + + +
+ + + + + + + + + + + + +
+

udom-textcontent-201-t

+
+ + + raster image of udom-textcontent-201-t +
+
+ + +
+

+ Tests retrieving nested text using textContent. +

+

+ For this test to pass the text "Not changed yet!" in red must be + replaced by the text "Rect Text and Rect Animate Text!" in green. +

+

+ textContent is used in the following ways: +

+
+ +
+ +
+ + + diff --git a/test/W3C_SVG_12_TinyTestSuite_beta/htmlEmbedHarness/udom-textcontent-202-t.html b/test/W3C_SVG_12_TinyTestSuite_beta/htmlEmbedHarness/udom-textcontent-202-t.html new file mode 100755 index 00000000..f12a94bb --- /dev/null +++ b/test/W3C_SVG_12_TinyTestSuite_beta/htmlEmbedHarness/udom-textcontent-202-t.html @@ -0,0 +1,84 @@ + + + + + + + + +SVG 1.2 Tiny test:udom-textcontent-202-t + + + + + + + + + + +
+ + + + + + + + + + + + +
+

udom-textcontent-202-t

+
+ + + raster image of udom-textcontent-202-t +
+
+ + +
+

+ Tests access to textContent. + The only text that should be visible is the string "Rect Text and Rect Animate Text!" in green. + The set element that makes the element "setTextContent" hidden should be removed when setting the new textContent and therefore the text must be visible. +

+ +
+ + + diff --git a/test/W3C_SVG_12_TinyTestSuite_beta/htmlEmbedHarness/udom-traitaccess-201-t.html b/test/W3C_SVG_12_TinyTestSuite_beta/htmlEmbedHarness/udom-traitaccess-201-t.html new file mode 100755 index 00000000..7685b7be --- /dev/null +++ b/test/W3C_SVG_12_TinyTestSuite_beta/htmlEmbedHarness/udom-traitaccess-201-t.html @@ -0,0 +1,84 @@ + + + + + + + + +SVG 1.2 Tiny test:udom-traitaccess-201-t + + + + + + + + + + +
+ + + + + + + + + + + + +
+

udom-traitaccess-201-t

+
+ + + raster image of udom-traitaccess-201-t +
+
+ + +
+

+ Tests trait access in uDOM. + The svg should look the same on both sides and the text + should read "Passed". Both the rects should link back to this test. +

+ +
+ + + diff --git a/test/W3C_SVG_12_TinyTestSuite_beta/htmlEmbedHarness/udom-traitaccess-202-t.html b/test/W3C_SVG_12_TinyTestSuite_beta/htmlEmbedHarness/udom-traitaccess-202-t.html new file mode 100755 index 00000000..e1d69f62 --- /dev/null +++ b/test/W3C_SVG_12_TinyTestSuite_beta/htmlEmbedHarness/udom-traitaccess-202-t.html @@ -0,0 +1,93 @@ + + + + + + + + +SVG 1.2 Tiny test:udom-traitaccess-202-t + + + + + + + + + + +
+ + + + + + + + + + + + +
+

udom-traitaccess-202-t

+
+ + + raster image of udom-traitaccess-202-t +
+
+ + +
+

+ Test on solidColor trait access. + The test result is displayed within the test. +

+

+ The test is passed if the results for the sub tests are as follows +

+ + +
+ + + diff --git a/test/W3C_SVG_12_TinyTestSuite_beta/htmlEmbedHarness/udom-traitaccess-203-t.html b/test/W3C_SVG_12_TinyTestSuite_beta/htmlEmbedHarness/udom-traitaccess-203-t.html new file mode 100755 index 00000000..42d33364 --- /dev/null +++ b/test/W3C_SVG_12_TinyTestSuite_beta/htmlEmbedHarness/udom-traitaccess-203-t.html @@ -0,0 +1,86 @@ + + + + + + + + +SVG 1.2 Tiny test:udom-traitaccess-203-t + + + + + + + + + + +
+ + + + + + + + + + + + +
+

udom-traitaccess-203-t

+
+ + + raster image of udom-traitaccess-203-t +
+
+ + +
+

+ Test on solidColor solid-opacity trait access. + Test result are displayed within the test. + The first sub-test should display a number approximately equal to 0.2. + The second sub-test should display a number approximately equal to 0.5. + The third sub-test should display a number equal to 1. +

+ +
+ + + diff --git a/test/W3C_SVG_12_TinyTestSuite_beta/htmlEmbedHarness/udom-traitaccess-204-t.html b/test/W3C_SVG_12_TinyTestSuite_beta/htmlEmbedHarness/udom-traitaccess-204-t.html new file mode 100755 index 00000000..94e2862b --- /dev/null +++ b/test/W3C_SVG_12_TinyTestSuite_beta/htmlEmbedHarness/udom-traitaccess-204-t.html @@ -0,0 +1,83 @@ + + + + + + + + +SVG 1.2 Tiny test:udom-traitaccess-204-t + + + + + + + + + + +
+ + + + + + + + + + + + +
+

udom-traitaccess-204-t

+
+ + + raster image of udom-traitaccess-204-t +
+
+ + +
+

+ Tests set/get access on 'fill-rule' trait. + The start should look the same on both sides and the text should read "OK". +

+ +
+ + + diff --git a/test/W3C_SVG_12_TinyTestSuite_beta/htmlEmbedHarness/udom-traitaccess-205-t.html b/test/W3C_SVG_12_TinyTestSuite_beta/htmlEmbedHarness/udom-traitaccess-205-t.html new file mode 100755 index 00000000..1372251a --- /dev/null +++ b/test/W3C_SVG_12_TinyTestSuite_beta/htmlEmbedHarness/udom-traitaccess-205-t.html @@ -0,0 +1,82 @@ + + + + + + + + +SVG 1.2 Tiny test:udom-traitaccess-205-t + + + + + + + + + + +
+ + + + + + + + + + + + +
+

udom-traitaccess-205-t

+
+ + + raster image of udom-traitaccess-205-t +
+
+ + +
+

+ Test on Ecma-script. Sets viewport-fill to green with setRGBColorTrait (should show a green viewport). +

+ +
+ + + diff --git a/test/W3C_SVG_12_TinyTestSuite_beta/htmlEmbedHarness/udom-traitaccess-206-t.html b/test/W3C_SVG_12_TinyTestSuite_beta/htmlEmbedHarness/udom-traitaccess-206-t.html new file mode 100755 index 00000000..17d7ceee --- /dev/null +++ b/test/W3C_SVG_12_TinyTestSuite_beta/htmlEmbedHarness/udom-traitaccess-206-t.html @@ -0,0 +1,82 @@ + + + + + + + + +SVG 1.2 Tiny test:udom-traitaccess-206-t + + + + + + + + + + +
+ + + + + + + + + + + + +
+

udom-traitaccess-206-t

+
+ + + raster image of udom-traitaccess-206-t +
+
+ + +
+

+ Test on Ecma-script. Sets viewport-fill to green with setTrait (should show a green viewport). +

+ +
+ + + diff --git a/test/W3C_SVG_12_TinyTestSuite_beta/htmlEmbedHarness/udom-traitaccess-207-t.html b/test/W3C_SVG_12_TinyTestSuite_beta/htmlEmbedHarness/udom-traitaccess-207-t.html new file mode 100755 index 00000000..a9e296cf --- /dev/null +++ b/test/W3C_SVG_12_TinyTestSuite_beta/htmlEmbedHarness/udom-traitaccess-207-t.html @@ -0,0 +1,83 @@ + + + + + + + + +SVG 1.2 Tiny test:udom-traitaccess-207-t + + + + + + + + + + +
+ + + + + + + + + + + + +
+

udom-traitaccess-207-t

+
+ + + raster image of udom-traitaccess-207-t +
+
+ + +
+

+ Test on Ecma-script. Sets viewport-fill-opacity to 0.5 with setFloatTrait + (should show a red viewport with correct opacity, and the text 'viewport-fill-opacity="0.5"' should show). +

+ +
+ + + diff --git a/test/W3C_SVG_12_TinyTestSuite_beta/htmlObjectHarness/animate-elem-02-t.html b/test/W3C_SVG_12_TinyTestSuite_beta/htmlObjectHarness/animate-elem-02-t.html new file mode 100755 index 00000000..866359c3 --- /dev/null +++ b/test/W3C_SVG_12_TinyTestSuite_beta/htmlObjectHarness/animate-elem-02-t.html @@ -0,0 +1,85 @@ + + + + + + + + +SVG 1.2 Tiny test:animate-elem-02-t + + + + + + + + + + +
+ + + + + + + + + + + + +
+

animate-elem-02-t

+
+

FAIL

+
+ raster image of animate-elem-02-t +
+
+ + +
+

Test 'additive' and 'accumulate' attributes.

+

+ The four pictures show the effect with the four possible combinations of 'additive' (either 'replace' or 'sum') and + 'accumulate' (either 'none' or 'sum'). Because two animations are animating the height, the effects of 'additive' and + 'accumulate' are sometimes different than when there is only a single animation. +

+ +
+ + + diff --git a/test/W3C_SVG_12_TinyTestSuite_beta/htmlObjectHarness/animate-elem-03-t.html b/test/W3C_SVG_12_TinyTestSuite_beta/htmlObjectHarness/animate-elem-03-t.html new file mode 100755 index 00000000..5a9326a3 --- /dev/null +++ b/test/W3C_SVG_12_TinyTestSuite_beta/htmlObjectHarness/animate-elem-03-t.html @@ -0,0 +1,90 @@ + + + + + + + + +SVG 1.2 Tiny test:animate-elem-03-t + + + + + + + + + + +
+ + + + + + + + + + + + +
+

animate-elem-03-t

+
+

FAIL

+
+ raster image of animate-elem-03-t +
+
+ + +
+

Test inheritance of animated properties.

+

+ Three colored text strings appear. All three are inside of the same 'g' element. The 'g' element has its 'font-size' + animated from 30 to 40, and its 'fill' from #00f (blue) to #070 (green). +

+

+ The first colored 'text' element has the font-size set, so the animation of the parent 'g' only affects the fill color. + The second has the fill set and font-size set, so no inherited values are used. The font-size and fill color stay + constant. The third colored 'text' element has neither of these properties specified and thus inherits both animated + values - the fill color changes and the text grows in size. +

+ +
+ + + diff --git a/test/W3C_SVG_12_TinyTestSuite_beta/htmlObjectHarness/animate-elem-04-t.html b/test/W3C_SVG_12_TinyTestSuite_beta/htmlObjectHarness/animate-elem-04-t.html new file mode 100755 index 00000000..0d9d5290 --- /dev/null +++ b/test/W3C_SVG_12_TinyTestSuite_beta/htmlObjectHarness/animate-elem-04-t.html @@ -0,0 +1,85 @@ + + + + + + + + +SVG 1.2 Tiny test:animate-elem-04-t + + + + + + + + + + +
+ + + + + + + + + + + + +
+

animate-elem-04-t

+
+

FAIL

+
+ raster image of animate-elem-04-t +
+
+ + +
+

Test different ways of defining a motion path.

+

+ An animation moves a triangle along a path. Reference rectangles, lines and text are provided to help show what the + correct behavior is. The red text shows the way that the motion path is specified. +

+

This animation uses the 'from' and 'to' attributes to define the motion path.

+ +
+ + + diff --git a/test/W3C_SVG_12_TinyTestSuite_beta/htmlObjectHarness/animate-elem-05-t.html b/test/W3C_SVG_12_TinyTestSuite_beta/htmlObjectHarness/animate-elem-05-t.html new file mode 100755 index 00000000..f927be99 --- /dev/null +++ b/test/W3C_SVG_12_TinyTestSuite_beta/htmlObjectHarness/animate-elem-05-t.html @@ -0,0 +1,85 @@ + + + + + + + + +SVG 1.2 Tiny test:animate-elem-05-t + + + + + + + + + + +
+ + + + + + + + + + + + +
+

animate-elem-05-t

+
+

FAIL

+
+ raster image of animate-elem-05-t +
+
+ + +
+

Test different ways of defining a motion path.

+

+ An animation moves a triangle along a path. Reference rectangles, lines and text are provided to help show what + the correct behavior is. The red text shows the way that the motion path is specified. +

+

This animation uses the 'values' attribute to define the motion path, with a linear calcMode.

+ +
+ + + diff --git a/test/W3C_SVG_12_TinyTestSuite_beta/htmlObjectHarness/animate-elem-06-t.html b/test/W3C_SVG_12_TinyTestSuite_beta/htmlObjectHarness/animate-elem-06-t.html new file mode 100755 index 00000000..ad049844 --- /dev/null +++ b/test/W3C_SVG_12_TinyTestSuite_beta/htmlObjectHarness/animate-elem-06-t.html @@ -0,0 +1,85 @@ + + + + + + + + +SVG 1.2 Tiny test:animate-elem-06-t + + + + + + + + + + +
+ + + + + + + + + + + + +
+

animate-elem-06-t

+
+

FAIL

+
+ raster image of animate-elem-06-t +
+
+ + +
+

Test different ways of defining a motion path.

+

+ An animation moves a triangle along a path. Reference rectangles, lines and text are provided to help show what + the correct behavior is. The red text shows the way that the motion path is specified. +

+

This animation uses the 'path' attribute to define the motion path.

+ +
+ + + diff --git a/test/W3C_SVG_12_TinyTestSuite_beta/htmlObjectHarness/animate-elem-07-t.html b/test/W3C_SVG_12_TinyTestSuite_beta/htmlObjectHarness/animate-elem-07-t.html new file mode 100755 index 00000000..4450197d --- /dev/null +++ b/test/W3C_SVG_12_TinyTestSuite_beta/htmlObjectHarness/animate-elem-07-t.html @@ -0,0 +1,85 @@ + + + + + + + + +SVG 1.2 Tiny test:animate-elem-07-t + + + + + + + + + + +
+ + + + + + + + + + + + +
+

animate-elem-07-t

+
+

FAIL

+
+ raster image of animate-elem-07-t +
+
+ + +
+

Test different ways of defining a motion path.

+

+ An animation moves a triangle along a path. Reference rectangles, lines and text are provided to help show what the + correct behavior is. The red text shows the way that the motion path is specified. +

+

This animation uses the 'mpath' sub-element to define the motion path.

+ +
+ + + diff --git a/test/W3C_SVG_12_TinyTestSuite_beta/htmlObjectHarness/animate-elem-08-t.html b/test/W3C_SVG_12_TinyTestSuite_beta/htmlObjectHarness/animate-elem-08-t.html new file mode 100755 index 00000000..d0718d3f --- /dev/null +++ b/test/W3C_SVG_12_TinyTestSuite_beta/htmlObjectHarness/animate-elem-08-t.html @@ -0,0 +1,85 @@ + + + + + + + + +SVG 1.2 Tiny test:animate-elem-08-t + + + + + + + + + + +
+ + + + + + + + + + + + +
+

animate-elem-08-t

+
+

FAIL

+
+ raster image of animate-elem-08-t +
+
+ + +
+

Test rotate='auto' and rotate='auto-reverse'.

+

+ Two animations have been defined that move a triangle along a path. The first animation specifies rotate='auto', + which causes the object to be rotated along the curve of the path. The second animation specifies rotate='auto-reverse', + which causes the object to be flipped and then rotated along the curve of the path. +

+ +
+ + + diff --git a/test/W3C_SVG_12_TinyTestSuite_beta/htmlObjectHarness/animate-elem-09-t.html b/test/W3C_SVG_12_TinyTestSuite_beta/htmlObjectHarness/animate-elem-09-t.html new file mode 100755 index 00000000..de54cfda --- /dev/null +++ b/test/W3C_SVG_12_TinyTestSuite_beta/htmlObjectHarness/animate-elem-09-t.html @@ -0,0 +1,93 @@ + + + + + + + + +SVG 1.2 Tiny test:animate-elem-09-t + + + + + + + + + + +
+ + + + + + + + + + + + +
+

animate-elem-09-t

+
+

FAIL

+
+ raster image of animate-elem-09-t +
+
+ + +
+

Test possible values for 'calcMode="discrete"'

+

+ Two animations have been defined. For each animation, ruler lines and text are provided to help show what the + correct behavior is. The black text and ruler lines help show the sizes and movement of the rectangles over time. +

+

+ The discrete animations should show stair-stepping animations, with quantum-level jumps every two seconds in + these tests. The linear animations change constantly with each keyframe to keyframe section, with the result + that the change is faster when there is a larger change within a given amount of time. The paced animations + change constantly over the entire animation, regardless of the values at particular keyframes. For + calcMode='spline' in this test case, the initial rate of change is defined to be the same as linear, but the + last jump has an ease-in/ease-out effect where the change is slower at the start and end but faster in the + middle. +

+ +
+ + + diff --git a/test/W3C_SVG_12_TinyTestSuite_beta/htmlObjectHarness/animate-elem-10-t.html b/test/W3C_SVG_12_TinyTestSuite_beta/htmlObjectHarness/animate-elem-10-t.html new file mode 100755 index 00000000..749d3ea8 --- /dev/null +++ b/test/W3C_SVG_12_TinyTestSuite_beta/htmlObjectHarness/animate-elem-10-t.html @@ -0,0 +1,88 @@ + + + + + + + + +SVG 1.2 Tiny test:animate-elem-10-t + + + + + + + + + + +
+ + + + + + + + + + + + +
+

animate-elem-10-t

+
+

FAIL

+
+ raster image of animate-elem-10-t +
+
+ + +
+

Test possible values for 'calcMode="linear"'

+

+ Two animations have been defined. For each animation, ruler lines and text are provided to help show what the + correct behavior is. The black text and ruler lines help show the sizes and movement of the rectangles over time. +

+

+ The linear animations change constantly with each keyframe to keyframe section, with the result that the change + is faster when there is a larger change within a given amount of time. +

+ +
+ + + diff --git a/test/W3C_SVG_12_TinyTestSuite_beta/htmlObjectHarness/animate-elem-11-t.html b/test/W3C_SVG_12_TinyTestSuite_beta/htmlObjectHarness/animate-elem-11-t.html new file mode 100755 index 00000000..ba3beba0 --- /dev/null +++ b/test/W3C_SVG_12_TinyTestSuite_beta/htmlObjectHarness/animate-elem-11-t.html @@ -0,0 +1,85 @@ + + + + + + + + +SVG 1.2 Tiny test:animate-elem-11-t + + + + + + + + + + +
+ + + + + + + + + + + + +
+

animate-elem-11-t

+
+

FAIL

+
+ raster image of animate-elem-11-t +
+
+ + +
+

Test possible values for 'calcMode="paced"'

+

+ Two animations have been defined. For each animation, ruler lines and text are provided to help show what the + correct behavior is. The black text and ruler lines help show the sizes and movement of the rectangles over time. +

+

The paced animations change constantly over the entire animation, regardless of the values at particular keyframes.

+ +
+ + + diff --git a/test/W3C_SVG_12_TinyTestSuite_beta/htmlObjectHarness/animate-elem-12-t.html b/test/W3C_SVG_12_TinyTestSuite_beta/htmlObjectHarness/animate-elem-12-t.html new file mode 100755 index 00000000..e029ae02 --- /dev/null +++ b/test/W3C_SVG_12_TinyTestSuite_beta/htmlObjectHarness/animate-elem-12-t.html @@ -0,0 +1,88 @@ + + + + + + + + +SVG 1.2 Tiny test:animate-elem-12-t + + + + + + + + + + +
+ + + + + + + + + + + + +
+

animate-elem-12-t

+
+

FAIL

+
+ raster image of animate-elem-12-t +
+
+ + +
+

Test possible values for 'calcMode="spline"'

+

+ Two animations have been defined. For each animation, ruler lines and text are provided to help show what the correct + behavior is. The black text and ruler lines help show the sizes and movement of the rectangles over time. +

+

+ For calcMode='spline' in this test case, the initial rate of change is defined to be the same as linear, but the last + jump has an ease-in/ease-out effect where the change is slower at the start and end but faster in the middle. +

+ +
+ + + diff --git a/test/W3C_SVG_12_TinyTestSuite_beta/htmlObjectHarness/animate-elem-13-t.html b/test/W3C_SVG_12_TinyTestSuite_beta/htmlObjectHarness/animate-elem-13-t.html new file mode 100755 index 00000000..0b638654 --- /dev/null +++ b/test/W3C_SVG_12_TinyTestSuite_beta/htmlObjectHarness/animate-elem-13-t.html @@ -0,0 +1,86 @@ + + + + + + + + +SVG 1.2 Tiny test:animate-elem-13-t + + + + + + + + + + +
+ + + + + + + + + + + + +
+

animate-elem-13-t

+
+

FAIL

+
+ raster image of animate-elem-13-t +
+
+ + +
+

Test 'from', 'by', 'to' and 'values'

+

+ Six animations have been defined. All six animations define the same simultaneous behavior, but use different + combinations of attributes 'from', 'by', 'to' and 'values'. In all cases, from time 2 seconds to time 5 seconds, + the rectangle should change from a width of 30 to a width of 300. +

+

The red text shows the attributes that were used for that particular animation.

+ +
+ + + diff --git a/test/W3C_SVG_12_TinyTestSuite_beta/htmlObjectHarness/animate-elem-14-t.html b/test/W3C_SVG_12_TinyTestSuite_beta/htmlObjectHarness/animate-elem-14-t.html new file mode 100755 index 00000000..2aabefd8 --- /dev/null +++ b/test/W3C_SVG_12_TinyTestSuite_beta/htmlObjectHarness/animate-elem-14-t.html @@ -0,0 +1,82 @@ + + + + + + + + +SVG 1.2 Tiny test:animate-elem-14-t + + + + + + + + + + +
+ + + + + + + + + + + + +
+

animate-elem-14-t

+
+

FAIL

+
+ raster image of animate-elem-14-t +
+
+ + +
+

Test 'calcMode'=discrete

+

One animation has been defined to animate the height of a rectangle. Ruler lines and text are provided to help show what the correct behavior is. The red text shows the values for the 'calcMode' and 'keyTimes' attributes. The black text and ruler lines help show the size and movement of the rectangle over time.

+

This test shows an animation with calcMode="discrete" (i.e., a jumping animation).

+ +
+ + + diff --git a/test/W3C_SVG_12_TinyTestSuite_beta/htmlObjectHarness/animate-elem-15-t.html b/test/W3C_SVG_12_TinyTestSuite_beta/htmlObjectHarness/animate-elem-15-t.html new file mode 100755 index 00000000..40bd5cec --- /dev/null +++ b/test/W3C_SVG_12_TinyTestSuite_beta/htmlObjectHarness/animate-elem-15-t.html @@ -0,0 +1,89 @@ + + + + + + + + +SVG 1.2 Tiny test:animate-elem-15-t + + + + + + + + + + +
+ + + + + + + + + + + + +
+

animate-elem-15-t

+
+

FAIL

+
+ raster image of animate-elem-15-t +
+
+ + +
+

Test 'calcMode'=paced

+

+ One animation has been defined to animate the height of a rectangle. Ruler lines and text are provided to help show + what the correct behavior is. The red text shows the values for the 'calcMode' and 'keyTimes' attributes. The black + text and ruler lines help show the size and movement of the rectangle over time. +

+

+ This test shows calcMode="paced" for an animation that has constant velocity, thus showing how 'values' and + 'keyTimes' are ignored. +

+ +
+ + + diff --git a/test/W3C_SVG_12_TinyTestSuite_beta/htmlObjectHarness/animate-elem-17-t.html b/test/W3C_SVG_12_TinyTestSuite_beta/htmlObjectHarness/animate-elem-17-t.html new file mode 100755 index 00000000..ef1c9b18 --- /dev/null +++ b/test/W3C_SVG_12_TinyTestSuite_beta/htmlObjectHarness/animate-elem-17-t.html @@ -0,0 +1,90 @@ + + + + + + + + +SVG 1.2 Tiny test:animate-elem-17-t + + + + + + + + + + +
+ + + + + + + + + + + + +
+

animate-elem-17-t

+
+

FAIL

+
+ raster image of animate-elem-17-t +
+
+ + +
+

Test 'calcMode'=spline

+

+ One animation has been defined to animate the height of a rectangle. Ruler lines and text are provided to help + show what the correct behavior is. The red text shows the values for the 'calcMode' and 'keyTimes' attributes. + The black text and ruler lines help show the size and movement of the rectangle over time. +

+

+ This animation shows calcMode="spline". Between time 4 seconds and 8 seconds, the animation displays an + ease-in/ease-out approach instead of a constant linear approach which would have been the case if calcMode had + been linear instead. +

+ +
+ + + diff --git a/test/W3C_SVG_12_TinyTestSuite_beta/htmlObjectHarness/animate-elem-19-t.html b/test/W3C_SVG_12_TinyTestSuite_beta/htmlObjectHarness/animate-elem-19-t.html new file mode 100755 index 00000000..db994d48 --- /dev/null +++ b/test/W3C_SVG_12_TinyTestSuite_beta/htmlObjectHarness/animate-elem-19-t.html @@ -0,0 +1,86 @@ + + + + + + + + +SVG 1.2 Tiny test:animate-elem-19-t + + + + + + + + + + +
+ + + + + + + + + + + + +
+

animate-elem-19-t

+
+

FAIL

+
+ raster image of animate-elem-19-t +
+
+ + +
+

Test 'calcMode'=linear

+

+ One animation has been defined to animate the width of a rectangle. Ruler lines and text are provided to help show + what the correct behavior is. The red text shows the values for the 'calcMode' and 'keyTimes' attributes. The black + text and ruler lines help show the size and movement of the rectangle over time. +

+

This test shows an animation with calcMode="linear".

+ +
+ + + diff --git a/test/W3C_SVG_12_TinyTestSuite_beta/htmlObjectHarness/animate-elem-20-t.html b/test/W3C_SVG_12_TinyTestSuite_beta/htmlObjectHarness/animate-elem-20-t.html new file mode 100755 index 00000000..ad4f7c95 --- /dev/null +++ b/test/W3C_SVG_12_TinyTestSuite_beta/htmlObjectHarness/animate-elem-20-t.html @@ -0,0 +1,99 @@ + + + + + + + + +SVG 1.2 Tiny test:animate-elem-20-t + + + + + + + + + + +
+ + + + + + + + + + + + +
+

animate-elem-20-t

+
+

FAIL

+
+ raster image of animate-elem-20-t +
+
+ + +
+

A quick animation test.

+

+ The assumption is that you will first click on "fade in" and then click on "fade out", each exactly once. The + first time you select the link 'fade in', you should see a red square appearing, gradually and smoothly fading + from white to red over the course of three seconds. +

+

+ The rendered picture should match the reference image, (except for possible variations in the labeling text + (per CSS2 rules)) after activating the link on the fade-in button the first time and waiting three seconds for the + animation to compete. The picture should remain looking the same way indefinitely, until another link is activated. +

+

+ With the second click on "fade in", however, the behavior might be different. In the case of having a first click + on "fade in", waiting three seconds, and then immediately perform a first click on "fade out", waiting three seconds, + and then immediately perform a second click on "fade in", you should see the following. After the first click on + "fade in", the red square goes from white to red. After the first click on "fade out", the red square goes from red + to white. After the second click on "fade in", however, the red square goes from white to red, and then goes back + from red to white. This is because of the hyperlinking rules as they relate to resolved start times in the SMIL + 2.1 specification. +

+ +
+ + + diff --git a/test/W3C_SVG_12_TinyTestSuite_beta/htmlObjectHarness/animate-elem-201-t.html b/test/W3C_SVG_12_TinyTestSuite_beta/htmlObjectHarness/animate-elem-201-t.html new file mode 100755 index 00000000..99b62595 --- /dev/null +++ b/test/W3C_SVG_12_TinyTestSuite_beta/htmlObjectHarness/animate-elem-201-t.html @@ -0,0 +1,85 @@ + + + + + + + + +SVG 1.2 Tiny test:animate-elem-201-t + + + + + + + + + + +
+ + + + + + + + + + + + +
+

animate-elem-201-t

+
+

FAIL

+
+ raster image of animate-elem-201-t +
+
+ + +
+

+ Five orange rectangles have one animation each. When an + animation is active it moves its orange rectangle from its + left marker to its right marker. The active intervals + are [1-2], [4-6] and [8-10]. +

+ +
+ + + diff --git a/test/W3C_SVG_12_TinyTestSuite_beta/htmlObjectHarness/animate-elem-202-t.html b/test/W3C_SVG_12_TinyTestSuite_beta/htmlObjectHarness/animate-elem-202-t.html new file mode 100755 index 00000000..3427552d --- /dev/null +++ b/test/W3C_SVG_12_TinyTestSuite_beta/htmlObjectHarness/animate-elem-202-t.html @@ -0,0 +1,92 @@ + + + + + + + + +SVG 1.2 Tiny test:animate-elem-202-t + + + + + + + + + + +
+ + + + + + + + + + + + +
+

animate-elem-202-t

+
+

FAIL

+
+ raster image of animate-elem-202-t +
+
+ + +
+

+ Precision test for accumulative animateMotion. +

+

+ The main indication for a failed test is the appearence of something + red and that circles are not centered below the paths given in gray. +

+

+ Circles are moved along squares given with the path attribute, + repeatDur and accumulate with a repeatDur of 30s and repetition. + Different values for the rotate attribute are given too, this has no visible effect, + because centered circles are moved. +

+ +
+ + + diff --git a/test/W3C_SVG_12_TinyTestSuite_beta/htmlObjectHarness/animate-elem-203-t.html b/test/W3C_SVG_12_TinyTestSuite_beta/htmlObjectHarness/animate-elem-203-t.html new file mode 100755 index 00000000..e58e88b9 --- /dev/null +++ b/test/W3C_SVG_12_TinyTestSuite_beta/htmlObjectHarness/animate-elem-203-t.html @@ -0,0 +1,99 @@ + + + + + + + + +SVG 1.2 Tiny test:animate-elem-203-t + + + + + + + + + + +
+ + + + + + + + + + + + +
+

animate-elem-203-t

+
+

FAIL

+
+ raster image of animate-elem-203-t +
+
+ + +
+

+ Precision test for additive animateMotion using, + mpath element, path attribute, values, from-to. +

+

+ The main indication for a failed test is the appearence of the red fill + of the circle. A switch of the stroke of the circle from blue to gray indicates + the end of the test at 30s. +

+

+ A circles is moved along some paths + (two of them indicated in gray) with + a duration of 30s using additive animateMotion. + The superposition is no motion. + The circle is positioned always at the bottom right. + The colour of the circle switches from blue to gray after + the animation is finished. + If the red center of the circle becomes visible, an error is + occured. +

+ +
+ + + diff --git a/test/W3C_SVG_12_TinyTestSuite_beta/htmlObjectHarness/animate-elem-205-t.html b/test/W3C_SVG_12_TinyTestSuite_beta/htmlObjectHarness/animate-elem-205-t.html new file mode 100755 index 00000000..387ea1c7 --- /dev/null +++ b/test/W3C_SVG_12_TinyTestSuite_beta/htmlObjectHarness/animate-elem-205-t.html @@ -0,0 +1,116 @@ + + + + + + + + +SVG 1.2 Tiny test:animate-elem-205-t + + + + + + + + + + +
+ + + + + + + + + + + + +
+

animate-elem-205-t

+
+

FAIL

+
+ raster image of animate-elem-205-t +
+
+ + +
+

+ Precision test for linear animateMotion with separated path fragments, + mpath element, rotate auto. +

+

+ The main indication for a failed test is the appearence of the red fill + of the test circle. The circle has to follow exactly the paths given + in gray. +

+

+ A linear animateMotion of a blue stroked square with a centered + circle is compared with four animateMotion of a red square + with a centered circle. + The motion of the red square is following the + combination of four animateMotion following on + each other and is the same as the motion of the blue + square, because the timing is choosen in such a way. + Therefore the blue square covers always the red one + completely. +

+

+ The path is given in gray. The red fill of the circle + is always covered with the gray path. + Eight gray stroked markers are lightened, when the circle + is exactly above the marker. The red fill of the marker + is exactly covered by the blue stroked circle. + If something red gets visible, an error is occured + and the animateMotion is not linear. +

+

+ The exact timing is calculated using an analytical + integration of the path length of the sub paths + (this is available for quadratic or linear curves). + With this method the path position and the + time can be determined as functions of the usual + parametrisation of the used Bézier curves. +

+ +
+ + + diff --git a/test/W3C_SVG_12_TinyTestSuite_beta/htmlObjectHarness/animate-elem-206-t.html b/test/W3C_SVG_12_TinyTestSuite_beta/htmlObjectHarness/animate-elem-206-t.html new file mode 100755 index 00000000..0ed98836 --- /dev/null +++ b/test/W3C_SVG_12_TinyTestSuite_beta/htmlObjectHarness/animate-elem-206-t.html @@ -0,0 +1,94 @@ + + + + + + + + +SVG 1.2 Tiny test:animate-elem-206-t + + + + + + + + + + +
+ + + + + + + + + + + + +
+

animate-elem-206-t

+
+

FAIL

+
+ raster image of animate-elem-206-t +
+
+ + +
+

+ Precision tests for animateMotion with animated mpath. +

+

+ The main indication for a failed test is the appearence of something + red and that circles are not centered below the paths given in gray. +

+

+ Blue rectangles and a red circles are moved along + light blue paths with a duration of 30s. The paths itself are animated. + This results in motions along the gray paths. The rectangles + are aligned along the animated light blue paths. + The circle is always covered by the path given in gray. + If something red gets visible, an error is occured. +

+ +
+ + + diff --git a/test/W3C_SVG_12_TinyTestSuite_beta/htmlObjectHarness/animate-elem-207-t.html b/test/W3C_SVG_12_TinyTestSuite_beta/htmlObjectHarness/animate-elem-207-t.html new file mode 100755 index 00000000..16c801fc --- /dev/null +++ b/test/W3C_SVG_12_TinyTestSuite_beta/htmlObjectHarness/animate-elem-207-t.html @@ -0,0 +1,116 @@ + + + + + + + + +SVG 1.2 Tiny test:animate-elem-207-t + + + + + + + + + + +
+ + + + + + + + + + + + +
+

animate-elem-207-t

+
+

FAIL

+
+ raster image of animate-elem-207-t +
+
+ + +
+

+ Precision test for paced animateMotion with separated path fragments, + mpath element, rotate auto. +

+

+ The main indication for a failed test is the appearence of the red fill + of the test circle. The circle has to follow exactly the paths given + in gray. +

+

+ A paced animateMotion of a blue stroked square with a centered + circle is compared with four animateMotion of a red square + with a centered circle. + The motion of the red square is following the + combination of four animateMotion following on + each other and is the same as the motion of the blue + square, because the timing is choosen in such a way. + Therefore the blue square covers always the red one + completely. +

+

+ The path is given in gray. The red fill of the circle + is always covered with the gray path. + Eight gray stroked markers are lightened, when the circle + is exactly above the marker. The red fill of the marker + is exactly covered by the blue stroked circle. + If something red gets visible, an error is occured + and the animateMotion is not paced. +

+

+ The exact timing is calculated using an analytical + integration of the path length of the sub paths + (this is available for quadratic or linear curves). + With this method the path position and the + time can be determined as functions of the usual + parametrization of the used Bézier curves. +

+ +
+ + + diff --git a/test/W3C_SVG_12_TinyTestSuite_beta/htmlObjectHarness/animate-elem-209-t.html b/test/W3C_SVG_12_TinyTestSuite_beta/htmlObjectHarness/animate-elem-209-t.html new file mode 100755 index 00000000..70e6e9a7 --- /dev/null +++ b/test/W3C_SVG_12_TinyTestSuite_beta/htmlObjectHarness/animate-elem-209-t.html @@ -0,0 +1,126 @@ + + + + + + + + +SVG 1.2 Tiny test:animate-elem-209-t + + + + + + + + + + +
+ + + + + + + + + + + + +
+

animate-elem-209-t

+
+

FAIL

+
+ raster image of animate-elem-209-t +
+
+ + +
+

Compare from-to, from-by and by animate with values animate.

+

+ The main indication for a failed test is the appearance of red. +

+

+ SMIL 2 specifies, how from-to, from-by and by animations have to be converted into + values animation. Therefore they have to be the same as the related values animation. + Additionally set animations can be replaced by values animations too. + The conversion is as follows: +

+ + + + + + + + + + + + + + + + + + + + + +
usedconverted
from="a" to="b"values="a;b"
from="a" by="b"values="a;a+b"
by="a"values="0;a" additive="sum"
set to="a"values="a" additive="replace" accumulate="none"
+

+ (by and from-by animations have only a meaning, if values can be added somehow. + '0' is used as a general symbol for the neutral element of addition for the related attribute, + this means 0 + a = a + 0 = a. And '0' is not equal to the symbol '1' as the basic unit of the + related attribute, '0' is a predecessor of '1' in the related attribute space.) +

+

+ The from-to, from-by and by animations applied to the attributes x, y, width, height + of blue rectangles are compared with the related values animations including additive and + cumulative hehaviour for underlying red rectangles. Additionally underlying dark red + rectangles simulate the same behaviour using always the defaults additive replace and + accumulate replace. The blue rectangles cover all red rectangles. Therefore if something + red gets visible, an error is occured. Because fill is always not set and therefore remove, + the final value is only that of the set animation, not very interesting for the test. +

+ +
+ + + diff --git a/test/W3C_SVG_12_TinyTestSuite_beta/htmlObjectHarness/animate-elem-21-t.html b/test/W3C_SVG_12_TinyTestSuite_beta/htmlObjectHarness/animate-elem-21-t.html new file mode 100755 index 00000000..f0be8e1a --- /dev/null +++ b/test/W3C_SVG_12_TinyTestSuite_beta/htmlObjectHarness/animate-elem-21-t.html @@ -0,0 +1,101 @@ + + + + + + + + +SVG 1.2 Tiny test:animate-elem-21-t + + + + + + + + + + +
+ + + + + + + + + + + + +
+

animate-elem-21-t

+
+

FAIL

+
+ raster image of animate-elem-21-t +
+
+ + +
+

Test for chained animations

+

+ The assumption is that you will first click on "fade in" and then click on "fade out", each exactly once. The + first time you select the link 'fade in', you should see a red square appearing, gradually and smoothly fading + from white to red over the course of three seconds. This square is in front of and thus obscures the lower left + circle, but is behind the upper right circle. The fill color of these circles is also animated, from white to grey. + The animations are triggered by the start of the corresponding animation of the red square. +

+

+ The rendered picture should match the reference image, (except for possible variations in the labeling text + (per CSS2 rules)) after activating the link on the fade-in button the first time and waiting three seconds for the + animation to compete. The picture should remain looking the same way indefinitely, until another link is activated. +

+

+ With the second click on "fade in", however, the behavior might be different. In the case of having a first click + on "fade in", waiting three seconds, and then immediately perform a first click on "fade out", waiting three seconds, + and then immediately perform a second click on "fade in", you should see the following. After the first click on + "fade in", the red square goes from zero to 100% opacity. After the first click on "fade out", the red square goes + from red to white. After the second click on "fade in", however, the red square goes from white to red, and then + goes back from red to white. This is because of the hyperlinking rules as they relate to resolved start times in + the SMIL 2.1 specification. +

+ +
+ + + diff --git a/test/W3C_SVG_12_TinyTestSuite_beta/htmlObjectHarness/animate-elem-210-t.html b/test/W3C_SVG_12_TinyTestSuite_beta/htmlObjectHarness/animate-elem-210-t.html new file mode 100755 index 00000000..ceb5c754 --- /dev/null +++ b/test/W3C_SVG_12_TinyTestSuite_beta/htmlObjectHarness/animate-elem-210-t.html @@ -0,0 +1,131 @@ + + + + + + + + +SVG 1.2 Tiny test:animate-elem-210-t + + + + + + + + + + +
+ + + + + + + + + + + + +
+

animate-elem-210-t

+
+

FAIL

+
+ raster image of animate-elem-210-t +
+
+ + +
+

Compare from-to, from-by and by animateColor with values animateColor and animate.

+

+ The main indication for a failed test is the appearance of red. +

+

+ SMIL 2 specifies, how from-to, from-by and by animations have to be converted into + values animations. Therefore they have to be the same as the related values animation. + Additionally set animations can be replaced by values animations too. + The conversion is as follows: +

+ + + + + + + + + + + + + + + + + + + + + +
usedconverted
from="a" to="b"values="a;b"
from="a" by="b"values="a;a+b"
by="a"values="0;a" additive="sum"
set to="a"values="a" additive="replace" accumulate="none"
+

+ (by and from-by animations have only a meaning, if values can be added somehow. + '0' is used as a general symbol for the neutral element of addition for the related attribute, + this means 0 + a = a + 0 = a. And '0' is not equal to the symbol '1' as the basic unit of the + related attribute, '0' is a predecessor of '1' in the related attribute space. In the color space + 0 is represented by black, #000, #000000, rgb(0,0,0) etc. Addition is performed for each + of the three components of the color vector separately.) +

+

+ The from-to, from-by and by animations applied to fill properties + of circles are compared with the related values animations including additive and + cumulative hehaviour for the stroke of the same circles. Additionally underlying + filled larger circles simulate the same behaviour using always the defaults additive replace and + accumulate replace. The fill of the background circle and stroke and fill of the smaller + test circle centered in it are always exactly the same. Therefore if + rings in each centered circle system with different color get visible, an error is occured. + But each separated circle system representing one of 12 subtests can have another color. + Because the fill attribute for animation is always not set and therefore remove, + the final value is only that of the set animation, not very interesting for the test. +

+ +
+ + + diff --git a/test/W3C_SVG_12_TinyTestSuite_beta/htmlObjectHarness/animate-elem-211-t.html b/test/W3C_SVG_12_TinyTestSuite_beta/htmlObjectHarness/animate-elem-211-t.html new file mode 100755 index 00000000..9976fa91 --- /dev/null +++ b/test/W3C_SVG_12_TinyTestSuite_beta/htmlObjectHarness/animate-elem-211-t.html @@ -0,0 +1,120 @@ + + + + + + + + +SVG 1.2 Tiny test:animate-elem-211-t + + + + + + + + + + +
+ + + + + + + + + + + + +
+

animate-elem-211-t

+
+

FAIL

+
+ raster image of animate-elem-211-t +
+
+ + +
+

Compare from-to, from-by and by animateMotion with values animateMotion.

+

+ The main indication for a failed test is the appearance of red. +

+

+ SMIL 2 specifies, how from-to, from-by and by animations have to be converted into + values animation. Therefore they have to be the same as the related values animation. + The conversion is as follows: +

+ +

+ (by and from-by animations have only a meaning, if values can be added somehow. + '0' is used as a general symbol for the neutral element of addition for the related attribute, + this means 0 + a = a + 0 = a. And '0' is not equal to the symbol '1' as the basic unit of the + related attribute, '0' is a predecessor of '1' in the related attribute space. For animateMotion + the '0' is no motion or is related to a translation given in coordinates: 0,0.) +

+

+ The from-to, from-by and by are applied to animateMotion of different blue stroked + paths and are compared with the related values animations including additive and + cumulative hehaviour for underlying red paths. Additionally underlying dark red + paths simulate the same behaviour using always the defaults additive replace and + accumulate replace. The blue paths cover all red paths. Therefore if something + red gets visible, an error is occured. Because fill is always not set and therefore remove, + the final value is the value at 2s given with a simple values animateMotion, not very + interesting for the test. +

+ +
+ + + diff --git a/test/W3C_SVG_12_TinyTestSuite_beta/htmlObjectHarness/animate-elem-212-t.html b/test/W3C_SVG_12_TinyTestSuite_beta/htmlObjectHarness/animate-elem-212-t.html new file mode 100755 index 00000000..ce149557 --- /dev/null +++ b/test/W3C_SVG_12_TinyTestSuite_beta/htmlObjectHarness/animate-elem-212-t.html @@ -0,0 +1,131 @@ + + + + + + + + +SVG 1.2 Tiny test:animate-elem-212-t + + + + + + + + + + +
+ + + + + + + + + + + + +
+

animate-elem-212-t

+
+

FAIL

+
+ raster image of animate-elem-212-t +
+
+ + +
+

Compare from-to, from-by and by animateTransform rotate (around zero) with values animateTransform.

+

+ The main indication for a failed test is the appearance of red. +

+

+ SMIL 2 specifies, how from-to, from-by and by animations have to be converted into + values animation. Therefore they have to be the same as the related values animation. + The conversion is as follows: +

+ + + + + + + + + + + + + + + + + +
usedconverted
from="a" to="b"values="a;b"
from="a" by="b"values="a;a+b"
by="a" + values="0;a" additive="sum" +
+

+ (by and from-by animations have only a meaning, if values can be added somehow. + '0' is used as a general symbol for the neutral element of addition for the related attribute, + this means 0 + a = a + 0 = a. And '0' is not equal to the symbol '1' as the basic unit of the + related attribute, '0' is a predecessor of '1' in the related attribute space. For animateTransform + the '0' is the same as the zero matrix, not the unity or identity matrix. + For the rotate type this is a skew with an angle of 0. + Deviating from SMIL 2 in SVG it is specified, that for animateTranform the animation + effect has to be postmultiplied to the underlying value, if the animation is additive. Note + that for two additive rotate angles a, b the resulting angle is not a+b but atan(tan(a)+tan(b)). +

+

+ The from-to, from-by and by are applied to animateTransform of the rotate type + of different blue stroked + paths and are compared with the related values animations including additive and + cumulative hehaviour for underlying red paths. Additionally underlying dark red + paths simulate the same behaviour using always the defaults additive replace and + accumulate replace with animateMotion. The blue paths cover all red paths. + Therefore if something red gets visible, an error is occured. + Because fill is always not set and therefore remove, + the final value is the value at 2s given with a simple values animateTransform, not very + interesting for the test. +

+ +
+ + + diff --git a/test/W3C_SVG_12_TinyTestSuite_beta/htmlObjectHarness/animate-elem-213-t.html b/test/W3C_SVG_12_TinyTestSuite_beta/htmlObjectHarness/animate-elem-213-t.html new file mode 100755 index 00000000..5b9f7065 --- /dev/null +++ b/test/W3C_SVG_12_TinyTestSuite_beta/htmlObjectHarness/animate-elem-213-t.html @@ -0,0 +1,131 @@ + + + + + + + + +SVG 1.2 Tiny test:animate-elem-213-t + + + + + + + + + + +
+ + + + + + + + + + + + +
+

animate-elem-213-t

+
+

FAIL

+
+ raster image of animate-elem-213-t +
+
+ + +
+

Compare from-to, from-by and by animateTransform rotate with values animateTransform.

+

+ The main indication for a failed test is the appearance of red. +

+

+ SMIL 2 specifies, how from-to, from-by and by animations have to be converted into + values animation. Therefore they have to be the same as the related values animation. + The conversion is as follows: +

+ + + + + + + + + + + + + + + + + +
usedconverted
from="a" to="b"values="a;b"
from="a" by="b"values="a;a+b"
by="a" + values="0;a" additive="sum" +
+

+ (by and from-by animations have only a meaning, if values can be added somehow. + '0' is used as a general symbol for the neutral element of addition for the related attribute, + this means 0 + a = a + 0 = a. And '0' is not equal to the symbol '1' as the basic unit of the + related attribute, '0' is a predecessor of '1' in the related attribute space. For animateTransform + the '0' is the same as the zero matrix, not the unity or identity matrix. + For the rotate type this is a skew with an angle of 0. + Deviating from SMIL 2 in SVG it is specified, that for animateTranform the animation + effect has to be postmultiplied to the underlying value, if the animation is additive. Note + that for two additive rotate angles a, b the resulting angle is not a+b but atan(tan(a)+tan(b)). +

+

+ The from-to, from-by and by are applied to animateTransform of the rotate type + of different blue stroked + paths and are compared with the related values animations including additive and + cumulative hehaviour for underlying red paths. Additionally underlying dark red + paths simulate the same behaviour using always the defaults additive replace and + accumulate replace with animateMotion. The blue paths cover all red paths. + Therefore if something red gets visible, an error is occured. + Because fill is always not set and therefore remove, + the final value is the value at 2s given with a simple values animateTransform, not very + interesting for the test. +

+ +
+ + + diff --git a/test/W3C_SVG_12_TinyTestSuite_beta/htmlObjectHarness/animate-elem-214-t.html b/test/W3C_SVG_12_TinyTestSuite_beta/htmlObjectHarness/animate-elem-214-t.html new file mode 100755 index 00000000..54bc3a42 --- /dev/null +++ b/test/W3C_SVG_12_TinyTestSuite_beta/htmlObjectHarness/animate-elem-214-t.html @@ -0,0 +1,130 @@ + + + + + + + + +SVG 1.2 Tiny test:animate-elem-214-t + + + + + + + + + + +
+ + + + + + + + + + + + +
+

animate-elem-214-t

+
+

FAIL

+
+ raster image of animate-elem-214-t +
+
+ + +
+

Compare from-to, from-by and by animateTransform scale with values animateTransform.

+

+ The main indication for a failed test is the appearance of red. +

+

+ SMIL 2 specifies, how from-to, from-by and by animations have to be converted into + values animation. Therefore they have to be the same as the related values animation. + The conversion is as follows: +

+ + + + + + + + + + + + + + + + + +
usedconverted
from="a" to="b"values="a;b"
from="a" by="b"values="a;a+b"
by="a" + values="0;a" additive="sum" +
+

+ (by and from-by animations have only a meaning, if values can be added somehow. + '0' is used as a general symbol for the neutral element of addition for the related attribute, + this means 0 + a = a + 0 = a. And '0' is not equal to the symbol '1' as the basic unit of the + related attribute, '0' is a predecessor of '1' in the related attribute space. For animateTransform + the '0' is the same as the zero matrix, not the unity or identity matrix. + For the scale type this is a scaling with 0,0, this means no display if not added to another + value. Deviating from SMIL 2 in SVG it is specified, that for animateTranform the animation + effect has to be postmultiplied to the underlying value, if the animation is additive.) +

+

+ The from-to, from-by and by are applied to animateTransform of the scale type + of different blue stroked + paths and are compared with the related values animations including additive and + cumulative hehaviour for underlying red paths. Additionally underlying dark red + paths simulate the same behaviour using always the defaults additive replace and + accumulate replace with animateMotion. The blue paths cover all red paths. + Therefore if something red gets visible, an error is occured. + Because fill is always not set and therefore remove, + the final value is the value at 2s given with a simple values animateTransform, not very + interesting for the test. +

+ +
+ + + diff --git a/test/W3C_SVG_12_TinyTestSuite_beta/htmlObjectHarness/animate-elem-215-t.html b/test/W3C_SVG_12_TinyTestSuite_beta/htmlObjectHarness/animate-elem-215-t.html new file mode 100755 index 00000000..18cb1539 --- /dev/null +++ b/test/W3C_SVG_12_TinyTestSuite_beta/htmlObjectHarness/animate-elem-215-t.html @@ -0,0 +1,131 @@ + + + + + + + + +SVG 1.2 Tiny test:animate-elem-215-t + + + + + + + + + + +
+ + + + + + + + + + + + +
+

animate-elem-215-t

+
+

FAIL

+
+ raster image of animate-elem-215-t +
+
+ + +
+

+ Compare from-to, from-by and by animateTransform translate with values + animateTransform and animateMotion. +

+

+ The main indication for a failed test is the appearance of red. +

+

+ SMIL 2 specifies, how from-to, from-by and by animations have to be converted into + values animation. Therefore they have to be the same as the related values animation. + The conversion is as follows: +

+ + + + + + + + + + + + + + + + + +
usedconverted
from="a" to="b"values="a;b"
from="a" by="b"values="a;a+b"
by="a" + values="0;a" additive="sum" +
+

+ (by and from-by animations have only a meaning, if values can be added somehow. + '0' is used as a general symbol for the neutral element of addition for the related attribute, + this means 0 + a = a + 0 = a. And '0' is not equal to the symbol '1' as the basic unit of the + related attribute, '0' is a predecessor of '1' in the related attribute space. For animateTransform + the '0' is the same as the zero matrix, not the unity or identity matrix. + For the translate type this is a translation given in coordinates: 0,0.) +

+

+ The from-to, from-by and by are applied to animateTransform of the translate type + of different blue stroked + paths and are compared with the related values animations including additive and + cumulative hehaviour for underlying red paths. Additionally underlying dark red + paths simulate the same behaviour using always the defaults additive replace and + accumulate replace with animateMotion. The blue paths cover all red paths. + Therefore if something red gets visible, an error is occured. + Because fill is always not set and therefore remove, + the final value is the value at 2s given with a simple values animateTransform, not very + interesting for the test. +

+ +
+ + + diff --git a/test/W3C_SVG_12_TinyTestSuite_beta/htmlObjectHarness/animate-elem-216-t.html b/test/W3C_SVG_12_TinyTestSuite_beta/htmlObjectHarness/animate-elem-216-t.html new file mode 100755 index 00000000..82028cf0 --- /dev/null +++ b/test/W3C_SVG_12_TinyTestSuite_beta/htmlObjectHarness/animate-elem-216-t.html @@ -0,0 +1,131 @@ + + + + + + + + +SVG 1.2 Tiny test:animate-elem-216-t + + + + + + + + + + +
+ + + + + + + + + + + + +
+

animate-elem-216-t

+
+

FAIL

+
+ raster image of animate-elem-216-t +
+
+ + +
+

Compare from-to, from-by and by animateTransform skewX with values animateTransform.

+

+ The main indication for a failed test is the appearance of red. +

+

+ SMIL 2 specifies, how from-to, from-by and by animations have to be converted into + values animation. Therefore they have to be the same as the related values animation. + The conversion is as follows: +

+ + + + + + + + + + + + + + + + + +
usedconverted
from="a" to="b"values="a;b"
from="a" by="b"values="a;a+b"
by="a" + values="0;a" additive="sum" +
+

+ (by and from-by animations have only a meaning, if values can be added somehow. + '0' is used as a general symbol for the neutral element of addition for the related attribute, + this means 0 + a = a + 0 = a. And '0' is not equal to the symbol '1' as the basic unit of the + related attribute, '0' is a predecessor of '1' in the related attribute space. For animateTransform + the '0' is the same as the zero matrix, not the unity or identity matrix. + For the skewX type this is a skew with an angle of 0. + Deviating from SMIL 2 in SVG it is specified, that for animateTranform the animation + effect has to be postmultiplied to the underlying value, if the animation is additive. Note + that for two additive skewX angles a, b the resulting angle is not a+b but atan(tan(a)+tan(b)). +

+

+ The from-to, from-by and by are applied to animateTransform of the skewX type + of different blue stroked + paths and are compared with the related values animations including additive and + cumulative hehaviour for underlying red paths. Additionally underlying dark red + paths simulate the same behaviour using always the defaults additive replace and + accumulate replace with animateMotion. The blue paths cover all red paths. + Therefore if something red gets visible, an error is occured. + Because fill is always not set and therefore remove, + the final value is the value at 2s given with a simple values animateTransform, not very + interesting for the test. +

+ +
+ + + diff --git a/test/W3C_SVG_12_TinyTestSuite_beta/htmlObjectHarness/animate-elem-217-t.html b/test/W3C_SVG_12_TinyTestSuite_beta/htmlObjectHarness/animate-elem-217-t.html new file mode 100755 index 00000000..a511bebc --- /dev/null +++ b/test/W3C_SVG_12_TinyTestSuite_beta/htmlObjectHarness/animate-elem-217-t.html @@ -0,0 +1,131 @@ + + + + + + + + +SVG 1.2 Tiny test:animate-elem-217-t + + + + + + + + + + +
+ + + + + + + + + + + + +
+

animate-elem-217-t

+
+

FAIL

+
+ raster image of animate-elem-217-t +
+
+ + +
+

Compare from-to, from-by and by animateTransform skewY with values animateTransform.

+

+ The main indication for a failed test is the appearance of red. +

+

+ SMIL 2 specifies, how from-to, from-by and by animations have to be converted into + values animation. Therefore they have to be the same as the related values animation. + The conversion is as follows: +

+ + + + + + + + + + + + + + + + + +
usedconverted
from="a" to="b"values="a;b"
from="a" by="b"values="a;a+b"
by="a" + values="0;a" additive="sum" +
+

+ (by and from-by animations have only a meaning, if values can be added somehow. + '0' is used as a general symbol for the neutral element of addition for the related attribute, + this means 0 + a = a + 0 = a. And '0' is not equal to the symbol '1' as the basic unit of the + related attribute, '0' is a predecessor of '1' in the related attribute space. For animateTransform + the '0' is the same as the zero matrix, not the unity or identity matrix. + For the skewY type this is a skew with an angle of 0. + Deviating from SMIL 2 in SVG it is specified, that for animateTranform the animation + effect has to be postmultiplied to the underlying value, if the animation is additive. Note + that for two additive skewY angles a, b the resulting angle is not a+b but atan(tan(a)+tan(b)). +

+

+ The from-to, from-by and by are applied to animateTransform of the skewY type + of different blue stroked + paths and are compared with the related values animations including additive and + cumulative hehaviour for underlying red paths. Additionally underlying dark red + paths simulate the same behaviour using always the defaults additive replace and + accumulate replace with animateMotion. The blue paths cover all red paths. + Therefore if something red gets visible, an error is occured. + Because fill is always not set and therefore remove, + the final value is the value at 2s given with a simple values animateTransform, not very + interesting for the test. +

+ +
+ + + diff --git a/test/W3C_SVG_12_TinyTestSuite_beta/htmlObjectHarness/animate-elem-218-t.html b/test/W3C_SVG_12_TinyTestSuite_beta/htmlObjectHarness/animate-elem-218-t.html new file mode 100755 index 00000000..34831306 --- /dev/null +++ b/test/W3C_SVG_12_TinyTestSuite_beta/htmlObjectHarness/animate-elem-218-t.html @@ -0,0 +1,100 @@ + + + + + + + + +SVG 1.2 Tiny test:animate-elem-218-t + + + + + + + + + + +
+ + + + + + + + + + + + +
+

animate-elem-218-t

+
+

FAIL

+
+ raster image of animate-elem-218-t +
+
+ + +
+

+ xml:id or id? Identification of the element, that is target of an animation. + For authors it is recommended not to use different for id and xml:id for the same + element and not the same value for id in one element and the same value for + xml:id in another element. This is done in this document only as a (stupid) test, + not as an application. +

+

+ The main indication for a failed test is the appearance of red or no animation after 2s. +

+

+ Because for historical reasons, SVG tiny 1.2 has two fragment identifiers. + It is recommended, that xml:id is used and not only id. As a consequence + it is possible to have two different identifier values for one element. + In such a case, id is skipped and only xml:id has to be choosen. + + In this test the height of the blue rectangle is set to another value. This is compared + with a set animation of another red rectangle, having the same value for xml:id and + id. The blue rectangle has to cover always the red one. If something red is visible, + an error is occured. +

+ +
+ + + diff --git a/test/W3C_SVG_12_TinyTestSuite_beta/htmlObjectHarness/animate-elem-219-t.html b/test/W3C_SVG_12_TinyTestSuite_beta/htmlObjectHarness/animate-elem-219-t.html new file mode 100755 index 00000000..a78c1127 --- /dev/null +++ b/test/W3C_SVG_12_TinyTestSuite_beta/htmlObjectHarness/animate-elem-219-t.html @@ -0,0 +1,105 @@ + + + + + + + + +SVG 1.2 Tiny test:animate-elem-219-t + + + + + + + + + + +
+ + + + + + + + + + + + +
+

animate-elem-219-t

+
+

FAIL

+
+ raster image of animate-elem-219-t +
+
+ + +
+

+ Identify the attributeType and the priority of an animation. +

+

+ The main indication for a failed test is the appearance of red. +

+

+ With the top triangle is tested, that the points attribute of a + polygon is animated using attributeType auto or XML and + is not animated if CSS is used, because there is no CSS property + points applicable for the polygon element. +

+

+ The bottom triangles test the priority for an animation with + attributeType CSS or auto over an XML animation, all for the + stroke attribute. Even if the attributeType is completely ignored, + the priority should still work for the bottom right triangle, + because the priority is set here with a later begin. +

+

+ In all cases the coloring or positioning of elements is choosen in + such a way, that normally not visible lower priority or not + applicable animations are indicated with a red stroke, + higher priority or applicable animations with a blue stroke + or an animation in the blue range. +

+ +
+ + + diff --git a/test/W3C_SVG_12_TinyTestSuite_beta/htmlObjectHarness/animate-elem-22-t.html b/test/W3C_SVG_12_TinyTestSuite_beta/htmlObjectHarness/animate-elem-22-t.html new file mode 100755 index 00000000..bb38f03f --- /dev/null +++ b/test/W3C_SVG_12_TinyTestSuite_beta/htmlObjectHarness/animate-elem-22-t.html @@ -0,0 +1,86 @@ + + + + + + + + +SVG 1.2 Tiny test:animate-elem-22-t + + + + + + + + + + +
+ + + + + + + + + + + + +
+

animate-elem-22-t

+
+

FAIL

+
+ raster image of animate-elem-22-t +
+
+ + +
+

Test which verifies that the basic facilities of declarative animation are working.

+

This test uses the following element : 'animate'

+

The test is a nine second animation with no repeats. It shows a rectangle growing from small to big.

+

+ The file includes various guides that can be used to verify the correctness of the animation. Outlines exist for + the rectangle size and location at times 0s, 3s and 9s. +

+ +
+ + + diff --git a/test/W3C_SVG_12_TinyTestSuite_beta/htmlObjectHarness/animate-elem-221-t.html b/test/W3C_SVG_12_TinyTestSuite_beta/htmlObjectHarness/animate-elem-221-t.html new file mode 100755 index 00000000..801cfaac --- /dev/null +++ b/test/W3C_SVG_12_TinyTestSuite_beta/htmlObjectHarness/animate-elem-221-t.html @@ -0,0 +1,92 @@ + + + + + + + + +SVG 1.2 Tiny test:animate-elem-221-t + + + + + + + + + + +
+ + + + + + + + + + + + +
+

animate-elem-221-t

+
+

FAIL

+
+ raster image of animate-elem-221-t +
+
+ + +
+

+ Correct timing with begin, end, dur, fill, max. +

+

+ The main indication for a failed test is the appearance of red. +

+

+ Simple from to animations for cx and cy of a blue stroked + circle are stopped with max attributes. + The gray path gives the correct trajectory. + If the red center of the circle becomes visible, an error is + occured. +

+ +
+ + + diff --git a/test/W3C_SVG_12_TinyTestSuite_beta/htmlObjectHarness/animate-elem-222-t.html b/test/W3C_SVG_12_TinyTestSuite_beta/htmlObjectHarness/animate-elem-222-t.html new file mode 100755 index 00000000..6b83642e --- /dev/null +++ b/test/W3C_SVG_12_TinyTestSuite_beta/htmlObjectHarness/animate-elem-222-t.html @@ -0,0 +1,99 @@ + + + + + + + + +SVG 1.2 Tiny test:animate-elem-222-t + + + + + + + + + + +
+ + + + + + + + + + + + +
+

animate-elem-222-t

+
+

FAIL

+
+ raster image of animate-elem-222-t +
+
+ + +
+

+ Correct timing with begin, end, dur, fill, min. +

+

+ The main indication for a failed test is the appearance of red. +

+

+ Simple from to animations for cx and cy of a blue stroked + circle are used with begin, dur, end, fill and min attributes and + correlated with syncbase values. + This is compared with simple animateMotion with the + same trajectory and timing. + The related red circle is always + covered by the blue stroke circle. + The gray path gives the correct trajectory. +

+

+ The test is passed if the blue circle follows the defined path. + If part of the red circle becomes visible, the test is failed. +

+ +
+ + + diff --git a/test/W3C_SVG_12_TinyTestSuite_beta/htmlObjectHarness/animate-elem-225-t.html b/test/W3C_SVG_12_TinyTestSuite_beta/htmlObjectHarness/animate-elem-225-t.html new file mode 100755 index 00000000..44a0faab --- /dev/null +++ b/test/W3C_SVG_12_TinyTestSuite_beta/htmlObjectHarness/animate-elem-225-t.html @@ -0,0 +1,87 @@ + + + + + + + + +SVG 1.2 Tiny test:animate-elem-225-t + + + + + + + + + + +
+ + + + + + + + + + + + +
+

animate-elem-225-t

+
+

FAIL

+
+ raster image of animate-elem-225-t +
+
+ + +
+

+ This test verifies that error handling for the begin attribute is working. + An error in the begin-value-list means that the attribute as a whole is in error, and + that is the same as if the value was set to 'indefinite'. +

+

+ There should be three green rects visible. If any of them turns red the test has failed. +

+ +
+ + + diff --git a/test/W3C_SVG_12_TinyTestSuite_beta/htmlObjectHarness/animate-elem-226-t.html b/test/W3C_SVG_12_TinyTestSuite_beta/htmlObjectHarness/animate-elem-226-t.html new file mode 100755 index 00000000..196c276a --- /dev/null +++ b/test/W3C_SVG_12_TinyTestSuite_beta/htmlObjectHarness/animate-elem-226-t.html @@ -0,0 +1,109 @@ + + + + + + + + +SVG 1.2 Tiny test:animate-elem-226-t + + + + + + + + + + +
+ + + + + + + + + + + + +
+

animate-elem-226-t

+
+

FAIL

+
+ raster image of animate-elem-226-t +
+
+ + +
+

+ The test is passed if you see a large swirly blue image, outlined in green. Below, + two smaller copies also outlined in green. Below that, a thick red outline that does + not have an image inside it. All three blue images with green outlines animate over + ten seconds, alternating between a blue and a pink image. + The animations all finish at the same time and display the pink image thereafter. +

+

+ This tests the resolving of QNames in the attributeName attribute value. The + attribute tested is href, in the XLink namespace. +

+

+ If an image is displayed on top of the red rectangle, or if the large image is not shown, or a + purple image with 'FAIL' is shown rather than blue, the implementation is using magic prefixes + and is only looking for the string 'xlink:href' rather than following the Namespaces in + XML specification. +

+

+ If the right-most of the two small images animates but the left-most does not, + the implementation is only handling animation elements that are a direct child of + the element to be animated, and does not implement animation specified by an + XLink href. In that case, the large image will not animate either, but this does + not necessarily mean that namespace resolution is incorrect. (It does mean that + the test is failed, however). +

+

+ If the two small images animate correctly but the large one does not, then + resolution of QNames in the 'attributeName' attribute is not following the + Namespaces in XML specification as required by the SVG specification. +

+ +
+ + + diff --git a/test/W3C_SVG_12_TinyTestSuite_beta/htmlObjectHarness/animate-elem-227-t.html b/test/W3C_SVG_12_TinyTestSuite_beta/htmlObjectHarness/animate-elem-227-t.html new file mode 100755 index 00000000..52dd624e --- /dev/null +++ b/test/W3C_SVG_12_TinyTestSuite_beta/htmlObjectHarness/animate-elem-227-t.html @@ -0,0 +1,101 @@ + + + + + + + + +SVG 1.2 Tiny test:animate-elem-227-t + + + + + + + + + + +
+ + + + + + + + + + + + +
+

animate-elem-227-t

+
+

FAIL

+
+ raster image of animate-elem-227-t +
+
+ + +
+ +

+ Tests animateColor with the values currentColor, inherit and none. The test is + passed if: +

+ + +
+ + + diff --git a/test/W3C_SVG_12_TinyTestSuite_beta/htmlObjectHarness/animate-elem-23-t.html b/test/W3C_SVG_12_TinyTestSuite_beta/htmlObjectHarness/animate-elem-23-t.html new file mode 100755 index 00000000..a85e27cf --- /dev/null +++ b/test/W3C_SVG_12_TinyTestSuite_beta/htmlObjectHarness/animate-elem-23-t.html @@ -0,0 +1,86 @@ + + + + + + + + +SVG 1.2 Tiny test:animate-elem-23-t + + + + + + + + + + +
+ + + + + + + + + + + + +
+

animate-elem-23-t

+
+

FAIL

+
+ raster image of animate-elem-23-t +
+
+ + +
+

Test which verifies that the basic facilities of declarative animation are working.

+

This test uses the following elements : 'set', and 'animateColor

+

The test is a nine second animation with no repeats. It shows a circle changing color from 3s to 9s.

+

+ The file includes various guides that can be used to verify the correctness of the animation. Boxes on the left + show the correct circle color values at times 3s, 6s and 9s. +

+ +
+ + + diff --git a/test/W3C_SVG_12_TinyTestSuite_beta/htmlObjectHarness/animate-elem-24-t.html b/test/W3C_SVG_12_TinyTestSuite_beta/htmlObjectHarness/animate-elem-24-t.html new file mode 100755 index 00000000..b1e49dab --- /dev/null +++ b/test/W3C_SVG_12_TinyTestSuite_beta/htmlObjectHarness/animate-elem-24-t.html @@ -0,0 +1,89 @@ + + + + + + + + +SVG 1.2 Tiny test:animate-elem-24-t + + + + + + + + + + +
+ + + + + + + + + + + + +
+

animate-elem-24-t

+
+

FAIL

+
+ raster image of animate-elem-24-t +
+
+ + +
+

Test which verifies that the basic facilities of declarative animation are working.

+

This test uses the following elements : 'animateMotion' and 'animateTransform'

+

+ The test is a nine second animation with no repeats. It shows the text string "It's alive" moving, rotating and + growing from time 3s to 9s. +

+

+ The file includes various guides that can be used to verify the correctness of the animation. Pale blue guides + exist for the text size, location and orientation at times 3s, 6s and 9s. +

+ +
+ + + diff --git a/test/W3C_SVG_12_TinyTestSuite_beta/htmlObjectHarness/animate-elem-25-t.html b/test/W3C_SVG_12_TinyTestSuite_beta/htmlObjectHarness/animate-elem-25-t.html new file mode 100755 index 00000000..74a8ca55 --- /dev/null +++ b/test/W3C_SVG_12_TinyTestSuite_beta/htmlObjectHarness/animate-elem-25-t.html @@ -0,0 +1,88 @@ + + + + + + + + +SVG 1.2 Tiny test:animate-elem-25-t + + + + + + + + + + +
+ + + + + + + + + + + + +
+

animate-elem-25-t

+
+

FAIL

+
+ raster image of animate-elem-25-t +
+
+ + +
+

Test animation options for specifying the target attribute/property.

+

+ The left-hand rectangle animates an XML attribute without specifying a value for 'attributeType'. The right-hand rectangle + animates an XML attribute and does set 'attributeType' to 'XML'. +

+

+ The left rectangle animates its height from 100 to 50, starting at time 3 seconds and ending at 6 seconds. The right + rectangle animates its height from 100 to 50, starting at time 6 seconds and ending at 9 seconds. +

+ +
+ + + diff --git a/test/W3C_SVG_12_TinyTestSuite_beta/htmlObjectHarness/animate-elem-26-t.html b/test/W3C_SVG_12_TinyTestSuite_beta/htmlObjectHarness/animate-elem-26-t.html new file mode 100755 index 00000000..4b39f388 --- /dev/null +++ b/test/W3C_SVG_12_TinyTestSuite_beta/htmlObjectHarness/animate-elem-26-t.html @@ -0,0 +1,85 @@ + + + + + + + + +SVG 1.2 Tiny test:animate-elem-26-t + + + + + + + + + + +
+ + + + + + + + + + + + +
+

animate-elem-26-t

+
+

FAIL

+
+ raster image of animate-elem-26-t +
+
+ + +
+

Test animation options for specifying the target attribute/property.

+

+ On the left, a circle animates the stroke-width property without specifying a value for 'attributeType'. On the right + a circle animates the stroke-width property and does set 'attributeType' to 'CSS'. +

+

For each circle, guides shows what the stroke-width looks like initially and what it looks like at the end of the animation.

+ +
+ + + diff --git a/test/W3C_SVG_12_TinyTestSuite_beta/htmlObjectHarness/animate-elem-27-t.html b/test/W3C_SVG_12_TinyTestSuite_beta/htmlObjectHarness/animate-elem-27-t.html new file mode 100755 index 00000000..c111aa9a --- /dev/null +++ b/test/W3C_SVG_12_TinyTestSuite_beta/htmlObjectHarness/animate-elem-27-t.html @@ -0,0 +1,91 @@ + + + + + + + + +SVG 1.2 Tiny test:animate-elem-27-t + + + + + + + + + + +
+ + + + + + + + + + + + +
+

animate-elem-27-t

+
+

FAIL

+
+ raster image of animate-elem-27-t +
+
+ + +
+

Test animation options for specifying the target element.

+

+ The leftmost rectangle verifies the use of the 'xlink:href' attribute to indicate the target element to be + animated. The rightmost rectangle verifies animating the parent of the 'animate' element (in this case, a 'rect' + element) (i.e., the implicit parent of the 'animate' element). +

+

+ At time 0, two rectangles filled with red and stroked with blue appear, each with width=100 and height=200. + Starting at time 3 seconds and ending at time 6 seconds, the height of the leftmost rectangle decreases from 200 + to 50. Starting at time 6 seconds and ending at time 9 seconds, the rightmost rectangle decreases from 200 to 50. + Annotations on the picture show the correct positions at particular times. +

+ +
+ + + diff --git a/test/W3C_SVG_12_TinyTestSuite_beta/htmlObjectHarness/animate-elem-28-t.html b/test/W3C_SVG_12_TinyTestSuite_beta/htmlObjectHarness/animate-elem-28-t.html new file mode 100755 index 00000000..25f0409a --- /dev/null +++ b/test/W3C_SVG_12_TinyTestSuite_beta/htmlObjectHarness/animate-elem-28-t.html @@ -0,0 +1,84 @@ + + + + + + + + +SVG 1.2 Tiny test:animate-elem-28-t + + + + + + + + + + +
+ + + + + + + + + + + + +
+

animate-elem-28-t

+
+

FAIL

+
+ raster image of animate-elem-28-t +
+
+ + +
+

Test inheritance of animated properties.

+

+ A yellow happy face should be displayed. The stroke for the smile and yellow circle are both animated, the stroke + goes from "#F1E900" to "#FF0000". +

+ +
+ + + diff --git a/test/W3C_SVG_12_TinyTestSuite_beta/htmlObjectHarness/animate-elem-29-t.html b/test/W3C_SVG_12_TinyTestSuite_beta/htmlObjectHarness/animate-elem-29-t.html new file mode 100755 index 00000000..88092c06 --- /dev/null +++ b/test/W3C_SVG_12_TinyTestSuite_beta/htmlObjectHarness/animate-elem-29-t.html @@ -0,0 +1,103 @@ + + + + + + + + +SVG 1.2 Tiny test:animate-elem-29-t + + + + + + + + + + +
+ + + + + + + + + + + + +
+

animate-elem-29-t

+
+

FAIL

+
+ raster image of animate-elem-29-t +
+
+ + +
+

Test compositing of animated fill opacity.

+

+ The assumption is that you will first click on "fade in" and then click on "fade out", each exactly once. The + first time you select the link 'fade in', you should see a red square appearing, gradually and smoothly fading + from zero to 100% opacity over the course of three seconds. This square is in front of and thus obscures the + lower left circle, but is behind the upper right circle which is thus is composited on top of the animated red + square. Then, when you click on "fade out", the red square will gradually disappear, smoothly fading from 100% + to zero opacity over the course of three seconds. +

+

+ The rendered picture should match the reference image, (except for possible variations in the labelling text + (per CSS2 rules)) after activating the link on the fade-in button the first time and waiting three seconds for + the animation to compete. The picture should remain looking the same way indefinitely, until another link is + activated. +

+

+ With the second click on "fade in", however, the behavior might be different. In the case of having a first + click on "fade in", waiting three seconds, and then immediately perform a first click on "fade out", waiting + three seconds, and then immediately perform a second click on "fade in", you should see the following. After + the first click on "fade in", the red square goes from zero to 100% opacity. After the first click on "fade out", + the red square goes from 100% to zero opacity. After the second click on "fade in", however, the red square goes + from zero to 100% opacity, and then goes back from 100% to zero opacity. This is because of the hyperlinking rules + as they relate to resolved start times in the SMIL 2.1 specification. +

+ +
+ + + diff --git a/test/W3C_SVG_12_TinyTestSuite_beta/htmlObjectHarness/animate-elem-30-t.html b/test/W3C_SVG_12_TinyTestSuite_beta/htmlObjectHarness/animate-elem-30-t.html new file mode 100755 index 00000000..a9959eb3 --- /dev/null +++ b/test/W3C_SVG_12_TinyTestSuite_beta/htmlObjectHarness/animate-elem-30-t.html @@ -0,0 +1,87 @@ + + + + + + + + +SVG 1.2 Tiny test:animate-elem-30-t + + + + + + + + + + +
+ + + + + + + + + + + + +
+

animate-elem-30-t

+
+

FAIL

+
+ raster image of animate-elem-30-t +
+
+ + +
+

The purpose of this test is to test animated <use> where the referenced <defs> also is animated.

+

+ The test shows 6 different elements, each element defined in a <defs> and referenced with a <use>. + All the elements are animated between 0-3 seconds. The expected animation transform is indicated with a gray + silhouette showing the border values (0 and 3 seconds) and an arrow indicating the movement in between. For the + two elements with a color animation, the colors goes from white to blue (the same blue color used for all + elements). +

+ +
+ + + diff --git a/test/W3C_SVG_12_TinyTestSuite_beta/htmlObjectHarness/animate-elem-31-t.html b/test/W3C_SVG_12_TinyTestSuite_beta/htmlObjectHarness/animate-elem-31-t.html new file mode 100755 index 00000000..18743a0d --- /dev/null +++ b/test/W3C_SVG_12_TinyTestSuite_beta/htmlObjectHarness/animate-elem-31-t.html @@ -0,0 +1,91 @@ + + + + + + + + +SVG 1.2 Tiny test:animate-elem-31-t + + + + + + + + + + +
+ + + + + + + + + + + + +
+

animate-elem-31-t

+
+

FAIL

+
+ raster image of animate-elem-31-t +
+
+ + +
+

The purpose of this test is to test animation of the display attribute.

+

+ The test shows two gray rectangles which are filled with colored circles during the length of the animation + (8 sec). The circles in the top rectangle are displayed/hidden by animating the display attribute.The circles in + the bottom rectangle are serving as the reference and are displayed/hidden by animating the visibility attribute. + A correct implementation should display/hide circles with the same color from the top and bottom rectangle at the + same time. +

+

+ In total there are 6 different circles (purple, green, red, blue, yellow, cyan) in 5 positions (blue and yellow + share position) that should be displayed during the test. +

+ +
+ + + diff --git a/test/W3C_SVG_12_TinyTestSuite_beta/htmlObjectHarness/animate-elem-32-t.html b/test/W3C_SVG_12_TinyTestSuite_beta/htmlObjectHarness/animate-elem-32-t.html new file mode 100755 index 00000000..58cb1cba --- /dev/null +++ b/test/W3C_SVG_12_TinyTestSuite_beta/htmlObjectHarness/animate-elem-32-t.html @@ -0,0 +1,84 @@ + + + + + + + + +SVG 1.2 Tiny test:animate-elem-32-t + + + + + + + + + + +
+ + + + + + + + + + + + +
+

animate-elem-32-t

+
+

FAIL

+
+ raster image of animate-elem-32-t +
+
+ + +
+

Tests the animation to and from the degenerate cases of the basic shapes. The shapes are drawn within the black rectangles.

+

+ The rendered picture should match the reference image at the end of the animation, except for possible variations in the + labelling text (per CSS2 rules). +

+ +
+ + + diff --git a/test/W3C_SVG_12_TinyTestSuite_beta/htmlObjectHarness/animate-elem-33-t.html b/test/W3C_SVG_12_TinyTestSuite_beta/htmlObjectHarness/animate-elem-33-t.html new file mode 100755 index 00000000..1465beae --- /dev/null +++ b/test/W3C_SVG_12_TinyTestSuite_beta/htmlObjectHarness/animate-elem-33-t.html @@ -0,0 +1,92 @@ + + + + + + + + +SVG 1.2 Tiny test:animate-elem-33-t + + + + + + + + + + +
+ + + + + + + + + + + + +
+

animate-elem-33-t

+
+

FAIL

+
+ raster image of animate-elem-33-t +
+
+ + +
+

The purpose of this test is to test animateMotion with keyPoints and keyTimes.

+

+ The test consists of 4 sub-tests. Each test has a purple circle which moves along a path. The path is indicated + with a dashed line and sample points where the circle should pass a certain position on the path is indicated with + gray circles. On top of each gray circle is a number which indicates the passing time in seconds. In the cases + where the purple circle should pass the gray circle two times the first passing time is written above the gray + circle and the second passing time is written below. +

+

+ Section 16.2.13 in the spec. states that a motion path is defined by the path attribute or by values or from/to + attributes. So in the animateMotion case, values is just used for defining the motionPath and the number of values + do not have to relate to the number of keyTimes. +

+ +
+ + + diff --git a/test/W3C_SVG_12_TinyTestSuite_beta/htmlObjectHarness/animate-elem-34-t.html b/test/W3C_SVG_12_TinyTestSuite_beta/htmlObjectHarness/animate-elem-34-t.html new file mode 100755 index 00000000..58c5c96e --- /dev/null +++ b/test/W3C_SVG_12_TinyTestSuite_beta/htmlObjectHarness/animate-elem-34-t.html @@ -0,0 +1,94 @@ + + + + + + + + +SVG 1.2 Tiny test:animate-elem-34-t + + + + + + + + + + +
+ + + + + + + + + + + + +
+

animate-elem-34-t

+
+

FAIL

+
+ raster image of animate-elem-34-t +
+
+ + +
+

The purpose of this test is to test animation of attributes points and fill-rule.

+

+ The test consists of 2 sub-tests. The first test is a polygon shaped as a digit. The polygon has an animation on + its vertex points which morphs the polygon between the numbers 1, 2, 3 and 4. The gray outlines indicates the + expected position of the polygon at 1, 2, 3 and 4s. The second test is 4 paths in a u-shape. They have animated + fill-rules. Their initial fill-rules are, from left to right, nonzero, evenodd, nonzero (by default value, no + fill-rule attribute set) and nonzero (by default value, no fill-rule attribute set). This means, that the second + path is initially u-shaped, and all other paths are initially rect-shaped. All four animations are set to evenodd + as a last stage. The further expected result is that one path at a time is filled. The other three paths are not + filled but have the u-shape. The fourth animation from evenodd to nonzero happens by going back to the initial + state, because the fill attribute is not set to freeze. Which path that should be filled at which time is indicated + by the number above it (indicating time in seconds). To enhance the difference between the filled path and the rest, + the filled path should always have the same color as the morphing polygon. This is achieved by a discrete color + animation. +

+ +
+ + + diff --git a/test/W3C_SVG_12_TinyTestSuite_beta/htmlObjectHarness/animate-elem-35-t.html b/test/W3C_SVG_12_TinyTestSuite_beta/htmlObjectHarness/animate-elem-35-t.html new file mode 100755 index 00000000..53b09a58 --- /dev/null +++ b/test/W3C_SVG_12_TinyTestSuite_beta/htmlObjectHarness/animate-elem-35-t.html @@ -0,0 +1,103 @@ + + + + + + + + +SVG 1.2 Tiny test:animate-elem-35-t + + + + + + + + + + +
+ + + + + + + + + + + + +
+

animate-elem-35-t

+
+

FAIL

+
+ raster image of animate-elem-35-t +
+
+ + +
+

+ The purpose of this test is to test animation of attributes stroke-dasharray, + stroke-dashoffset, stroke-miterlimit, stroke-linecap and stroke-linjoin. +

+

+ This file contains four tests, testing animation of five attributes. + The first test animates the stroke-dashoffset. There are seven reference polylines, all with + the same stroke-dasharray but with different values on their stroke-dashoffset. A red polyline + with the same stroke-dash array has an animation on its stroke-dasharray. The red polyline is + animated so that it stops by the reference polyline that has the right stroke-dashoffset at + that perticular time. + The second test animates stroke-linecap and stroke-linejoin. There are three reference + polylines. Comparsion is done in the same manner as in the previous test. + The third test animates the stroke-miterlimit. There are two sets offilled reference paths + (black) and two outlined paths (red) with animated stroke-miterlimit. The paths are shaped like + a capital A. In the upper test the animated path is drawn on top of the reference polygons and + in the lower test the reference path is drawn on top of the animated path. As the + stroke-miterlimit is animated to different values, different reference paths are used. To pass + the test, there should never be any part of the underlying geometry visible (black in the upper + or red in the lower). + The fourth test animates the stroke-dasharray. The initial stroke-dasharray gives a + short-dashed line. This pattern is animated into a pattern that on this short path gives a + solid line at 2 seconds. +

+ +
+ + + diff --git a/test/W3C_SVG_12_TinyTestSuite_beta/htmlObjectHarness/animate-elem-36-t.html b/test/W3C_SVG_12_TinyTestSuite_beta/htmlObjectHarness/animate-elem-36-t.html new file mode 100755 index 00000000..ffc5f331 --- /dev/null +++ b/test/W3C_SVG_12_TinyTestSuite_beta/htmlObjectHarness/animate-elem-36-t.html @@ -0,0 +1,85 @@ + + + + + + + + +SVG 1.2 Tiny test:animate-elem-36-t + + + + + + + + + + +
+ + + + + + + + + + + + +
+

animate-elem-36-t

+
+

FAIL

+
+ raster image of animate-elem-36-t +
+
+ + +
+

This test validates the animation of the transform attribute on structure elements, hyperlinks and text elements.

+

+ The test applies an <animateTransform> on various element types: <g>, <use>, <image>, + <switch>, <a> and <text>. In all cases, the type is a rotation and all the elements should rotate + together about their centers, for 3s, starting at the document's load time.

+

The static reference image shows the final state of the animation.

+ +
+ + + diff --git a/test/W3C_SVG_12_TinyTestSuite_beta/htmlObjectHarness/animate-elem-37-t.html b/test/W3C_SVG_12_TinyTestSuite_beta/htmlObjectHarness/animate-elem-37-t.html new file mode 100755 index 00000000..a71031e5 --- /dev/null +++ b/test/W3C_SVG_12_TinyTestSuite_beta/htmlObjectHarness/animate-elem-37-t.html @@ -0,0 +1,86 @@ + + + + + + + + +SVG 1.2 Tiny test:animate-elem-37-t + + + + + + + + + + +
+ + + + + + + + + + + + +
+

animate-elem-37-t

+
+

FAIL

+
+ raster image of animate-elem-37-t +
+
+ + +
+

This test validates the animation of the transform attribute shape elements.

+

+ The test applies an <animateTransform> on various element types: <g>, <use>, <image>, + <switch>, <a> and <text>. In all cases the animation should run for 3s, starting at the + document's load time. The <circle> has a scale animation, and all the rest of the elements should rotate + together about their centers. The static reference image shows the final state of the animation. +

+ +
+ + + diff --git a/test/W3C_SVG_12_TinyTestSuite_beta/htmlObjectHarness/animate-elem-38-t.html b/test/W3C_SVG_12_TinyTestSuite_beta/htmlObjectHarness/animate-elem-38-t.html new file mode 100755 index 00000000..1b62e5e9 --- /dev/null +++ b/test/W3C_SVG_12_TinyTestSuite_beta/htmlObjectHarness/animate-elem-38-t.html @@ -0,0 +1,85 @@ + + + + + + + + +SVG 1.2 Tiny test:animate-elem-38-t + + + + + + + + + + +
+ + + + + + + + + + + + +
+

animate-elem-38-t

+
+

FAIL

+
+ raster image of animate-elem-38-t +
+
+ + +
+

The purpose of this test is to test animation of the viewBox attribute.

+

+ This file tests animation of the viewBow attribute. The viewBox changes position and size several times. At each + new setting, a green indicator frame will flash a couple of times. This frame must only appear at the edges of + the SVG element. +

+ +
+ + + diff --git a/test/W3C_SVG_12_TinyTestSuite_beta/htmlObjectHarness/animate-elem-39-t.html b/test/W3C_SVG_12_TinyTestSuite_beta/htmlObjectHarness/animate-elem-39-t.html new file mode 100755 index 00000000..bf3bc86b --- /dev/null +++ b/test/W3C_SVG_12_TinyTestSuite_beta/htmlObjectHarness/animate-elem-39-t.html @@ -0,0 +1,100 @@ + + + + + + + + +SVG 1.2 Tiny test:animate-elem-39-t + + + + + + + + + + +
+ + + + + + + + + + + + +
+

animate-elem-39-t

+
+

FAIL

+
+ raster image of animate-elem-39-t +
+
+ + +
+

+ This test validates that the xlink:href attribute can be animated on the <a>, <image> and <use> + elements, using the <animate> or <set> animation elements. +

+

+ For the <a> animation, showing on the left-most column, the number indicates the number of the animation + test currently linked by the xlink:href attribute. For example, when the xlink:href animated value is + "animate-elem-38-t.svg", the text displays "38". When the user clicks on the displayed number, the user agent + should open the corresponding link. For example, if the user clicks on 38, then the "animate-elem-38-t.svg" URI + should be followed. If the user clicks on 02, then the "animate-elem-02-t.svg" URI should be followed. +

+

+ For the <image> animations, the image xlink:href attribute cycles through two values showing a sun set and + a picture of the sydney opera. The image should change every second and the images shown by the <set> and + <animate> animations should always match. +

+

+ For the <use> animations, the use xlink:href attribute cycles through values "#useA" and "#useB" which + reference text elements displaying values "Use A" and "Use B". The change should happen every second and the text + shown for the two animations (<set> and <animation>) should always match. +

+ +
+ + + diff --git a/test/W3C_SVG_12_TinyTestSuite_beta/htmlObjectHarness/animate-elem-40-t.html b/test/W3C_SVG_12_TinyTestSuite_beta/htmlObjectHarness/animate-elem-40-t.html new file mode 100755 index 00000000..194f063d --- /dev/null +++ b/test/W3C_SVG_12_TinyTestSuite_beta/htmlObjectHarness/animate-elem-40-t.html @@ -0,0 +1,96 @@ + + + + + + + + +SVG 1.2 Tiny test:animate-elem-40-t + + + + + + + + + + +
+ + + + + + + + + + + + +
+

animate-elem-40-t

+
+

FAIL

+
+ raster image of animate-elem-40-t +
+
+ + +
+

+ This test validates that the x and y attributes can be animated on <use>, <image>, <rect> and + <text> elements. The test also validates that the width and height attributes can be animated on <image> + and <rect> +

+

+ For x and y animation, each test shows the reference positions at specific points in the animation. These markers + are highlighted at the time the target element's x/y position should match that of the marker. For the <text> + element, there are two tests. The first one tests animating a single value on the text's x and y attributes. The + second one tests animating x, y values where there are values for each of the text's characters. For that test + (bottom left), there is a set of reference markers for each of the characters ('1' and '2'). +

+

+ For width and height animation (the two tests on the bottom right), the outline showing the expected width and + height at given points in the animation is highlighted at the time the marker's width and height should match that + of the target element. +

+ +
+ + + diff --git a/test/W3C_SVG_12_TinyTestSuite_beta/htmlObjectHarness/animate-elem-41-t.html b/test/W3C_SVG_12_TinyTestSuite_beta/htmlObjectHarness/animate-elem-41-t.html new file mode 100755 index 00000000..b4941d86 --- /dev/null +++ b/test/W3C_SVG_12_TinyTestSuite_beta/htmlObjectHarness/animate-elem-41-t.html @@ -0,0 +1,100 @@ + + + + + + + + +SVG 1.2 Tiny test:animate-elem-41-t + + + + + + + + + + +
+ + + + + + + + + + + + +
+

animate-elem-41-t

+
+

FAIL

+
+ raster image of animate-elem-41-t +
+
+ + +
+

+ This test validates the operation of the animate element on the various graphics properties. This test is very + similar to animate-elem-78-t which uses the set element instead of the animate element to modify graphics properties. +

+

+ For each of the graphics properties, there are three tests. One animates the graphics property directly on an + element (such as a rect or a line) which uses the property. The other two tests apply the animation on a container + element (g and a), and validate that the animated property is inherited by elements which are child of the container. +

+

+ For each animation test, the element on which the animation is applied is also translated by an animation so that + the various states of the animation can be checked more easily. In most tests, there is a gray reference marker + which shows the expected animation state at the begining of the animation, mid-way, or at the end of the animation. +

+

+ The following animations should show continuous changes: fill, stroke, stroke-width, stroke-miterlimit, + stroke-dashoffset and color. Note that visually, stroke-miterlimit shows a sharp transition, but that is because + the miter is cut off when the animated miter limit reaches the test sharp angle's miter value. The stroke-miterlimit + value is changed continously but that is not visible in this test. +

+

The following animations have a discrete behavior: fill-rule, stroke-linecap, stroke-linejoin, display and visibility.

+ +
+ + + diff --git a/test/W3C_SVG_12_TinyTestSuite_beta/htmlObjectHarness/animate-elem-44-t.html b/test/W3C_SVG_12_TinyTestSuite_beta/htmlObjectHarness/animate-elem-44-t.html new file mode 100755 index 00000000..ba6a060b --- /dev/null +++ b/test/W3C_SVG_12_TinyTestSuite_beta/htmlObjectHarness/animate-elem-44-t.html @@ -0,0 +1,85 @@ + + + + + + + + +SVG 1.2 Tiny test:animate-elem-44-t + + + + + + + + + + +
+ + + + + + + + + + + + +
+

animate-elem-44-t

+
+

FAIL

+
+ raster image of animate-elem-44-t +
+
+ + +
+

The purpose of this test is to test animation of the d attribute of the path element.

+

+ This test consists of a path, specified as a series of lineto commands, whose d attribute is animated. The path + morphs between the numbers 1, 2, 3, and 4. The gray outlines indicates the expected position of the polygon at + 1, 2, 3 and 4s. The test contains an animated circle that indicates where the path should be at a given time. +

+ +
+ + + diff --git a/test/W3C_SVG_12_TinyTestSuite_beta/htmlObjectHarness/animate-elem-46-t.html b/test/W3C_SVG_12_TinyTestSuite_beta/htmlObjectHarness/animate-elem-46-t.html new file mode 100755 index 00000000..af16bccc --- /dev/null +++ b/test/W3C_SVG_12_TinyTestSuite_beta/htmlObjectHarness/animate-elem-46-t.html @@ -0,0 +1,96 @@ + + + + + + + + +SVG 1.2 Tiny test:animate-elem-46-t + + + + + + + + + + +
+ + + + + + + + + + + + +
+

animate-elem-46-t

+
+

FAIL

+
+ raster image of animate-elem-46-t +
+
+ + +
+

+ This test validates the operation of the animate element on the various text and font properties. This test is + very similar to animate-elem-77-t.svg which uses the set element instead of the animate element to modify graphics + properties. +

+

+ For each text or font properties, there are three tests. One animates the text or font property directly on a + text element which uses the property. The other two tests apply the animation on a container element (g and a), + and validate that the animated property is inherited by children text elements. +

+

+ For each animation test, the element on which the animation is applied is also translated by an animation so that + the various states of the animation can be checked more easily. There is a gray reference marker which shows the + expected animation state at the begining of the animation, mid-way, or at the end of the animation. +

+

Only the animation of font-size should show a continuous change of the font size.

+

The following animations have a discrete behavior: text-anchor, font-family, font-style, font-weight.

+ +
+ + + diff --git a/test/W3C_SVG_12_TinyTestSuite_beta/htmlObjectHarness/animate-elem-52-t.html b/test/W3C_SVG_12_TinyTestSuite_beta/htmlObjectHarness/animate-elem-52-t.html new file mode 100755 index 00000000..94378382 --- /dev/null +++ b/test/W3C_SVG_12_TinyTestSuite_beta/htmlObjectHarness/animate-elem-52-t.html @@ -0,0 +1,114 @@ + + + + + + + + +SVG 1.2 Tiny test:animate-elem-52-t + + + + + + + + + + +
+ + + + + + + + + + + + +
+

animate-elem-52-t

+
+

FAIL

+
+ raster image of animate-elem-52-t +
+
+ + +
+

The purpose of this test is to test eventbase targets.

+

+ The test consists of 4 rectangles named A, B, C, D. The D rectangle contains three animations changing the color + of the animation target. Each animation applies to one of the other rectangles by using xlink:href="". Clicking on + rect A should change it's color immediately, clicking B changes its color after 2 seconds, clicking C changes its + color after 4 seconds and clicking D shows no visible change (although D contains the animations the event target + for each animation is the referenced rectangle, this rectangle is also the animation target.) +

+

+ The following sections in SMIL 2.1 are relevant as + confirmation of this test: +

+
+ +
+ +
+ + + diff --git a/test/W3C_SVG_12_TinyTestSuite_beta/htmlObjectHarness/animate-elem-53-t.html b/test/W3C_SVG_12_TinyTestSuite_beta/htmlObjectHarness/animate-elem-53-t.html new file mode 100755 index 00000000..1bad8aea --- /dev/null +++ b/test/W3C_SVG_12_TinyTestSuite_beta/htmlObjectHarness/animate-elem-53-t.html @@ -0,0 +1,120 @@ + + + + + + + + +SVG 1.2 Tiny test:animate-elem-53-t + + + + + + + + + + +
+ + + + + + + + + + + + +
+

animate-elem-53-t

+
+

FAIL

+
+ raster image of animate-elem-53-t +
+
+ + +
+

+ The purpose of this test is to test animation of points and calcMode. +

+

+ 1. The green squares should animate together side by side. This applies + to the red ones as well. + 2. The time values indicate when the squares should reach the + corresponding reference square. + 3. The total distance is 0+40+80+24.14=144.14 + a. The "green animation" is 9 sec and linear so each interval + should get 3 sec. + b. The "red animation" is 8 sec and paced so the intervals + should get 2.22, 4.44 and 1.34 sec each. +

+

+ Here comes a more detailed description of the animation. + + The left green square (LG) is animated by animating the points with + a value array, consisting of 4 lists of points. This is an animation + with calcMode="linear" so an equal amount of time should be spent on + all 4 intervals. The right green square (RG) is animated by a simple + linear motion followed by a scale to follow LG. + The last scale by 1.9428 correspond to a movement of the lover right + corner of the square by sqrt((30*0.9428)^2 + (30*0.9428)^2) which is + approximately 40 distance units. This is the same distance as the first + interval in the values array (and half the second interval). + The length (in terms of distance) is not really important for the + green squares but for the red squares which are animated with + calcMode="paced" the length is used to calculate the time for each + interval. + Since the first and last interval are of the same length which + totals to the length of the middle interval, the interval should + be given time according to [27.75%(2.22sec);55.5%(4.44sec);16.75%(1.34sec)]. + + So the left red square (LR) is animated just as the LG square but + with calcMode="paced". The same applies to the right red square (RR) + that has default calcMode ("paced" for animateMotion) compared to the + RG square that has calcMode="linear". + The calcMode for the scale of RR (and RG) is not important since + it's not a value list type of animation. +

+ +
+ + + diff --git a/test/W3C_SVG_12_TinyTestSuite_beta/htmlObjectHarness/animate-elem-61-t.html b/test/W3C_SVG_12_TinyTestSuite_beta/htmlObjectHarness/animate-elem-61-t.html new file mode 100755 index 00000000..330ceeec --- /dev/null +++ b/test/W3C_SVG_12_TinyTestSuite_beta/htmlObjectHarness/animate-elem-61-t.html @@ -0,0 +1,111 @@ + + + + + + + + +SVG 1.2 Tiny test:animate-elem-61-t + + + + + + + + + + +
+ + + + + + + + + + + + +
+

animate-elem-61-t

+
+

FAIL

+
+ raster image of animate-elem-61-t +
+
+ + +
+

+ This tests validates multiple begin conditions in the begin attribute, assuming support for the <set> + element and setting the fill attribute on a <rect> element. +

+

+ The test validates the various possibilities for the begin attribute value: multiple offset values, multiple + event base values, multiple sync base values, multiple repeat values, and multiple accessKey values. Finally, + the test validates that begin values of different kinds can be mixed. +

+

The test shows 6 rows where a red rectangle' s x attribute is animated with <set> elements.

+

+ On the first three rows, the red rectangles should show on the left from 0 to 1s. From 1 to 2s, the rectangles + should show on the right. Then the rectangles should show on the left from 2 to 4s, then on the right again from + 4 to 5s and come back to the left position and stay there after 5s. +

+

+ On the fourth row, the rectangle's begin condition is event based and requires a user click. After the user clicks + on the rectangle, the rectangle should move to the right position for 1s, then move back to the left position for + 3 seconds, move again to the right position for 1 second before going back to the left position. +

+

+ On the fifth row, the rectangle's begin condition is accessKey based and requires a user to press the 'a' key. + After the user presses that key the rectangle should move to the right position for 1s, then move back to the left + position for 3 seconds, move again to the right position for 1 second before going back to the left position. +

+

+ The last row's rectangle has a begin condition with two offset values (1s;4s) and should behave like the rectangles + of the first three rows for the first 5 seconds of the document's timeline. In addition, the begin condition has a + click event base and thus, the rectangle should move to the right position for one second every time the user clicks + on it. Finally, the begin condition also has an accessKey condition for the 'b' character. Thus, the rectangle + should move to the right position every time the user presses the 'b' key. +

+ +
+ + + diff --git a/test/W3C_SVG_12_TinyTestSuite_beta/htmlObjectHarness/animate-elem-64-t.html b/test/W3C_SVG_12_TinyTestSuite_beta/htmlObjectHarness/animate-elem-64-t.html new file mode 100755 index 00000000..64e3b2b4 --- /dev/null +++ b/test/W3C_SVG_12_TinyTestSuite_beta/htmlObjectHarness/animate-elem-64-t.html @@ -0,0 +1,96 @@ + + + + + + + + +SVG 1.2 Tiny test:animate-elem-64-t + + + + + + + + + + +
+ + + + + + + + + + + + +
+

animate-elem-64-t

+
+

FAIL

+
+ raster image of animate-elem-64-t +
+
+ + +
+

This tests performs basic tests on the dur attribute.

+

+ 'The first row shows a red rectangle subject to a <set> animation with no begin attribute, no end attribute + and a dur attribute set to '2s'. Therefore, the animation should be active from 0 to 2 seconds and then terminate. + Consequently, the rectangle should show on the right for the first two seconds, and then move to the left position. +

+

+ The second row shows a red rectangle subject to a <set> animation with no begin attribute, no end attribute + and a dur attribute set to 'indefinite'. Therefore, the animation should stay active indefinitely and the rectangle + should always be on the right position, never on the left position. +

+

+ Finally, the third row shows red rectangle subject to a <set> animation with no begin attribute, no end + attribute and a dur attribute set to 'media'. In the context of SVG 1.1, this is equivalent to an 'indefinite' + value. Therefore, the animation should stay active indefinitely and the rectangle should always be on the right + position, never on the left position. +

+ +
+ + + diff --git a/test/W3C_SVG_12_TinyTestSuite_beta/htmlObjectHarness/animate-elem-65-t.html b/test/W3C_SVG_12_TinyTestSuite_beta/htmlObjectHarness/animate-elem-65-t.html new file mode 100755 index 00000000..7ebdfd60 --- /dev/null +++ b/test/W3C_SVG_12_TinyTestSuite_beta/htmlObjectHarness/animate-elem-65-t.html @@ -0,0 +1,133 @@ + + + + + + + + +SVG 1.2 Tiny test:animate-elem-65-t + + + + + + + + + + +
+ + + + + + + + + + + + +
+

animate-elem-65-t

+
+

FAIL

+
+ raster image of animate-elem-65-t +
+
+ + +
+

+ This tests performs basic tests on the min attribute. The test is based on the SMIL specification at: + http://www.w3.org/TR/smil20/smil-timing.html#Timing-MinMax. +

+

+ Each row in the test shows different rectangles subject to <set> animations with different configurations + with regards to the min attribute. For each row but the last one, the animation should be active during the first + 5 seconds of the animations where the red rectangle should show in the right column. At five seconds into the + animation, all the rectangles should move to their left position. +

+

+ On the first row, the first <set> animation (left rectangle) has an end value of 5s, and no min attribute. + The active duration resulting from the end attribute is 5s. The first row shows a second rectangle with a + <set> animation with the same configuration except that the min attribute value is set to 'media'. Because + the <set> element does not define a media, the behavior should be as if the attribute was not specified. + The active duration (5s) of the second <set> animation is therefore not constrained. +

+

+ On the second row, the <set> animation has an end value of 5s, and a -6s min attribute. The active duration + resulting from the end attribute is 5s. The negative min value is invalid and, as per the specification, the + behavior should be as if the attribute was not specified. The active duration (5s) is therefore not constrained. +

+

+ On the third row, the <set> animation has an end value of 5s, and a 3s min attribute. The active duration + resulting from the end attribute is 5s. The min value is less than the active duration, so the min attribute does + not actually constrain the active duration. +

+

+ On the fourth row, the <set> animation has a dur value of indefinite, an end value of 2s, and a 5s min + attribute. The active duration resulting from the end attribute would be 2s. Because this is less than the min + value (2s < 5s) the (min constrained) active duration has to be corrected to 5s, despite a simple duration + (indefinite) that is greater than the min value. +

+

+ On the fifth row, the <set> animation has a dur value of 1s, an end value of 2s, a repeatCount of 7 and + a 5s min attribute. The active duration resulting from dur, end and repeatCount would be 2s. Because this is + less than the min value (2s < 5s) the (min constrained) active duration has to be corrected to 5s. +

+

+ On the sixth row, the <set> animation has a dur value of 1s, an end value of 2s, a repeatCount of 5 and + a 8s min attribute value. The active duration resulting from dur, end and repeatCount would be 2s, because this + is less than the min value (2s < 8s) the active duration has to be corrected to 8s. As the fill attribute is + set to 'remove' on the <set> animation, this remove is applied at 5s, the end of the repeatCount. Note, + that if the end of active duration would have been used as a syncbase-value for another animation, the corrected + end event at (begin + min) = 8s has to be used. +

+

+ On the seventh row, the <set> animation has a dur value of 1s, an end value of 2s, a repeatCount of 5 and + a 8s min attribute value. The active duration resulting from dur, end and repeatCount would be 2s, because this + is less than the min value (2s < 8s) the active duration has to be corrected to 8s. As the fill attribute is + set to 'freeze' on the <set> animation, the animation is frozen at 5s, the end of the repeatCount, the + <set> applies indefinitely. Note, that if the end of active duration would have been used as a syncbase-value + for another animation, the corrected end event at (begin + min) = 8s has to be used. +

+ +
+ + + diff --git a/test/W3C_SVG_12_TinyTestSuite_beta/htmlObjectHarness/animate-elem-66-t.html b/test/W3C_SVG_12_TinyTestSuite_beta/htmlObjectHarness/animate-elem-66-t.html new file mode 100755 index 00000000..4a33530d --- /dev/null +++ b/test/W3C_SVG_12_TinyTestSuite_beta/htmlObjectHarness/animate-elem-66-t.html @@ -0,0 +1,125 @@ + + + + + + + + +SVG 1.2 Tiny test:animate-elem-66-t + + + + + + + + + + +
+ + + + + + + + + + + + +
+

animate-elem-66-t

+
+

FAIL

+
+ raster image of animate-elem-66-t +
+
+ + +
+

+ This tests performs basic tests on the max attribute and on combinations of the min and max attributes. The test + is based on the SMIL specification at: http://www.w3.org/TR/smil20/smil-timing.html#Timing-MinMax. +

+

+ Each row in the test shows different rectangles subject to <set> animations with different configurations + with regards to the max and min attributes. For each row, the animation should be active during the first 5 + seconds of the animations where the red rectangle should show in the right column. At five seconds into the + animation, all the rectangles should move to their left position. +

+

+ On the first row, the <set> animation has a (0s <= t < 5s) active duration and no max attribute so + the actual active duration is (0s <= t < 5s). The first row shows a second rectangle with a <set> + animation with the same configuration except that the max attribute value is set to 'media'. Because the <set> + element does not define a media, the behavior should be as if the attribute was not specified. +

+

+ On the second row, the <set> animation has a (0s <= t < 5s) active duration and a min attribute set + to '-6s' for the first rectangle and to 'foo' for the second one. These values are invalid for max and, as per the + specification, the behavior should be as if the attribute was not specified. Consequently, the behavior is as for + the previous row and the actual active duration is (0s <= t < 5s). +

+

+ On the third row, the <set> animation has a (0s <= t < 8s) initial active duration and a max attribute + set to '5s'. The max value is less than the active duration, so the max attribute constrains the active duration to + (0s <= t < 5s). +

+

+ On the fourth row, the <set> animation has a (0s <= t < 5s) initial active duration, an indefinite + simple duration (dur is set to indefinite) and a max attribute set to '8s'. Because the initial active duration is + less than the max attribute the active duration is not constrained and is unchanged at (0s <= t < 5s). +

+

+ On the fifth row, the <set> animation has a (0s <= t < indefinite) initial active duration, a min of 2s + and a max of 5s. Because the min value is less than the max value, both apply and the computed active duration is + (0s <= t < 5s). +

+

+ On the sixth row, the <set> animation has a (0s <= t < indefinite) initial active duration, a min of 5s + and a max of 5s. Because the min value is equal to the max value, both apply and the computed active duration is + (0s <= t < 5s). +

+

+ On the seventh row, the <set> animation has a [0s, 5s[[ initial active duration, a min of 8s and a max of 2s. + Because the min value is greater than the max value, both are ignored and the computed active duration is [0s, 5s[. +

+ +
+ + + diff --git a/test/W3C_SVG_12_TinyTestSuite_beta/htmlObjectHarness/animate-elem-67-t.html b/test/W3C_SVG_12_TinyTestSuite_beta/htmlObjectHarness/animate-elem-67-t.html new file mode 100755 index 00000000..82b6eb38 --- /dev/null +++ b/test/W3C_SVG_12_TinyTestSuite_beta/htmlObjectHarness/animate-elem-67-t.html @@ -0,0 +1,116 @@ + + + + + + + + +SVG 1.2 Tiny test:animate-elem-67-t + + + + + + + + + + +
+ + + + + + + + + + + + +
+

animate-elem-67-t

+
+

FAIL

+
+ raster image of animate-elem-67-t +
+
+ + +
+

This tests performs basic tests on restart attribute

+

+ Each row in the test shows different rectangles subject to <set> animations with different configurations + with regards to the restart attribute. For each row, the animation should be active during the first 5 seconds of + the animations where the red rectangle should show in the right column. At five seconds into the animation, all + the rectangles should move to their left position. +

+

+ On the first row, the <set> animation has a begin attribute set to '0s;1s' and a dur attribute set to 4s. + This should result in a first interval of (0s <= t < 4s) which should be superceeded, at 1s, by a new + interval of (1s <= t < 5s) because the default restart behavior is 'always'. Consequently, the rectangle + should be in the right position during the (0s <= t < 5s) interval and move to the left position at 5s. +

+

+ On the second row, the <set> animation has a begin attribute set to '0s;1s', a dur attribute set to 4s and + a restart attribute set to always. The behavior should be the same as for the first row. +

+

+ On the third row, the first (left most) rectangle's <set> animation has a begin attribute set to '0s;1s', + a dur set to 5s and a restart attribute set to whenNotActive. Because of the rules for computing intervals, the + animation's interval is (0s <= t < 5s) and is not superseded by a (1s <= t < 6s) interval because of + the restart value. The second (right most) red rectangle's <set> animation has a begin attribute set to + '0s;2.5s' and a dur attribute set to 2.5s. This results in a first interval (0s <= t < 2.5s) which is + followed by a (2.5s <= t < 5s) interval. Consequently, the rectangle stays on its right position for the + first five seconds before it definitively moves to the left position. +

+

+ On the fourth row, the <set> animation has a begin attribute set to '0s;5s' and a dur attribute set to 5s. + This results in a first interval of (0s <= t < 5s). Because the restart attribute is set to 'never', the + following possible interval, (5s <= t < 10s) does not apply and the animation is only active for the first + 5 seconds. +

+

+ The fifth row shows a simple animated red rectangle which lasts for 5 seconds. It shows a reference of how the + other animations should behave visually: all red rectangles should have the same horizontal position as the one + on the reference row, at any time during the animation. +

+ +
+ + + diff --git a/test/W3C_SVG_12_TinyTestSuite_beta/htmlObjectHarness/animate-elem-68-t.html b/test/W3C_SVG_12_TinyTestSuite_beta/htmlObjectHarness/animate-elem-68-t.html new file mode 100755 index 00000000..2209bb5d --- /dev/null +++ b/test/W3C_SVG_12_TinyTestSuite_beta/htmlObjectHarness/animate-elem-68-t.html @@ -0,0 +1,103 @@ + + + + + + + + +SVG 1.2 Tiny test:animate-elem-68-t + + + + + + + + + + +
+ + + + + + + + + + + + +
+

animate-elem-68-t

+
+

FAIL

+
+ raster image of animate-elem-68-t +
+
+ + +
+

This tests the repeatCount attribute

+

+ Each row in the test shows different rectangles subject to <set> animations with different configurations + with regards to the repeatCount attribute. For each row, the animation should be active during the first 5 seconds + of the animations where the red rectangle should show in the right column. At five seconds into the animation, all + the rectangles should move to their left position. +

+

+ On the first row, the <set> animation has its dur attribute set to '5s' and its repeatCount unspecified. + Consequently, its only interval is (0s <= t < 5s). +

+

+ On the second row, the <set> animation has its dur attribute set to 1s and its repeatCount set to 5. + Consequently, its only interval is (0s <= t < 5s (1s*5)). +

+

+ On the third row, the <set> animation has its dur attribute set to 10s and its repeatCount set to 0.5. + Consequently, its only interval is (0s <= t < 5s (10s*0.5)). +

+

+ On the fourth row, the <set> animation has its dur attribute set to 1s and its repeatCount set to + indefinite. It also has an end attribute set to 5s. Consequently, the repeat duration is indefinite, but the + active duration is limited by the end attribute and the active interval is (0s <= t < 5s). +

+ +
+ + + diff --git a/test/W3C_SVG_12_TinyTestSuite_beta/htmlObjectHarness/animate-elem-69-t.html b/test/W3C_SVG_12_TinyTestSuite_beta/htmlObjectHarness/animate-elem-69-t.html new file mode 100755 index 00000000..005f109e --- /dev/null +++ b/test/W3C_SVG_12_TinyTestSuite_beta/htmlObjectHarness/animate-elem-69-t.html @@ -0,0 +1,109 @@ + + + + + + + + +SVG 1.2 Tiny test:animate-elem-69-t + + + + + + + + + + +
+ + + + + + + + + + + + +
+

animate-elem-69-t

+
+

FAIL

+
+ raster image of animate-elem-69-t +
+
+ + +
+

This tests the repeatDur attribute

+

+ Each row in the test shows different rectangles subject to <set> animations with different configurations + with regards to the repeatDur attribute. For each row, the animation should be active during the first 5 seconds + of the animations where the red rectangle should show in the right column. At five seconds into the animation, + all the rectangles should move to their left position. +

+

+ On the first row, the <set> animation has its dur attribute set to '5s' and its repeatDur unspecified. + Consequently, its only interval is (0s <= t < 5s). +

+

+ On the second row, the <set> animation has its dur attribute set to 1s and its repeatDur set to 5s. + Consequently, its only interval is (0s <= t < 5s). +

+

+ On the third row, the <set> animation has its dur attribute set to 0.5s and its repeatDur set to 5s. + Consequently, its only interval is (0s <= t < 5s). +

+

+ On the fourth row, the <set> animation has its dur attribute set to 1s and its repeatDur set to indefinite. + It also has an end attribute set to 5s. Consequently, the repeat duration is indefinite, but the active duration + is limited by the end attribute and the active interval is (0s <= t < 5s). +

+

+ On the fifth row, the <set> animation has its dur attribute set to 0.7s and its repeatDur set to 5s. + Consequently, its only interval is (0s <= t < 5s). The difference with the 3rd row is that there is a + fractional number of simple durations in the active duration (7.1428) where there is a whole number of simple + durations in the third row (10). +

+ +
+ + + diff --git a/test/W3C_SVG_12_TinyTestSuite_beta/htmlObjectHarness/animate-elem-70-t.html b/test/W3C_SVG_12_TinyTestSuite_beta/htmlObjectHarness/animate-elem-70-t.html new file mode 100755 index 00000000..80e80f7d --- /dev/null +++ b/test/W3C_SVG_12_TinyTestSuite_beta/htmlObjectHarness/animate-elem-70-t.html @@ -0,0 +1,119 @@ + + + + + + + + +SVG 1.2 Tiny test:animate-elem-70-t + + + + + + + + + + +
+ + + + + + + + + + + + +
+

animate-elem-70-t

+
+

FAIL

+
+ raster image of animate-elem-70-t +
+
+ + +
+

+ This tests the animation's SMIL 'fill' attribute. +

+

+ On the first row, the <set> animation has its dur + attribute set to '1s' and its begin attribute set to '0s; + firstSet.end + 1s'. The fill attribute is unspecified, so + the effect is as if it was set to 'remove', because 'remove' is + the default value for fill. + + Consequently, the first interval is (0s <= t < 1s), the second is + (2s <= t < 3s), the third, (4s <= t < 5s) etc.. The red rectangle starts on the + right position, moves to the left position for one second, moves + to the right for 1 second, and so on. +

+

+ On the second row, the <set> animation + with the identifier 'firstSet' has its dur attribute + set to 1s and its begin attribute set to '0s; firstSet.end'. The fill attribute + is set to 'remove'. The behavior should be exactly the same as for the previous + row, and the rectangle moves from the right position to the left position + every second. +

+

+ On the third row, the <set> animation has its dur attribute set to + 1s and its begin attribute set to '0s; firstSet.end'. The fill attribute + is set to 'freeze'. The first interval should be (0s <= t < 1s), the second (2s <= t < 3s), + the third, (4s <= t < 5s), etc. Between interval, the fill behavior should be applied, + so the red rectangle should stay on the right position and never go to the + left position. +

+

+ On the fourth row, the <set> animation has its dur attribute set to + 1s and its begin attribute set to '0s'. The fill attribute + is set to 'freeze'. The first interval should be (0s <= t < 1s) and there is no + following interval. Because of the fill behavior, the <set> should + apply the last (and only) animation value after 1s. Consequently, the + red rectangle should stay on the right position and never go to the + left position. +

+ +
+ + + diff --git a/test/W3C_SVG_12_TinyTestSuite_beta/htmlObjectHarness/animate-elem-77-t.html b/test/W3C_SVG_12_TinyTestSuite_beta/htmlObjectHarness/animate-elem-77-t.html new file mode 100755 index 00000000..b727c763 --- /dev/null +++ b/test/W3C_SVG_12_TinyTestSuite_beta/htmlObjectHarness/animate-elem-77-t.html @@ -0,0 +1,120 @@ + + + + + + + + +SVG 1.2 Tiny test:animate-elem-77-t + + + + + + + + + + +
+ + + + + + + + + + + + +
+

animate-elem-77-t

+
+

FAIL

+
+ raster image of animate-elem-77-t +
+
+ + +
+

+ This test demonstrates how <set> elements change text properties on a <text> element. For each of the + text properties being tested, 3 <set> elements are set. The first <set> element acts directly on the + <text> element. The second <set> element acts on a <g> containing children. The third + <set> element acts on an <a> containing children. In each case the test validates that the animated + value set on the <g> and <a> elements is inherited by the <text> element. All the <set> + elements have a begin attribute set to 0s with an offset of 1s after end. So, the animation will apply 1s after + the document is loaded and will repeat every 1s after the animation ends. +

+

+ The first <set> validates the transform property. When applied to the <text> element, the letter A + will be translated to the right every 1s, in the <text> column. When applied to the <g> element, the + letter A inherits the transform value and is translated to the right every 1s, as seen in the <g> column. + When applied to the <a> element, the letter A inherits the transform value and is translated to the right + every 1s, as seen in <a> column. +

+

+ The second <set> validates the text-anchor attribute. When applied to the <text> element, the anchor + position of letter A is moved from start to end. When applied to the <g> and <a> element, the property + is inherited and hence the anchor position of letter A is moved from start to end in the second row. +

+

+ The third <set> validates the font-size attribute. The font size of letter A is changed from 20 to 30. When + applied to <g> and <a> elements, the letter A inherits the font-size and hence in row 3, letter A has + a font-size of 30 in all 3 right columns of row 3. +

+

+ The fourth <set> validates the font-family attribute. The font-family is changed from default to serif. When + applied to <g> and <a> elements, the letter A inherits the font-family attribute and hence in row 4, + letter A has serif font-family in all 3 columns. +

+

+ The fifth <set> validates the font-style attribute. The font-style is changed from normal to italic. When + applied to <g> and <a> elements, the letter A inherits the font-style attribute and hence in row 5, + letter A is animated to italic in all 3 columns. +

+

+ The sixth <set> validates the font-weight attribute. The font-weight is changed from normal to bold. When + applied to <g> and <a> elements, the letter A inherits the font-weight attribute and hence in row 6, + letter A is changed to bold on the right. +

+ +
+ + + diff --git a/test/W3C_SVG_12_TinyTestSuite_beta/htmlObjectHarness/animate-elem-78-t.html b/test/W3C_SVG_12_TinyTestSuite_beta/htmlObjectHarness/animate-elem-78-t.html new file mode 100755 index 00000000..c428270f --- /dev/null +++ b/test/W3C_SVG_12_TinyTestSuite_beta/htmlObjectHarness/animate-elem-78-t.html @@ -0,0 +1,146 @@ + + + + + + + + +SVG 1.2 Tiny test:animate-elem-78-t + + + + + + + + + + +
+ + + + + + + + + + + + +
+

animate-elem-78-t

+
+

FAIL

+
+ raster image of animate-elem-78-t +
+
+ + +
+

+ This test demonstrates how <set> elements change graphics properties on elements from the 'Basic Shapes' + chapter. For each of the graphics properties being tested, 3 <set> animations are applied. The first <set> + element acts directly on 'Basic Shape' elements. The second <set> element acts on a <g> containing + children. The third <set> element acts on an <a> containing children. In each case the test validates + that the animated value set on the <g> and <a> elements is inherited by the 'Basic Shape' element. All + the <set> elements have a begin attribute set to 0s with an offset of 1s after the end. So, the animation will + apply 1s after the document is loaded and will repeat every 1s after the animation ends. +

+

+ The first <set> validates the fill property, with fill set to orange. When applied directly to the 'Basic + Shape' element, the <rect> fill value will change to orange when it is translated to the right every 1s. + When applied to the <g> and <a> elements, the <rect> inherits the fill value and is orange. +

+

+ The second <set> validates the fill-style property, with fill-style set to evenodd. When applied to the + 'Basic Shape' element, the <polyline> fill-style is changed from nonzero to evenodd. When applied to the + <g> and <a> elements, the <polyline> inherits the evenodd fill-style. +

+

+ The third <set> validates the stroke property. In this case fill is set to none. When stroke is applied + to the 'Basic Shape' element, the <rect> on the right appears with the stroke color. When applied to the + <g> and <a> elements, the <rect> inherits the stroke property. +

+

+ The fourth <set> validates the stroke-width property, with stroke-width set to 4. When stroke-width is + applied to the 'Basic Shape' element, the <line> on the right has a width of 4. When applied to the + <g> and <a> elements, the <line> inherits the stroke-width. +

+

+ The fifth <set> validates the stroke-linecap property, with stroke-linecap set to round. When + stroke-linecap is applied to the 'Basic Shape' element, the <line> stroke-linecap value switches from + butt to round. When applied to the <g> and <a> elements, the <line> inherits the square + stroke-linecap. +

+

+ The sixth <set> validates the stroke-linejoin property, with stroke-linejoin set to bevel. When + stroke-linejoin is applied to the 'Basic Shape' element, the <line> stroke-linejoin value switches + from miter to bevel. When applied to the <g> and <a> elements, the <line> inherits the + bevel stroke-linejoin. +

+

+ The seventh <set> validates the stroke-miterlimit property, with stroke-miterlimit set to 10. When + stroke-miterlimit is applied to the 'Basic Shape' element, the miter-length to stroke-width ratio exceeds + the miter-limit and the <polyline> switches from bevel to miter.When applied to the <g> and + <a> elements,the <line> inherits the stroke-miterlimit. +

+

+ The eighth <set> validates the stroke-dashoffset property, with stroke-dashoffset set to 5.5. When + stroke-dashoffset is applied to the 'Basic Shape' element, the <line> has a different dashing + pattern. When applied to the <g> and <a> elements, the <line> inherits the property. +

+

+ The ninth <set> validates the display property, with display set to none. When display is applied to + the 'Basic Shape' element, the <rect> does not appear on the right. When applied to the <g> and + <a> elements, the <line> inherits the display property and hence is not seen. +

+

+ The tenth <set> validates the visibility property, with visibility set to hidden. When visibility is + applied to the 'Basic Shape' element, the <rect> is hidden on the right. When applied to the + <g> and <a> elements, the <line> inherits the visibility property and hence is not seen. +

+

+ The eleventh <set> validates the color property, with color set to blue. When color is applied to the + 'Basic Shape' element, the <rect> on the right switches from default color of black to blue. When + applied to the <g> and <a> elements, the <line> inherits the color property. +

+ +
+ + + diff --git a/test/W3C_SVG_12_TinyTestSuite_beta/htmlObjectHarness/animate-elem-80-t.html b/test/W3C_SVG_12_TinyTestSuite_beta/htmlObjectHarness/animate-elem-80-t.html new file mode 100755 index 00000000..b95a4610 --- /dev/null +++ b/test/W3C_SVG_12_TinyTestSuite_beta/htmlObjectHarness/animate-elem-80-t.html @@ -0,0 +1,94 @@ + + + + + + + + +SVG 1.2 Tiny test:animate-elem-80-t + + + + + + + + + + +
+ + + + + + + + + + + + +
+

animate-elem-80-t

+
+

FAIL

+
+ raster image of animate-elem-80-t +
+
+ + +
+

+ This test demonstrates validates the operation of the animateTransform element and validates the operation of + the different type attribute values. +

+

+ There are 5 possible values for the type attribute and there is one animateTransform for each type and two for + the translate type. +

+

+ For each transform type, the test has a corresponding animateTransform. The test uses references to show what + the expected transform should be at different points in the animation. For example, the top left + animateTransform, for type=rotate, shows circular markers which turn orange at the time of corresponding + transform value should be set by the animateTransform. The marker elements show the expected transform value + on reference markers in the test. +

+ +
+ + + diff --git a/test/W3C_SVG_12_TinyTestSuite_beta/htmlObjectHarness/animate-elem-81-t.html b/test/W3C_SVG_12_TinyTestSuite_beta/htmlObjectHarness/animate-elem-81-t.html new file mode 100755 index 00000000..d9944ef4 --- /dev/null +++ b/test/W3C_SVG_12_TinyTestSuite_beta/htmlObjectHarness/animate-elem-81-t.html @@ -0,0 +1,108 @@ + + + + + + + + +SVG 1.2 Tiny test:animate-elem-81-t + + + + + + + + + + +
+ + + + + + + + + + + + +
+

animate-elem-81-t

+
+

FAIL

+
+ raster image of animate-elem-81-t +
+
+ + +
+

+ This test validates the operation of the animateTransform's additive behavior, as described in the SVG 1.1 + specification (see http://www.w3.org/TR/SVG11/animate.html#AnimateTransformElement). +

+

+ The first two rectangles, on the top row, show the effect of the additive attribute on animateTransform. The + left-most animateTransforms have their additive attribute set to replace, so the effect of the two transform + animation is as if only the highest priority one applied because it replaces the underlying value. The second + animateTransforms (from left to right) have their additive attribute set to sum, which means the transforms they + roduce are concatenated. +

+

+ The last two rectangles, on the top row, show the effect of the accumulate attribute on animateTransform. For the + left one (third on the row, from left to right), the accumulate attribute is set to none. There are two repeats for + the animateTransform. Therefore, the transform goes twice from a scale(1,1) to a scale(2,2). For the right-most + animateTransform, the accumulate attribute is set to sum. There are two repeats and the animation goes from scale(1,1) + to scale(2,2) for the first iteration and then from scale(2,2) to scale(4,4) (because the result of the second + iteration is concatenated to the scale(2,2) result of the previous, first iteration). +

+

+ The rectangles on the bottom row show the combination of additive and cumulative behavior. The left rectangle's + animateTransform accumulate behavior is set to none but its additive behavior is set to sum. Therefore, the + transform's underlying value (skewX(30)) is always pre-concatenated to the animateTransform's result, which goes + from "skewX(30) scale(1,1)" to "skewX(30) scale(2,2)" in each of its two iterations. The right rectangle's + animateTransform accumulate behavior is set to sum and the additive behavior is also set to sum. Therefore, the + transform's underlying value is always pre-concatenated, so is the result of previous animation iterations. + Consequently, the transform goes from "skewX(30) scale(1,1)" to "skewX(30) scale(2,2)" for the first iteration + and then from "skewX(30) scale(2,2) scale(1,1)" to "skewX(30) scale(2,2) scale(2,2)" for the second iteration. +

+ +
+ + + diff --git a/test/W3C_SVG_12_TinyTestSuite_beta/htmlObjectHarness/animate-elem-82-t.html b/test/W3C_SVG_12_TinyTestSuite_beta/htmlObjectHarness/animate-elem-82-t.html new file mode 100755 index 00000000..e2769c4a --- /dev/null +++ b/test/W3C_SVG_12_TinyTestSuite_beta/htmlObjectHarness/animate-elem-82-t.html @@ -0,0 +1,138 @@ + + + + + + + + +SVG 1.2 Tiny test:animate-elem-82-t + + + + + + + + + + +
+ + + + + + + + + + + + +
+

animate-elem-82-t

+
+

FAIL

+
+ raster image of animate-elem-82-t +
+
+ + +
+

+ This test demonstrates validates the operation of animateTransform with regards to the rotation center and with + regards to paced animation. +

+

+ The following descriptions describe the various animations, going top bottom, left to right. For each animation, + orange rectangle markers show the expected position for the animated rectangle halfway through the animation. The + markers are drawn with a thick stroke for 0.2s, starting at the time when they reflect the expected position. +

+

+ The first animateTransform has type='rotate' and goes from 45 degrees to 90 degrees over a period of 3s. The + rotation center for the from and to values is 0, 0. At 0 seconds, the expected transform should be rotate(45). At + 1.5 seconds, the expected transform is rotate(0.5 * (90 + 45)) = rotate(67.5). At 3s, the expected transform is + rotate(90). +

+

+ The second animateTransform has type='rotate' but has a rotation center that varies between the from and to + values. The rotation goes from rotate(45,0,0) to rotate(90,-15,-15). At 0s, the expected transform is + rotate(45,0,0). At 1.5s, the expected transform is rotate(67.5, -7.5, -7.5). At 3s, the expected transform is + rotate(90, -15, -15). +

+

+ The third animateTransform has type='translate' and calcMode='paced'. The animation goes from translate(-40,40) + to translate(-20,20) to translate(40,-40). At 0s, the expected transform is translate(-40,40). At 1.5s, the + expected transform is translate(0,0). At 3s, the expected transform is translate(40,-40). +

+

+ The fourth animateTransform has type='translate' and calcMode='linear'. The animation goes from translate(-40,40) + to translate(-20,-20) to translate(40,-40). At 0s, the expected transform is translate(-40,40). At 1.5s, the + expected transform is translate(-20,-20). At 3s, the expected transform is translate(40,-40). +

+

+ The fifth animateTransform has type='scale' and calcMode='paced'. The animation goes from scale(1,2) to scale(3,2) + to scale(1,1). The total length along the sx component is 2 + 2 = 4. The total length along the sy component is + 0 + 1 = 1. At 0s, the expected transform is scale(1,2). At 1.5s, the expected transform is scale(3,1.5) so that a + length of 2 has been run on the sx component and a length of 0.5 has been run on the sy component. At 3s, the + expected transform is scale(3,2). +

+

+ The sixth animateTransform has type='scale' and calcMode='linear'. The animation goes from scale(1,2) to scale(3,2) + to scale(1,1). At 0s, the expected transform is scale(1,2). At 1.5s, the expected transform is scale(3,2). At 3s, + the expected transform is scale(1,1). +

+

+ The seventh animateTransform has type="rotate" and calcMode='paced'. The animation goes from rotate(0,0,0) to + rotate(45,-15,-20) to rotate(180,30,50). The total length along the rotation angle component is + (45 - 0) + (180 - 45) = 180. The total length along the rotation center along the x axis is + (0 - (-15)) + (30 - (-15)) = 45 + 15 = 60. The total length along the rotation center along the y axis is + (0 - (-20)) + (50 - (-20)) = 20 + 70 = 90. At 0s, the expected transform is rotate(45,-15,-20). At 1.5s, the + expected transform is rotate(90,0,5) to achieve constant velocity along the rotation angle component, the x-axis + rotation center component and the y-axis rotation center component. At 1.5s, half the distance has been run on + each component. For the rotation angle, this means that 45 has been reached and that 45 more degrees in the + (45 <= r < 180) interval have been consumed. For the x-axis rotation center, this means that 30 units have + been run: the (0 >= x > -15) interval has been fully consumed (15 units long) and 15 units on the + (-15 <= x < 30) interval have been consumed, which explains the computed 0 value. For the y-axis rotation + center, this means that 45 units have been run: the (0 >= y > -20) interval has been fully consumed and 25 + units have been consumed in the (-20 <= y < 50) interval, which explains the computed 5 value. At 3s, the + expected transform is rotate(180,30,50). +

+ +
+ + + diff --git a/test/W3C_SVG_12_TinyTestSuite_beta/htmlObjectHarness/animate-elem-83-t.html b/test/W3C_SVG_12_TinyTestSuite_beta/htmlObjectHarness/animate-elem-83-t.html new file mode 100755 index 00000000..12985322 --- /dev/null +++ b/test/W3C_SVG_12_TinyTestSuite_beta/htmlObjectHarness/animate-elem-83-t.html @@ -0,0 +1,117 @@ + + + + + + + + +SVG 1.2 Tiny test:animate-elem-83-t + + + + + + + + + + +
+ + + + + + + + + + + + +
+

animate-elem-83-t

+
+

FAIL

+
+ raster image of animate-elem-83-t +
+
+ + +
+

This test validates the operation of the animate element on the <path> element's d attribute.

+

+ The following descriptions references to the tests by number. The first test is the one showing on the top left. + The last, sixth test is the one showing at the bottom right. Test numbers are alocated from left to right and + from top to bottom. For each test, there are reference outline markers which show the expected animated shape at + different times in the animation. At the time of the expected shape, the outline of the expected shape is drawn + with a thick stroke for 0.2s so the test user can visually check that the shapes are matching at the expected + times. +

+

+ The first test validates a simple from-to animation on a path's d attribute made of M, C and Z commands where + both the from and to attributes are specified. The attributes are compatible with the path element's d attribute. +

+

+ The second test validates a simple to-animation on a path's d attribute made of M, C and Z commands where the to + attribute is specified. The attribute is compatible with the path element's d attribute. +

+

+ The third test validates a simple values-animation on a path's d attribute made of M, C and Z commands where the + values attribute is specified and specifies three seperate values. The attribute is compatible with the path + element's d attribute. +

+

+ The fourth, fifth and sixth tests validate that interpolation between compatible path values (i.e., path values + which normalize to the compatible values) is supported. +

+

+ The fourth tests interpolation between a path value containing H, V and L commands (in the from value) and a path + value containing compatible h, v and l commands (in the to value). +

+

+ The fifth tests interpolation between a path value containing C and S commands (in the from value) and a path value + containing compatible c and s commands (in the to value). +

+

+ The sixth tests interpolation between a path value containing Q, T and A commands (in the from value) and a path + value containing compatible q, t and a commands (in the to value). +

+ +
+ + + diff --git a/test/W3C_SVG_12_TinyTestSuite_beta/htmlObjectHarness/animate-elem-84-t.html b/test/W3C_SVG_12_TinyTestSuite_beta/htmlObjectHarness/animate-elem-84-t.html new file mode 100755 index 00000000..7e48524c --- /dev/null +++ b/test/W3C_SVG_12_TinyTestSuite_beta/htmlObjectHarness/animate-elem-84-t.html @@ -0,0 +1,84 @@ + + + + + + + + +SVG 1.2 Tiny test:animate-elem-84-t + + + + + + + + + + +
+ + + + + + + + + + + + +
+

animate-elem-84-t

+
+

FAIL

+
+ raster image of animate-elem-84-t +
+
+ + +
+

Test animation of color keywords that resolve to animatable RGB values.

+

+ Five black squares are shown. After two seconds, all five squares should turn red and then smoothly animate the + fill color to green over the next five seconds. +

+ +
+ + + diff --git a/test/W3C_SVG_12_TinyTestSuite_beta/htmlObjectHarness/animate-elem-85-t.html b/test/W3C_SVG_12_TinyTestSuite_beta/htmlObjectHarness/animate-elem-85-t.html new file mode 100755 index 00000000..eb02bca1 --- /dev/null +++ b/test/W3C_SVG_12_TinyTestSuite_beta/htmlObjectHarness/animate-elem-85-t.html @@ -0,0 +1,85 @@ + + + + + + + + +SVG 1.2 Tiny test:animate-elem-85-t + + + + + + + + + + +
+ + + + + + + + + + + + +
+

animate-elem-85-t

+
+

FAIL

+
+ raster image of animate-elem-85-t +
+
+ + +
+

All four rectangles at the top must smoothly animate from black to green over 5 seconds.

+

+ During this time the bottom two rectangles must be red. Then, the bottom two rectangles must smoothly animate + from green( at five seconds), through khaki (at 7.5 seconds), to yellow (at 10 seconds and above). Colored + circles indicate the appropriate colors at these times. +

+ +
+ + + diff --git a/test/W3C_SVG_12_TinyTestSuite_beta/htmlObjectHarness/animate-elem-86-t.html b/test/W3C_SVG_12_TinyTestSuite_beta/htmlObjectHarness/animate-elem-86-t.html new file mode 100755 index 00000000..b054d3aa --- /dev/null +++ b/test/W3C_SVG_12_TinyTestSuite_beta/htmlObjectHarness/animate-elem-86-t.html @@ -0,0 +1,109 @@ + + + + + + + + +SVG 1.2 Tiny test:animate-elem-86-t + + + + + + + + + + +
+ + + + + + + + + + + + +
+

animate-elem-86-t

+
+

FAIL

+
+ raster image of animate-elem-86-t +
+
+ + +
+

+ This test tests fill="freeze" for the case where the duration has been constrained by an 'end' attribute + and calcMode="discrete". +

+

+ The correct behaviour is defined by the SMIL time interval model. + Time intervals created by the test case from implicit begin, dur and calcMode discrete: +

+ +

+ Time intervals created by implicit begin and end: +

+ +

+ Therefore the frozen value will be 74, resulting in the purple fill + being in the right rectangle after 0 seconds. +

+

+ The test has passed if the purple fill is on the right rect only after 0 seconds. + Fill must never be set to purple on the left rect, except for before the animation has begun. +

+ +
+ + + diff --git a/test/W3C_SVG_12_TinyTestSuite_beta/htmlObjectHarness/conf-reader-201-t.html b/test/W3C_SVG_12_TinyTestSuite_beta/htmlObjectHarness/conf-reader-201-t.html new file mode 100755 index 00000000..9815e87f --- /dev/null +++ b/test/W3C_SVG_12_TinyTestSuite_beta/htmlObjectHarness/conf-reader-201-t.html @@ -0,0 +1,106 @@ + + + + + + + + +SVG 1.2 Tiny test:conf-reader-201-t + + + + + + + + + + +
+ + + + + + + + + + + + +
+

conf-reader-201-t

+
+

FAIL

+
+ raster image of conf-reader-201-t +
+
+ + +
+

+ This test checks that namespace prefixes are handled correctly. +

+

+ First, a random 20-character string is generated. The string only contains characters that are valid NCName letters. + This string is then used as a custom prefix for an 'href' attribute in the XLink namespace. + An 'image' element is created and two image references are added, one is in the "http://www.this.is.not.an/xlink" namespace, + and one is in the XLink namespace. Only the attribute with the 20-character prefix is actually in the XLink namespace, + which means that that link should be the one that is used when rendering the 'image' element. This first subtest is + using the setAttributeNS method. +

+

+ The second subtest generates a new prefix string, and makes sure it's not equal to the first prefix string. + Then an svg fragment is generated as a string, to be parsed by a call to the parseXML method. + The 'xlink' prefix is bound to the "http://example.net/bar" namespace, and the generated prefix is bound to the XLink namespace. + Similar to the first subtest, the image has two references but only one attribute is actually in the XLink namespace. + The fragment is parsed and the result is inserted into the document, which should make the 'image' element visible. + If an exception is thrown during the parsing or the insertion of the result output will be shown in the status part of the testcase. +

+

+ The testcase has passed if after the script execution has taken place these conditions are met: +

+

+ +
+ + + diff --git a/test/W3C_SVG_12_TinyTestSuite_beta/htmlObjectHarness/coords-constr-201-t.html b/test/W3C_SVG_12_TinyTestSuite_beta/htmlObjectHarness/coords-constr-201-t.html new file mode 100755 index 00000000..b1d00c4d --- /dev/null +++ b/test/W3C_SVG_12_TinyTestSuite_beta/htmlObjectHarness/coords-constr-201-t.html @@ -0,0 +1,89 @@ + + + + + + + + +SVG 1.2 Tiny test:coords-constr-201-t + + + + + + + + + + +
+ + + + + + + + + + + + +
+

coords-constr-201-t

+
+

FAIL

+
+ raster image of coords-constr-201-t +
+
+ + +
+

+ Test Constrained Transformations + There are three lines of text in this test. + The first is not constrained. + The second is constrained with a x and y offset. + The third is constrained. + The test will pass if, after applying user agent transforms, the circles behave as defined. + The test will pass if the three circles align vertically. + The reference image displays the file after performing a user agent zoom. +

+ +
+ + + diff --git a/test/W3C_SVG_12_TinyTestSuite_beta/htmlObjectHarness/coords-constr-202-t.html b/test/W3C_SVG_12_TinyTestSuite_beta/htmlObjectHarness/coords-constr-202-t.html new file mode 100755 index 00000000..ab98b8c2 --- /dev/null +++ b/test/W3C_SVG_12_TinyTestSuite_beta/htmlObjectHarness/coords-constr-202-t.html @@ -0,0 +1,89 @@ + + + + + + + + +SVG 1.2 Tiny test:coords-constr-202-t + + + + + + + + + + +
+ + + + + + + + + + + + +
+

coords-constr-202-t

+
+

FAIL

+
+ raster image of coords-constr-202-t +
+
+ + +
+

+ Test Constrained Transformations + There are three lines of text in this test. + The first is not constrained. + The second is constrained with a x and y offset. + The third is constrained. + An animation is applied to the viewBox attribute. + The test will pass if the circles are affected by the viewBox animation and, after applying user agent transforms, the circles behave as defined. + The test will pass if the three circles align vertically. +

+ +
+ + + diff --git a/test/W3C_SVG_12_TinyTestSuite_beta/htmlObjectHarness/coords-constr-203-t.html b/test/W3C_SVG_12_TinyTestSuite_beta/htmlObjectHarness/coords-constr-203-t.html new file mode 100755 index 00000000..66858e83 --- /dev/null +++ b/test/W3C_SVG_12_TinyTestSuite_beta/htmlObjectHarness/coords-constr-203-t.html @@ -0,0 +1,89 @@ + + + + + + + + +SVG 1.2 Tiny test:coords-constr-203-t + + + + + + + + + + +
+ + + + + + + + + + + + +
+

coords-constr-203-t

+
+

FAIL

+
+ raster image of coords-constr-203-t +
+
+ + +
+

+ Test Constrained Transformations + There are three lines of text in this test. + The first is not constrained. + The second is constrained with a x and y offset. + The third is constrained. + An animation is applied to the content group. + The test will pass if only the first circle is affected by the group animation and, after applying user agent transforms, the circles behave as defined. + The test will pass if the three circles align vertically. +

+ +
+ + + diff --git a/test/W3C_SVG_12_TinyTestSuite_beta/htmlObjectHarness/coords-constr-204-t.html b/test/W3C_SVG_12_TinyTestSuite_beta/htmlObjectHarness/coords-constr-204-t.html new file mode 100755 index 00000000..62bbb9e4 --- /dev/null +++ b/test/W3C_SVG_12_TinyTestSuite_beta/htmlObjectHarness/coords-constr-204-t.html @@ -0,0 +1,85 @@ + + + + + + + + +SVG 1.2 Tiny test:coords-constr-204-t + + + + + + + + + + +
+ + + + + + + + + + + + +
+

coords-constr-204-t

+
+

FAIL

+
+ raster image of coords-constr-204-t +
+
+ + +
+

+ Animates a rect that has transform="ref" and tests that the animateMotion transform is supplemental. + The rects should follow a path diagonally from top-left to bottom-right. + The test is passed if a single green rectangle is visible across the screen if a red rectangle is seen + the test is failed. +

+ +
+ + + diff --git a/test/W3C_SVG_12_TinyTestSuite_beta/htmlObjectHarness/coords-coord-01-t.html b/test/W3C_SVG_12_TinyTestSuite_beta/htmlObjectHarness/coords-coord-01-t.html new file mode 100755 index 00000000..f1d8b7d9 --- /dev/null +++ b/test/W3C_SVG_12_TinyTestSuite_beta/htmlObjectHarness/coords-coord-01-t.html @@ -0,0 +1,80 @@ + + + + + + + + +SVG 1.2 Tiny test:coords-coord-01-t + + + + + + + + + + +
+ + + + + + + + + + + + +
+

coords-coord-01-t

+
+

FAIL

+
+ raster image of coords-coord-01-t +
+
+ + +
+

Tests the default initial coordinate system used by renderer. Should be 0,0 if not specified.This is illustrated by comparing red boxes that are missing a coordinate or all coordinates with yellow boxes that have the correct coordinates specified. This test should produce three red boxes, with small yellow boxes rendered on top of them. These boxes should be placed along the origin, and x and y axis.

+ +
+ + + diff --git a/test/W3C_SVG_12_TinyTestSuite_beta/htmlObjectHarness/coords-pAR-201-t.html b/test/W3C_SVG_12_TinyTestSuite_beta/htmlObjectHarness/coords-pAR-201-t.html new file mode 100755 index 00000000..4b8c8e6a --- /dev/null +++ b/test/W3C_SVG_12_TinyTestSuite_beta/htmlObjectHarness/coords-pAR-201-t.html @@ -0,0 +1,95 @@ + + + + + + + + +SVG 1.2 Tiny test:coords-pAR-201-t + + + + + + + + + + +
+ + + + + + + + + + + + +
+

coords-pAR-201-t

+
+

FAIL

+
+ raster image of coords-pAR-201-t +
+
+ + +
+

+ This test verifies the implementation of the viewBox and the preserveAspectRatio attribute on the animation element. + It exercises the various preserveAspectRatio values and uses a general entity definition in order to make reading of the SVG source easier. +

+

+ For the test to pass the following criteria should be met: +

+
    +
  1. the xMin* test image left edge should be on the left edge of the blue viewport rect
  2. +
  3. the xMid* test image should be centered in the blue viewport rect
  4. +
  5. the xMax* test image right edge should be on the right edge of the blue viewport rect
  6. +
  7. the yMin* test image top edge should be on the top edge of the blue viewport rect
  8. +
  9. the yMid* test image should be centered in the blue viewport rect
  10. +
  11. the yMax* test image bottom edge should be on the bottom edge of the blue viewport rect
  12. +
  13. no part of the image may be clipped away
  14. +
+ +
+ + + diff --git a/test/W3C_SVG_12_TinyTestSuite_beta/htmlObjectHarness/coords-trans-01-t.html b/test/W3C_SVG_12_TinyTestSuite_beta/htmlObjectHarness/coords-trans-01-t.html new file mode 100755 index 00000000..73d7ab03 --- /dev/null +++ b/test/W3C_SVG_12_TinyTestSuite_beta/htmlObjectHarness/coords-trans-01-t.html @@ -0,0 +1,82 @@ + + + + + + + + +SVG 1.2 Tiny test:coords-trans-01-t + + + + + + + + + + +
+ + + + + + + + + + + + +
+

coords-trans-01-t

+
+

FAIL

+
+ raster image of coords-trans-01-t +
+
+ + +
+

This test verifies the implementation of transforms. It tests elementary transforms and transform nesting. Note that for layout purposes, this test uses nesting of translation with the elementary transforms.

+

The rendered picture should match the reference image exactly except for variations in the labeling text.

+

The test uses the rect element, the fill color (solid primary colors) and transforms.

+ +
+ + + diff --git a/test/W3C_SVG_12_TinyTestSuite_beta/htmlObjectHarness/coords-trans-02-t.html b/test/W3C_SVG_12_TinyTestSuite_beta/htmlObjectHarness/coords-trans-02-t.html new file mode 100755 index 00000000..a670c6a1 --- /dev/null +++ b/test/W3C_SVG_12_TinyTestSuite_beta/htmlObjectHarness/coords-trans-02-t.html @@ -0,0 +1,82 @@ + + + + + + + + +SVG 1.2 Tiny test:coords-trans-02-t + + + + + + + + + + +
+ + + + + + + + + + + + +
+

coords-trans-02-t

+
+

FAIL

+
+ raster image of coords-trans-02-t +
+
+ + +
+

This test verifies the implementation of transforms. It tests elementary transforms and transform nesting. Note that for layout purposes, this test uses nesting of translation with the elementary transforms.

+

The rendered picture should match the reference image exactly except for variations in the labeling text.

+

The test uses the rect element, the fill color (solid primary colors) and transforms.

+ +
+ + + diff --git a/test/W3C_SVG_12_TinyTestSuite_beta/htmlObjectHarness/coords-trans-03-t.html b/test/W3C_SVG_12_TinyTestSuite_beta/htmlObjectHarness/coords-trans-03-t.html new file mode 100755 index 00000000..167f185a --- /dev/null +++ b/test/W3C_SVG_12_TinyTestSuite_beta/htmlObjectHarness/coords-trans-03-t.html @@ -0,0 +1,82 @@ + + + + + + + + +SVG 1.2 Tiny test:coords-trans-03-t + + + + + + + + + + +
+ + + + + + + + + + + + +
+

coords-trans-03-t

+
+

FAIL

+
+ raster image of coords-trans-03-t +
+
+ + +
+

This test verifies the implementation of transforms. It tests elementary transforms and transform nesting. Note that for layout purposes, this test uses nesting of translation with the elementary transforms.

+

The rendered picture should match the reference image exactly except for variations in the labeling text.

+

The test uses the rect element, the fill color (solid primary colors) and transforms.

+ +
+ + + diff --git a/test/W3C_SVG_12_TinyTestSuite_beta/htmlObjectHarness/coords-trans-04-t.html b/test/W3C_SVG_12_TinyTestSuite_beta/htmlObjectHarness/coords-trans-04-t.html new file mode 100755 index 00000000..8a7e6fae --- /dev/null +++ b/test/W3C_SVG_12_TinyTestSuite_beta/htmlObjectHarness/coords-trans-04-t.html @@ -0,0 +1,82 @@ + + + + + + + + +SVG 1.2 Tiny test:coords-trans-04-t + + + + + + + + + + +
+ + + + + + + + + + + + +
+

coords-trans-04-t

+
+

FAIL

+
+ raster image of coords-trans-04-t +
+
+ + +
+

This test verifies the implementation of transforms. It tests elementary transforms and transform nesting. Note that for layout purposes, this test uses nesting of translation with the elementary transforms.

+

The rendered picture should match the reference image exactly except for variations in the labeling text.

+

The test uses the rect element, the fill color (solid primary colors) and transforms.

+ +
+ + + diff --git a/test/W3C_SVG_12_TinyTestSuite_beta/htmlObjectHarness/coords-trans-05-t.html b/test/W3C_SVG_12_TinyTestSuite_beta/htmlObjectHarness/coords-trans-05-t.html new file mode 100755 index 00000000..a0c850f6 --- /dev/null +++ b/test/W3C_SVG_12_TinyTestSuite_beta/htmlObjectHarness/coords-trans-05-t.html @@ -0,0 +1,82 @@ + + + + + + + + +SVG 1.2 Tiny test:coords-trans-05-t + + + + + + + + + + +
+ + + + + + + + + + + + +
+

coords-trans-05-t

+
+

FAIL

+
+ raster image of coords-trans-05-t +
+
+ + +
+

This test verifies the implementation of transforms. It tests elementary transforms and transform nesting. Note that for layout purposes, this test uses nesting of translation with the elementary transforms.

+

The rendered picture should match the reference image exactly except for variations in the labeling text.

+

The test uses the rect element, the fill color (solid primary colors) and transforms.

+ +
+ + + diff --git a/test/W3C_SVG_12_TinyTestSuite_beta/htmlObjectHarness/coords-trans-06-t.html b/test/W3C_SVG_12_TinyTestSuite_beta/htmlObjectHarness/coords-trans-06-t.html new file mode 100755 index 00000000..616b12af --- /dev/null +++ b/test/W3C_SVG_12_TinyTestSuite_beta/htmlObjectHarness/coords-trans-06-t.html @@ -0,0 +1,82 @@ + + + + + + + + +SVG 1.2 Tiny test:coords-trans-06-t + + + + + + + + + + +
+ + + + + + + + + + + + +
+

coords-trans-06-t

+
+

FAIL

+
+ raster image of coords-trans-06-t +
+
+ + +
+

This test verifies the implementation of transforms. It tests elementary transforms and transform nesting. Note that for layout purposes, this test uses nesting of translation with the elementary transforms.

+

The rendered picture should match the reference image exactly except for variations in the labeling text.

+

The test uses the rect element, the fill color (solid primary colors) and transforms.

+ +
+ + + diff --git a/test/W3C_SVG_12_TinyTestSuite_beta/htmlObjectHarness/coords-trans-07-t.html b/test/W3C_SVG_12_TinyTestSuite_beta/htmlObjectHarness/coords-trans-07-t.html new file mode 100755 index 00000000..a9c118d4 --- /dev/null +++ b/test/W3C_SVG_12_TinyTestSuite_beta/htmlObjectHarness/coords-trans-07-t.html @@ -0,0 +1,90 @@ + + + + + + + + +SVG 1.2 Tiny test:coords-trans-07-t + + + + + + + + + + +
+ + + + + + + + + + + + +
+

coords-trans-07-t

+
+

FAIL

+
+ raster image of coords-trans-07-t +
+
+ + +
+

+ This test verifies the implementation of transforms. It tests elementary transforms + and transform nesting. + Note that for layout purposes, this test uses nesting of translation with the elementary transforms. +

+

+ The rendered picture should match the reference image exactly except for variations in the labeling text. +

+

+ The test uses the rect element, the fill color (solid primary colors) and transforms. +

+ +
+ + + diff --git a/test/W3C_SVG_12_TinyTestSuite_beta/htmlObjectHarness/coords-trans-08-t.html b/test/W3C_SVG_12_TinyTestSuite_beta/htmlObjectHarness/coords-trans-08-t.html new file mode 100755 index 00000000..f6580910 --- /dev/null +++ b/test/W3C_SVG_12_TinyTestSuite_beta/htmlObjectHarness/coords-trans-08-t.html @@ -0,0 +1,90 @@ + + + + + + + + +SVG 1.2 Tiny test:coords-trans-08-t + + + + + + + + + + +
+ + + + + + + + + + + + +
+

coords-trans-08-t

+
+

FAIL

+
+ raster image of coords-trans-08-t +
+
+ + +
+

+ This test verifies the implementation of transforms. It tests elementary transforms + and transform nesting. + Note that for layout purposes, this test uses nesting of translation with the elementary transforms. +

+

+ The rendered picture should match the reference image exactly except for variations in the labeling text. +

+

+ This test will check if the transfomations performed are carried out in the proper order. The result should differ depending on which transformation comes first. +

+ +
+ + + diff --git a/test/W3C_SVG_12_TinyTestSuite_beta/htmlObjectHarness/coords-trans-09-t.html b/test/W3C_SVG_12_TinyTestSuite_beta/htmlObjectHarness/coords-trans-09-t.html new file mode 100755 index 00000000..2f3f9d04 --- /dev/null +++ b/test/W3C_SVG_12_TinyTestSuite_beta/htmlObjectHarness/coords-trans-09-t.html @@ -0,0 +1,90 @@ + + + + + + + + +SVG 1.2 Tiny test:coords-trans-09-t + + + + + + + + + + +
+ + + + + + + + + + + + +
+

coords-trans-09-t

+
+

FAIL

+
+ raster image of coords-trans-09-t +
+
+ + +
+

+ This test verifies the implementation of transforms. It tests elementary transforms + and transform nesting. + Note that for layout purposes, this test uses nesting of translation with the elementary transforms. +

+

+ The rendered picture should match the reference image exactly except for variations in the labeling text. +

+

+ This test will check if the various matrix operations work +

+ +
+ + + diff --git a/test/W3C_SVG_12_TinyTestSuite_beta/htmlObjectHarness/coords-units-01-t.html b/test/W3C_SVG_12_TinyTestSuite_beta/htmlObjectHarness/coords-units-01-t.html new file mode 100755 index 00000000..5b9d7bf8 --- /dev/null +++ b/test/W3C_SVG_12_TinyTestSuite_beta/htmlObjectHarness/coords-units-01-t.html @@ -0,0 +1,95 @@ + + + + + + + + +SVG 1.2 Tiny test:coords-units-01-t + + + + + + + + + + +
+ + + + + + + + + + + + +
+

coords-units-01-t

+
+

FAIL

+
+ raster image of coords-units-01-t +
+
+ + +
+

+ Verify the conversion processing of percentage and fraction values relative to object bounding boxes. + This is used when defining linear and radial gradients. +

+

+ The test validates conversion for coordinates, width, height and length. The first test defines two + corresponding linear gradients, which specify coordinates using fractions for the first and user + coordinates for the second. The second test defines two corresponding radial gradients, which specify + a length (radius) using fractions for the first and user space for the second. +

+

+ The rendered image should match the reference image. +

+

+ The test also assumes that linear and radial gradients are implemented. +

+ +
+ + + diff --git a/test/W3C_SVG_12_TinyTestSuite_beta/htmlObjectHarness/coords-viewattr-05-t.html b/test/W3C_SVG_12_TinyTestSuite_beta/htmlObjectHarness/coords-viewattr-05-t.html new file mode 100755 index 00000000..f1e14e64 --- /dev/null +++ b/test/W3C_SVG_12_TinyTestSuite_beta/htmlObjectHarness/coords-viewattr-05-t.html @@ -0,0 +1,85 @@ + + + + + + + + +SVG 1.2 Tiny test:coords-viewattr-05-t + + + + + + + + + + +
+ + + + + + + + + + + + +
+

coords-viewattr-05-t

+
+

FAIL

+
+ raster image of coords-viewattr-05-t +
+
+ + +
+

+ This test verifies the implementation of the preserveAspectRatio attribute on <image> referencing raster content. + This is a modified version of the sample file included in the SVG specification. It exercises the various preserveAspectRatio + values and uses a general entity definition in order to make reading of the SVG source easier. +

+

The rendered picture should match the reference image exactly except for variations in the labeling text.

+ +
+ + + diff --git a/test/W3C_SVG_12_TinyTestSuite_beta/htmlObjectHarness/extend-namespace-02-t.html b/test/W3C_SVG_12_TinyTestSuite_beta/htmlObjectHarness/extend-namespace-02-t.html new file mode 100755 index 00000000..0329f802 --- /dev/null +++ b/test/W3C_SVG_12_TinyTestSuite_beta/htmlObjectHarness/extend-namespace-02-t.html @@ -0,0 +1,90 @@ + + + + + + + + +SVG 1.2 Tiny test:extend-namespace-02-t + + + + + + + + + + +
+ + + + + + + + + + + + +
+

extend-namespace-02-t

+
+

FAIL

+
+ raster image of extend-namespace-02-t +
+
+ + +
+

Test mixing a business data namespace with elements in SVG namespace.

+

+ The test case uses a different namespace to hold fake sales data. Using ECMAScript to make calls to the DOM, + the test case extracts the sales data and then makes calls to the SVG DOM to build up a 'path' element and a + 'text' element for each individual pie slice. +

+

+ The result should show five pie slices. The first pie slice should be exploded, with a pink fill and a blue border. + The other pie slices should have various levels of gray fill and black borders. The name of each region should + appear in black towards the center of the pie slice. +

+ +
+ + + diff --git a/test/W3C_SVG_12_TinyTestSuite_beta/htmlObjectHarness/fonts-desc-02-t.html b/test/W3C_SVG_12_TinyTestSuite_beta/htmlObjectHarness/fonts-desc-02-t.html new file mode 100755 index 00000000..f098c74f --- /dev/null +++ b/test/W3C_SVG_12_TinyTestSuite_beta/htmlObjectHarness/fonts-desc-02-t.html @@ -0,0 +1,84 @@ + + + + + + + + +SVG 1.2 Tiny test:fonts-desc-02-t + + + + + + + + + + +
+ + + + + + + + + + + + +
+

fonts-desc-02-t

+
+

FAIL

+
+ raster image of fonts-desc-02-t +
+
+ + +
+

This tests the behaviour of CSS font matching based on font-variant attribute.

+

The first line of text should be 'square' 'triangle'. The small-caps font should match the second text element.

+

The second line of text should be 'square' 'triangle'. The second line is used to ensure that the order of font specification does not effect the selection of these fonts.

+

The third line of text should be 'square', 'diamond', 'square', 'diamond'. This shows that the correct font is selected when a font in the list does not support the variant required. Note that the fonts provide no x-height so scaling (allowed by CSS) cannot be used to simulate a small cap from a regular font.

+

The last line of test can be 'square', 'a', 'a' (from a fallback font), 'diamond'. The first 'a' can be replaced with a smallcaps 'A', if there is a smallcaps font installed or if synthesis is supported.

+ +
+ + + diff --git a/test/W3C_SVG_12_TinyTestSuite_beta/htmlObjectHarness/fonts-elem-01-t.html b/test/W3C_SVG_12_TinyTestSuite_beta/htmlObjectHarness/fonts-elem-01-t.html new file mode 100755 index 00000000..768b9571 --- /dev/null +++ b/test/W3C_SVG_12_TinyTestSuite_beta/htmlObjectHarness/fonts-elem-01-t.html @@ -0,0 +1,82 @@ + + + + + + + + +SVG 1.2 Tiny test:fonts-elem-01-t + + + + + + + + + + +
+ + + + + + + + + + + + +
+

fonts-elem-01-t

+
+

FAIL

+
+ raster image of fonts-elem-01-t +
+
+ + +
+

This is a basic test for embedded SVG fonts. The font "Comic Sans" (available from Microsoft) has been converted into an SVG font and embedded in the SVG file. The test contains two text areas, each with the character string "AyÖ@ç" drawn at the same font size.

+

The upper area contains the glyphs from the embedded font placed in the SVG file as path elements. Each glyph is placed at the location it would be if rendered using normal text rendering (ie. the horizontal advance between characters has been preserved).

+

The lower area contains the text string rendered using the embedded SVG font. It should appear exactly the same as the upper text area, ie. font size, character baseline and horizontal advance should be the same.

+ +
+ + + diff --git a/test/W3C_SVG_12_TinyTestSuite_beta/htmlObjectHarness/fonts-elem-02-t.html b/test/W3C_SVG_12_TinyTestSuite_beta/htmlObjectHarness/fonts-elem-02-t.html new file mode 100755 index 00000000..bddc7bbd --- /dev/null +++ b/test/W3C_SVG_12_TinyTestSuite_beta/htmlObjectHarness/fonts-elem-02-t.html @@ -0,0 +1,82 @@ + + + + + + + + +SVG 1.2 Tiny test:fonts-elem-02-t + + + + + + + + + + +
+ + + + + + + + + + + + +
+

fonts-elem-02-t

+
+

FAIL

+
+ raster image of fonts-elem-02-t +
+
+ + +
+

This is an accuracy test for embedded SVG fonts. The font "Comic Sans" (available from Microsoft) has been converted into an SVG font and embedded in the SVG file. The test contains two text areas, each with the character string "AyÖ@ç" drawn at the same font size.

+

The upper area has the placed glyphs as path elements filled with white over a solid black background (creating a white cutout). The embedded SVG font text is then drawn over the cutout. An implementation that passes this test should completely fill the cutout, leaving a solid black area (some slight antialiasing effects may remain).

+

The lower area is the reverse of the upper area, with the placed black glyphs filling the cutout created by white SVG font text. An implementation that passes this test should completely fill the cutout, leaving a solid black area (some slight antialiasing effects may remain).

+ +
+ + + diff --git a/test/W3C_SVG_12_TinyTestSuite_beta/htmlObjectHarness/fonts-elem-03-t.html b/test/W3C_SVG_12_TinyTestSuite_beta/htmlObjectHarness/fonts-elem-03-t.html new file mode 100755 index 00000000..e4e5e173 --- /dev/null +++ b/test/W3C_SVG_12_TinyTestSuite_beta/htmlObjectHarness/fonts-elem-03-t.html @@ -0,0 +1,82 @@ + + + + + + + + +SVG 1.2 Tiny test:fonts-elem-03-t + + + + + + + + + + +
+ + + + + + + + + + + + +
+

fonts-elem-03-t

+
+

FAIL

+
+ raster image of fonts-elem-03-t +
+
+ + +
+

This is a basic test for external SVG fonts. The font "Comic Sans" (available from Microsoft) has been converted into an SVG font and placed in an external SVG file referenced by a font-face-src element. The test contains two text areas, each with the character string "AyÖ@ç" drawn at the same font size.

+

The upper area contains the glyphs from the font placed in the SVG file as path elements. Each glyph is placed at the location it would be if rendered using normal text rendering (ie. the horizontal advance between characters has been preserved).

+

The lower area contains the text string rendered using the external SVG font. It should appear exactly the same as the upper text area, ie. font size, character baseline and horizontal advance should be the same.

+ +
+ + + diff --git a/test/W3C_SVG_12_TinyTestSuite_beta/htmlObjectHarness/fonts-elem-06-t.html b/test/W3C_SVG_12_TinyTestSuite_beta/htmlObjectHarness/fonts-elem-06-t.html new file mode 100755 index 00000000..fecaf392 --- /dev/null +++ b/test/W3C_SVG_12_TinyTestSuite_beta/htmlObjectHarness/fonts-elem-06-t.html @@ -0,0 +1,84 @@ + + + + + + + + +SVG 1.2 Tiny test:fonts-elem-06-t + + + + + + + + + + +
+ + + + + + + + + + + + +
+

fonts-elem-06-t

+
+

FAIL

+
+ raster image of fonts-elem-06-t +
+
+ + +
+

This test validates that the font element's horiz-adv-x is used as the default glyph's advance when there is no glyph advance specified. All fonts have a units-per-em of 1000.

+

The first row shows a layout with a default adavance of 1000. Glyphs have no advance so the 1000 default should be used.

+

The second row shows a layout with a default adavance of 2000. Glyphs have no advance so the 2000 default should be used.

+

The last row shows a layout with a default adavance of 0. Glyphs have a specified advance so the 0 default should be ignored.

+

Reference blue markers show the expected glyph positions.

+ +
+ + + diff --git a/test/W3C_SVG_12_TinyTestSuite_beta/htmlObjectHarness/fonts-glyph-02-t.html b/test/W3C_SVG_12_TinyTestSuite_beta/htmlObjectHarness/fonts-glyph-02-t.html new file mode 100755 index 00000000..b30890ce --- /dev/null +++ b/test/W3C_SVG_12_TinyTestSuite_beta/htmlObjectHarness/fonts-glyph-02-t.html @@ -0,0 +1,81 @@ + + + + + + + + +SVG 1.2 Tiny test:fonts-glyph-02-t + + + + + + + + + + +
+ + + + + + + + + + + + +
+

fonts-glyph-02-t

+
+

FAIL

+
+ raster image of fonts-glyph-02-t +
+
+ + +
+

The first subtest tests the arabic-form attribute and should produce a 'downward triangle', a 'space', a 'square', a 'diamond' and then an 'upward triangle' in this order. Remembering that arabic text is right to left.

+

The second subtest is the same, but with glyphs for the letter khah. It should match the reference image.

+ +
+ + + diff --git a/test/W3C_SVG_12_TinyTestSuite_beta/htmlObjectHarness/fonts-glyph-03-t.html b/test/W3C_SVG_12_TinyTestSuite_beta/htmlObjectHarness/fonts-glyph-03-t.html new file mode 100755 index 00000000..9343f15a --- /dev/null +++ b/test/W3C_SVG_12_TinyTestSuite_beta/htmlObjectHarness/fonts-glyph-03-t.html @@ -0,0 +1,84 @@ + + + + + + + + +SVG 1.2 Tiny test:fonts-glyph-03-t + + + + + + + + + + +
+ + + + + + + + + + + + +
+

fonts-glyph-03-t

+
+

FAIL

+
+ raster image of fonts-glyph-03-t +
+
+ + +
+

+ This files tests the lang attribute support of the glyph element. The test should produce an upward-triangle for the first (en) test element and a square for the second (fr) and third + (fr-ca) text element. In the third case, a glyph for fr is also suitable for a more specific language text fr-ca. In the fourth case, no suitable language specific or general glyph is + provided by the test so a fallback font for the letter 'a' should be used. A triangle or square must not be displayed in the fourth case. +

+ +
+ + + diff --git a/test/W3C_SVG_12_TinyTestSuite_beta/htmlObjectHarness/fonts-glyph-04-t.html b/test/W3C_SVG_12_TinyTestSuite_beta/htmlObjectHarness/fonts-glyph-04-t.html new file mode 100755 index 00000000..3ef8f0c5 --- /dev/null +++ b/test/W3C_SVG_12_TinyTestSuite_beta/htmlObjectHarness/fonts-glyph-04-t.html @@ -0,0 +1,80 @@ + + + + + + + + +SVG 1.2 Tiny test:fonts-glyph-04-t + + + + + + + + + + +
+ + + + + + + + + + + + +
+

fonts-glyph-04-t

+
+

FAIL

+
+ raster image of fonts-glyph-04-t +
+
+ + +
+

This tests that glyph selection is done in the order in the definition of the font element. The first line of text should be represented by two triangles and an 'l'. The second line should be represented by a square.

+ +
+ + + diff --git a/test/W3C_SVG_12_TinyTestSuite_beta/htmlObjectHarness/fonts-glyph-201-t.html b/test/W3C_SVG_12_TinyTestSuite_beta/htmlObjectHarness/fonts-glyph-201-t.html new file mode 100755 index 00000000..917cb216 --- /dev/null +++ b/test/W3C_SVG_12_TinyTestSuite_beta/htmlObjectHarness/fonts-glyph-201-t.html @@ -0,0 +1,89 @@ + + + + + + + + +SVG 1.2 Tiny test:fonts-glyph-201-t + + + + + + + + + + +
+ + + + + + + + + + + + +
+

fonts-glyph-201-t

+
+

FAIL

+
+ raster image of fonts-glyph-201-t +
+
+ + +
+

+ Test that ligatures are always used, and only used, when they occur before the + glyphs for characters they are ligatures of. The word "fjord" is displayed twice; + the top one must use the fj ligature and the bottom one must not; the top of the letter f overlaps the + dot of the letter i.. +

+

+ Two fonts are defined, almost identical; in one the fj ligature is the + first glyph defined, in the second one it is the last glyph. +

+ +
+ + + diff --git a/test/W3C_SVG_12_TinyTestSuite_beta/htmlObjectHarness/fonts-glyph-202-t.html b/test/W3C_SVG_12_TinyTestSuite_beta/htmlObjectHarness/fonts-glyph-202-t.html new file mode 100755 index 00000000..a91ee748 --- /dev/null +++ b/test/W3C_SVG_12_TinyTestSuite_beta/htmlObjectHarness/fonts-glyph-202-t.html @@ -0,0 +1,90 @@ + + + + + + + + +SVG 1.2 Tiny test:fonts-glyph-202-t + + + + + + + + + + +
+ + + + + + + + + + + + +
+

fonts-glyph-202-t

+
+

FAIL

+
+ raster image of fonts-glyph-202-t +
+
+ + +
+

+ Test that ligatures are always used, and only used, when they occur before the + glyphs for characters they are ligatures of. The word "fjord" is displayed twice; + the lower one must use the fj ligature and the upper one must not; the top of the letter f overlaps the + dot of the letter j.. +

+

+ Two fonts are defined, almost identical; in one the fj ligature is + defined after "f" but before "j"; in the second one it is the last glyph. + This tests longest-substring matching. +

+ +
+ + + diff --git a/test/W3C_SVG_12_TinyTestSuite_beta/htmlObjectHarness/fonts-glyph-203-t.html b/test/W3C_SVG_12_TinyTestSuite_beta/htmlObjectHarness/fonts-glyph-203-t.html new file mode 100755 index 00000000..929bf888 --- /dev/null +++ b/test/W3C_SVG_12_TinyTestSuite_beta/htmlObjectHarness/fonts-glyph-203-t.html @@ -0,0 +1,88 @@ + + + + + + + + +SVG 1.2 Tiny test:fonts-glyph-203-t + + + + + + + + + + +
+ + + + + + + + + + + + +
+

fonts-glyph-203-t

+
+

FAIL

+
+ raster image of fonts-glyph-203-t +
+
+ + +
+ +

+ Test that all of the SVG path commands are accepted for defining glyphs. The upper, + black text must be a reflection of the lower, colored glyph shapes. +

+

+ The letter A uses L commands, the letter H uses H and V commands, and + the letter B uses cubic beziers. The letter C uses a mix of quadratic beziers and vertical lines. +

+ +
+ + + diff --git a/test/W3C_SVG_12_TinyTestSuite_beta/htmlObjectHarness/fonts-kern-01-t.html b/test/W3C_SVG_12_TinyTestSuite_beta/htmlObjectHarness/fonts-kern-01-t.html new file mode 100755 index 00000000..6e138ed3 --- /dev/null +++ b/test/W3C_SVG_12_TinyTestSuite_beta/htmlObjectHarness/fonts-kern-01-t.html @@ -0,0 +1,88 @@ + + + + + + + + +SVG 1.2 Tiny test:fonts-kern-01-t + + + + + + + + + + +
+ + + + + + + + + + + + +
+

fonts-kern-01-t

+
+

FAIL

+
+ raster image of fonts-kern-01-t +
+
+ + +
+

This test validates handling of the hkern element.

+

In all instances, a text element matching a font with hkern is displayed along with reference markers showing the expected glyph positioning.

+

The 'fontA' cell shows the string "12" with "fontA" for which there in a kerning pair defined with u1="1" and u2="2".

+

The 'fontB' cell shows the string "12" with "fontB" for which there in a kerning pair defined with g1="gl_1" and g2="gl_2", where "gl_1" has unicode="1" and "gl_2" has unicode="2".

+

The 'fontC' cell shows the string "1234" with "fontC" were the same kerning pair uses u1/u2 to match "12" and g1/g2 to match "34".

+

The 'fontD' cell shows the string "1234" with "fontD" were the same kerning pair uses u1/u2 to match "12" and "34" (u1/u2 are lists of character vales).

+

The 'fontE' cell shows the string "1234" with "fontE" were the same kerning pair uses g1/g2 to match "12" and "34" (g1/g2 are lists of names).

+

The 'fontF' cell shows the string "1234" with "fontF" were the same kerning pair uses u1/u2 to match "12" and "34" (u1/u2 are unicode ranges).

+

The 'fontG' cell shows the string "12" with "fontG" were for which there is a kerning pair with u1 matching "1" and g2 matching "gl_2".

+ +
+ + + diff --git a/test/W3C_SVG_12_TinyTestSuite_beta/htmlObjectHarness/fonts-overview-201-t.html b/test/W3C_SVG_12_TinyTestSuite_beta/htmlObjectHarness/fonts-overview-201-t.html new file mode 100755 index 00000000..cac8168e --- /dev/null +++ b/test/W3C_SVG_12_TinyTestSuite_beta/htmlObjectHarness/fonts-overview-201-t.html @@ -0,0 +1,89 @@ + + + + + + + + +SVG 1.2 Tiny test:fonts-overview-201-t + + + + + + + + + + +
+ + + + + + + + + + + + +
+

fonts-overview-201-t

+
+

FAIL

+
+ raster image of fonts-overview-201-t +
+
+ + +
+

+ This tests a range of values for the 'units per em' attribute. The + test is passed if the three letter β are all the same size. +

+

+ The same glyph is defined three times in three fonts, but with different values + for units-per-em - 1,000, 10, and 10,000 - and with the other numerical values + that depend on units-per-em scaled accordingly. Text using these fonts must all be displayed at the same size, + because the same font-size is used throughout. +

+ +
+ + + diff --git a/test/W3C_SVG_12_TinyTestSuite_beta/htmlObjectHarness/index.html b/test/W3C_SVG_12_TinyTestSuite_beta/htmlObjectHarness/index.html new file mode 100755 index 00000000..7e7791c6 --- /dev/null +++ b/test/W3C_SVG_12_TinyTestSuite_beta/htmlObjectHarness/index.html @@ -0,0 +1,530 @@ + + + + + + + + +SVG 1.2 Tiny test suite + + + +

SVG 1.2 Tiny test suite

+

Below are the list of tests in the SVG 1.2 Tiny test suite. Each test +has a link to different versions as well as navigation.

+
    +
  1. animate-elem-02-t
  2. +
  3. animate-elem-03-t
  4. +
  5. animate-elem-04-t
  6. +
  7. animate-elem-05-t
  8. +
  9. animate-elem-06-t
  10. +
  11. animate-elem-07-t
  12. +
  13. animate-elem-08-t
  14. +
  15. animate-elem-09-t
  16. +
  17. animate-elem-10-t
  18. +
  19. animate-elem-11-t
  20. +
  21. animate-elem-12-t
  22. +
  23. animate-elem-13-t
  24. +
  25. animate-elem-14-t
  26. +
  27. animate-elem-15-t
  28. +
  29. animate-elem-17-t
  30. +
  31. animate-elem-19-t
  32. +
  33. animate-elem-20-t
  34. +
  35. animate-elem-201-t
  36. +
  37. animate-elem-202-t
  38. +
  39. animate-elem-203-t
  40. +
  41. animate-elem-205-t
  42. +
  43. animate-elem-206-t
  44. +
  45. animate-elem-207-t
  46. +
  47. animate-elem-209-t
  48. +
  49. animate-elem-21-t
  50. +
  51. animate-elem-210-t
  52. +
  53. animate-elem-211-t
  54. +
  55. animate-elem-212-t
  56. +
  57. animate-elem-213-t
  58. +
  59. animate-elem-214-t
  60. +
  61. animate-elem-215-t
  62. +
  63. animate-elem-216-t
  64. +
  65. animate-elem-217-t
  66. +
  67. animate-elem-218-t
  68. +
  69. animate-elem-219-t
  70. +
  71. animate-elem-22-t
  72. +
  73. animate-elem-221-t
  74. +
  75. animate-elem-222-t
  76. +
  77. animate-elem-225-t
  78. +
  79. animate-elem-226-t
  80. +
  81. animate-elem-227-t
  82. +
  83. animate-elem-23-t
  84. +
  85. animate-elem-24-t
  86. +
  87. animate-elem-25-t
  88. +
  89. animate-elem-26-t
  90. +
  91. animate-elem-27-t
  92. +
  93. animate-elem-28-t
  94. +
  95. animate-elem-29-t
  96. +
  97. animate-elem-30-t
  98. +
  99. animate-elem-31-t
  100. +
  101. animate-elem-32-t
  102. +
  103. animate-elem-33-t
  104. +
  105. animate-elem-34-t
  106. +
  107. animate-elem-35-t
  108. +
  109. animate-elem-36-t
  110. +
  111. animate-elem-37-t
  112. +
  113. animate-elem-38-t
  114. +
  115. animate-elem-39-t
  116. +
  117. animate-elem-40-t
  118. +
  119. animate-elem-41-t
  120. +
  121. animate-elem-44-t
  122. +
  123. animate-elem-46-t
  124. +
  125. animate-elem-52-t
  126. +
  127. animate-elem-53-t
  128. +
  129. animate-elem-61-t
  130. +
  131. animate-elem-64-t
  132. +
  133. animate-elem-65-t
  134. +
  135. animate-elem-66-t
  136. +
  137. animate-elem-67-t
  138. +
  139. animate-elem-68-t
  140. +
  141. animate-elem-69-t
  142. +
  143. animate-elem-70-t
  144. +
  145. animate-elem-77-t
  146. +
  147. animate-elem-78-t
  148. +
  149. animate-elem-80-t
  150. +
  151. animate-elem-81-t
  152. +
  153. animate-elem-82-t
  154. +
  155. animate-elem-83-t
  156. +
  157. animate-elem-84-t
  158. +
  159. animate-elem-85-t
  160. +
  161. animate-elem-86-t
  162. +
  163. conf-reader-201-t
  164. +
  165. coords-constr-201-t
  166. +
  167. coords-constr-202-t
  168. +
  169. coords-constr-203-t
  170. +
  171. coords-constr-204-t
  172. +
  173. coords-coord-01-t
  174. +
  175. coords-pAR-201-t
  176. +
  177. coords-trans-01-t
  178. +
  179. coords-trans-02-t
  180. +
  181. coords-trans-03-t
  182. +
  183. coords-trans-04-t
  184. +
  185. coords-trans-05-t
  186. +
  187. coords-trans-06-t
  188. +
  189. coords-trans-07-t
  190. +
  191. coords-trans-08-t
  192. +
  193. coords-trans-09-t
  194. +
  195. coords-units-01-t
  196. +
  197. coords-viewattr-05-t
  198. +
  199. extend-namespace-02-t
  200. +
  201. fonts-desc-02-t
  202. +
  203. fonts-elem-01-t
  204. +
  205. fonts-elem-02-t
  206. +
  207. fonts-elem-03-t
  208. +
  209. fonts-elem-06-t
  210. +
  211. fonts-glyph-02-t
  212. +
  213. fonts-glyph-03-t
  214. +
  215. fonts-glyph-04-t
  216. +
  217. fonts-glyph-201-t
  218. +
  219. fonts-glyph-202-t
  220. +
  221. fonts-glyph-203-t
  222. +
  223. fonts-kern-01-t
  224. +
  225. fonts-overview-201-t
  226. +
  227. interact-dom-02-t
  228. +
  229. interact-event-201-t
  230. +
  231. interact-event-202-t
  232. +
  233. interact-event-203-t
  234. +
  235. interact-focus-201-t
  236. +
  237. interact-focus-202-t
  238. +
  239. interact-focus-203-t
  240. +
  241. interact-focus-204-t
  242. +
  243. interact-focus-205-t
  244. +
  245. interact-focus-206-t
  246. +
  247. interact-focus-207-t
  248. +
  249. interact-focus-208-t
  250. +
  251. interact-focus-209-t
  252. +
  253. interact-focus-210-t
  254. +
  255. interact-focus-211-t
  256. +
  257. interact-focus-212-t
  258. +
  259. interact-order-04-t
  260. +
  261. interact-order-05-t
  262. +
  263. interact-order-06-t
  264. +
  265. interact-pevents-02-t
  266. +
  267. interact-pevents-05-t
  268. +
  269. interact-pevents-06-t
  270. +
  271. interact-pevents-07-t
  272. +
  273. interact-pevents-08-t
  274. +
  275. interact-zoom-01-t
  276. +
  277. interact-zoom-02-t
  278. +
  279. interact-zoom-03-t
  280. +
  281. intro-compat-201-t
  282. +
  283. jpeg-required-201-t
  284. +
  285. jpeg-required-202-t
  286. +
  287. jpeg-required-203-t
  288. +
  289. jpeg-required-204-t
  290. +
  291. jpeg-required-205-t
  292. +
  293. jpeg-required-206-t
  294. +
  295. jpeg-required-207-t
  296. +
  297. jpeg-required-208-t
  298. +
  299. jpeg-required-209-t
  300. +
  301. linking-a-03-t
  302. +
  303. linking-a-08-t
  304. +
  305. linking-a-201-t
  306. +
  307. linking-frag-201-t
  308. +
  309. linking-frag-202-t
  310. +
  311. linking-frag-203-t
  312. +
  313. linking-frag-204-t
  314. +
  315. linking-refs-201-t
  316. +
  317. linking-refs-202-t
  318. +
  319. linking-refs-203-t
  320. +
  321. linking-refs-204-t
  322. +
  323. linking-refs-205-t
  324. +
  325. linking-refs-206-t
  326. +
  327. linking-uri-03-t
  328. +
  329. media-alevel-201-t
  330. +
  331. media-alevel-202-t
  332. +
  333. media-alevel-203-t
  334. +
  335. media-alevel-204-t
  336. +
  337. media-alevel-205-t
  338. +
  339. media-alevel-206-t
  340. +
  341. media-alevel-207-t
  342. +
  343. media-alevel-208-t
  344. +
  345. media-anim-201-t
  346. +
  347. media-anim-202-t
  348. +
  349. media-anim-203-t
  350. +
  351. media-anim-204-t
  352. +
  353. media-anim-205-t
  354. +
  355. media-anim-206-t
  356. +
  357. media-anim-207-t
  358. +
  359. media-anim-208-t
  360. +
  361. media-anim-209-t
  362. +
  363. media-anim-210-t
  364. +
  365. media-anim-211-t
  366. +
  367. media-anim-212-t
  368. +
  369. media-anim-213-t
  370. +
  371. media-audio-201-t
  372. +
  373. media-audio-202-t
  374. +
  375. media-audio-203-t
  376. +
  377. media-audio-204-t
  378. +
  379. media-audio-205-t
  380. +
  381. media-audio-206-t
  382. +
  383. media-audio-207-t
  384. +
  385. media-audio-208-t
  386. +
  387. media-audio-209-t
  388. +
  389. media-audio-210-t
  390. +
  391. media-audio-211-t
  392. +
  393. media-audio-212-t
  394. +
  395. media-audio-213-t
  396. +
  397. media-audio-214-t
  398. +
  399. media-audio-215-t
  400. +
  401. media-video-201-t
  402. +
  403. media-video-202-t
  404. +
  405. media-video-203-t
  406. +
  407. media-video-204-t
  408. +
  409. media-video-205-t
  410. +
  411. media-video-206-t
  412. +
  413. media-video-207-t
  414. +
  415. media-video-208-t
  416. +
  417. media-video-209-t
  418. +
  419. media-video-210-t
  420. +
  421. media-video-211-t
  422. +
  423. media-video-212-t
  424. +
  425. media-video-213-t
  426. +
  427. media-video-214-t
  428. +
  429. media-video-215-t
  430. +
  431. media-video-216-t
  432. +
  433. media-video-218-t
  434. +
  435. media-video-219-t
  436. +
  437. media-video-220-t
  438. +
  439. media-video-221-t
  440. +
  441. media-video-222-t
  442. +
  443. metadata-example-01-t
  444. +
  445. paint-color-01-t
  446. +
  447. paint-color-03-t
  448. +
  449. paint-color-04-t
  450. +
  451. paint-color-05-t
  452. +
  453. paint-color-201-t
  454. +
  455. paint-fill-01-t
  456. +
  457. paint-fill-02-t
  458. +
  459. paint-fill-03-t
  460. +
  461. paint-fill-04-t
  462. +
  463. paint-fill-05-t
  464. +
  465. paint-grad-04-t
  466. +
  467. paint-grad-05-t
  468. +
  469. paint-grad-07-t
  470. +
  471. paint-grad-08-t
  472. +
  473. paint-grad-09-t
  474. +
  475. paint-grad-11-t
  476. +
  477. paint-grad-12-t
  478. +
  479. paint-grad-15-t
  480. +
  481. paint-grad-16-t
  482. +
  483. paint-grad-17-t
  484. +
  485. paint-grad-18-t
  486. +
  487. paint-grad-19-t
  488. +
  489. paint-grad-201-t
  490. +
  491. paint-grad-202-t
  492. +
  493. paint-grad-203-t
  494. +
  495. paint-grad-204-t
  496. +
  497. paint-grad-205-t
  498. +
  499. paint-nsstroke-201-t
  500. +
  501. paint-nsstroke-203-t
  502. +
  503. paint-other-201-t
  504. +
  505. paint-other-203-t
  506. +
  507. paint-stroke-01-t
  508. +
  509. paint-stroke-02-t
  510. +
  511. paint-stroke-03-t
  512. +
  513. paint-stroke-04-t
  514. +
  515. paint-stroke-05-t
  516. +
  517. paint-stroke-06-t
  518. +
  519. paint-stroke-07-t
  520. +
  521. paint-stroke-08-t
  522. +
  523. paint-stroke-201-t
  524. +
  525. paint-stroke-202-t
  526. +
  527. paint-stroke-204-t
  528. +
  529. paint-stroke-205-t
  530. +
  531. paint-stroke-207-t
  532. +
  533. paint-vfill-201-t
  534. +
  535. paint-vfill-202-t
  536. +
  537. paint-vfill-203-t
  538. +
  539. paint-vfill-204-t
  540. +
  541. paint-vfill-205-t
  542. +
  543. paint-vfill-206-t
  544. +
  545. paths-data-01-t
  546. +
  547. paths-data-02-t
  548. +
  549. paths-data-04-t
  550. +
  551. paths-data-05-t
  552. +
  553. paths-data-06-t
  554. +
  555. paths-data-07-t
  556. +
  557. paths-data-08-t
  558. +
  559. paths-data-09-t
  560. +
  561. paths-data-10-t
  562. +
  563. paths-data-12-t
  564. +
  565. paths-data-13-t
  566. +
  567. paths-data-14-t
  568. +
  569. paths-data-15-t
  570. +
  571. render-elems-01-t
  572. +
  573. render-elems-02-t
  574. +
  575. render-elems-03-t
  576. +
  577. render-elems-06-t
  578. +
  579. render-elems-07-t
  580. +
  581. render-elems-08-t
  582. +
  583. render-groups-01-t
  584. +
  585. render-groups-03-t
  586. +
  587. script-element-201-t
  588. +
  589. script-element-202-t
  590. +
  591. script-element-203-t
  592. +
  593. script-handle-05-t
  594. +
  595. script-handle-06-t
  596. +
  597. script-handle-07-t
  598. +
  599. script-handle-08-t
  600. +
  601. script-handle-201-t
  602. +
  603. script-handle-202-t
  604. +
  605. script-listener-201-t
  606. +
  607. script-listener-202-t
  608. +
  609. script-listener-203-t
  610. +
  611. script-listener-204-t
  612. +
  613. shapes-circle-01-t
  614. +
  615. shapes-circle-02-t
  616. +
  617. shapes-circle-03-t
  618. +
  619. shapes-ellipse-01-t
  620. +
  621. shapes-ellipse-02-t
  622. +
  623. shapes-ellipse-03-t
  624. +
  625. shapes-intro-01-t
  626. +
  627. shapes-line-01-t
  628. +
  629. shapes-line-02-t
  630. +
  631. shapes-polygon-01-t
  632. +
  633. shapes-polygon-02-t
  634. +
  635. shapes-polyline-01-t
  636. +
  637. shapes-polyline-02-t
  638. +
  639. shapes-rect-01-t
  640. +
  641. shapes-rect-02-t
  642. +
  643. shapes-rect-03-t
  644. +
  645. struct-class-201-t
  646. +
  647. struct-common-201-t
  648. +
  649. struct-cond-01-t
  650. +
  651. struct-cond-02-t
  652. +
  653. struct-cond-03-t
  654. +
  655. struct-cond-204-t
  656. +
  657. struct-cond-205-t
  658. +
  659. struct-cond-209-t
  660. +
  661. struct-cond-210-t
  662. +
  663. struct-defs-01-t
  664. +
  665. struct-defs-201-t
  666. +
  667. struct-discard-201-t
  668. +
  669. struct-discard-204-t
  670. +
  671. struct-discard-205-t
  672. +
  673. struct-discard-206-t
  674. +
  675. struct-discard-207-t
  676. +
  677. struct-frag-02-t
  678. +
  679. struct-frag-03-t
  680. +
  681. struct-frag-04-t
  682. +
  683. struct-frag-05-t
  684. +
  685. struct-frag-06-t
  686. +
  687. struct-group-01-t
  688. +
  689. struct-group-03-t
  690. +
  691. struct-image-01-t
  692. +
  693. struct-image-03-t
  694. +
  695. struct-image-04-t
  696. +
  697. struct-image-06-t
  698. +
  699. struct-image-07-t
  700. +
  701. struct-image-08-t
  702. +
  703. struct-image-09-t
  704. +
  705. struct-image-10-t
  706. +
  707. struct-progressive-201-t
  708. +
  709. struct-progressive-202-t
  710. +
  711. struct-progressive-203-t
  712. +
  713. struct-progressive-204-t
  714. +
  715. struct-svg-201-t
  716. +
  717. struct-svg-202-t
  718. +
  719. struct-svg-203-t
  720. +
  721. struct-svg-204-t
  722. +
  723. struct-use-01-t
  724. +
  725. struct-use-03-t
  726. +
  727. struct-use-09-t
  728. +
  729. struct-use-201-t
  730. +
  731. struct-use-202-t
  732. +
  733. struct-use-203-t
  734. +
  735. struct-use-204-t
  736. +
  737. struct-use-205-t
  738. +
  739. struct-use-206-t
  740. +
  741. struct-use-207-t
  742. +
  743. struct-use-208-t
  744. +
  745. struct-use-209-t
  746. +
  747. struct-use-recursion-01-t
  748. +
  749. struct-use-recursion-02-t
  750. +
  751. struct-use-recursion-03-t
  752. +
  753. styling-inherit-01-t
  754. +
  755. styling-inherit-02-t
  756. +
  757. styling-inherit-03-t
  758. +
  759. styling-pres-01-t
  760. +
  761. text-align-01-t
  762. +
  763. text-align-07-t
  764. +
  765. text-align-08-t
  766. +
  767. text-align-201-t
  768. +
  769. text-align-202-t
  770. +
  771. text-area-201-t
  772. +
  773. text-area-202-t
  774. +
  775. text-area-203-t
  776. +
  777. text-area-204-t
  778. +
  779. text-area-205-t
  780. +
  781. text-area-206-t
  782. +
  783. text-area-207-t
  784. +
  785. text-area-208-t
  786. +
  787. text-area-209-t
  788. +
  789. text-area-210-t
  790. +
  791. text-area-211-t
  792. +
  793. text-area-213-t
  794. +
  795. text-area-220-t
  796. +
  797. text-area-221-t
  798. +
  799. text-area-222-t
  800. +
  801. text-edit-201-t
  802. +
  803. text-fonts-01-t
  804. +
  805. text-fonts-02-t
  806. +
  807. text-fonts-03-t
  808. +
  809. text-fonts-04-t
  810. +
  811. text-fonts-202-t
  812. +
  813. text-intro-01-t
  814. +
  815. text-intro-04-t
  816. +
  817. text-intro-05-t
  818. +
  819. text-intro-06-t
  820. +
  821. text-intro-201-t
  822. +
  823. text-text-04-t
  824. +
  825. text-text-06-t
  826. +
  827. text-text-07-t
  828. +
  829. text-text-08-t
  830. +
  831. text-text-09-t
  832. +
  833. text-tselect-03-t
  834. +
  835. text-ws-01-t
  836. +
  837. text-ws-02-t
  838. +
  839. udom-conform-201-t
  840. +
  841. udom-dom-201-t
  842. +
  843. udom-dom-202-t
  844. +
  845. udom-dom-203-t
  846. +
  847. udom-dom-204-t
  848. +
  849. udom-dom-206-t
  850. +
  851. udom-dom-207-t
  852. +
  853. udom-dom-209-t
  854. +
  855. udom-dom-210-t
  856. +
  857. udom-dom-211-t
  858. +
  859. udom-dom-213-t
  860. +
  861. udom-event-201-t
  862. +
  863. udom-event-202-t
  864. +
  865. udom-event-203-t
  866. +
  867. udom-event-204-t
  868. +
  869. udom-event-205-t
  870. +
  871. udom-event-207-t
  872. +
  873. udom-event-208-t
  874. +
  875. udom-event-209-t
  876. +
  877. udom-event-210-t
  878. +
  879. udom-glob-201-t
  880. +
  881. udom-glob-202-t
  882. +
  883. udom-glob-203-t
  884. +
  885. udom-glob-204-t
  886. +
  887. udom-node-201-t
  888. +
  889. udom-node-202-t
  890. +
  891. udom-node-204-t
  892. +
  893. udom-over-01-t
  894. +
  895. udom-smil-201-t
  896. +
  897. udom-smil-202-t
  898. +
  899. udom-smil-203-t
  900. +
  901. udom-svg-201-t
  902. +
  903. udom-svg-202-t
  904. +
  905. udom-svg-204-t
  906. +
  907. udom-svg-205-t
  908. +
  909. udom-svg-206-t
  910. +
  911. udom-svg-208-t
  912. +
  913. udom-svg-209-t
  914. +
  915. udom-svg-210-t
  916. +
  917. udom-svg-211-t
  918. +
  919. udom-svg-213-t
  920. +
  921. udom-svg-216-t
  922. +
  923. udom-svg-218-t
  924. +
  925. udom-svg-220-t
  926. +
  927. udom-svg-224-t
  928. +
  929. udom-svg-225-t
  930. +
  931. udom-svg-226-t
  932. +
  933. udom-svg-227-t
  934. +
  935. udom-svg-228-t
  936. +
  937. udom-svg-231-t
  938. +
  939. udom-svg-232-t
  940. +
  941. udom-svg-233-t
  942. +
  943. udom-svg-236-t
  944. +
  945. udom-svg-237-t
  946. +
  947. udom-svgcolor-201-t
  948. +
  949. udom-svglocatable-201-t
  950. +
  951. udom-svglocatable-202-t
  952. +
  953. udom-svglocatable-203-t
  954. +
  955. udom-svgmatrix-201-t
  956. +
  957. udom-svgmatrix-202-t
  958. +
  959. udom-svgmatrix-203-t
  960. +
  961. udom-svgmatrix-204-t
  962. +
  963. udom-svgmatrix-205-t
  964. +
  965. udom-svgmatrix-206-t
  966. +
  967. udom-svgpath-201-t
  968. +
  969. udom-svgpath-202-t
  970. +
  971. udom-svgpoint-201-t
  972. +
  973. udom-svgrect-201-t
  974. +
  975. udom-textcontent-201-t
  976. +
  977. udom-textcontent-202-t
  978. +
  979. udom-traitaccess-201-t
  980. +
  981. udom-traitaccess-202-t
  982. +
  983. udom-traitaccess-203-t
  984. +
  985. udom-traitaccess-204-t
  986. +
  987. udom-traitaccess-205-t
  988. +
  989. udom-traitaccess-206-t
  990. +
  991. udom-traitaccess-207-t
  992. +
+ + diff --git a/test/W3C_SVG_12_TinyTestSuite_beta/htmlObjectHarness/interact-dom-02-t.html b/test/W3C_SVG_12_TinyTestSuite_beta/htmlObjectHarness/interact-dom-02-t.html new file mode 100755 index 00000000..5366cfe9 --- /dev/null +++ b/test/W3C_SVG_12_TinyTestSuite_beta/htmlObjectHarness/interact-dom-02-t.html @@ -0,0 +1,101 @@ + + + + + + + + +SVG 1.2 Tiny test:interact-dom-02-t + + + + + + + + + + +
+ + + + + + + + + + + + +
+

interact-dom-02-t

+
+

FAIL

+
+ raster image of interact-dom-02-t +
+
+ + +
+

+ Verify basic support for DOM event listener registration. The root svg element has an + onload handler where a click event listener is registered on group element 'Start Button'. +

+

+ If UI events listener registration is supported (and UI events), when the user + clicks on the button a text node is inserted reading "Event Listeners supported". +

+

+ At the end of the test, the start test button in changed to pink, + and the click event listener is removed from the the start button. +

+

+ Subsequent clicks on the start button should cause no effect if the event listener has + been removed successfully. If additional lines of text appear in the document that say + "Event Listeners supported", then the implementation has not successfully removed the event listener. +

+

+ After clicking at least once on the button, the rendered image should be + exactly as the reference image, except for differences in text display. +

+

This test requires that the user agent support scripting.

+ +
+ + + diff --git a/test/W3C_SVG_12_TinyTestSuite_beta/htmlObjectHarness/interact-event-201-t.html b/test/W3C_SVG_12_TinyTestSuite_beta/htmlObjectHarness/interact-event-201-t.html new file mode 100755 index 00000000..a4412483 --- /dev/null +++ b/test/W3C_SVG_12_TinyTestSuite_beta/htmlObjectHarness/interact-event-201-t.html @@ -0,0 +1,82 @@ + + + + + + + + +SVG 1.2 Tiny test:interact-event-201-t + + + + + + + + + + +
+ + + + + + + + + + + + +
+

interact-event-201-t

+
+

FAIL

+
+ raster image of interact-event-201-t +
+
+ + +
+

+ Test on event bubbling. Moving focus should make a red rect visible/invisible +

+ +
+ + + diff --git a/test/W3C_SVG_12_TinyTestSuite_beta/htmlObjectHarness/interact-event-202-t.html b/test/W3C_SVG_12_TinyTestSuite_beta/htmlObjectHarness/interact-event-202-t.html new file mode 100755 index 00000000..62cfee1b --- /dev/null +++ b/test/W3C_SVG_12_TinyTestSuite_beta/htmlObjectHarness/interact-event-202-t.html @@ -0,0 +1,85 @@ + + + + + + + + +SVG 1.2 Tiny test:interact-event-202-t + + + + + + + + + + +
+ + + + + + + + + + + + +
+

interact-event-202-t

+
+

FAIL

+
+ raster image of interact-event-202-t +
+
+ + +
+

+ Testing event bubbling through 'use' elemnt. + Moving the mouse over the red rect should make a yellow rect visible underneath it. + Moving the mouse over the green rect should make a purple rect visible underneath it. + Moving the mouse away from the red/green rect should hide the rect underneath it again. +

+ +
+ + + diff --git a/test/W3C_SVG_12_TinyTestSuite_beta/htmlObjectHarness/interact-event-203-t.html b/test/W3C_SVG_12_TinyTestSuite_beta/htmlObjectHarness/interact-event-203-t.html new file mode 100755 index 00000000..df84b6ed --- /dev/null +++ b/test/W3C_SVG_12_TinyTestSuite_beta/htmlObjectHarness/interact-event-203-t.html @@ -0,0 +1,97 @@ + + + + + + + + +SVG 1.2 Tiny test:interact-event-203-t + + + + + + + + + + +
+ + + + + + + + + + + + +
+

interact-event-203-t

+
+

FAIL

+
+ raster image of interact-event-203-t +
+
+ + +
+

Tests 'mouseover' event on SVGElementInstance

+

+ This test contains four cases. The cases must produce the following results for the test to pass. + Case 1: On a mouseover event on the top square, all four squares must turn blue. + Case 2: On a mouseover event on the top middle square, all four squares must turn blue and a black stroke + must appear on the referencing square (element). + Case 3: On a mouseover event on the bottom middle square, all four squares must turn blue and a black + stroke must appear on the referencing square (element). + Case 4: On a mouseover event on the bottom square, all four squares must turn blue, and on a mousedown event + a black stroke must appear on the referencing square (element). +

+

+ What each case tests is as follows. + Case 1: mouseover event on SVGElementInstance. Referenceing an element that contains an event. + Case 2: mouseover event on referencing element. Event bubbling from SVGElementInstance to referencing element. + Case 3: mouseover event on parent of referencing element. Event bubbling from SVGElementInstance to referencing element ancestors. + Case 4: mousedown event on referencing element. SVGElementInstance is not effected by event listener on referencing element. +

+ +
+ + + diff --git a/test/W3C_SVG_12_TinyTestSuite_beta/htmlObjectHarness/interact-focus-201-t.html b/test/W3C_SVG_12_TinyTestSuite_beta/htmlObjectHarness/interact-focus-201-t.html new file mode 100755 index 00000000..804be8fb --- /dev/null +++ b/test/W3C_SVG_12_TinyTestSuite_beta/htmlObjectHarness/interact-focus-201-t.html @@ -0,0 +1,92 @@ + + + + + + + + +SVG 1.2 Tiny test:interact-focus-201-t + + + + + + + + + + +
+ + + + + + + + + + + + +
+

interact-focus-201-t

+
+

FAIL

+
+ raster image of interact-focus-201-t +
+
+ + +
+

Test Focusable Property on Animated Elements.

+

Two rectangles and a text element are targets of animateColor elements which begin on focusin and end on focusout.

+

The top-level SVG has a nav-next attribute referencing the text element.

+

When loading the file, initial focus will go to the text element, which should be red.

+

Moving to the next focus will turn the text black while making the blue rectangle green.

+

Moving to the next focus will return the rectangle to blue and make the red rectangle green.

+

Moving to the next focus will return the rectangle to red and turn the text red.

+

Focus navigation is user agent dependant but typically is navigated with the keyboard keys.

+

TAB or arrow keys move the focus while the ENTER key activates the focused element.

+

+ User agent dependent behavior is accepted with all focus tests. Focus can be given immediately to first element in the focus ring, + or held in the UA until focus is requested - then focus is given to the first element. +

+ +
+ + + diff --git a/test/W3C_SVG_12_TinyTestSuite_beta/htmlObjectHarness/interact-focus-202-t.html b/test/W3C_SVG_12_TinyTestSuite_beta/htmlObjectHarness/interact-focus-202-t.html new file mode 100755 index 00000000..79f3eb62 --- /dev/null +++ b/test/W3C_SVG_12_TinyTestSuite_beta/htmlObjectHarness/interact-focus-202-t.html @@ -0,0 +1,106 @@ + + + + + + + + +SVG 1.2 Tiny test:interact-focus-202-t + + + + + + + + + + +
+ + + + + + + + + + + + +
+

interact-focus-202-t

+
+

FAIL

+
+ raster image of interact-focus-202-t +
+
+ + +
+

Test Focusable Property

+

Testing the focusable property : its default value and animatability on text and anchor elements.

+

The 1st text is the target of animateColor which starts on focusin, and also has the focusable attribute set to false.

+

The 2nd text does not have a focusable attribute and is not the target of animations which start by focus events.

+

The 3rd text is the target of animateColor which starts on focusin.

+

The 4th text is the target of animateColor which starts on activate.

+

The 5th text is the child of an a element.

+

The 6th text is the child of an a element and also has the focusable attribute set to false.

+

The 7th text has the editable attribute set to simple.

+

The 8th text is the observer DOMFocusIn and DOMFocusOut handlers.

+

The 9th and 10th text elements are used to modify the focusable attribute of the 11th element.

+

+ The 11th text is the target of animateColor which starts on focusin, and also has the focusable attribute set to false. + The focusable attribute is modified by activate events on the 9th and 10th elements. +

+

The 12th and 13th text elements are used to modify the focusable attribute of the 14th element.

+

+ The 14th text is the child of an a element - the a element also has the focusable attribute set to false. + The focusable attribute is modified by activate events on the 12th and 13th elements. +

+ +

The focus ring will look like the following: 3, 4, 5, 7, 8, 9, 10, 12 and 13.

+

Activating the 9th text element will make the 11th element focusable.

+

Activating the 12th text element will make the 14th element focusable.

+ +

Focus navigation is user agent dependant but typically is navigated with the keyboard keys.

+

TAB or arrow keys move the focus while the ENTER key activates the focused element.

+ +
+ + + diff --git a/test/W3C_SVG_12_TinyTestSuite_beta/htmlObjectHarness/interact-focus-203-t.html b/test/W3C_SVG_12_TinyTestSuite_beta/htmlObjectHarness/interact-focus-203-t.html new file mode 100755 index 00000000..12157427 --- /dev/null +++ b/test/W3C_SVG_12_TinyTestSuite_beta/htmlObjectHarness/interact-focus-203-t.html @@ -0,0 +1,87 @@ + + + + + + + + +SVG 1.2 Tiny test:interact-focus-203-t + + + + + + + + + + +
+ + + + + + + + + + + + +
+

interact-focus-203-t

+
+

FAIL

+
+ raster image of interact-focus-203-t +
+
+ + +
+

Test Focusable Elements Outside the Viewport

+

+ User interaction should navigate focus starting at 1 and go through 5. + This test applies only to user agents which locate to focus which is outside of the viewport, and + thus the pass criteria for this test is optional. +

+

Focus navigation is user agent dependant but typically is navigated with the keyboard keys.

+

TAB or arrow keys move the focus while the ENTER key activates the focused element.

+ +
+ + + diff --git a/test/W3C_SVG_12_TinyTestSuite_beta/htmlObjectHarness/interact-focus-204-t.html b/test/W3C_SVG_12_TinyTestSuite_beta/htmlObjectHarness/interact-focus-204-t.html new file mode 100755 index 00000000..8966a1e1 --- /dev/null +++ b/test/W3C_SVG_12_TinyTestSuite_beta/htmlObjectHarness/interact-focus-204-t.html @@ -0,0 +1,85 @@ + + + + + + + + +SVG 1.2 Tiny test:interact-focus-204-t + + + + + + + + + + +
+ + + + + + + + + + + + +
+

interact-focus-204-t

+
+

FAIL

+
+ raster image of interact-focus-204-t +
+
+ + +
+

Test Focusable Elements - Focus Direction

+

Focused text should be red. The default focus is the number 5.

+

Cardinal focus changes should work as expected, with wrapping.

+

Next/Previous go to next/prev numerical value.

+

Focus navigation is user agent dependant but typically is navigated with the keyboard keys.

+

TAB or arrow keys move the focus while the ENTER key activates the focused element.

+ +
+ + + diff --git a/test/W3C_SVG_12_TinyTestSuite_beta/htmlObjectHarness/interact-focus-205-t.html b/test/W3C_SVG_12_TinyTestSuite_beta/htmlObjectHarness/interact-focus-205-t.html new file mode 100755 index 00000000..c9bf8792 --- /dev/null +++ b/test/W3C_SVG_12_TinyTestSuite_beta/htmlObjectHarness/interact-focus-205-t.html @@ -0,0 +1,83 @@ + + + + + + + + +SVG 1.2 Tiny test:interact-focus-205-t + + + + + + + + + + +
+ + + + + + + + + + + + +
+

interact-focus-205-t

+
+

FAIL

+
+ raster image of interact-focus-205-t +
+
+ + +
+

Test Focusable Elements - Nested Elements

+

The circle should first be focused (red), then each square should stay red, due to bubbling.

+

Focus navigation is user agent dependant but typically is navigated with the keyboard keys.

+

TAB or arrow keys move the focus while the ENTER key activates the focused element.

+ +
+ + + diff --git a/test/W3C_SVG_12_TinyTestSuite_beta/htmlObjectHarness/interact-focus-206-t.html b/test/W3C_SVG_12_TinyTestSuite_beta/htmlObjectHarness/interact-focus-206-t.html new file mode 100755 index 00000000..2cd2f557 --- /dev/null +++ b/test/W3C_SVG_12_TinyTestSuite_beta/htmlObjectHarness/interact-focus-206-t.html @@ -0,0 +1,85 @@ + + + + + + + + +SVG 1.2 Tiny test:interact-focus-206-t + + + + + + + + + + +
+ + + + + + + + + + + + +
+

interact-focus-206-t

+
+

FAIL

+
+ raster image of interact-focus-206-t +
+
+ + +
+

Test Focusable Elements - Invisible Items

+

+ Lines 1 to 3 should show up when receiving the focus. + Fill-opacity and visibility attributes are animated accordingly to show text. +

+

Line 4 should never receive the focus.

+ +
+ + + diff --git a/test/W3C_SVG_12_TinyTestSuite_beta/htmlObjectHarness/interact-focus-207-t.html b/test/W3C_SVG_12_TinyTestSuite_beta/htmlObjectHarness/interact-focus-207-t.html new file mode 100755 index 00000000..a4329b9b --- /dev/null +++ b/test/W3C_SVG_12_TinyTestSuite_beta/htmlObjectHarness/interact-focus-207-t.html @@ -0,0 +1,87 @@ + + + + + + + + +SVG 1.2 Tiny test:interact-focus-207-t + + + + + + + + + + +
+ + + + + + + + + + + + +
+

interact-focus-207-t

+
+

FAIL

+
+ raster image of interact-focus-207-t +
+
+ + +
+

This test tests initial focus within the svg document

+

+ The root SVG element has 'focusable' set to 'true'. + At start up an animation set element is used to change the poem + to red if the root element SVG has focus. +

+

Focus navigation is user agent dependant but typically is navigated with the keyboard keys.

+

TAB or arrow keys move the focus while the ENTER key activates the focused element.

+ +
+ + + diff --git a/test/W3C_SVG_12_TinyTestSuite_beta/htmlObjectHarness/interact-focus-208-t.html b/test/W3C_SVG_12_TinyTestSuite_beta/htmlObjectHarness/interact-focus-208-t.html new file mode 100755 index 00000000..bb774e0f --- /dev/null +++ b/test/W3C_SVG_12_TinyTestSuite_beta/htmlObjectHarness/interact-focus-208-t.html @@ -0,0 +1,115 @@ + + + + + + + + +SVG 1.2 Tiny test:interact-focus-208-t + + + + + + + + + + +
+ + + + + + + + + + + + +
+

interact-focus-208-t

+
+

FAIL

+
+ raster image of interact-focus-208-t +
+
+ + +
+

Test Focusable Elements - tspan Element

+

+ Each tspan has an animation that sets the fill to green upon receiving + focus. The focus should be moved in turn to "Old", "pond", "frogs", + "jumped", "in", "sound", "of" and then "water". +

+

+ For the test to pass: +

+ +

+ In the 2nd phrase there are two nested tspan elements: "jumped" is in + the inner tspan, so focus should be received by the outer two words + "frogs", "in" and then by the word "jumped". +

+

+ Focus navigation is user agent dependant but typically is navigated + with the keyboard keys. +

+

+ TAB or arrow keys move the focus while the ENTER key activates the + focused element. +

+ +
+ + + diff --git a/test/W3C_SVG_12_TinyTestSuite_beta/htmlObjectHarness/interact-focus-209-t.html b/test/W3C_SVG_12_TinyTestSuite_beta/htmlObjectHarness/interact-focus-209-t.html new file mode 100755 index 00000000..6d343e8f --- /dev/null +++ b/test/W3C_SVG_12_TinyTestSuite_beta/htmlObjectHarness/interact-focus-209-t.html @@ -0,0 +1,120 @@ + + + + + + + + +SVG 1.2 Tiny test:interact-focus-209-t + + + + + + + + + + +
+ + + + + + + + + + + + +
+

interact-focus-209-t

+
+

FAIL

+
+ raster image of interact-focus-209-t +
+
+ + +
+

Test Focusable Elements - tspan in a textArea

+

+ Each tspan has an animation that sets the fill to green upon receiving + focus. The focus should be moved in turn to "A", "lonely", "pond", "in", + "age-old", "stillness", "sleeps", "Apart," + "unstirred by sound or motion", "... till", "Suddenly", + "into", "it", "a", "lithe", "frog" and then "leaps". +

+

+ For the test to pass: +

+ +

+ In the 2nd line there are two nested tspan elements - "unstirred by + sound or motion" is in the inner tspan, so focus should be received + first by the outer two words "Apart", "till" and then by the inner + phrase. +

+

+ Focus navigation is user agent dependant but typically is navigated with + the keyboard keys. +

+

+ TAB or arrow keys move the focus while the ENTER key activates the + focused element. +

+ +
+ + + diff --git a/test/W3C_SVG_12_TinyTestSuite_beta/htmlObjectHarness/interact-focus-210-t.html b/test/W3C_SVG_12_TinyTestSuite_beta/htmlObjectHarness/interact-focus-210-t.html new file mode 100755 index 00000000..5a13a07e --- /dev/null +++ b/test/W3C_SVG_12_TinyTestSuite_beta/htmlObjectHarness/interact-focus-210-t.html @@ -0,0 +1,86 @@ + + + + + + + + +SVG 1.2 Tiny test:interact-focus-210-t + + + + + + + + + + +
+ + + + + + + + + + + + +
+

interact-focus-210-t

+
+

FAIL

+
+ raster image of interact-focus-210-t +
+
+ + +
+

Test Focusability with the 'use' Element

+

+ The first four occurrences of "focus next" will highlight all four top rects. + All four bottom rects should be able to receive the focus and be red when they have focus. +

+

Focus navigation is user agent dependant but typically is navigated with the keyboard keys.

+

TAB or arrow keys move the focus while the ENTER key activates the focused element.

+ +
+ + + diff --git a/test/W3C_SVG_12_TinyTestSuite_beta/htmlObjectHarness/interact-focus-211-t.html b/test/W3C_SVG_12_TinyTestSuite_beta/htmlObjectHarness/interact-focus-211-t.html new file mode 100755 index 00000000..71489f23 --- /dev/null +++ b/test/W3C_SVG_12_TinyTestSuite_beta/htmlObjectHarness/interact-focus-211-t.html @@ -0,0 +1,86 @@ + + + + + + + + +SVG 1.2 Tiny test:interact-focus-211-t + + + + + + + + + + +
+ + + + + + + + + + + + +
+

interact-focus-211-t

+
+

FAIL

+
+ raster image of interact-focus-211-t +
+
+ + +
+

Test Focusability with the 'use' Element

+

+ There are three 'use' copies of the poem arranged diagonally. + As each poem receives focus it should become highlighted. +

+

Focus navigation is user agent dependant but typically is navigated with the keyboard keys.

+

TAB or arrow keys move the focus while the ENTER key activates the focused element.

+ +
+ + + diff --git a/test/W3C_SVG_12_TinyTestSuite_beta/htmlObjectHarness/interact-focus-212-t.html b/test/W3C_SVG_12_TinyTestSuite_beta/htmlObjectHarness/interact-focus-212-t.html new file mode 100755 index 00000000..f0a0e0c6 --- /dev/null +++ b/test/W3C_SVG_12_TinyTestSuite_beta/htmlObjectHarness/interact-focus-212-t.html @@ -0,0 +1,83 @@ + + + + + + + + +SVG 1.2 Tiny test:interact-focus-212-t + + + + + + + + + + +
+ + + + + + + + + + + + +
+

interact-focus-212-t

+
+

FAIL

+
+ raster image of interact-focus-212-t +
+
+ + +
+

+ Test on focus with a use-element. Focus should move first to the "g" element and then to its children. + When it gets to the use-element focus is first set on the use (right column) and then its children. +

+ +
+ + + diff --git a/test/W3C_SVG_12_TinyTestSuite_beta/htmlObjectHarness/interact-order-04-t.html b/test/W3C_SVG_12_TinyTestSuite_beta/htmlObjectHarness/interact-order-04-t.html new file mode 100755 index 00000000..287bbdd5 --- /dev/null +++ b/test/W3C_SVG_12_TinyTestSuite_beta/htmlObjectHarness/interact-order-04-t.html @@ -0,0 +1,87 @@ + + + + + + + + +SVG 1.2 Tiny test:interact-order-04-t + + + + + + + + + + +
+ + + + + + + + + + + + +
+

interact-order-04-t

+
+

FAIL

+
+ raster image of interact-order-04-t +
+
+ + +
+

Test event bubbling of event attributes, part a.

+

+ The two circles test whether event bubbling is occurring to parents of + the target object, and whether the target object is able to prevent + bubbling. The supplemental text next to the circles describes what + should occur. +

+

This test requires that the user agent support scripting.

+ +
+ + + diff --git a/test/W3C_SVG_12_TinyTestSuite_beta/htmlObjectHarness/interact-order-05-t.html b/test/W3C_SVG_12_TinyTestSuite_beta/htmlObjectHarness/interact-order-05-t.html new file mode 100755 index 00000000..ece4c1d9 --- /dev/null +++ b/test/W3C_SVG_12_TinyTestSuite_beta/htmlObjectHarness/interact-order-05-t.html @@ -0,0 +1,87 @@ + + + + + + + + +SVG 1.2 Tiny test:interact-order-05-t + + + + + + + + + + +
+ + + + + + + + + + + + +
+

interact-order-05-t

+
+

FAIL

+
+ raster image of interact-order-05-t +
+
+ + +
+

Test event bubbling of event attributes, part b.

+

+ The two circles test whether events are handled in the proper order. + Events listeners and event attributes are processed before hyperlink + processing, which is processed before text selection. The supplemental + text next to the circles describes what should occur. +

+

This test requires that the user agent support scripting.

+ +
+ + + diff --git a/test/W3C_SVG_12_TinyTestSuite_beta/htmlObjectHarness/interact-order-06-t.html b/test/W3C_SVG_12_TinyTestSuite_beta/htmlObjectHarness/interact-order-06-t.html new file mode 100755 index 00000000..b063f90d --- /dev/null +++ b/test/W3C_SVG_12_TinyTestSuite_beta/htmlObjectHarness/interact-order-06-t.html @@ -0,0 +1,87 @@ + + + + + + + + +SVG 1.2 Tiny test:interact-order-06-t + + + + + + + + + + +
+ + + + + + + + + + + + +
+

interact-order-06-t

+
+

FAIL

+
+ raster image of interact-order-06-t +
+
+ + +
+

Test event bubbling of event attributes, part c.

+

+ The three strings tests event handling behavior on text. Text selection + only is available after event listeners and event attributes have been + processed, and after hyperlink processing has occurred. The supplemental + text below the text strings describes what should occur. +

+

This test requires that the user agent support scripting.

+ +
+ + + diff --git a/test/W3C_SVG_12_TinyTestSuite_beta/htmlObjectHarness/interact-pevents-02-t.html b/test/W3C_SVG_12_TinyTestSuite_beta/htmlObjectHarness/interact-pevents-02-t.html new file mode 100755 index 00000000..7b8823f3 --- /dev/null +++ b/test/W3C_SVG_12_TinyTestSuite_beta/htmlObjectHarness/interact-pevents-02-t.html @@ -0,0 +1,94 @@ + + + + + + + + +SVG 1.2 Tiny test:interact-pevents-02-t + + + + + + + + + + +
+ + + + + + + + + + + + +
+

interact-pevents-02-t

+
+

FAIL

+
+ raster image of interact-pevents-02-t +
+
+ + +
+

+ This test tests 'pointer-events' on text. Initially you should see four big rects with black stroke. In the + uppermost rect there should be 10 'O':s with black fill. In the second rect from the top there should be 10 'O':s + with no fill but with black stroke. In the third and fourth rects there should be no visible 'O':s at all. In the + fourth rect there should be two green rects, and in each of the other three rects there should be one green rect. +

+

+ Using the pointer device move the cursor over the rects all the rects from left to right. As the mouseover event + triggers the 'O':s will become visible and marked in either green (a pass) or red (a fail). +

+

+ The test has passed if after moving the cursor over all the rects: 1. all the 'O':s in the green rects have green + fill 2. there are no red 'O':s visible 3. there are 9 green 'O':s in the first and second rect, 4 in the third rect + and 6 in the fourth rect +

+ +
+ + + diff --git a/test/W3C_SVG_12_TinyTestSuite_beta/htmlObjectHarness/interact-pevents-05-t.html b/test/W3C_SVG_12_TinyTestSuite_beta/htmlObjectHarness/interact-pevents-05-t.html new file mode 100755 index 00000000..a50115d4 --- /dev/null +++ b/test/W3C_SVG_12_TinyTestSuite_beta/htmlObjectHarness/interact-pevents-05-t.html @@ -0,0 +1,105 @@ + + + + + + + + +SVG 1.2 Tiny test:interact-pevents-05-t + + + + + + + + + + +
+ + + + + + + + + + + + +
+

interact-pevents-05-t

+
+

FAIL

+
+ raster image of interact-pevents-05-t +
+
+ + +
+

Tests the pointer-events attribute with different 'visible' values

+

+ The test is passed if the following conditions are met: + - In the first row of squares, the fill and stroke of squares 1 and 3 only must trigger a pale red rectangle to appear + over the squares on mouseover. + - In the second row of squares, the fill and stroke of squares 1 and 3 only must trigger a pale red rectangle to appear + over the squares on mouseover. + - In the third row of squares, the fill only of squares 1, 2 and 3 must trigger a pale red rectangle to appear + over the squares on mouseover. + - In the fourth row of squares, the stroke only of squares 1, 2 and 3 must trigger a pale red rectangle to appear + over the squares on mouseover. + - In the fifth row of squares, the fill and stroke of squares 1, 2 and 3 must trigger a pale red rectangle to appear + over the squares on mouseover. +

+

+ The 2nd and 3rd columns represent respectively rects with no fill/stroke and transparent fill/stroke. + The 4th column (most right column) has a non activatable pointer event as the visibility of the column + is set to hidden. +

+

+ The first row tests the default value for pointer-event, i.e. visible fill and stroke will trigger an event. + The second row tests pointer-events="visiblePainted", i.e. visible fill and stroke will trigger an event. + The third row tests pointer-events="visibleFill", i.e. visible fill only an event. + The fourth row tests pointer-events="visibleStroke", i.e. visible stroke only an event. + The fifth row tests pointer-events="visible", i.e. visible fill and stroke will trigger an event. +

+ +
+ + + diff --git a/test/W3C_SVG_12_TinyTestSuite_beta/htmlObjectHarness/interact-pevents-06-t.html b/test/W3C_SVG_12_TinyTestSuite_beta/htmlObjectHarness/interact-pevents-06-t.html new file mode 100755 index 00000000..154557ec --- /dev/null +++ b/test/W3C_SVG_12_TinyTestSuite_beta/htmlObjectHarness/interact-pevents-06-t.html @@ -0,0 +1,103 @@ + + + + + + + + +SVG 1.2 Tiny test:interact-pevents-06-t + + + + + + + + + + +
+ + + + + + + + + + + + +
+

interact-pevents-06-t

+
+

FAIL

+
+ raster image of interact-pevents-06-t +
+
+ + +
+

Tests the pointer-events attribute with different painting values

+

+ The test is passed if the following conditions are met: + - In the first row of squares, the fill and stroke of squares 1, 3 and 4 only must trigger a pale red rectangle to appear + over the squares on mouseover. + - In the second row of squares, the fill only of all squares must trigger a pale red rectangle to appear + over the squares on mouseover. + - In the third row of squares, the stroke only of all must trigger a pale red rectangle to appear + over the squares on mouseover. + - In the fourth row of squares, the fill and stroke of all squares must trigger a pale red rectangle to appear + over the squares on mouseover. + - In the fifth row of squares, nothing is to trigger on mouseover. +

+

+ The 2nd and 3rd columns represent respectively rects with no fill/stroke and transparent fill/stroke. + The 4th column has visibility set to hidden. +

+

+ The first row tests pointer-events="painted", i.e. event on fill and stroke that are set. + The second row tests pointer-events="fill", i.e. event on a fill that is set. + The third row tests pointer-events="stroke", i.e. even on a stroke that is et. + The fourth row tests pointer-events="all", i.e. event on fill and stroke that are set. + The fifth row tests pointer-events="none", i.e. no event. +

+ +
+ + + diff --git a/test/W3C_SVG_12_TinyTestSuite_beta/htmlObjectHarness/interact-pevents-07-t.html b/test/W3C_SVG_12_TinyTestSuite_beta/htmlObjectHarness/interact-pevents-07-t.html new file mode 100755 index 00000000..69527872 --- /dev/null +++ b/test/W3C_SVG_12_TinyTestSuite_beta/htmlObjectHarness/interact-pevents-07-t.html @@ -0,0 +1,83 @@ + + + + + + + + +SVG 1.2 Tiny test:interact-pevents-07-t + + + + + + + + + + +
+ + + + + + + + + + + + +
+

interact-pevents-07-t

+
+

FAIL

+
+ raster image of interact-pevents-07-t +
+
+ + +
+

Testing pointer-events and rendering order

+

+ Rectangles should turn RED on mouseover Ovals should turn RED if Pointer-Events are set to "ALL" +

+ +
+ + + diff --git a/test/W3C_SVG_12_TinyTestSuite_beta/htmlObjectHarness/interact-pevents-08-t.html b/test/W3C_SVG_12_TinyTestSuite_beta/htmlObjectHarness/interact-pevents-08-t.html new file mode 100755 index 00000000..de0bb8dc --- /dev/null +++ b/test/W3C_SVG_12_TinyTestSuite_beta/htmlObjectHarness/interact-pevents-08-t.html @@ -0,0 +1,91 @@ + + + + + + + + +SVG 1.2 Tiny test:interact-pevents-08-t + + + + + + + + + + +
+ + + + + + + + + + + + +
+

interact-pevents-08-t

+
+

FAIL

+
+ raster image of interact-pevents-08-t +
+
+ + +
+

Tests when text is considered hit by pointer-events.

+

+ The test is passed if the following conditions are met: + - Any single character in either of the lines of text has 'mouseover' event and the fill of the + characters' assocated line of text is set to green. + - The fill of the characters' assocated text is set back to black on a 'mouseout' event. +

+

+ The dy of the glyphs vary quite a bit, so it's easy to tell if an implementation uses the text + boundingbox for pointer-events. According to SVG 1.1 pointer-events on text is not supposed to use the text boundingbox, + instead it should use the 'character cells'. +

+ +
+ + + diff --git a/test/W3C_SVG_12_TinyTestSuite_beta/htmlObjectHarness/interact-zoom-01-t.html b/test/W3C_SVG_12_TinyTestSuite_beta/htmlObjectHarness/interact-zoom-01-t.html new file mode 100755 index 00000000..c27a435d --- /dev/null +++ b/test/W3C_SVG_12_TinyTestSuite_beta/htmlObjectHarness/interact-zoom-01-t.html @@ -0,0 +1,90 @@ + + + + + + + + +SVG 1.2 Tiny test:interact-zoom-01-t + + + + + + + + + + +
+ + + + + + + + + + + + +
+

interact-zoom-01-t

+
+

FAIL

+
+ raster image of interact-zoom-01-t +
+
+ + +
+

+ Verify correct handling by Dynamic (interactive) viewers for the "zoomAndPan" attribute on the 'svg' element. This + is the first of three tests, and tests the default value. +

+

The test consists of a set of black circles with a blue stroke.

+

+ After the initial picture is displayed, the user should attempt to use the magnify controls that are required on + conforming Dynamic SVG viewers. The correct behaviour is that magnification and panning works correctly, as required + by a conformant viewer.. +

+

The rendered picture should match the reference image, except for possible variations in the labelling text (per CSS2 rules).

+ +
+ + + diff --git a/test/W3C_SVG_12_TinyTestSuite_beta/htmlObjectHarness/interact-zoom-02-t.html b/test/W3C_SVG_12_TinyTestSuite_beta/htmlObjectHarness/interact-zoom-02-t.html new file mode 100755 index 00000000..71f6370d --- /dev/null +++ b/test/W3C_SVG_12_TinyTestSuite_beta/htmlObjectHarness/interact-zoom-02-t.html @@ -0,0 +1,90 @@ + + + + + + + + +SVG 1.2 Tiny test:interact-zoom-02-t + + + + + + + + + + +
+ + + + + + + + + + + + +
+

interact-zoom-02-t

+
+

FAIL

+
+ raster image of interact-zoom-02-t +
+
+ + +
+

+ Verify correct handling by Dynamic (interactive) viewers for the "zoomAndPan" attribute on the 'svg' element. This + is the second of three tests, and tests the value "magnify". +

+

The test consists of a set of black circles with a blue stroke.

+

+ After the initial picture is displayed, the user should attempt to use the magnify controls that are required on + conforming Dynamic SVG viewers. The correct behaviour is that magnification and panning works correctly, as required + by a conformant viewer.. +

+

The rendered picture should match the reference image, except for possible variations in the labelling text (per CSS2 rules).

+ +
+ + + diff --git a/test/W3C_SVG_12_TinyTestSuite_beta/htmlObjectHarness/interact-zoom-03-t.html b/test/W3C_SVG_12_TinyTestSuite_beta/htmlObjectHarness/interact-zoom-03-t.html new file mode 100755 index 00000000..204d1309 --- /dev/null +++ b/test/W3C_SVG_12_TinyTestSuite_beta/htmlObjectHarness/interact-zoom-03-t.html @@ -0,0 +1,90 @@ + + + + + + + + +SVG 1.2 Tiny test:interact-zoom-03-t + + + + + + + + + + +
+ + + + + + + + + + + + +
+

interact-zoom-03-t

+
+

FAIL

+
+ raster image of interact-zoom-03-t +
+
+ + +
+

+ Verify correct handling by Dynamic (interactive) viewers for the "zoomAndPan" attribute on the 'svg' element. This + is the third of three tests, and tests the value "disable". +

+

The test consists of a set of black circles with a blue stroke.

+

+ After the initial picture is displayed, the user should attempt to use the magnify controls that are required on + conforming Dynamic SVG viewers. The correct behaviour is that the magnify and pan controls shall have no effect -- the + viewer shall disable them. +

+

The rendered picture should match the reference image, except for possible variations in the labelling text (per CSS2 rules).

+ +
+ + + diff --git a/test/W3C_SVG_12_TinyTestSuite_beta/htmlObjectHarness/intro-compat-201-t.html b/test/W3C_SVG_12_TinyTestSuite_beta/htmlObjectHarness/intro-compat-201-t.html new file mode 100755 index 00000000..17c7f5a7 --- /dev/null +++ b/test/W3C_SVG_12_TinyTestSuite_beta/htmlObjectHarness/intro-compat-201-t.html @@ -0,0 +1,87 @@ + + + + + + + + SVG 1.2 Tiny test:intro-compat-201-t + + + + + + + + +
+ + + + + + + + + + + + +
+

+ intro-compat-201-t

+
+ +

+ FAIL

+
+
+ raster image of intro-compat-201-t +
+
+
+

+ Test That UTF-16 is supported, as required by the XML specification. If the implementation + treats this file as UTF-8 then every second character will be treated as 0. This + will typically mean that the file will not load, since the XML elements and attributes + will not be reconginized. +

+
+ + + diff --git a/test/W3C_SVG_12_TinyTestSuite_beta/htmlObjectHarness/jpeg-required-201-t.html b/test/W3C_SVG_12_TinyTestSuite_beta/htmlObjectHarness/jpeg-required-201-t.html new file mode 100755 index 00000000..3e6dfb94 --- /dev/null +++ b/test/W3C_SVG_12_TinyTestSuite_beta/htmlObjectHarness/jpeg-required-201-t.html @@ -0,0 +1,82 @@ + + + + + + + + +SVG 1.2 Tiny test:jpeg-required-201-t + + + + + + + + + + +
+ + + + + + + + + + + + +
+

jpeg-required-201-t

+
+

FAIL

+
+ raster image of jpeg-required-201-t +
+
+ + +
+

+ Test RGB baseline JPEG with the most common chrominance subsampling, 4:1:1. +

+ +
+ + + diff --git a/test/W3C_SVG_12_TinyTestSuite_beta/htmlObjectHarness/jpeg-required-202-t.html b/test/W3C_SVG_12_TinyTestSuite_beta/htmlObjectHarness/jpeg-required-202-t.html new file mode 100755 index 00000000..2c0e66ce --- /dev/null +++ b/test/W3C_SVG_12_TinyTestSuite_beta/htmlObjectHarness/jpeg-required-202-t.html @@ -0,0 +1,82 @@ + + + + + + + + +SVG 1.2 Tiny test:jpeg-required-202-t + + + + + + + + + + +
+ + + + + + + + + + + + +
+

jpeg-required-202-t

+
+

FAIL

+
+ raster image of jpeg-required-202-t +
+
+ + +
+

+ Test RGB optimised baseline JPEG with the most common chrominance subsampling, 4:1:1. +

+ +
+ + + diff --git a/test/W3C_SVG_12_TinyTestSuite_beta/htmlObjectHarness/jpeg-required-203-t.html b/test/W3C_SVG_12_TinyTestSuite_beta/htmlObjectHarness/jpeg-required-203-t.html new file mode 100755 index 00000000..2eb23b00 --- /dev/null +++ b/test/W3C_SVG_12_TinyTestSuite_beta/htmlObjectHarness/jpeg-required-203-t.html @@ -0,0 +1,82 @@ + + + + + + + + +SVG 1.2 Tiny test:jpeg-required-203-t + + + + + + + + + + +
+ + + + + + + + + + + + +
+

jpeg-required-203-t

+
+

FAIL

+
+ raster image of jpeg-required-203-t +
+
+ + +
+

+ Test progressive, RGB optimised JPEG with the most common chrominance subsampling, 4:1:1. +

+ +
+ + + diff --git a/test/W3C_SVG_12_TinyTestSuite_beta/htmlObjectHarness/jpeg-required-204-t.html b/test/W3C_SVG_12_TinyTestSuite_beta/htmlObjectHarness/jpeg-required-204-t.html new file mode 100755 index 00000000..1ed1b37d --- /dev/null +++ b/test/W3C_SVG_12_TinyTestSuite_beta/htmlObjectHarness/jpeg-required-204-t.html @@ -0,0 +1,82 @@ + + + + + + + + +SVG 1.2 Tiny test:jpeg-required-204-t + + + + + + + + + + +
+ + + + + + + + + + + + +
+

jpeg-required-204-t

+
+

FAIL

+
+ raster image of jpeg-required-204-t +
+
+ + +
+

+ Test greyscale baseline JPEG. +

+ +
+ + + diff --git a/test/W3C_SVG_12_TinyTestSuite_beta/htmlObjectHarness/jpeg-required-205-t.html b/test/W3C_SVG_12_TinyTestSuite_beta/htmlObjectHarness/jpeg-required-205-t.html new file mode 100755 index 00000000..732ac16f --- /dev/null +++ b/test/W3C_SVG_12_TinyTestSuite_beta/htmlObjectHarness/jpeg-required-205-t.html @@ -0,0 +1,82 @@ + + + + + + + + +SVG 1.2 Tiny test:jpeg-required-205-t + + + + + + + + + + +
+ + + + + + + + + + + + +
+

jpeg-required-205-t

+
+

FAIL

+
+ raster image of jpeg-required-205-t +
+
+ + +
+

+ Test RGB optimised baseline JPEG with the most common chrominance subsampling, 4:1:1 and with multiple APP markers. +

+ +
+ + + diff --git a/test/W3C_SVG_12_TinyTestSuite_beta/htmlObjectHarness/jpeg-required-206-t.html b/test/W3C_SVG_12_TinyTestSuite_beta/htmlObjectHarness/jpeg-required-206-t.html new file mode 100755 index 00000000..b25242aa --- /dev/null +++ b/test/W3C_SVG_12_TinyTestSuite_beta/htmlObjectHarness/jpeg-required-206-t.html @@ -0,0 +1,82 @@ + + + + + + + + +SVG 1.2 Tiny test:jpeg-required-206-t + + + + + + + + + + +
+ + + + + + + + + + + + +
+

jpeg-required-206-t

+
+

FAIL

+
+ raster image of jpeg-required-206-t +
+
+ + +
+

+ Test RGB optimised JPEG with the most common chrominance subsampling, 4:1:1 and with a float DCT. +

+ +
+ + + diff --git a/test/W3C_SVG_12_TinyTestSuite_beta/htmlObjectHarness/jpeg-required-207-t.html b/test/W3C_SVG_12_TinyTestSuite_beta/htmlObjectHarness/jpeg-required-207-t.html new file mode 100755 index 00000000..d276afe7 --- /dev/null +++ b/test/W3C_SVG_12_TinyTestSuite_beta/htmlObjectHarness/jpeg-required-207-t.html @@ -0,0 +1,82 @@ + + + + + + + + +SVG 1.2 Tiny test:jpeg-required-207-t + + + + + + + + + + +
+ + + + + + + + + + + + +
+

jpeg-required-207-t

+
+

FAIL

+
+ raster image of jpeg-required-207-t +
+
+ + +
+

+ Test RGB optimised JPEG with no chrominance subsampling, 4:4:4. +

+ +
+ + + diff --git a/test/W3C_SVG_12_TinyTestSuite_beta/htmlObjectHarness/jpeg-required-208-t.html b/test/W3C_SVG_12_TinyTestSuite_beta/htmlObjectHarness/jpeg-required-208-t.html new file mode 100755 index 00000000..c367c1f3 --- /dev/null +++ b/test/W3C_SVG_12_TinyTestSuite_beta/htmlObjectHarness/jpeg-required-208-t.html @@ -0,0 +1,83 @@ + + + + + + + + +SVG 1.2 Tiny test:jpeg-required-208-t + + + + + + + + + + +
+ + + + + + + + + + + + +
+

jpeg-required-208-t

+
+

FAIL

+
+ raster image of jpeg-required-208-t +
+
+ + +
+

+ Test RGB optimised JPEG with very unusual chrominance subsampling: + 2x2, 4x1, 1x2. +

+ +
+ + + diff --git a/test/W3C_SVG_12_TinyTestSuite_beta/htmlObjectHarness/jpeg-required-209-t.html b/test/W3C_SVG_12_TinyTestSuite_beta/htmlObjectHarness/jpeg-required-209-t.html new file mode 100755 index 00000000..73cdd57d --- /dev/null +++ b/test/W3C_SVG_12_TinyTestSuite_beta/htmlObjectHarness/jpeg-required-209-t.html @@ -0,0 +1,82 @@ + + + + + + + + +SVG 1.2 Tiny test:jpeg-required-209-t + + + + + + + + + + +
+ + + + + + + + + + + + +
+

jpeg-required-209-t

+
+

FAIL

+
+ raster image of jpeg-required-209-t +
+
+ + +
+

+ Test RGB baseline JPEG with the most common chrominance subsampling, 4:1:1 and high compression level (low quality). +

+ +
+ + + diff --git a/test/W3C_SVG_12_TinyTestSuite_beta/htmlObjectHarness/linking-a-03-t.html b/test/W3C_SVG_12_TinyTestSuite_beta/htmlObjectHarness/linking-a-03-t.html new file mode 100755 index 00000000..919aff37 --- /dev/null +++ b/test/W3C_SVG_12_TinyTestSuite_beta/htmlObjectHarness/linking-a-03-t.html @@ -0,0 +1,89 @@ + + + + + + + + +SVG 1.2 Tiny test:linking-a-03-t + + + + + + + + + + +
+ + + + + + + + + + + + +
+

linking-a-03-t

+
+

FAIL

+
+ raster image of linking-a-03-t +
+
+ + +
+

+ This verifies the capability to handle links into SVG content, using the svgView fragment identifier form. + The test is passed if traversing this link shows a portion of the target + translated so that the green circle with id "circle-2" is in the top left corner of the viewer + frame. +

+

The initial view of this test contains one green arrow plus labelling text. The arrow is a link - follow the link.

+

+ The arrow links to ./images/linkingCircle-f.svg#svgView(transform(translate(64,227)))". +

+ +
+ + + diff --git a/test/W3C_SVG_12_TinyTestSuite_beta/htmlObjectHarness/linking-a-08-t.html b/test/W3C_SVG_12_TinyTestSuite_beta/htmlObjectHarness/linking-a-08-t.html new file mode 100755 index 00000000..0399b37f --- /dev/null +++ b/test/W3C_SVG_12_TinyTestSuite_beta/htmlObjectHarness/linking-a-08-t.html @@ -0,0 +1,83 @@ + + + + + + + + +SVG 1.2 Tiny test:linking-a-08-t + + + + + + + + + + +
+ + + + + + + + + + + + +
+

linking-a-08-t

+
+

FAIL

+
+ raster image of linking-a-08-t +
+
+ + +
+

+ This is a simple test for links on text elements. The upper subtest has an 'a' element + inside a 'text' element; the lower subtest has the 'a' outside the 'text'. Both must be working links. +

+ +
+ + + diff --git a/test/W3C_SVG_12_TinyTestSuite_beta/htmlObjectHarness/linking-a-201-t.html b/test/W3C_SVG_12_TinyTestSuite_beta/htmlObjectHarness/linking-a-201-t.html new file mode 100755 index 00000000..ec336698 --- /dev/null +++ b/test/W3C_SVG_12_TinyTestSuite_beta/htmlObjectHarness/linking-a-201-t.html @@ -0,0 +1,94 @@ + + + + + + + + +SVG 1.2 Tiny test:linking-a-201-t + + + + + + + + + + +
+ + + + + + + + + + + + +
+

linking-a-201-t

+
+

FAIL

+
+ raster image of linking-a-201-t +
+
+ + +
+

+ Verify target attribute has priority over xlink attribute on the 'a' element. The destination expressed by + "xlink:href=" is overridden when 'target' is specified on the 'a' element. +

+

+ For the test to pass; each arrow in the test, when clicked, must show the image of the + linkingToc-t.svg in a new frame. +

+

+ The test uses the 'rect' and 'polygon' elements, as well as basic fill (solid simple colors), stroke + (black and colored wide and 1-pixel lines), font-family (Arial) and font-size properties. +

+

+ This test was modified and renamed from linking-a-07-t.svg. +

+ +
+ + + diff --git a/test/W3C_SVG_12_TinyTestSuite_beta/htmlObjectHarness/linking-frag-201-t.html b/test/W3C_SVG_12_TinyTestSuite_beta/htmlObjectHarness/linking-frag-201-t.html new file mode 100755 index 00000000..1ab35365 --- /dev/null +++ b/test/W3C_SVG_12_TinyTestSuite_beta/htmlObjectHarness/linking-frag-201-t.html @@ -0,0 +1,102 @@ + + + + + + + + +SVG 1.2 Tiny test:linking-frag-201-t + + + + + + + + + + +
+ + + + + + + + + + + + +
+

linking-frag-201-t

+
+

FAIL

+
+ raster image of linking-frag-201-t +
+
+ + +
+

+ Testing Links to external and internal 'svgView' with Transforms. +

+

+ The first part of the test is passed if the rect links on the top line go to the linking-frag-202-t.svg file and + adjust the resulting view according to their respective text; + - The rect with 'Rotate' must link to the linking-frag-202-t.svg file and rotate resulting view + - The rect with 'Shift' must link to the linking-frag-202-t.svg file and shitf the resulting view + - The rect with 'Scale' must link to the linking-frag-202-t.svg file and scale the resulting view + - The rect with 'skewX' must link to the linking-frag-202-t.svg file and skew the resulting view along the X axis + - The rect with 'skewY' must link to the linking-frag-202-t.svg file and skew the resulting view along the Y axis + - The rect with 'identity' must link to the linking-frag-202-t.svg file and restore the view to an identity transformation. +

+

+ The second part of the test is passed if the rect links on the bottom line link to this file and adjust the + resulting view according to their respective text; + - The rect with 'Rotate' must link to this file and rotate resulting view + - The rect with 'Shift' must link to this file and shitf the resulting view + - The rect with 'Scale' must link to this file and scale the resulting view + - The rect with 'skewX' must link to this file and skew the resulting view along the X axis + - The rect with 'skewY' must link to this file and skew the resulting view along the Y axis + - The rect with 'identity' must link to this file and restore the view to an identity transformation. +

+ +
+ + + diff --git a/test/W3C_SVG_12_TinyTestSuite_beta/htmlObjectHarness/linking-frag-202-t.html b/test/W3C_SVG_12_TinyTestSuite_beta/htmlObjectHarness/linking-frag-202-t.html new file mode 100755 index 00000000..c2f26bc0 --- /dev/null +++ b/test/W3C_SVG_12_TinyTestSuite_beta/htmlObjectHarness/linking-frag-202-t.html @@ -0,0 +1,102 @@ + + + + + + + + +SVG 1.2 Tiny test:linking-frag-202-t + + + + + + + + + + +
+ + + + + + + + + + + + +
+

linking-frag-202-t

+
+

FAIL

+
+ raster image of linking-frag-202-t +
+
+ + +
+

+ Testing Links to external and internal 'svgView' with Transforms. +

+

+ The first part of the test is passed if the rect links on the top line go to the linking-frag-202-t.svg file and + adjust the resulting view according to their respective text; + - The rect with 'Rotate' must link to the linking-frag-201-t.svg file and rotate resulting view + - The rect with 'Shift' must link to the linking-frag-201-t.svg file and shitf the resulting view + - The rect with 'Scale' must link to the linking-frag-201-t.svg file and scale the resulting view + - The rect with 'skewX' must link to the linking-frag-201-t.svg file and skew the resulting view along the X axis + - The rect with 'skewY' must link to the linking-frag-201-t.svg file and skew the resulting view along the Y axis + - The rect with 'identity' must link to the linking-frag-201-t.svg file and restore the view to an identity transformation. +

+

+ The second part of the test is passed if the rect links on the bottom line link to this file and adjust the + resulting view according to their respective text; + - The rect with 'Rotate' must link to this file and rotate resulting view + - The rect with 'Shift' must link to this file and shitf the resulting view + - The rect with 'Scale' must link to this file and scale the resulting view + - The rect with 'skewX' must link to this file and skew the resulting view along the X axis + - The rect with 'skewY' must link to this file and skew the resulting view along the Y axis + - The rect with 'identity' must link to this file and restore the view to an identity transformation. +

+ +
+ + + diff --git a/test/W3C_SVG_12_TinyTestSuite_beta/htmlObjectHarness/linking-frag-203-t.html b/test/W3C_SVG_12_TinyTestSuite_beta/htmlObjectHarness/linking-frag-203-t.html new file mode 100755 index 00000000..0375c41a --- /dev/null +++ b/test/W3C_SVG_12_TinyTestSuite_beta/htmlObjectHarness/linking-frag-203-t.html @@ -0,0 +1,97 @@ + + + + + + + + +SVG 1.2 Tiny test:linking-frag-203-t + + + + + + + + + + +
+ + + + + + + + + + + + +
+

linking-frag-203-t

+
+

FAIL

+
+ raster image of linking-frag-203-t +
+
+ + +
+

Tests links to internal fragment identifiers.

+

+ Activating the link on the red circle should pan the viewport to + center the orange circle (which is initially located outside the viewport). +

+

+ Activating the link on the orange circle should pan the viewport to + center the yellow circle, and zoom out to show the entire yellow circle. +

+

+ Activating the link on the yellow circle should pan the viewport to center + the red circle, but remain at the existing zoom level (i.e. not zoom in). +

+

+ Note that the visual effect is only part of the pass criteria, and that the + changes in the viewport should be made using currentTranslate and currentScale, + not the viewBox; this part is currently not tested. +

+ +
+ + + diff --git a/test/W3C_SVG_12_TinyTestSuite_beta/htmlObjectHarness/linking-frag-204-t.html b/test/W3C_SVG_12_TinyTestSuite_beta/htmlObjectHarness/linking-frag-204-t.html new file mode 100755 index 00000000..3e9ee4f4 --- /dev/null +++ b/test/W3C_SVG_12_TinyTestSuite_beta/htmlObjectHarness/linking-frag-204-t.html @@ -0,0 +1,84 @@ + + + + + + + + +SVG 1.2 Tiny test:linking-frag-204-t + + + + + + + + + + +
+ + + + + + + + + + + + +
+

linking-frag-204-t

+
+

FAIL

+
+ raster image of linking-frag-204-t +
+
+ + +
+

Tests links to external fragment identifiers.

+

+ Activating the link on the green circle should load linking-frag-203-t and pan the viewport to + center the orange circle. +

+ +
+ + + diff --git a/test/W3C_SVG_12_TinyTestSuite_beta/htmlObjectHarness/linking-refs-201-t.html b/test/W3C_SVG_12_TinyTestSuite_beta/htmlObjectHarness/linking-refs-201-t.html new file mode 100755 index 00000000..c4520068 --- /dev/null +++ b/test/W3C_SVG_12_TinyTestSuite_beta/htmlObjectHarness/linking-refs-201-t.html @@ -0,0 +1,85 @@ + + + + + + + + +SVG 1.2 Tiny test:linking-refs-201-t + + + + + + + + + + +
+ + + + + + + + + + + + +
+

linking-refs-201-t

+
+

FAIL

+
+ raster image of linking-refs-201-t +
+
+ + +
+

External Animated Use Elements

+

+ A 'use' elements place various animated fragments. + A local animate element is then applied to further animate the fragment.- +

+

-

+ +
+ + + diff --git a/test/W3C_SVG_12_TinyTestSuite_beta/htmlObjectHarness/linking-refs-202-t.html b/test/W3C_SVG_12_TinyTestSuite_beta/htmlObjectHarness/linking-refs-202-t.html new file mode 100755 index 00000000..d1bfa96d --- /dev/null +++ b/test/W3C_SVG_12_TinyTestSuite_beta/htmlObjectHarness/linking-refs-202-t.html @@ -0,0 +1,87 @@ + + + + + + + + +SVG 1.2 Tiny test:linking-refs-202-t + + + + + + + + + + +
+ + + + + + + + + + + + +
+

linking-refs-202-t

+
+

FAIL

+
+ raster image of linking-refs-202-t +
+
+ + +
+

Images with 'use' Element

+

+ The first is an external PNG reference. + The second is an inline base64 image defined in an external file. +

+

+ Both images must be identical for the test to pass. +

+ +
+ + + diff --git a/test/W3C_SVG_12_TinyTestSuite_beta/htmlObjectHarness/linking-refs-203-t.html b/test/W3C_SVG_12_TinyTestSuite_beta/htmlObjectHarness/linking-refs-203-t.html new file mode 100755 index 00000000..f14c1dd8 --- /dev/null +++ b/test/W3C_SVG_12_TinyTestSuite_beta/htmlObjectHarness/linking-refs-203-t.html @@ -0,0 +1,96 @@ + + + + + + + + +SVG 1.2 Tiny test:linking-refs-203-t + + + + + + + + + + +
+ + + + + + + + + + + + +
+

linking-refs-203-t

+
+

FAIL

+
+ raster image of linking-refs-203-t +
+
+ + +
+

+ Tests various external fragments with 'use' element: + fill, stroke, text, group, multiple levels, name clash and circular references +

+

+ SVG fragments defined in an external file are invoked with the 'use' element. + The test is passed if the following objects are rendered: + - Right top; square with a horizontal gradient fill from orange to yellow, diagonal gradient stroke from blue to pink + - Right middle top; square with a diagonal gradient fill from blue to pink, horizontal gradient stroke from orange to yellow + - Right middle bottom; the letters ABC in an SVG font + - Right bottom; the English alphabet a to j in the shape of a square + - Left Top; square with horizontal gradient fill from orange to yellow, and 3 circles all with a blue to red gradient fill + running diagonally inside the square + - Left middle top; green square with a yellow circle in the middle + - Left middle bottom; red square + - Left bottom; two identical squares with light blue fill. +

+ +
+ + + diff --git a/test/W3C_SVG_12_TinyTestSuite_beta/htmlObjectHarness/linking-refs-204-t.html b/test/W3C_SVG_12_TinyTestSuite_beta/htmlObjectHarness/linking-refs-204-t.html new file mode 100755 index 00000000..8d8becf1 --- /dev/null +++ b/test/W3C_SVG_12_TinyTestSuite_beta/htmlObjectHarness/linking-refs-204-t.html @@ -0,0 +1,92 @@ + + + + + + + + +SVG 1.2 Tiny test:linking-refs-204-t + + + + + + + + + + +
+ + + + + + + + + + + + +
+

linking-refs-204-t

+
+

FAIL

+
+ raster image of linking-refs-204-t +
+
+ + +
+

+ External Fragments with 'use' Element. +

+

+ Tests SVG fragments defined in an external file are invoked with the 'use' element. + The test is passed if the following objects are rendered: + - Right top; square with red fill and blue stroke + - Right middle; square with black fill + - Right bottom; the letters 'A' in blue, 'B' in red, 'C' in blue + - Left top; square with red fill and a circle in the middle with a blue fill + - Left middle; square with green fill + - Left bottom; square with green transparent fill with an overlapping circle with a blue transparent fill. +

+ +
+ + + diff --git a/test/W3C_SVG_12_TinyTestSuite_beta/htmlObjectHarness/linking-refs-205-t.html b/test/W3C_SVG_12_TinyTestSuite_beta/htmlObjectHarness/linking-refs-205-t.html new file mode 100755 index 00000000..3eb41999 --- /dev/null +++ b/test/W3C_SVG_12_TinyTestSuite_beta/htmlObjectHarness/linking-refs-205-t.html @@ -0,0 +1,92 @@ + + + + + + + + +SVG 1.2 Tiny test:linking-refs-205-t + + + + + + + + + + +
+ + + + + + + + + + + + +
+

linking-refs-205-t

+
+

FAIL

+
+ raster image of linking-refs-205-t +
+
+ + +
+

+ Tests a 'use' element referencing an 'image' element and an 'a' element with xml:base. +

+

+ The test is passed if two identical images are displayed. +

+

+ The image on the right is located in the images directory (../images/) while the + image on the left is located in image2 directory (../images/image2). The image on + the right is specified in the svglib3.svg file using an 'image' element. The image + on the left is specified in the svglib3.svg using an 'a' element. The 'a' element + contains a group around it that specifies the image2 directory using 'xml:base'. +

+ +
+ + + diff --git a/test/W3C_SVG_12_TinyTestSuite_beta/htmlObjectHarness/linking-refs-206-t.html b/test/W3C_SVG_12_TinyTestSuite_beta/htmlObjectHarness/linking-refs-206-t.html new file mode 100755 index 00000000..58e3efbf --- /dev/null +++ b/test/W3C_SVG_12_TinyTestSuite_beta/htmlObjectHarness/linking-refs-206-t.html @@ -0,0 +1,93 @@ + + + + + + + + +SVG 1.2 Tiny test:linking-refs-206-t + + + + + + + + + + +
+ + + + + + + + + + + + +
+

linking-refs-206-t

+
+

FAIL

+
+ raster image of linking-refs-206-t +
+
+ + +
+

+ Tests that values for the xlink role and arcrole attributes are stored in the DOM. + The test is passed if the raster image and the vector image both have dark + green and light green borders, same as the reference image. +

+

+ The values for role and arcrole are based on the RDDL specifications of + well known link natures (role) and well known link purposes (arcrole). Roles uses the namespace URI (for XML content types) or the canonical IANA URI of the media type registration (for non-XML content). +

+

+ A uDOM script reads the values of the xlink role and arcrole attributes, + checks that they are the correct values, and sets the fill colour of some rectangles + from shades of red (meaning incorrect) to shades of green (meaning correct). +

+ +
+ + + diff --git a/test/W3C_SVG_12_TinyTestSuite_beta/htmlObjectHarness/linking-uri-03-t.html b/test/W3C_SVG_12_TinyTestSuite_beta/htmlObjectHarness/linking-uri-03-t.html new file mode 100755 index 00000000..2cdbacd5 --- /dev/null +++ b/test/W3C_SVG_12_TinyTestSuite_beta/htmlObjectHarness/linking-uri-03-t.html @@ -0,0 +1,104 @@ + + + + + + + + +SVG 1.2 Tiny test:linking-uri-03-t + + + + + + + + + + +
+ + + + + + + + + + + + +
+

linking-uri-03-t

+
+

FAIL

+
+ raster image of linking-uri-03-t +
+
+ + +
+

+ Verify the handling of the allowable xlink attributes on the 'a' element. The initial view of this test contains a + single green triangle, labelling text, and the usual template legend and frame. +

+

+ There is a link on the triangle, pointing to an external SVG file, which is in the images directory (../images/). + The target file contains SVG 'text' elements which comprise a TOC and brief description of all of the SVG Tiny 1.2 + test files for Linking. Upon clicking the triangle, the image of the linkingToc-t.svg file should replace the + initial view of this test case in the viewer frame. +

+

+ The purpose of the test is to verify that viewers tolerate the presence of xlink attributes on the 'a' element. The + presence of the attributes should not change the behavior of the test in any way. The results of executing the link + should be identical to executing the first (topmost) link of linking-uri-01-t. +

+

+ There are two reference images associated with this test case. The first illustrates the correct "start" or initial + state of the rendered SVG file. The second illustrates the correct image after the link is activated (to the + linkingToc-t.svg file). (Note. This harness does not yet provide access to multiple PNGs; the first, initial-state + PNG is shown.) +

+

+ The test uses the 'rect' element, as well as basic fill (solid simple colors), stroke (black and colored wide and + 1-pixel lines), font-family (Arial) and font-size properties. +

+ +
+ + + diff --git a/test/W3C_SVG_12_TinyTestSuite_beta/htmlObjectHarness/media-alevel-201-t.html b/test/W3C_SVG_12_TinyTestSuite_beta/htmlObjectHarness/media-alevel-201-t.html new file mode 100755 index 00000000..69fe76d6 --- /dev/null +++ b/test/W3C_SVG_12_TinyTestSuite_beta/htmlObjectHarness/media-alevel-201-t.html @@ -0,0 +1,87 @@ + + + + + + + + +SVG 1.2 Tiny test:media-alevel-201-t + + + + + + + + + + +
+ + + + + + + + + + + + +
+

media-alevel-201-t

+
+

FAIL

+
+ raster image of media-alevel-201-t +
+
+ + +
+

Testing 'audio' Element with the 'audio-level' Attribute

+

+ The scale at the bottom of the slide uses a 'set' element to modify the 'audio-level' on the sample audio element. + The 'audio' element can be triggered by activating the current focus. +

+

+ If the user agent does not support the 3GP media format, the test is still a pass. +

+ +
+ + + diff --git a/test/W3C_SVG_12_TinyTestSuite_beta/htmlObjectHarness/media-alevel-202-t.html b/test/W3C_SVG_12_TinyTestSuite_beta/htmlObjectHarness/media-alevel-202-t.html new file mode 100755 index 00000000..330ba135 --- /dev/null +++ b/test/W3C_SVG_12_TinyTestSuite_beta/htmlObjectHarness/media-alevel-202-t.html @@ -0,0 +1,89 @@ + + + + + + + + +SVG 1.2 Tiny test:media-alevel-202-t + + + + + + + + + + +
+ + + + + + + + + + + + +
+

media-alevel-202-t

+
+

FAIL

+
+ raster image of media-alevel-202-t +
+
+ + +
+

Testing 'video' Element with the 'audio-level' Attribute

+

+ The scale at the bottom of the slide uses a 'set' element to modify the 'audio-level' on the sample video element. +

+

+ The 'video' element can also be triggered by activating the current focus. +

+

+ If the user agent does not support the 3GP media format, the test is still a pass. +

+ +
+ + + diff --git a/test/W3C_SVG_12_TinyTestSuite_beta/htmlObjectHarness/media-alevel-203-t.html b/test/W3C_SVG_12_TinyTestSuite_beta/htmlObjectHarness/media-alevel-203-t.html new file mode 100755 index 00000000..30de10b7 --- /dev/null +++ b/test/W3C_SVG_12_TinyTestSuite_beta/htmlObjectHarness/media-alevel-203-t.html @@ -0,0 +1,85 @@ + + + + + + + + +SVG 1.2 Tiny test:media-alevel-203-t + + + + + + + + + + +
+ + + + + + + + + + + + +
+

media-alevel-203-t

+
+

FAIL

+
+ raster image of media-alevel-203-t +
+
+ + +
+

+ Test on audio level animation. audio-level is animated to many values between 0 and 1. The volume dial graphic animates to show the expected relative volume. +

+

+ If the user agent does not support the WAV media format, the test is still a pass. +

+ +
+ + + diff --git a/test/W3C_SVG_12_TinyTestSuite_beta/htmlObjectHarness/media-alevel-204-t.html b/test/W3C_SVG_12_TinyTestSuite_beta/htmlObjectHarness/media-alevel-204-t.html new file mode 100755 index 00000000..6ba0c133 --- /dev/null +++ b/test/W3C_SVG_12_TinyTestSuite_beta/htmlObjectHarness/media-alevel-204-t.html @@ -0,0 +1,85 @@ + + + + + + + + +SVG 1.2 Tiny test:media-alevel-204-t + + + + + + + + + + +
+ + + + + + + + + + + + +
+

media-alevel-204-t

+
+

FAIL

+
+ raster image of media-alevel-204-t +
+
+ + +
+

+ Test on animated audio-level. Two sound-clips have their audio-level animated to different values over 10 seconds. +

+

+ If the user agent does not support the WAV media format, the test is still a pass. +

+ +
+ + + diff --git a/test/W3C_SVG_12_TinyTestSuite_beta/htmlObjectHarness/media-alevel-205-t.html b/test/W3C_SVG_12_TinyTestSuite_beta/htmlObjectHarness/media-alevel-205-t.html new file mode 100755 index 00000000..19839850 --- /dev/null +++ b/test/W3C_SVG_12_TinyTestSuite_beta/htmlObjectHarness/media-alevel-205-t.html @@ -0,0 +1,85 @@ + + + + + + + + +SVG 1.2 Tiny test:media-alevel-205-t + + + + + + + + + + +
+ + + + + + + + + + + + +
+

media-alevel-205-t

+
+

FAIL

+
+ raster image of media-alevel-205-t +
+
+ + +
+

+ Test on audio volume control by animation. audio-level is animated from 0 to 1 over 10 seconds. +

+

+ If the user agent does not support the WAV media format, the test is still a pass. +

+ +
+ + + diff --git a/test/W3C_SVG_12_TinyTestSuite_beta/htmlObjectHarness/media-alevel-206-t.html b/test/W3C_SVG_12_TinyTestSuite_beta/htmlObjectHarness/media-alevel-206-t.html new file mode 100755 index 00000000..2ca0f94d --- /dev/null +++ b/test/W3C_SVG_12_TinyTestSuite_beta/htmlObjectHarness/media-alevel-206-t.html @@ -0,0 +1,85 @@ + + + + + + + + +SVG 1.2 Tiny test:media-alevel-206-t + + + + + + + + + + +
+ + + + + + + + + + + + +
+

media-alevel-206-t

+
+

FAIL

+
+ raster image of media-alevel-206-t +
+
+ + +
+

+ Test on audio-level inheritance in several child elements. audio-level on the first element is 0.5. audio-level on the second sound is halved to 0.25. audio-level on the third and fourth sounds are halved agian to 0.125 and 0.0625 respectively. +

+

+ If the user agent does not support the WAV media format, the test is still a pass. +

+ +
+ + + diff --git a/test/W3C_SVG_12_TinyTestSuite_beta/htmlObjectHarness/media-alevel-207-t.html b/test/W3C_SVG_12_TinyTestSuite_beta/htmlObjectHarness/media-alevel-207-t.html new file mode 100755 index 00000000..31d43575 --- /dev/null +++ b/test/W3C_SVG_12_TinyTestSuite_beta/htmlObjectHarness/media-alevel-207-t.html @@ -0,0 +1,85 @@ + + + + + + + + +SVG 1.2 Tiny test:media-alevel-207-t + + + + + + + + + + +
+ + + + + + + + + + + + +
+

media-alevel-207-t

+
+

FAIL

+
+ raster image of media-alevel-207-t +
+
+ + +
+

+ Test on audio. audio-level is set to "0" so no sound should be heard. +

+

+ If the user agent does not support the WAV media format, the test is still a pass. +

+ +
+ + + diff --git a/test/W3C_SVG_12_TinyTestSuite_beta/htmlObjectHarness/media-alevel-208-t.html b/test/W3C_SVG_12_TinyTestSuite_beta/htmlObjectHarness/media-alevel-208-t.html new file mode 100755 index 00000000..23e54945 --- /dev/null +++ b/test/W3C_SVG_12_TinyTestSuite_beta/htmlObjectHarness/media-alevel-208-t.html @@ -0,0 +1,85 @@ + + + + + + + + +SVG 1.2 Tiny test:media-alevel-208-t + + + + + + + + + + +
+ + + + + + + + + + + + +
+

media-alevel-208-t

+
+

FAIL

+
+ raster image of media-alevel-208-t +
+
+ + +
+

+ Test on audio. audio-level is set to "1" so a audio-file being repeated for 10s should be heard. +

+

+ If the user agent does not support the WAV media format, the test is still a pass. +

+ +
+ + + diff --git a/test/W3C_SVG_12_TinyTestSuite_beta/htmlObjectHarness/media-anim-201-t.html b/test/W3C_SVG_12_TinyTestSuite_beta/htmlObjectHarness/media-anim-201-t.html new file mode 100755 index 00000000..d9f03a8b --- /dev/null +++ b/test/W3C_SVG_12_TinyTestSuite_beta/htmlObjectHarness/media-anim-201-t.html @@ -0,0 +1,87 @@ + + + + + + + + +SVG 1.2 Tiny test:media-anim-201-t + + + + + + + + + + +
+ + + + + + + + + + + + +
+

media-anim-201-t

+
+

FAIL

+
+ raster image of media-anim-201-t +
+
+ + +
+

This test validates the Animation element with external references.

+

There are five references. Each one is a separate file.

+

The time scale loops from 0 to 10 seconds - the vertical red line pans from left to right.

+

In the first example the two rectangles are set to rotate 90 degrees alternatively.

+

In the second case the circle has focus. Since this is the only item that has focus it can not loose focus and should remain red even when an attempt is made to change focus.

+

The third example has a circle that is set to change to red on a mouseover event. On mouseout the circle should change back to grey.

+

The forth example invokes the same external file twice - two squares with a gradiant should be rotating in sync continously.

+

The last case calls an animation that should display a blue square with five gradiant circles all rotating continously.

+ +
+ + + diff --git a/test/W3C_SVG_12_TinyTestSuite_beta/htmlObjectHarness/media-anim-202-t.html b/test/W3C_SVG_12_TinyTestSuite_beta/htmlObjectHarness/media-anim-202-t.html new file mode 100755 index 00000000..3ed6ae43 --- /dev/null +++ b/test/W3C_SVG_12_TinyTestSuite_beta/htmlObjectHarness/media-anim-202-t.html @@ -0,0 +1,89 @@ + + + + + + + + +SVG 1.2 Tiny test:media-anim-202-t + + + + + + + + + + +
+ + + + + + + + + + + + +
+

media-anim-202-t

+
+

FAIL

+
+ raster image of media-anim-202-t +
+
+ + +
+

Animation Elements with External References

+

+ This test validates the animation element with external references with emphases on time based animations. + The same external file is used for all seven tests. +

+

+ The 'initialVisibility' attribute is not specified so the default should apply - 'whenStarted'. + In other words the animations should not be visible until they start and then they should disappear as the + fill is not set to 'freeze' so the initial state should be re-instated. +

+ +
+ + + diff --git a/test/W3C_SVG_12_TinyTestSuite_beta/htmlObjectHarness/media-anim-203-t.html b/test/W3C_SVG_12_TinyTestSuite_beta/htmlObjectHarness/media-anim-203-t.html new file mode 100755 index 00000000..1ddfdba5 --- /dev/null +++ b/test/W3C_SVG_12_TinyTestSuite_beta/htmlObjectHarness/media-anim-203-t.html @@ -0,0 +1,89 @@ + + + + + + + + +SVG 1.2 Tiny test:media-anim-203-t + + + + + + + + + + +
+ + + + + + + + + + + + +
+

media-anim-203-t

+
+

FAIL

+
+ raster image of media-anim-203-t +
+
+ + +
+

Animation Elements with External References

+

+ This test validates the animation element with external references with emphases on time based animations. + The same external file is used for all seven tests. +

+

+ The 'initialVisibility' attribute is not specified so the default should apply - 'whenStarted'. + In other words the animations should not be visible until they start and then they should disappear as the + fill is not set to 'freeze' so the initial state should be re-instated. +

+ +
+ + + diff --git a/test/W3C_SVG_12_TinyTestSuite_beta/htmlObjectHarness/media-anim-204-t.html b/test/W3C_SVG_12_TinyTestSuite_beta/htmlObjectHarness/media-anim-204-t.html new file mode 100755 index 00000000..b7ccdf2d --- /dev/null +++ b/test/W3C_SVG_12_TinyTestSuite_beta/htmlObjectHarness/media-anim-204-t.html @@ -0,0 +1,84 @@ + + + + + + + + +SVG 1.2 Tiny test:media-anim-204-t + + + + + + + + + + +
+ + + + + + + + + + + + +
+

media-anim-204-t

+
+

FAIL

+
+ raster image of media-anim-204-t +
+
+ + +
+

Animation Elements with External References

+

+ This test validates the animation element with external references with emphases on time based animations. + The same external file is used for all seven tests. +

+ +
+ + + diff --git a/test/W3C_SVG_12_TinyTestSuite_beta/htmlObjectHarness/media-anim-205-t.html b/test/W3C_SVG_12_TinyTestSuite_beta/htmlObjectHarness/media-anim-205-t.html new file mode 100755 index 00000000..fe53b1c8 --- /dev/null +++ b/test/W3C_SVG_12_TinyTestSuite_beta/htmlObjectHarness/media-anim-205-t.html @@ -0,0 +1,89 @@ + + + + + + + + +SVG 1.2 Tiny test:media-anim-205-t + + + + + + + + + + +
+ + + + + + + + + + + + +
+

media-anim-205-t

+
+

FAIL

+
+ raster image of media-anim-205-t +
+
+ + +
+

Animation Elements with External References

+

+ This is one of a series of test slides that exercise all the permitted values for the 'preserveAspectRatio' + attribute values. +

+

+ The external resource referenced by the animation element has a viewport-fill defined with a solid color. + This should be ignored and the local color of blue should be used. +

+

A semi-transparent yellow rectangle should be animating within each viewport.

+ +
+ + + diff --git a/test/W3C_SVG_12_TinyTestSuite_beta/htmlObjectHarness/media-anim-206-t.html b/test/W3C_SVG_12_TinyTestSuite_beta/htmlObjectHarness/media-anim-206-t.html new file mode 100755 index 00000000..00566b9c --- /dev/null +++ b/test/W3C_SVG_12_TinyTestSuite_beta/htmlObjectHarness/media-anim-206-t.html @@ -0,0 +1,86 @@ + + + + + + + + +SVG 1.2 Tiny test:media-anim-206-t + + + + + + + + + + +
+ + + + + + + + + + + + +
+

media-anim-206-t

+
+

FAIL

+
+ raster image of media-anim-206-t +
+
+ + +
+

Animation Elements with External References

+

This slide tests the 'viewport-fill' and 'viewport-fill-opacity' attributes defined locally.

+

+ The externally resource referenced by the animation element has a 'viewport-fill' defined with a black to yellow gradient. + This should be ignored and the local definitions should be used - red for the left, blue for the middle and semi-transparent black for the right. +

+

A semi-transparent yellow rectangle should be animating within each viewport.

+ +
+ + + diff --git a/test/W3C_SVG_12_TinyTestSuite_beta/htmlObjectHarness/media-anim-207-t.html b/test/W3C_SVG_12_TinyTestSuite_beta/htmlObjectHarness/media-anim-207-t.html new file mode 100755 index 00000000..2b2163a2 --- /dev/null +++ b/test/W3C_SVG_12_TinyTestSuite_beta/htmlObjectHarness/media-anim-207-t.html @@ -0,0 +1,85 @@ + + + + + + + + +SVG 1.2 Tiny test:media-anim-207-t + + + + + + + + + + +
+ + + + + + + + + + + + +
+

media-anim-207-t

+
+

FAIL

+
+ raster image of media-anim-207-t +
+
+ + +
+

Animation Elements with External References

+

This slide applies different transformations to the animation element.

+

+ The externally resource referenced by the animation element has a viewport-fill defined with a black to yellow gradient. + This should be ignored and over ridden by the color aqua. +

+ +
+ + + diff --git a/test/W3C_SVG_12_TinyTestSuite_beta/htmlObjectHarness/media-anim-208-t.html b/test/W3C_SVG_12_TinyTestSuite_beta/htmlObjectHarness/media-anim-208-t.html new file mode 100755 index 00000000..142dfd26 --- /dev/null +++ b/test/W3C_SVG_12_TinyTestSuite_beta/htmlObjectHarness/media-anim-208-t.html @@ -0,0 +1,89 @@ + + + + + + + + +SVG 1.2 Tiny test:media-anim-208-t + + + + + + + + + + +
+ + + + + + + + + + + + +
+

media-anim-208-t

+
+

FAIL

+
+ raster image of media-anim-208-t +
+
+ + +
+

Animation Elements with External References

+

+ This test validates the animation element with external references with emphases on time based animations. + The same external file is used for all seven tests. +

+

+ The 'initialVisibility' attribute is not specified so the default should apply - 'whenStarted'. + In other words the animations should not be visible until they start and then they should disappear as the + fill is not set to 'freeze' so the initial state should be re-instated. +

+ +
+ + + diff --git a/test/W3C_SVG_12_TinyTestSuite_beta/htmlObjectHarness/media-anim-209-t.html b/test/W3C_SVG_12_TinyTestSuite_beta/htmlObjectHarness/media-anim-209-t.html new file mode 100755 index 00000000..1a47f246 --- /dev/null +++ b/test/W3C_SVG_12_TinyTestSuite_beta/htmlObjectHarness/media-anim-209-t.html @@ -0,0 +1,84 @@ + + + + + + + + +SVG 1.2 Tiny test:media-anim-209-t + + + + + + + + + + +
+ + + + + + + + + + + + +
+

media-anim-209-t

+
+

FAIL

+
+ raster image of media-anim-209-t +
+
+ + +
+

Animation Elements with Discard

+

Four animation elements reference struct-discard-201.svg.

+

Each animation element is a target of a discard, at 6, 10, 14 and 18s.

+

To pass each animation element should discard at the specified time.

+

In addition, each referenced file should behave as indicated in the test struct-discard-201.

+ +
+ + + diff --git a/test/W3C_SVG_12_TinyTestSuite_beta/htmlObjectHarness/media-anim-210-t.html b/test/W3C_SVG_12_TinyTestSuite_beta/htmlObjectHarness/media-anim-210-t.html new file mode 100755 index 00000000..783bc1ee --- /dev/null +++ b/test/W3C_SVG_12_TinyTestSuite_beta/htmlObjectHarness/media-anim-210-t.html @@ -0,0 +1,88 @@ + + + + + + + + +SVG 1.2 Tiny test:media-anim-210-t + + + + + + + + + + +
+ + + + + + + + + + + + +
+

media-anim-210-t

+
+

FAIL

+
+ raster image of media-anim-210-t +
+
+ + +
+

Animation Elements with External References

+

+ This slide tests independent primary documents. Each referenced primary document has a separate script context. + This test is only applicable if application/ecmascript is available. +

+

Four animation elements reference a document which has an activate handler on a circle.

+

Focus should start on the top-left circle and move to top-right, bottom-left and bottom-right.

+

Activating the circle will toggle its radius size, but for the currently focused circle only.

+

This is due to the fact that each primary document has a separate script context.

+ +
+ + + diff --git a/test/W3C_SVG_12_TinyTestSuite_beta/htmlObjectHarness/media-anim-211-t.html b/test/W3C_SVG_12_TinyTestSuite_beta/htmlObjectHarness/media-anim-211-t.html new file mode 100755 index 00000000..01217778 --- /dev/null +++ b/test/W3C_SVG_12_TinyTestSuite_beta/htmlObjectHarness/media-anim-211-t.html @@ -0,0 +1,86 @@ + + + + + + + + +SVG 1.2 Tiny test:media-anim-211-t + + + + + + + + + + +
+ + + + + + + + + + + + +
+

media-anim-211-t

+
+

FAIL

+
+ raster image of media-anim-211-t +
+
+ + +
+

+ Animation Elements with Incorrect xlink:href + This slide tests the animation xlink:href attribute with invalid values +

+

+ The test will pass if the area within the red rectangle remains empty. +

+ +
+ + + diff --git a/test/W3C_SVG_12_TinyTestSuite_beta/htmlObjectHarness/media-anim-212-t.html b/test/W3C_SVG_12_TinyTestSuite_beta/htmlObjectHarness/media-anim-212-t.html new file mode 100755 index 00000000..7cd9562a --- /dev/null +++ b/test/W3C_SVG_12_TinyTestSuite_beta/htmlObjectHarness/media-anim-212-t.html @@ -0,0 +1,85 @@ + + + + + + + + +SVG 1.2 Tiny test:media-anim-212-t + + + + + + + + + + +
+ + + + + + + + + + + + +
+

media-anim-212-t

+
+

FAIL

+
+ raster image of media-anim-212-t +
+
+ + +
+

+ Animation Element with animating xlink:href + This slide tests animating the xlink:href attribute of animation elements + Every 2.5 seconds the animation will display a circle instead of a timeline. + The circle is focusable and as such should receive the focus and turn red. +

+ +
+ + + diff --git a/test/W3C_SVG_12_TinyTestSuite_beta/htmlObjectHarness/media-anim-213-t.html b/test/W3C_SVG_12_TinyTestSuite_beta/htmlObjectHarness/media-anim-213-t.html new file mode 100755 index 00000000..7dc931cb --- /dev/null +++ b/test/W3C_SVG_12_TinyTestSuite_beta/htmlObjectHarness/media-anim-213-t.html @@ -0,0 +1,82 @@ + + + + + + + + +SVG 1.2 Tiny test:media-anim-213-t + + + + + + + + + + +
+ + + + + + + + + + + + +
+

media-anim-213-t

+
+

FAIL

+
+ raster image of media-anim-213-t +
+
+ + +
+

The file is a basic test of animation element.

+

The rendered picture should match the reference image, except for possible variations in the labelling text (per CSS2 rules).

+

The test uses the 'rect' element, as well as basic fill (solid primary colors), stroke (black 1-pixel lines), font-family (Arial) and font-size properties.

+ +
+ + + diff --git a/test/W3C_SVG_12_TinyTestSuite_beta/htmlObjectHarness/media-audio-201-t.html b/test/W3C_SVG_12_TinyTestSuite_beta/htmlObjectHarness/media-audio-201-t.html new file mode 100755 index 00000000..a7ea6093 --- /dev/null +++ b/test/W3C_SVG_12_TinyTestSuite_beta/htmlObjectHarness/media-audio-201-t.html @@ -0,0 +1,91 @@ + + + + + + + + +SVG 1.2 Tiny test:media-audio-201-t + + + + + + + + + + +
+ + + + + + + + + + + + +
+

media-audio-201-t

+
+

FAIL

+
+ raster image of media-audio-201-t +
+
+ + +
+

+ Test on audio. +

+

+ Two audio elements referencing different media files start at 0s. +

+

+ Two distinct media audio file should be heard at the same time. +

+

+ If the user agent does not support the WAV media format, the test is still a pass. +

+ +
+ + + diff --git a/test/W3C_SVG_12_TinyTestSuite_beta/htmlObjectHarness/media-audio-202-t.html b/test/W3C_SVG_12_TinyTestSuite_beta/htmlObjectHarness/media-audio-202-t.html new file mode 100755 index 00000000..b5915c5e --- /dev/null +++ b/test/W3C_SVG_12_TinyTestSuite_beta/htmlObjectHarness/media-audio-202-t.html @@ -0,0 +1,91 @@ + + + + + + + + +SVG 1.2 Tiny test:media-audio-202-t + + + + + + + + + + +
+ + + + + + + + + + + + +
+

media-audio-202-t

+
+

FAIL

+
+ raster image of media-audio-202-t +
+
+ + +
+

+ Test on audio with repeatCount. +

+

+ An audio element has a repeatCount of 2. +

+

+ The audio media file should play twice. +

+

+ If the user agent does not support the WAV media format, the test is still a pass. +

+ +
+ + + diff --git a/test/W3C_SVG_12_TinyTestSuite_beta/htmlObjectHarness/media-audio-203-t.html b/test/W3C_SVG_12_TinyTestSuite_beta/htmlObjectHarness/media-audio-203-t.html new file mode 100755 index 00000000..503ff551 --- /dev/null +++ b/test/W3C_SVG_12_TinyTestSuite_beta/htmlObjectHarness/media-audio-203-t.html @@ -0,0 +1,91 @@ + + + + + + + + +SVG 1.2 Tiny test:media-audio-203-t + + + + + + + + + + +
+ + + + + + + + + + + + +
+

media-audio-203-t

+
+

FAIL

+
+ raster image of media-audio-203-t +
+
+ + +
+

+ Test on audio with repeatCount. +

+

+ An audio element has a repeatCount of indefinite. +

+

+ The audio media file should loop indefinitely. +

+

+ If the user agent does not support the WAV media format, the test is still a pass. +

+ +
+ + + diff --git a/test/W3C_SVG_12_TinyTestSuite_beta/htmlObjectHarness/media-audio-204-t.html b/test/W3C_SVG_12_TinyTestSuite_beta/htmlObjectHarness/media-audio-204-t.html new file mode 100755 index 00000000..360e1821 --- /dev/null +++ b/test/W3C_SVG_12_TinyTestSuite_beta/htmlObjectHarness/media-audio-204-t.html @@ -0,0 +1,91 @@ + + + + + + + + +SVG 1.2 Tiny test:media-audio-204-t + + + + + + + + + + +
+ + + + + + + + + + + + +
+

media-audio-204-t

+
+

FAIL

+
+ raster image of media-audio-204-t +
+
+ + +
+

+ Test on audio with repeatCount. +

+

+ An audio element has a repeatCount of 5 and an end attribute of 3s. +

+

+ To pass the audio media file should play for 3 seconds and NOT repeat 5 times. +

+

+ If the user agent does not support the WAV media format, the test is still a pass. +

+ +
+ + + diff --git a/test/W3C_SVG_12_TinyTestSuite_beta/htmlObjectHarness/media-audio-205-t.html b/test/W3C_SVG_12_TinyTestSuite_beta/htmlObjectHarness/media-audio-205-t.html new file mode 100755 index 00000000..892b4692 --- /dev/null +++ b/test/W3C_SVG_12_TinyTestSuite_beta/htmlObjectHarness/media-audio-205-t.html @@ -0,0 +1,88 @@ + + + + + + + + +SVG 1.2 Tiny test:media-audio-205-t + + + + + + + + + + +
+ + + + + + + + + + + + +
+

media-audio-205-t

+
+

FAIL

+
+ raster image of media-audio-205-t +
+
+ + +
+

+ An audio element has a begin attribute of 3 seconds. +

+

+ To pass the audio media file should play 3 seconds after loading the svg file. +

+

+ If the user agent does not support the WAV media format, the test is still a pass. +

+ +
+ + + diff --git a/test/W3C_SVG_12_TinyTestSuite_beta/htmlObjectHarness/media-audio-206-t.html b/test/W3C_SVG_12_TinyTestSuite_beta/htmlObjectHarness/media-audio-206-t.html new file mode 100755 index 00000000..8341bf58 --- /dev/null +++ b/test/W3C_SVG_12_TinyTestSuite_beta/htmlObjectHarness/media-audio-206-t.html @@ -0,0 +1,106 @@ + + + + + + + + +SVG 1.2 Tiny test:media-audio-206-t + + + + + + + + + + +
+ + + + + + + + + + + + +
+

media-audio-206-t

+
+

FAIL

+
+ raster image of media-audio-206-t +
+
+ + +
+

+ An audio file begins at 2s and 10s, has a dur of 1, and a repeatCount of 2. +

+

+ A text element animates y values with begin at 2s and 10s, a dur of 1, and a repeatCount of 2. +

+

+ At 2s the media audio file should be audible and repeat twice. +

+

+ At 2s the media audio file should be audible and repeat twice. +

+

+ Also at 2s, the text should animate downwards twice. +

+

+ At 10s the media audio file should be audible and repeat twice. +

+

+ At 10s the media audio file should be audible and repeat twice. +

+

+ Also at 10s, the text should animate downwards twice. +

+

+ If the user agent does not support the WAV media format, the test is still a pass. +

+ +
+ + + diff --git a/test/W3C_SVG_12_TinyTestSuite_beta/htmlObjectHarness/media-audio-207-t.html b/test/W3C_SVG_12_TinyTestSuite_beta/htmlObjectHarness/media-audio-207-t.html new file mode 100755 index 00000000..a51cc5e8 --- /dev/null +++ b/test/W3C_SVG_12_TinyTestSuite_beta/htmlObjectHarness/media-audio-207-t.html @@ -0,0 +1,100 @@ + + + + + + + + +SVG 1.2 Tiny test:media-audio-207-t + + + + + + + + + + +
+ + + + + + + + + + + + +
+

media-audio-207-t

+
+

FAIL

+
+ raster image of media-audio-207-t +
+
+ + +
+

+ An audio file begins at 4s and 11s, ends at 10s, has a dur of 1, repeatCount of 2 and repeatDur of 6. +

+

+ A text element animates y values with begin at 4s and 11s, end at 10s, a dur of 1, repeatCount of 2 and repeatDur of 6. +

+

+ At 4s the media audio file should be audible and repeat twice. +

+

+ At 4s the media audio file should be audible and repeat twice. +

+

+ Also at 4s, the text should animate downwards twice. +

+

+ Nothing should be audible or animate at 11s, since the animations end at 10s. +

+

+ If the user agent does not support the WAV media format, the test is still a pass. +

+ +
+ + + diff --git a/test/W3C_SVG_12_TinyTestSuite_beta/htmlObjectHarness/media-audio-208-t.html b/test/W3C_SVG_12_TinyTestSuite_beta/htmlObjectHarness/media-audio-208-t.html new file mode 100755 index 00000000..d78ad40f --- /dev/null +++ b/test/W3C_SVG_12_TinyTestSuite_beta/htmlObjectHarness/media-audio-208-t.html @@ -0,0 +1,91 @@ + + + + + + + + +SVG 1.2 Tiny test:media-audio-208-t + + + + + + + + + + +
+ + + + + + + + + + + + +
+

media-audio-208-t

+
+

FAIL

+
+ raster image of media-audio-208-t +
+
+ + +
+

+ An audio element 'sound1' starts at 0s. +

+

+ A second audio element 'sound2' starts at sound1.end. +

+

+ The audio media file for sound1 will play followed by the media file for sound2. +

+

+ If the user agent does not support the WAV media format, the test is still a pass. +

+ +
+ + + diff --git a/test/W3C_SVG_12_TinyTestSuite_beta/htmlObjectHarness/media-audio-209-t.html b/test/W3C_SVG_12_TinyTestSuite_beta/htmlObjectHarness/media-audio-209-t.html new file mode 100755 index 00000000..6df63504 --- /dev/null +++ b/test/W3C_SVG_12_TinyTestSuite_beta/htmlObjectHarness/media-audio-209-t.html @@ -0,0 +1,91 @@ + + + + + + + + +SVG 1.2 Tiny test:media-audio-209-t + + + + + + + + + + +
+ + + + + + + + + + + + +
+

media-audio-209-t

+
+

FAIL

+
+ raster image of media-audio-209-t +
+
+ + +
+

+ A rectangle is animating its width between 0 and 3s. +

+

+ An audio element has its begin and end attributes set to the begin and end attributes of the rect animation. +

+

+ The sound will repeat while the bar is moving. +

+

+ If the user agent does not support the WAV media format, the test is still a pass. +

+ +
+ + + diff --git a/test/W3C_SVG_12_TinyTestSuite_beta/htmlObjectHarness/media-audio-210-t.html b/test/W3C_SVG_12_TinyTestSuite_beta/htmlObjectHarness/media-audio-210-t.html new file mode 100755 index 00000000..37bae768 --- /dev/null +++ b/test/W3C_SVG_12_TinyTestSuite_beta/htmlObjectHarness/media-audio-210-t.html @@ -0,0 +1,91 @@ + + + + + + + + +SVG 1.2 Tiny test:media-audio-210-t + + + + + + + + + + +
+ + + + + + + + + + + + +
+

media-audio-210-t

+
+

FAIL

+
+ raster image of media-audio-210-t +
+
+ + +
+

+ An audio element 'mondays' begains at 0s and also at problem.end, with a repeatDur of 3s. +

+

+ An audio element 'problem' begains at mondays.end, with a repeatDur of 3s. +

+

+ The two sounds should take turns and play for 3 seconds each. +

+

+ If the user agent does not support the WAV media format, the test is still a pass. +

+ +
+ + + diff --git a/test/W3C_SVG_12_TinyTestSuite_beta/htmlObjectHarness/media-audio-211-t.html b/test/W3C_SVG_12_TinyTestSuite_beta/htmlObjectHarness/media-audio-211-t.html new file mode 100755 index 00000000..3fee2247 --- /dev/null +++ b/test/W3C_SVG_12_TinyTestSuite_beta/htmlObjectHarness/media-audio-211-t.html @@ -0,0 +1,88 @@ + + + + + + + + +SVG 1.2 Tiny test:media-audio-211-t + + + + + + + + + + +
+ + + + + + + + + + + + +
+

media-audio-211-t

+
+

FAIL

+
+ raster image of media-audio-211-t +
+
+ + +
+

+ An audio element begins at 1s and ends at 3s and is the child of a defs element. +

+

+ The audio media file should be muted. +

+

+ If the user agent does not support the WAV media format, the test is still a pass. +

+ +
+ + + diff --git a/test/W3C_SVG_12_TinyTestSuite_beta/htmlObjectHarness/media-audio-212-t.html b/test/W3C_SVG_12_TinyTestSuite_beta/htmlObjectHarness/media-audio-212-t.html new file mode 100755 index 00000000..acdbe37e --- /dev/null +++ b/test/W3C_SVG_12_TinyTestSuite_beta/htmlObjectHarness/media-audio-212-t.html @@ -0,0 +1,97 @@ + + + + + + + + +SVG 1.2 Tiny test:media-audio-212-t + + + + + + + + + + +
+ + + + + + + + + + + + +
+

media-audio-212-t

+
+

FAIL

+
+ raster image of media-audio-212-t +
+
+ + +
+

+ Two audio elements reference the same media file, start at 0s, have a dur of 2s and a repeatCount of 5. +

+

+ The 1st audio element has its display attribute set to none between 4 and 6 seconds. +

+

+ The 2nd use element has its visibility attribute set to hidden between 4 and 6 seconds. +

+

+ The 1st audio element should be muted bewteen 4-6 seconds +

+

+ The 2nd audio element should be muted bewteen 4-6 seconds +

+

+ If the user agent does not support the WAV media format, the test is still a pass. +

+ +
+ + + diff --git a/test/W3C_SVG_12_TinyTestSuite_beta/htmlObjectHarness/media-audio-213-t.html b/test/W3C_SVG_12_TinyTestSuite_beta/htmlObjectHarness/media-audio-213-t.html new file mode 100755 index 00000000..d8d9fbb9 --- /dev/null +++ b/test/W3C_SVG_12_TinyTestSuite_beta/htmlObjectHarness/media-audio-213-t.html @@ -0,0 +1,100 @@ + + + + + + + + +SVG 1.2 Tiny test:media-audio-213-t + + + + + + + + + + +
+ + + + + + + + + + + + +
+

media-audio-213-t

+
+

FAIL

+
+ raster image of media-audio-213-t +
+
+ + +
+

+ Two audio elements are children of a defs element and reference the same media file, start at 0s, have a dur of 2s and a repeatCount of 5. +

+

+ The audio elements are each referenced by a single use element. +

+

+ The 1st use element has its display attribute set to none between 4 and 6 seconds. +

+

+ The 2nd use element has its visibility attribute set to hidden between 4 and 6 seconds. +

+

+ The 1st audio element should be muted bewteen 4-6 seconds +

+

+ The 2nd audio element should be muted bewteen 4-6 seconds +

+

+ If the user agent does not support the WAV media format, the test is still a pass. +

+ +
+ + + diff --git a/test/W3C_SVG_12_TinyTestSuite_beta/htmlObjectHarness/media-audio-214-t.html b/test/W3C_SVG_12_TinyTestSuite_beta/htmlObjectHarness/media-audio-214-t.html new file mode 100755 index 00000000..4109da27 --- /dev/null +++ b/test/W3C_SVG_12_TinyTestSuite_beta/htmlObjectHarness/media-audio-214-t.html @@ -0,0 +1,86 @@ + + + + + + + + +SVG 1.2 Tiny test:media-audio-214-t + + + + + + + + + + +
+ + + + + + + + + + + + +
+

media-audio-214-t

+
+

FAIL

+
+ raster image of media-audio-214-t +
+
+ + +
+

+ Audio Elements with Incorrect xlink:href. + This slide tests the audio xlink:href attribute with invalid values. +

+

+ The test will pass if no audio can be heard. +

+ +
+ + + diff --git a/test/W3C_SVG_12_TinyTestSuite_beta/htmlObjectHarness/media-audio-215-t.html b/test/W3C_SVG_12_TinyTestSuite_beta/htmlObjectHarness/media-audio-215-t.html new file mode 100755 index 00000000..a0b80ee4 --- /dev/null +++ b/test/W3C_SVG_12_TinyTestSuite_beta/htmlObjectHarness/media-audio-215-t.html @@ -0,0 +1,131 @@ + + + + + + + + +SVG 1.2 Tiny test:media-audio-215-t + + + + + + + + + + +
+ + + + + + + + + + + + +
+

media-audio-215-t

+
+

FAIL

+
+ raster image of media-audio-215-t +
+
+ + +
+

+ Tests the audio-level property for nested audio elements and clamping + of audio-level. +

+

+ The test consists of 6 subtests. When each audio sub-test is executed a + corresponding rect will turn blue. When each audio sub-test is + finished the corresponding rect will turn gray again. For this test to pass, all subtests must + have a green rectangle next to them. + + The audio must also be heard to pass this test. If the user agent does not support the WAV media format, the test is still a pass. +

+

+ The 1st subtest has an audio-level = 1. To pass this subtest the audio + must be played at the system volume. +

+

+ The 2nd subtest has an audio-level = 2. To pass this subtest the audio + must be played at the system volume. +

+

+ The 3rd subtest has an audio element with an audio-level = 2. Within + the audio element there is a child audio element with an + audio-level = 0.5. The source audio is the child audio element. To pass + this subtest the audio must be played at 1/2 the system volume. +

+

+ The 4th subtest has an audio element with an audio-level = 0.5. Within + the audio element there is a child audio element with an + audio-level = 2. The source audio is the child audio element. To pass + this subtest the audio must be played at 1/2 the system volume. +

+

+ The 5th subtest has three audio elements. The first audio element has + an audio-level = 0.5 and is the parent audio element. The second audio + element has an audio-level = 2 and is a child to the first audio + element. The third audio element has an audio-level = 0.5 and is a + child to the second audio element. The source audio is third audio + element. To pass this subtest the audio must be played at 1/4 the + system volume. +

+

+ The 6th subtest has four audio elements. The first audio element has + an audio-level = to the audio level of the 3rd audio element (0.5). The + second audio element references an audio element from another subtest + with an audio-level of 2. The second audio element is a child of the + first audio element. The third audio element has an audio-level = 0.5 + and is a child of the second audio element. The fourth audio element + has an audio-level of 2 and is a child of the third audio element. The + source audio is the fourth audio element. To pass this subtest the + audio must be played at 1/4 the system volume. +

+ +
+ + + diff --git a/test/W3C_SVG_12_TinyTestSuite_beta/htmlObjectHarness/media-video-201-t.html b/test/W3C_SVG_12_TinyTestSuite_beta/htmlObjectHarness/media-video-201-t.html new file mode 100755 index 00000000..8233a449 --- /dev/null +++ b/test/W3C_SVG_12_TinyTestSuite_beta/htmlObjectHarness/media-video-201-t.html @@ -0,0 +1,87 @@ + + + + + + + + +SVG 1.2 Tiny test:media-video-201-t + + + + + + + + + + +
+ + + + + + + + + + + + +
+

media-video-201-t

+
+

FAIL

+
+ raster image of media-video-201-t +
+
+ + +
+

Video Width and Height

+

+ The frame contains a video with width and height not specified - these should default + to 0 and nothing should be rendered. +

+

+ If the user agent does not support the 3GP media format, the test is still a pass. +

+ +
+ + + diff --git a/test/W3C_SVG_12_TinyTestSuite_beta/htmlObjectHarness/media-video-202-t.html b/test/W3C_SVG_12_TinyTestSuite_beta/htmlObjectHarness/media-video-202-t.html new file mode 100755 index 00000000..87bff80a --- /dev/null +++ b/test/W3C_SVG_12_TinyTestSuite_beta/htmlObjectHarness/media-video-202-t.html @@ -0,0 +1,84 @@ + + + + + + + + +SVG 1.2 Tiny test:media-video-202-t + + + + + + + + + + +
+ + + + + + + + + + + + +
+

media-video-202-t

+
+

FAIL

+
+ raster image of media-video-202-t +
+
+ + +
+

Video Width and Height

+

The video should play immediately and disappear once complete.

+

+ If the user agent does not support the 3GP media format, the test is still a pass. +

+ +
+ + + diff --git a/test/W3C_SVG_12_TinyTestSuite_beta/htmlObjectHarness/media-video-203-t.html b/test/W3C_SVG_12_TinyTestSuite_beta/htmlObjectHarness/media-video-203-t.html new file mode 100755 index 00000000..d8835eff --- /dev/null +++ b/test/W3C_SVG_12_TinyTestSuite_beta/htmlObjectHarness/media-video-203-t.html @@ -0,0 +1,90 @@ + + + + + + + + +SVG 1.2 Tiny test:media-video-203-t + + + + + + + + + + +
+ + + + + + + + + + + + +
+

media-video-203-t

+
+

FAIL

+
+ raster image of media-video-203-t +
+
+ + +
+

Video with TransformBehavior Set to Pinned

+

+ This file tests the transformBehavior attribute set to 'pinned'. + The video should always overlap the two crossing lines, even during zoom/pan, proving it + is always rendered at its native resolution, and pinned at its the center (the blue dot). + If the video is rendered inside the small rotated rectangle, it means the transformBehavior + attribute is not applied / supported. +

+

+ If the user agent does not support the 3GP media format, the test is still a pass. +

+ +
+ + + diff --git a/test/W3C_SVG_12_TinyTestSuite_beta/htmlObjectHarness/media-video-204-t.html b/test/W3C_SVG_12_TinyTestSuite_beta/htmlObjectHarness/media-video-204-t.html new file mode 100755 index 00000000..78bdf908 --- /dev/null +++ b/test/W3C_SVG_12_TinyTestSuite_beta/htmlObjectHarness/media-video-204-t.html @@ -0,0 +1,90 @@ + + + + + + + + +SVG 1.2 Tiny test:media-video-204-t + + + + + + + + + + +
+ + + + + + + + + + + + +
+

media-video-204-t

+
+

FAIL

+
+ raster image of media-video-204-t +
+
+ + +
+

Video with PreserveAspectRatio Attribute

+

+ Testing variations of preserveAspectRatio attribute with viewports + having different aspect ratios. More specifically tests the case + of preserveAspectRatio set to 'none' on a video element. The width of + the video element has been made larger than the subsequent + preserveAspectRatio tets. +

+

+ If the user agent does not support the 3GP media format, the test is still a pass. +

+ +
+ + + diff --git a/test/W3C_SVG_12_TinyTestSuite_beta/htmlObjectHarness/media-video-205-t.html b/test/W3C_SVG_12_TinyTestSuite_beta/htmlObjectHarness/media-video-205-t.html new file mode 100755 index 00000000..96824f14 --- /dev/null +++ b/test/W3C_SVG_12_TinyTestSuite_beta/htmlObjectHarness/media-video-205-t.html @@ -0,0 +1,88 @@ + + + + + + + + +SVG 1.2 Tiny test:media-video-205-t + + + + + + + + + + +
+ + + + + + + + + + + + +
+

media-video-205-t

+
+

FAIL

+
+ raster image of media-video-205-t +
+
+ + +
+

Video with PreserveAspectRatio Attribute

+

+ Testing variations of preserveAspectRatio attribute with viewports + having different aspect ratios. More specifically tests the case + of preserveAspectRatio set to 'xMinYMin meet' on a video element. +

+

+ If the user agent does not support the 3GP media format, the test is still a pass. +

+ +
+ + + diff --git a/test/W3C_SVG_12_TinyTestSuite_beta/htmlObjectHarness/media-video-206-t.html b/test/W3C_SVG_12_TinyTestSuite_beta/htmlObjectHarness/media-video-206-t.html new file mode 100755 index 00000000..a4186478 --- /dev/null +++ b/test/W3C_SVG_12_TinyTestSuite_beta/htmlObjectHarness/media-video-206-t.html @@ -0,0 +1,88 @@ + + + + + + + + +SVG 1.2 Tiny test:media-video-206-t + + + + + + + + + + +
+ + + + + + + + + + + + +
+

media-video-206-t

+
+

FAIL

+
+ raster image of media-video-206-t +
+
+ + +
+

Video with PreserveAspectRatio Attribute

+

+ Testing variations of preserveAspectRatio attribute with viewports + having different aspect ratios. More specifically tests the case + of preserveAspectRatio set to 'xMidYMid meet' on a video element. +

+

+ If the user agent does not support the 3GP media format, the test is still a pass. +

+ +
+ + + diff --git a/test/W3C_SVG_12_TinyTestSuite_beta/htmlObjectHarness/media-video-207-t.html b/test/W3C_SVG_12_TinyTestSuite_beta/htmlObjectHarness/media-video-207-t.html new file mode 100755 index 00000000..68ac0718 --- /dev/null +++ b/test/W3C_SVG_12_TinyTestSuite_beta/htmlObjectHarness/media-video-207-t.html @@ -0,0 +1,88 @@ + + + + + + + + +SVG 1.2 Tiny test:media-video-207-t + + + + + + + + + + +
+ + + + + + + + + + + + +
+

media-video-207-t

+
+

FAIL

+
+ raster image of media-video-207-t +
+
+ + +
+

Video with PreserveAspectRatio Attribute

+

+ Testing variations of preserveAspectRatio attribute with viewports + having different aspect ratios. More specifically tests the case + of preserveAspectRatio set to 'xMaxYMax meet' on a video element. +

+

+ If the user agent does not support the 3GP media format, the test is still a pass. +

+ +
+ + + diff --git a/test/W3C_SVG_12_TinyTestSuite_beta/htmlObjectHarness/media-video-208-t.html b/test/W3C_SVG_12_TinyTestSuite_beta/htmlObjectHarness/media-video-208-t.html new file mode 100755 index 00000000..9b998d03 --- /dev/null +++ b/test/W3C_SVG_12_TinyTestSuite_beta/htmlObjectHarness/media-video-208-t.html @@ -0,0 +1,88 @@ + + + + + + + + +SVG 1.2 Tiny test:media-video-208-t + + + + + + + + + + +
+ + + + + + + + + + + + +
+

media-video-208-t

+
+

FAIL

+
+ raster image of media-video-208-t +
+
+ + +
+

Video with PreserveAspectRatio Attribute

+

+ Testing variations of preserveAspectRatio attribute with viewports + having different aspect ratios. More specifically tests the case + of preserveAspectRatio set to 'xMinYMin meet' on a video element. +

+

+ If the user agent does not support the 3GP media format, the test is still a pass. +

+ +
+ + + diff --git a/test/W3C_SVG_12_TinyTestSuite_beta/htmlObjectHarness/media-video-209-t.html b/test/W3C_SVG_12_TinyTestSuite_beta/htmlObjectHarness/media-video-209-t.html new file mode 100755 index 00000000..ebc711c6 --- /dev/null +++ b/test/W3C_SVG_12_TinyTestSuite_beta/htmlObjectHarness/media-video-209-t.html @@ -0,0 +1,88 @@ + + + + + + + + +SVG 1.2 Tiny test:media-video-209-t + + + + + + + + + + +
+ + + + + + + + + + + + +
+

media-video-209-t

+
+

FAIL

+
+ raster image of media-video-209-t +
+
+ + +
+

Video with PreserveAspectRatio Attribute

+

+ Testing variations of preserveAspectRatio attribute with viewports + having different aspect ratios. More specifically tests the case + of preserveAspectRatio set to 'xMinYMid meet' on a video element. +

+

+ If the user agent does not support the 3GP media format, the test is still a pass. +

+ +
+ + + diff --git a/test/W3C_SVG_12_TinyTestSuite_beta/htmlObjectHarness/media-video-210-t.html b/test/W3C_SVG_12_TinyTestSuite_beta/htmlObjectHarness/media-video-210-t.html new file mode 100755 index 00000000..fb10f633 --- /dev/null +++ b/test/W3C_SVG_12_TinyTestSuite_beta/htmlObjectHarness/media-video-210-t.html @@ -0,0 +1,88 @@ + + + + + + + + +SVG 1.2 Tiny test:media-video-210-t + + + + + + + + + + +
+ + + + + + + + + + + + +
+

media-video-210-t

+
+

FAIL

+
+ raster image of media-video-210-t +
+
+ + +
+

Video with PreserveAspectRatio Attribute

+

+ Testing variations of preserveAspectRatio attribute with viewports + having different aspect ratios. More specifically tests the case + of preserveAspectRatio set to 'xMinYMax meet' on a video element. +

+

+ If the user agent does not support the 3GP media format, the test is still a pass. +

+ +
+ + + diff --git a/test/W3C_SVG_12_TinyTestSuite_beta/htmlObjectHarness/media-video-211-t.html b/test/W3C_SVG_12_TinyTestSuite_beta/htmlObjectHarness/media-video-211-t.html new file mode 100755 index 00000000..446edfbc --- /dev/null +++ b/test/W3C_SVG_12_TinyTestSuite_beta/htmlObjectHarness/media-video-211-t.html @@ -0,0 +1,88 @@ + + + + + + + + +SVG 1.2 Tiny test:media-video-211-t + + + + + + + + + + +
+ + + + + + + + + + + + +
+

media-video-211-t

+
+

FAIL

+
+ raster image of media-video-211-t +
+
+ + +
+

Video with PreserveAspectRatio Attribute

+

+ Testing variations of preserveAspectRatio attribute with viewports + having different aspect ratios. More specifically tests the case + of preserveAspectRatio set to 'none' on a video element. +

+

+ If the user agent does not support the 3GP media format, the test is still a pass. +

+ +
+ + + diff --git a/test/W3C_SVG_12_TinyTestSuite_beta/htmlObjectHarness/media-video-212-t.html b/test/W3C_SVG_12_TinyTestSuite_beta/htmlObjectHarness/media-video-212-t.html new file mode 100755 index 00000000..9a353839 --- /dev/null +++ b/test/W3C_SVG_12_TinyTestSuite_beta/htmlObjectHarness/media-video-212-t.html @@ -0,0 +1,89 @@ + + + + + + + + +SVG 1.2 Tiny test:media-video-212-t + + + + + + + + + + +
+ + + + + + + + + + + + +
+

media-video-212-t

+
+

FAIL

+
+ raster image of media-video-212-t +
+
+ + +
+

Video with rendering order

+

+ Colored circles should maintain rendering order as marked on them. + Video is 10 seconds in length and should freeze at the end. The circles should continue to animate indefinitely + Bottom frame contains a jpeg reference image. The jpeg image is rendering order is on the top and the video + rendering order is on the bottom. +

+

+ If the user agent does not support the 3GP media format, the test is still a pass. +

+ +
+ + + diff --git a/test/W3C_SVG_12_TinyTestSuite_beta/htmlObjectHarness/media-video-213-t.html b/test/W3C_SVG_12_TinyTestSuite_beta/htmlObjectHarness/media-video-213-t.html new file mode 100755 index 00000000..33c770ed --- /dev/null +++ b/test/W3C_SVG_12_TinyTestSuite_beta/htmlObjectHarness/media-video-213-t.html @@ -0,0 +1,89 @@ + + + + + + + + +SVG 1.2 Tiny test:media-video-213-t + + + + + + + + + + +
+ + + + + + + + + + + + +
+

media-video-213-t

+
+

FAIL

+
+ raster image of media-video-213-t +
+
+ + +
+

Rotation with Video and Image

+

+ Tests the case when type is set to 'rotate' in animateTransform. The test + contains two objects; one video and one image. Both are rotated about a + point definied by the center of the black circle. The video will rotate + clockwise, and the image will rotate anti-clockwise. +

+

+ If the user agent does not support the 3GP media format, the test is still a pass. +

+ +
+ + + diff --git a/test/W3C_SVG_12_TinyTestSuite_beta/htmlObjectHarness/media-video-214-t.html b/test/W3C_SVG_12_TinyTestSuite_beta/htmlObjectHarness/media-video-214-t.html new file mode 100755 index 00000000..8c4e338c --- /dev/null +++ b/test/W3C_SVG_12_TinyTestSuite_beta/htmlObjectHarness/media-video-214-t.html @@ -0,0 +1,88 @@ + + + + + + + + +SVG 1.2 Tiny test:media-video-214-t + + + + + + + + + + +
+ + + + + + + + + + + + +
+

media-video-214-t

+
+

FAIL

+
+ raster image of media-video-214-t +
+
+ + +
+

Transformation and rendering order on Video

+

+ Tests the rendering order of Video with other objects. Test contains + a video element with a polygon rendered over the top. The polygon has + a solid fill; no video should be visible through the polygon. +

+

+ If the user agent does not support the 3GP media format, the test is still a pass. +

+ +
+ + + diff --git a/test/W3C_SVG_12_TinyTestSuite_beta/htmlObjectHarness/media-video-215-t.html b/test/W3C_SVG_12_TinyTestSuite_beta/htmlObjectHarness/media-video-215-t.html new file mode 100755 index 00000000..786f2024 --- /dev/null +++ b/test/W3C_SVG_12_TinyTestSuite_beta/htmlObjectHarness/media-video-215-t.html @@ -0,0 +1,86 @@ + + + + + + + + +SVG 1.2 Tiny test:media-video-215-t + + + + + + + + + + +
+ + + + + + + + + + + + +
+

media-video-215-t

+
+

FAIL

+
+ raster image of media-video-215-t +
+
+ + +
+

+ If a video is playing and xlink href is changed the stream should change. The + new stream should start playing at the same position as the reference video, if the media play time cannot be controlled. Otherwise the media time will be re-started. +

+

+ If the user agent does not support the 3GP media format, the test is still a pass. +

+ +
+ + + diff --git a/test/W3C_SVG_12_TinyTestSuite_beta/htmlObjectHarness/media-video-216-t.html b/test/W3C_SVG_12_TinyTestSuite_beta/htmlObjectHarness/media-video-216-t.html new file mode 100755 index 00000000..7dd05d89 --- /dev/null +++ b/test/W3C_SVG_12_TinyTestSuite_beta/htmlObjectHarness/media-video-216-t.html @@ -0,0 +1,104 @@ + + + + + + + + +SVG 1.2 Tiny test:media-video-216-t + + + + + + + + + + +
+ + + + + + + + + + + + +
+

media-video-216-t

+
+

FAIL

+
+ raster image of media-video-216-t +
+
+ + +
+

+ Tests the different transformBehavior values on video. + Pinned, Pinned90, Pinned180, Pinned270 +

+

+ The 1st video element has transformBehavior set to pinned and is displayed in the top-left of a 4-video box. +

+

+ The 2nd video element has transformBehavior set to pinned90 and is displayed in the top-right of a 4-video box. +

+

+ The 3rd video element has transformBehavior set to pinned180 and is displayed in the bottom-left of a 4-video box. +

+

+ The 4th video element has transformBehavior set to pinned270 and is displayed in the bottom-right of a 4-video box. +

+

+ There are 4 green-stroked rectangles indicating the expected position and orientation, but not size. +

+

+ The videos should display with the appropriate rotation, centered on the green rectangles but not bound by them in any way, since determining the exact pixel size of the rectangles is not possible. +

+

+ If the user agent does not support the 3GP media format, the test is still a pass. +

+ +
+ + + diff --git a/test/W3C_SVG_12_TinyTestSuite_beta/htmlObjectHarness/media-video-218-t.html b/test/W3C_SVG_12_TinyTestSuite_beta/htmlObjectHarness/media-video-218-t.html new file mode 100755 index 00000000..60cfc9b2 --- /dev/null +++ b/test/W3C_SVG_12_TinyTestSuite_beta/htmlObjectHarness/media-video-218-t.html @@ -0,0 +1,89 @@ + + + + + + + + +SVG 1.2 Tiny test:media-video-218-t + + + + + + + + + + +
+ + + + + + + + + + + + +
+

media-video-218-t

+
+

FAIL

+
+ raster image of media-video-218-t +
+
+ + +
+

+ When no video element is displayable (visibility is hidden or display is none of the use element), + audio level should be set to 0 and video should not be rendered. + -Video1 should be displayed between 0-4s, not rendered between 4-6 s and displayed between 6-8s. + -Video2 should be displayed between 0-2s, not rendered between 2-6 s and displayed between 6-8s. + -The audio of the video should be muted between 4-6s as no video is then rendered. +

+

+ If the user agent does not support the 3GP media format, the test is still a pass. +

+ +
+ + + diff --git a/test/W3C_SVG_12_TinyTestSuite_beta/htmlObjectHarness/media-video-219-t.html b/test/W3C_SVG_12_TinyTestSuite_beta/htmlObjectHarness/media-video-219-t.html new file mode 100755 index 00000000..8e82f372 --- /dev/null +++ b/test/W3C_SVG_12_TinyTestSuite_beta/htmlObjectHarness/media-video-219-t.html @@ -0,0 +1,86 @@ + + + + + + + + +SVG 1.2 Tiny test:media-video-219-t + + + + + + + + + + +
+ + + + + + + + + + + + +
+

media-video-219-t

+
+

FAIL

+
+ raster image of media-video-219-t +
+
+ + +
+

+ If a video is playing and it is repositioned by removing it's corresponding use + from tree and then reinserting it in tree the video should continue playing but change position +

+

+ If the user agent does not support the 3GP media format, the test is still a pass. +

+ +
+ + + diff --git a/test/W3C_SVG_12_TinyTestSuite_beta/htmlObjectHarness/media-video-220-t.html b/test/W3C_SVG_12_TinyTestSuite_beta/htmlObjectHarness/media-video-220-t.html new file mode 100755 index 00000000..bfab4acd --- /dev/null +++ b/test/W3C_SVG_12_TinyTestSuite_beta/htmlObjectHarness/media-video-220-t.html @@ -0,0 +1,87 @@ + + + + + + + + +SVG 1.2 Tiny test:media-video-220-t + + + + + + + + + + +
+ + + + + + + + + + + + +
+

media-video-220-t

+
+

FAIL

+
+ raster image of media-video-220-t +
+
+ + +
+

+ If a video is playing when it is removed from document tree + it should continue playing when re-inserted in tree. + - The video should change position at 2 seconds but continue playing. +

+

+ If the user agent does not support the 3GP media format, the test is still a pass. +

+ +
+ + + diff --git a/test/W3C_SVG_12_TinyTestSuite_beta/htmlObjectHarness/media-video-221-t.html b/test/W3C_SVG_12_TinyTestSuite_beta/htmlObjectHarness/media-video-221-t.html new file mode 100755 index 00000000..a6685a39 --- /dev/null +++ b/test/W3C_SVG_12_TinyTestSuite_beta/htmlObjectHarness/media-video-221-t.html @@ -0,0 +1,87 @@ + + + + + + + + +SVG 1.2 Tiny test:media-video-221-t + + + + + + + + + + +
+ + + + + + + + + + + + +
+

media-video-221-t

+
+

FAIL

+
+ raster image of media-video-221-t +
+
+ + +
+

+ When xlink:href is animated on a use element between two different video elements, the + displayed video should change and it should play at the current time. + -video1 should be displayed between 0-2 and 4-6s and video2 between 2-4s. +

+

+ If the user agent does not support the 3GP media format, the test is still a pass. +

+ +
+ + + diff --git a/test/W3C_SVG_12_TinyTestSuite_beta/htmlObjectHarness/media-video-222-t.html b/test/W3C_SVG_12_TinyTestSuite_beta/htmlObjectHarness/media-video-222-t.html new file mode 100755 index 00000000..f6928e48 --- /dev/null +++ b/test/W3C_SVG_12_TinyTestSuite_beta/htmlObjectHarness/media-video-222-t.html @@ -0,0 +1,83 @@ + + + + + + + + +SVG 1.2 Tiny test:media-video-222-t + + + + + + + + + + +
+ + + + + + + + + + + + +
+

media-video-222-t

+
+

FAIL

+
+ raster image of media-video-222-t +
+
+ + +
+

+ Video Elements with Incorrect xlink:href + This slide tests the video xlink:href attribute with invalid values +

+ +
+ + + diff --git a/test/W3C_SVG_12_TinyTestSuite_beta/htmlObjectHarness/metadata-example-01-t.html b/test/W3C_SVG_12_TinyTestSuite_beta/htmlObjectHarness/metadata-example-01-t.html new file mode 100755 index 00000000..fa4ba218 --- /dev/null +++ b/test/W3C_SVG_12_TinyTestSuite_beta/htmlObjectHarness/metadata-example-01-t.html @@ -0,0 +1,82 @@ + + + + + + + + +SVG 1.2 Tiny test:metadata-example-01-t + + + + + + + + + + +
+ + + + + + + + + + + + +
+

metadata-example-01-t

+
+

FAIL

+
+ raster image of metadata-example-01-t +
+
+ + +
+

Check that metadata in a variety of namespaces, inside a metadata element, does not affect rendering in any way. The file is not valid to the DTD, but is well formed.

+

The diagram on the table is a visualization of the RDF metadata in the graphic.

+

The rendered result should match the reference image and there should be no error messages or warnings

+ +
+ + + diff --git a/test/W3C_SVG_12_TinyTestSuite_beta/htmlObjectHarness/paint-color-01-t.html b/test/W3C_SVG_12_TinyTestSuite_beta/htmlObjectHarness/paint-color-01-t.html new file mode 100755 index 00000000..fd54b491 --- /dev/null +++ b/test/W3C_SVG_12_TinyTestSuite_beta/htmlObjectHarness/paint-color-01-t.html @@ -0,0 +1,88 @@ + + + + + + + + +SVG 1.2 Tiny test:paint-color-01-t + + + + + + + + + + +
+ + + + + + + + + + + + +
+

paint-color-01-t

+
+

FAIL

+
+ raster image of paint-color-01-t +
+
+ + +
+

+ The purpose of this test is to determine if an application has the basic capability to process the 'color' property. + There are three subtests. +

+

+ The first subtest, to the top left, is passed if the circle has a red fill. The second subtest, to the top right, is + passed if the circle has a red stroke. The third subtest shows a rectangle with a gradient fill, which has three stops. + The subtest is passed if central stop is red, fading off to blue to the left and pale yellow to the right. +

+ +
+ + + diff --git a/test/W3C_SVG_12_TinyTestSuite_beta/htmlObjectHarness/paint-color-03-t.html b/test/W3C_SVG_12_TinyTestSuite_beta/htmlObjectHarness/paint-color-03-t.html new file mode 100755 index 00000000..1bb9b1bc --- /dev/null +++ b/test/W3C_SVG_12_TinyTestSuite_beta/htmlObjectHarness/paint-color-03-t.html @@ -0,0 +1,92 @@ + + + + + + + + +SVG 1.2 Tiny test:paint-color-03-t + + + + + + + + + + +
+ + + + + + + + + + + + +
+

paint-color-03-t

+
+

FAIL

+
+ raster image of paint-color-03-t +
+
+ + +
+

+ Purpose of test is to determine if the color datatype is supported. There are multiple syntaxes for specifying the + same color, such as #37F and #3377FF. For each of the six groups shown here, each of the shapes in the group uses + one of the syntactical forms and all in the group should be identical in color. +

+

+ The first row uses five forms - 3-digit hex, 6-digit hex, rbg() integer form, rgb() percentage form, and named + ('HTML') colors. +

+

+ The second row uses only four forms - 3-digit hex, 6-digit hex, rbg() integer form, rgb() percentage form - as + there are no HTML or X11 names for those colors. +

+ +
+ + + diff --git a/test/W3C_SVG_12_TinyTestSuite_beta/htmlObjectHarness/paint-color-04-t.html b/test/W3C_SVG_12_TinyTestSuite_beta/htmlObjectHarness/paint-color-04-t.html new file mode 100755 index 00000000..f0ec0c41 --- /dev/null +++ b/test/W3C_SVG_12_TinyTestSuite_beta/htmlObjectHarness/paint-color-04-t.html @@ -0,0 +1,84 @@ + + + + + + + + +SVG 1.2 Tiny test:paint-color-04-t + + + + + + + + + + +
+ + + + + + + + + + + + +
+

paint-color-04-t

+
+

FAIL

+
+ raster image of paint-color-04-t +
+
+ + +
+

+ Tests system colors. The colors on your screen might not match the reference image at all, but they should at + minimum be legible and should preferably resemble the colors used on menus and other user interface elements on + your computer, pda or phone. +

+ +
+ + + diff --git a/test/W3C_SVG_12_TinyTestSuite_beta/htmlObjectHarness/paint-color-05-t.html b/test/W3C_SVG_12_TinyTestSuite_beta/htmlObjectHarness/paint-color-05-t.html new file mode 100755 index 00000000..f8943506 --- /dev/null +++ b/test/W3C_SVG_12_TinyTestSuite_beta/htmlObjectHarness/paint-color-05-t.html @@ -0,0 +1,81 @@ + + + + + + + + +SVG 1.2 Tiny test:paint-color-05-t + + + + + + + + + + +
+ + + + + + + + + + + + +
+

paint-color-05-t

+
+

FAIL

+
+ raster image of paint-color-05-t +
+
+ + +
+

Tests the color that is used for the currentColor value in the fill attribute when more than one color is specified.

+

This is illustrated using a single rectangle that is a child of a group element. A fill is specified for the group element but not the rectangle. Colour is specifed for the rectangle and the group element. The user agent should render the rectangle with a RED fill.

+ +
+ + + diff --git a/test/W3C_SVG_12_TinyTestSuite_beta/htmlObjectHarness/paint-color-201-t.html b/test/W3C_SVG_12_TinyTestSuite_beta/htmlObjectHarness/paint-color-201-t.html new file mode 100755 index 00000000..60784627 --- /dev/null +++ b/test/W3C_SVG_12_TinyTestSuite_beta/htmlObjectHarness/paint-color-201-t.html @@ -0,0 +1,82 @@ + + + + + + + + +SVG 1.2 Tiny test:paint-color-201-t + + + + + + + + + + +
+ + + + + + + + + + + + +
+

paint-color-201-t

+
+

FAIL

+
+ raster image of paint-color-201-t +
+
+ + +
+

+ Tests the sixteen color names that must be supported in SVG Tiny. +

+ +
+ + + diff --git a/test/W3C_SVG_12_TinyTestSuite_beta/htmlObjectHarness/paint-fill-01-t.html b/test/W3C_SVG_12_TinyTestSuite_beta/htmlObjectHarness/paint-fill-01-t.html new file mode 100755 index 00000000..660ad648 --- /dev/null +++ b/test/W3C_SVG_12_TinyTestSuite_beta/htmlObjectHarness/paint-fill-01-t.html @@ -0,0 +1,81 @@ + + + + + + + + +SVG 1.2 Tiny test:paint-fill-01-t + + + + + + + + + + +
+ + + + + + + + + + + + +
+

paint-fill-01-t

+
+

FAIL

+
+ raster image of paint-fill-01-t +
+
+ + +
+

Verify the basic capability to handle the fill properties fill:none, and fill with a color (fill:red)

+

There should be two rectangles, the rectangle on the left hollow (fill:none) and the rectangle on the right filled with red.

+ +
+ + + diff --git a/test/W3C_SVG_12_TinyTestSuite_beta/htmlObjectHarness/paint-fill-02-t.html b/test/W3C_SVG_12_TinyTestSuite_beta/htmlObjectHarness/paint-fill-02-t.html new file mode 100755 index 00000000..90b1985d --- /dev/null +++ b/test/W3C_SVG_12_TinyTestSuite_beta/htmlObjectHarness/paint-fill-02-t.html @@ -0,0 +1,84 @@ + + + + + + + + +SVG 1.2 Tiny test:paint-fill-02-t + + + + + + + + + + +
+ + + + + + + + + + + + +
+

paint-fill-02-t

+
+

FAIL

+
+ raster image of paint-fill-02-t +
+
+ + +
+

The test uses the "currentColor" value for the "fill" attribute.

+

+ The rectangle on the left should be green filled, the rectangle on the right should be blue. The text above the + rectangles should be black. +

+ +
+ + + diff --git a/test/W3C_SVG_12_TinyTestSuite_beta/htmlObjectHarness/paint-fill-03-t.html b/test/W3C_SVG_12_TinyTestSuite_beta/htmlObjectHarness/paint-fill-03-t.html new file mode 100755 index 00000000..8725085e --- /dev/null +++ b/test/W3C_SVG_12_TinyTestSuite_beta/htmlObjectHarness/paint-fill-03-t.html @@ -0,0 +1,81 @@ + + + + + + + + +SVG 1.2 Tiny test:paint-fill-03-t + + + + + + + + + + +
+ + + + + + + + + + + + +
+

paint-fill-03-t

+
+

FAIL

+
+ raster image of paint-fill-03-t +
+
+ + +
+

Verify the basic capability to handle the fill rule properties evenodd and nonzero

+

There should be two red filled stars, the leftmost star should be unfilled in the very center.

+ +
+ + + diff --git a/test/W3C_SVG_12_TinyTestSuite_beta/htmlObjectHarness/paint-fill-04-t.html b/test/W3C_SVG_12_TinyTestSuite_beta/htmlObjectHarness/paint-fill-04-t.html new file mode 100755 index 00000000..c53cac02 --- /dev/null +++ b/test/W3C_SVG_12_TinyTestSuite_beta/htmlObjectHarness/paint-fill-04-t.html @@ -0,0 +1,94 @@ + + + + + + + + +SVG 1.2 Tiny test:paint-fill-04-t + + + + + + + + + + +
+ + + + + + + + + + + + +
+

paint-fill-04-t

+
+

FAIL

+
+ raster image of paint-fill-04-t +
+
+ + +
+

+ This tests inheritance of three properties: "fill", "stroke" and "stroke-width". There is a "g" element (id="G1") + which sets fill="blue", stroke="red", and stroke-width="5". The first two rectangles on top should inherit all + those properties. The middle left rectangle has fill="yellow" and stroke-width="2", it should inherit the + stroke="red" from the parent container. The middle rectangle on the right has stroke="yellow", it should inherit + fill and stroke-width from the parent "g". The bottom two rectangles are in another "g" element (id="G2") which + is a child of "G1". "G2" sets fill="yellow". It should inherit the stroke and stroke width from the parent "G1". + The two bottom rectangles set no fill or stroke properties, they should inherit through the parents, stroke="red" + and stroke-width="5". +

+

The rendered picture should match the reference image, except for possible variations in the labeling text (per CSS2 rules).

+

+ The test uses the "rect" element, as well as basic fill (solid primary colors), stroke (black 1-pixel lines), + font-family (Arial) and font-size properties. +

+ +
+ + + diff --git a/test/W3C_SVG_12_TinyTestSuite_beta/htmlObjectHarness/paint-fill-05-t.html b/test/W3C_SVG_12_TinyTestSuite_beta/htmlObjectHarness/paint-fill-05-t.html new file mode 100755 index 00000000..89486ace --- /dev/null +++ b/test/W3C_SVG_12_TinyTestSuite_beta/htmlObjectHarness/paint-fill-05-t.html @@ -0,0 +1,86 @@ + + + + + + + + +SVG 1.2 Tiny test:paint-fill-05-t + + + + + + + + + + +
+ + + + + + + + + + + + +
+

paint-fill-05-t

+
+

FAIL

+
+ raster image of paint-fill-05-t +
+
+ + +
+

Test using "fill-opacity" values for "rect" element. This test verifies that opacity is clamped to the specified range.

+

+ The six rect elements on the left have varying 'fill-opacity' values within the valid range of 0 to 1. The six elements + on the right have 'fill-opacity' values outside the 0 to 1 range, and must be clamped. The top three rect elements on + the right must have their 'fill-opacity' clamped to 0, while the bottom three rect elements on the right must be clamped + to 1. +

+ +
+ + + diff --git a/test/W3C_SVG_12_TinyTestSuite_beta/htmlObjectHarness/paint-grad-04-t.html b/test/W3C_SVG_12_TinyTestSuite_beta/htmlObjectHarness/paint-grad-04-t.html new file mode 100755 index 00000000..c204576e --- /dev/null +++ b/test/W3C_SVG_12_TinyTestSuite_beta/htmlObjectHarness/paint-grad-04-t.html @@ -0,0 +1,95 @@ + + + + + + + + +SVG 1.2 Tiny test:paint-grad-04-t + + + + + + + + + + +
+ + + + + + + + + + + + +
+

paint-grad-04-t

+
+

FAIL

+
+ raster image of paint-grad-04-t +
+
+ + +
+

Test that checks the capability of the stop element in linear and radial gradients.

+

+ The first rectangle has a linear gradient fill with a vector starting at top left and going to bottom right. The + stop colors are at 20% spacing apart and are in the following order : violet, blue, lime, yellow, orange, red. + Because the gradient vector vector goes from (0,0) to (1,1) in object bounding box space and because the object + bounding box has a larger width than height, the gradient vector is skewed off of a pure 45 degree angle. The + gradient stripes are also skewed so that they are no longer perpendicular to the gradient vector. +

+

+ The next rectangle has a radial gradient fill with a multi-color stops from innermost to outermost in the following + order : black, yellow, red, blue, white, green. +

+

+ The rendered picture should match the reference image exactly, except for possible variations in the labelling + text (per CSS2 rules). +

+ +
+ + + diff --git a/test/W3C_SVG_12_TinyTestSuite_beta/htmlObjectHarness/paint-grad-05-t.html b/test/W3C_SVG_12_TinyTestSuite_beta/htmlObjectHarness/paint-grad-05-t.html new file mode 100755 index 00000000..a5ee2a7b --- /dev/null +++ b/test/W3C_SVG_12_TinyTestSuite_beta/htmlObjectHarness/paint-grad-05-t.html @@ -0,0 +1,102 @@ + + + + + + + + +SVG 1.2 Tiny test:paint-grad-05-t + + + + + + + + + + +
+ + + + + + + + + + + + +
+

paint-grad-05-t

+
+

FAIL

+
+ raster image of paint-grad-05-t +
+
+ + +
+

Test that checks the capability of the stop opacity in linear and radial gradients.

+

+ There are two tests which contain rectangles with gradients using stop-opacity properties. A cyan color text string + "Background" is put behind both of the rectangles to help demonstrate the opacity concept. From top-down the appearance + of objects is as follows. +

+

+ The first rectangle has a linear gradient fill with a vector starting at top left and going to bottom right. The stop + colors are at 20% spacing apart and are in the following order : violet, blue, lime, yellow, orange, red. Also a stop + opacity is given to the colors in the following order: 1, 0.2, 0.5, 0, 0.8, 1 Because the gradient vector vector goes + from (0,0) to (1,1) in object bounding box space and because the object bounding box has a larger width than height, + the gradient vector is skewed off of a pure 45 degree angle. The gradient stripes are also skewed so that they are no + longer perpendicular to the gradient vector. +

+

+ The next rectangle has a radial gradient fill with a multi-color stops from innermost to outermost in the following + order : black, yellow, red, blue, white, green. Also a stop opacity is given to the colors in the following order: 1, + 0.2, 0.5, 0, 0.8, 1 +

+

+ The rendered picture should match the reference image exactly, except for possible variations in the labelling text + (per CSS2 rules). +

+ +
+ + + diff --git a/test/W3C_SVG_12_TinyTestSuite_beta/htmlObjectHarness/paint-grad-07-t.html b/test/W3C_SVG_12_TinyTestSuite_beta/htmlObjectHarness/paint-grad-07-t.html new file mode 100755 index 00000000..acfefabc --- /dev/null +++ b/test/W3C_SVG_12_TinyTestSuite_beta/htmlObjectHarness/paint-grad-07-t.html @@ -0,0 +1,91 @@ + + + + + + + + +SVG 1.2 Tiny test:paint-grad-07-t + + + + + + + + + + +
+ + + + + + + + + + + + +
+

paint-grad-07-t

+
+

FAIL

+
+ raster image of paint-grad-07-t +
+
+ + +
+

Test that the viewer has basic capability to handle linear gradients on fills and stroke of objects and text.

+

+ This test uses the following elements : <linearGradient>, <stop> and the following properties : stop-color, + fill:url(# ), stroke(url# ) +

+

+ Both elements in this test use the same simple gradient. It is a linear gradient from blue (left) to red (right). From + top-down the appearance of objects is as follows. +

+

The top rectangle should be filled with the gradient.

+

The next rectangle has no fill, but has a thick stroke on which the gradient is applied.

+

The rendered picture should match the reference image, except for possible variations in the labelling text (per CSS2 rules).

+ +
+ + + diff --git a/test/W3C_SVG_12_TinyTestSuite_beta/htmlObjectHarness/paint-grad-08-t.html b/test/W3C_SVG_12_TinyTestSuite_beta/htmlObjectHarness/paint-grad-08-t.html new file mode 100755 index 00000000..a167c57c --- /dev/null +++ b/test/W3C_SVG_12_TinyTestSuite_beta/htmlObjectHarness/paint-grad-08-t.html @@ -0,0 +1,91 @@ + + + + + + + + +SVG 1.2 Tiny test:paint-grad-08-t + + + + + + + + + + +
+ + + + + + + + + + + + +
+

paint-grad-08-t

+
+

FAIL

+
+ raster image of paint-grad-08-t +
+
+ + +
+

Test that the viewer has basic capability to handle linear gradients on fills and stroke of text.

+

+ This test uses the following elements : <linearGradient>, <stop> and the following properties : stop-color, + fill:url(# ), stroke(url# ) +

+

+ Both elements in this test use the same simple gradient. It is a linear gradient from blue (left) to red (right). From + top-down the appearance of objects is as follows. +

+

The first item is a text string "Gradient on fill" with the gradient on the fill of the text.

+

The second item is a text string that is not filled. It has a 2 user unit stroke on which the gradient is applied.

+

The rendered picture should match the reference image, except for possible variations in the labelling text (per CSS2 rules).

+ +
+ + + diff --git a/test/W3C_SVG_12_TinyTestSuite_beta/htmlObjectHarness/paint-grad-09-t.html b/test/W3C_SVG_12_TinyTestSuite_beta/htmlObjectHarness/paint-grad-09-t.html new file mode 100755 index 00000000..1a902014 --- /dev/null +++ b/test/W3C_SVG_12_TinyTestSuite_beta/htmlObjectHarness/paint-grad-09-t.html @@ -0,0 +1,100 @@ + + + + + + + + +SVG 1.2 Tiny test:paint-grad-09-t + + + + + + + + + + +
+ + + + + + + + + + + + +
+

paint-grad-09-t

+
+

FAIL

+
+ raster image of paint-grad-09-t +
+
+ + +
+

+ Test that the viewer can handle the gradientUnits attribute on linear gradients. It tests the following values of + gradientUnits : default (objectBoundingBox), specifying objectBoundingBox, and specifying userSpaceOnUse. +

+

From top-down the appearance of objects is as follows.

+

+ The first rectangle uses the default attributes on the linearGradient element. Therefore the linear gradient should + default to objectBoundingBox. It should appear from the left edge of the rectangle (blue) to the right edge of the + rectangle (red). The rectangle is smaller than the viewport, because a previous version of the SVG spec had the + default value be 'viewport'. The test fails if only a portion of the gradient is shown. +

+

The next rectangle uses gradientUnits=objectBoundingBox. The linear gradient should travel from blue (top) to red (bottom).

+

+ The last rectangle uses gradientUnits=userSpaceOnUse. The rectangle element is given it's own transformation and the + gradient is assumed to be in this user space. The gradient should appear as a linear gradient from red (left) to blue + (right). +

+

+ The rendered picture should match the reference image exactly, except for possible variations in the labelling text + (per CSS2 rules). +

+ +
+ + + diff --git a/test/W3C_SVG_12_TinyTestSuite_beta/htmlObjectHarness/paint-grad-11-t.html b/test/W3C_SVG_12_TinyTestSuite_beta/htmlObjectHarness/paint-grad-11-t.html new file mode 100755 index 00000000..fedcc5ad --- /dev/null +++ b/test/W3C_SVG_12_TinyTestSuite_beta/htmlObjectHarness/paint-grad-11-t.html @@ -0,0 +1,99 @@ + + + + + + + + +SVG 1.2 Tiny test:paint-grad-11-t + + + + + + + + + + +
+ + + + + + + + + + + + +
+

paint-grad-11-t

+
+

FAIL

+
+ raster image of paint-grad-11-t +
+
+ + +
+

Test that the viewer has basic capability to handle radial gradients on fills and stroke of objects and text.

+

+ This test uses the following elements : <radialGradient>, <stop> and the following properties : stop-color, + fill:url(# ), stroke(url# ) +

+

From top-down (left to right) the appearance of objects is as follows.

+

+ The top left rectangle should be a radial gradient from black(in) to red(outside). The gradiant is applied to the + fill of the rectangle. +

+

+ The next rectangle has no fill, but has a thick stroke on which the gradient is applied. The gradient goes from + red(in) to yellow (out). +

+

The next item is a text with a radial gradient on the fill. The gradient goes from black (in) to yellow (out).

+

The last item is a text with a 2 user unit stroke on which a black (in) to red (out) linear gradient is applied.

+

+ The rendered picture should match the reference image exactly, except for possible variations in the labelling text + (per CSS2 rules). +

+ +
+ + + diff --git a/test/W3C_SVG_12_TinyTestSuite_beta/htmlObjectHarness/paint-grad-12-t.html b/test/W3C_SVG_12_TinyTestSuite_beta/htmlObjectHarness/paint-grad-12-t.html new file mode 100755 index 00000000..66021664 --- /dev/null +++ b/test/W3C_SVG_12_TinyTestSuite_beta/htmlObjectHarness/paint-grad-12-t.html @@ -0,0 +1,102 @@ + + + + + + + + +SVG 1.2 Tiny test:paint-grad-12-t + + + + + + + + + + +
+ + + + + + + + + + + + +
+

paint-grad-12-t

+
+

FAIL

+
+ raster image of paint-grad-12-t +
+
+ + +
+

+ Test that the viewer can handle the gradientUnits attribute on radial gradients. It tests the following values of + gradientUnits : default (objectBoundingBox), objectBoundingBox, and userSpaceOnUse. +

+

From top-down the appearance of objects is as follows.

+

+ The first rectangle uses the default attributes on the radialGradient element. Therefore the radial gradient should + be relative to the object bounding box. It should appear from the center of the viewport (blue) to the edges of the + viewport (red). The rectangle is wider than tall so it the gradient should be elliptical, not circular. +

+

+ The next rectangle uses gradientUnits=objectBoundingBox. The radial gradient should travel from a center of 20%, 20% + of the rectangle with a radius of 50%. +

+

+ The last rectangle uses gradientUnits=userSpaceOnUse. The rectangle element is given it's own transformation and the + gradient is assumed to be in this user space. The gradient should appear in the center of the rectangle as a radial + gradient from red (center) to blue (edge). +

+

+ The rendered picture should match the reference image exactly, except for possible variations in the labelling text + (per CSS2 rules). +

+ +
+ + + diff --git a/test/W3C_SVG_12_TinyTestSuite_beta/htmlObjectHarness/paint-grad-15-t.html b/test/W3C_SVG_12_TinyTestSuite_beta/htmlObjectHarness/paint-grad-15-t.html new file mode 100755 index 00000000..6aa318ef --- /dev/null +++ b/test/W3C_SVG_12_TinyTestSuite_beta/htmlObjectHarness/paint-grad-15-t.html @@ -0,0 +1,88 @@ + + + + + + + + +SVG 1.2 Tiny test:paint-grad-15-t + + + + + + + + + + +
+ + + + + + + + + + + + +
+

paint-grad-15-t

+
+

FAIL

+
+ raster image of paint-grad-15-t +
+
+ + +
+

+ Test linear and radial gradient defaults. Includes testing defaults for linear grad x1,y1,y2 = 0.0, x2 = 1.0 and + testing defaults for radial grad cx,cy,r = 0.5 +

+

+ The top rectangle must be blue at the lefthand side and red at the right hand side, fading smoothly accross. The + lower rectangle must be red at the edges with a black centre to the radial gradient at the centre of the + rectangle, and the gradient occupying the whole rectangle. +

+ +
+ + + diff --git a/test/W3C_SVG_12_TinyTestSuite_beta/htmlObjectHarness/paint-grad-16-t.html b/test/W3C_SVG_12_TinyTestSuite_beta/htmlObjectHarness/paint-grad-16-t.html new file mode 100755 index 00000000..6d9f1dad --- /dev/null +++ b/test/W3C_SVG_12_TinyTestSuite_beta/htmlObjectHarness/paint-grad-16-t.html @@ -0,0 +1,89 @@ + + + + + + + + +SVG 1.2 Tiny test:paint-grad-16-t + + + + + + + + + + +
+ + + + + + + + + + + + +
+

paint-grad-16-t

+
+

FAIL

+
+ raster image of paint-grad-16-t +
+
+ + +
+

+ Test gradient stop rules. Including: No stops, like fill = none. One stop, like fill = black. If a stop less than + all previous stops, it is set equal to the largest stop. If two stops are equal the last stop controls the color + at the overlap point. +

+

+ The top rectangle must have a red outline and no fill. The middle rectangle must have a solid black fill. The + lower rectangle must have a yellow to red to green linear gradient on the left-hand half and a solid blue fill + for the right hand half. +

+ +
+ + + diff --git a/test/W3C_SVG_12_TinyTestSuite_beta/htmlObjectHarness/paint-grad-17-t.html b/test/W3C_SVG_12_TinyTestSuite_beta/htmlObjectHarness/paint-grad-17-t.html new file mode 100755 index 00000000..07074693 --- /dev/null +++ b/test/W3C_SVG_12_TinyTestSuite_beta/htmlObjectHarness/paint-grad-17-t.html @@ -0,0 +1,96 @@ + + + + + + + + +SVG 1.2 Tiny test:paint-grad-17-t + + + + + + + + + + +
+ + + + + + + + + + + + +
+

paint-grad-17-t

+
+

FAIL

+
+ raster image of paint-grad-17-t +
+
+ + +
+

+ This test has a gradient with gradientUnits='objectBoundingBox' which is a fade from black to white. The gradient + is used for the stroke of a line. Vertical and horizontal lines don't have a boundingbox, since they are + one-dimensional, even though the stroke-width makes it look like they should have a boundingbox with non-zero width + and height. See the coordinate chapter, last paragraph of 7.12. +

+

+ The left rectangle has four 'line' elements rotated in different ways. The stroke for the lines have a green solid + stroke fallback which should be used if the gradient should be ignored. For this sub-test to pass there must be + three lines with solid green stroke, and one line (from bottom left to top right) with a gradient stroke, visible + in the rectangle. +

+

+ The right rectangle is the same as the left rectangle except that the stroke paintservers don't have a fallback + specified. For this sub-test to pass only the line from bottom left to top right must be visible in the rectangle, + and it must have a gradient stroke. +

+ +
+ + + diff --git a/test/W3C_SVG_12_TinyTestSuite_beta/htmlObjectHarness/paint-grad-18-t.html b/test/W3C_SVG_12_TinyTestSuite_beta/htmlObjectHarness/paint-grad-18-t.html new file mode 100755 index 00000000..fa3de894 --- /dev/null +++ b/test/W3C_SVG_12_TinyTestSuite_beta/htmlObjectHarness/paint-grad-18-t.html @@ -0,0 +1,84 @@ + + + + + + + + +SVG 1.2 Tiny test:paint-grad-18-t + + + + + + + + + + +
+ + + + + + + + + + + + +
+

paint-grad-18-t

+
+

FAIL

+
+ raster image of paint-grad-18-t +
+
+ + +
+

This test shows rectangles filled with gradient. Several gradients are defined, with two stops:

+

For the top-left rectangle's gradient: The first stop defines a fully-opaque green color. The second stop explicitly inherits (i.e. using the 'inherit' keyword) its stop-color. The result should be that the top-left rectangle is filled with a gradient from green to red since the stop-color is inherited from the location of the gradient definition.

+

For the top-right rectangle's gradient: The first stop defines a fully-opaque green color. The second stop defines a green stop-color but explicitly inherits (i.e. using the 'inherit' keyword) the stop-opacity. The result should be that the top-right rectangle filled in green with a gradient opacity.

+

For the bottom-left rectangle's gradient: The first stop defines a fully-opaque green color. The second stop does not specify the stop-color and the stop-opacity. Since both properties are not inherited, the initial value should be used. The result should be that the lower-left rectangle filled with a gradient going from fully-opaque green to fully-opaque black.

+

For the bottom-right rectangle's gradient: The first stop defines a fully-opaque green color. The second stop specifies the stop-color using the 'currentColor' keyword. The result should be that the lower-right rectangle filled with a gradient going from fully-opaque green to fully-opaque yellow.

+ +
+ + + diff --git a/test/W3C_SVG_12_TinyTestSuite_beta/htmlObjectHarness/paint-grad-19-t.html b/test/W3C_SVG_12_TinyTestSuite_beta/htmlObjectHarness/paint-grad-19-t.html new file mode 100755 index 00000000..51d437c5 --- /dev/null +++ b/test/W3C_SVG_12_TinyTestSuite_beta/htmlObjectHarness/paint-grad-19-t.html @@ -0,0 +1,87 @@ + + + + + + + + +SVG 1.2 Tiny test:paint-grad-19-t + + + + + + + + + + +
+ + + + + + + + + + + + +
+

paint-grad-19-t

+
+

FAIL

+
+ raster image of paint-grad-19-t +
+
+ + +
+

+ This test shows rectangles filled with animated gradient which inherits some of their properties: stop-color, stop-opacity. + The correct result must show: - the top-left rectangle filled initially with a linear green-to-red gradient and turning into + a solid green color after 5s. - the top-right rectangle filled initially with a green gradient fully opaque on the left and + half transparent on the right, but after 5s the rectangle must be filled with a fully opaque solid green. - the bottom-left + rectangle filled with a static green-to-black opaque gradient - the bottom-right rectangle initially filled with a green-to-yellow + fully-opaque gradient animated and turning into a fully-opaque green solid color. Animations numbered a4 to a7 must have no impact. +

+ +
+ + + diff --git a/test/W3C_SVG_12_TinyTestSuite_beta/htmlObjectHarness/paint-grad-201-t.html b/test/W3C_SVG_12_TinyTestSuite_beta/htmlObjectHarness/paint-grad-201-t.html new file mode 100755 index 00000000..a32f9b39 --- /dev/null +++ b/test/W3C_SVG_12_TinyTestSuite_beta/htmlObjectHarness/paint-grad-201-t.html @@ -0,0 +1,85 @@ + + + + + + + + +SVG 1.2 Tiny test:paint-grad-201-t + + + + + + + + + + +
+ + + + + + + + + + + + +
+

paint-grad-201-t

+
+

FAIL

+
+ raster image of paint-grad-201-t +
+
+ + +
+

Test Stop Opacity Attribute

+

+ A linearGradient is defined with a stop-opacity of 0 that is also animated from 0 to 1 (clear to solid). + The yellow star must initially be visible through the gradient. After 5 seconds most of the start must + be covered by the linearGradient. +

+ +
+ + + diff --git a/test/W3C_SVG_12_TinyTestSuite_beta/htmlObjectHarness/paint-grad-202-t.html b/test/W3C_SVG_12_TinyTestSuite_beta/htmlObjectHarness/paint-grad-202-t.html new file mode 100755 index 00000000..3d13a5e9 --- /dev/null +++ b/test/W3C_SVG_12_TinyTestSuite_beta/htmlObjectHarness/paint-grad-202-t.html @@ -0,0 +1,86 @@ + + + + + + + + +SVG 1.2 Tiny test:paint-grad-202-t + + + + + + + + + + +
+ + + + + + + + + + + + +
+

paint-grad-202-t

+
+

FAIL

+
+ raster image of paint-grad-202-t +
+
+ + +
+

Stop Opacity Attribute with Text

+

+ There are three lines of text. For this test to pass each line of text must have the same gradient + from green to blue all set to a 'stop-opacity' of 0.4 . The reference rect at the bottom has a + similar gradient but with 'stop-opacity set to 1. The text of the poem should be lighter than + the reference line. +

+ +
+ + + diff --git a/test/W3C_SVG_12_TinyTestSuite_beta/htmlObjectHarness/paint-grad-203-t.html b/test/W3C_SVG_12_TinyTestSuite_beta/htmlObjectHarness/paint-grad-203-t.html new file mode 100755 index 00000000..e2c27108 --- /dev/null +++ b/test/W3C_SVG_12_TinyTestSuite_beta/htmlObjectHarness/paint-grad-203-t.html @@ -0,0 +1,84 @@ + + + + + + + + +SVG 1.2 Tiny test:paint-grad-203-t + + + + + + + + + + +
+ + + + + + + + + + + + +
+

paint-grad-203-t

+
+

FAIL

+
+ raster image of paint-grad-203-t +
+
+ + +
+

+ Test on gradients with gradientUnits set. There are two rects, one using a gradient with gradientUnits set to "objectBoundingBox" and one with "userSpaceOnUse". Both rects contain a smaller rect to visualise the use of gradientUnits. + In the top rect, the small one should appear as a smaller version of the big rect. + In the bottom rect, the small one should just as a "frame" on the big rect. +

+ +
+ + + diff --git a/test/W3C_SVG_12_TinyTestSuite_beta/htmlObjectHarness/paint-grad-204-t.html b/test/W3C_SVG_12_TinyTestSuite_beta/htmlObjectHarness/paint-grad-204-t.html new file mode 100755 index 00000000..d2ac9c8b --- /dev/null +++ b/test/W3C_SVG_12_TinyTestSuite_beta/htmlObjectHarness/paint-grad-204-t.html @@ -0,0 +1,87 @@ + + + + + + + + +SVG 1.2 Tiny test:paint-grad-204-t + + + + + + + + + + +
+ + + + + + + + + + + + +
+

paint-grad-204-t

+
+

FAIL

+
+ raster image of paint-grad-204-t +
+
+ + +
+

+ Gradient with only one stop-color. This test is passed if the fill of + the rect on the right is identical to the fill of the rect on the left. +

+

+ For gradients with only a single stop-color the painting shall occur + with the solid color fill using the color defined for the gradient stop. +

+ +
+ + + diff --git a/test/W3C_SVG_12_TinyTestSuite_beta/htmlObjectHarness/paint-grad-205-t.html b/test/W3C_SVG_12_TinyTestSuite_beta/htmlObjectHarness/paint-grad-205-t.html new file mode 100755 index 00000000..84ffa239 --- /dev/null +++ b/test/W3C_SVG_12_TinyTestSuite_beta/htmlObjectHarness/paint-grad-205-t.html @@ -0,0 +1,83 @@ + + + + + + + + +SVG 1.2 Tiny test:paint-grad-205-t + + + + + + + + + + +
+ + + + + + + + + + + + +
+

paint-grad-205-t

+
+

FAIL

+
+ raster image of paint-grad-205-t +
+
+ + +
+

+ Gradient with no stop-elements. The painting shall occur as if 'none' were specified + as the paint style, thus allowing the pale blue rectangle to be seen inside the square. +

+ +
+ + + diff --git a/test/W3C_SVG_12_TinyTestSuite_beta/htmlObjectHarness/paint-nsstroke-201-t.html b/test/W3C_SVG_12_TinyTestSuite_beta/htmlObjectHarness/paint-nsstroke-201-t.html new file mode 100755 index 00000000..16649f34 --- /dev/null +++ b/test/W3C_SVG_12_TinyTestSuite_beta/htmlObjectHarness/paint-nsstroke-201-t.html @@ -0,0 +1,87 @@ + + + + + + + + +SVG 1.2 Tiny test:paint-nsstroke-201-t + + + + + + + + + + +
+ + + + + + + + + + + + +
+

paint-nsstroke-201-t

+
+

FAIL

+
+ raster image of paint-nsstroke-201-t +
+
+ + +
+

Non-scaling Stroke

+

Testing non-scaling-stroke on basic shapes and text.

+

The bottom shapes - triangle and oval - also have a gradient applied to the outline stroke.

+

+ At the start the two sets of shapes may not appear identical - depending on viewport size. + As the geometric shapes are zoomed out the outline strokes of the left-hand set of shapes + should remain fixed while the strokes of the right-hand set should scale in proportion to the shapes. +

+ +
+ + + diff --git a/test/W3C_SVG_12_TinyTestSuite_beta/htmlObjectHarness/paint-nsstroke-203-t.html b/test/W3C_SVG_12_TinyTestSuite_beta/htmlObjectHarness/paint-nsstroke-203-t.html new file mode 100755 index 00000000..d2632f6f --- /dev/null +++ b/test/W3C_SVG_12_TinyTestSuite_beta/htmlObjectHarness/paint-nsstroke-203-t.html @@ -0,0 +1,82 @@ + + + + + + + + +SVG 1.2 Tiny test:paint-nsstroke-203-t + + + + + + + + + + +
+ + + + + + + + + + + + +
+

paint-nsstroke-203-t

+
+

FAIL

+
+ raster image of paint-nsstroke-203-t +
+
+ + +
+

Non-scaling Stroke

+

Testing "non-scaling-stroke" on basic shapes with "animate" and "animateTranform".

+

The animation should run indefinitely.

+ +
+ + + diff --git a/test/W3C_SVG_12_TinyTestSuite_beta/htmlObjectHarness/paint-other-201-t.html b/test/W3C_SVG_12_TinyTestSuite_beta/htmlObjectHarness/paint-other-201-t.html new file mode 100755 index 00000000..b230beeb --- /dev/null +++ b/test/W3C_SVG_12_TinyTestSuite_beta/htmlObjectHarness/paint-other-201-t.html @@ -0,0 +1,84 @@ + + + + + + + + +SVG 1.2 Tiny test:paint-other-201-t + + + + + + + + + + +
+ + + + + + + + + + + + +
+

paint-other-201-t

+
+

FAIL

+
+ raster image of paint-other-201-t +
+
+ + +
+

Test solidColor paint server with 'solid-opacity' attribute.

+

+ There are three 'solidColor' definitions - red, green, blue. + These are used for both the fill and outlines of the rectangle and circle. +

+ +
+ + + diff --git a/test/W3C_SVG_12_TinyTestSuite_beta/htmlObjectHarness/paint-other-203-t.html b/test/W3C_SVG_12_TinyTestSuite_beta/htmlObjectHarness/paint-other-203-t.html new file mode 100755 index 00000000..7def96e0 --- /dev/null +++ b/test/W3C_SVG_12_TinyTestSuite_beta/htmlObjectHarness/paint-other-203-t.html @@ -0,0 +1,96 @@ + + + + + + + + +SVG 1.2 Tiny test:paint-other-203-t + + + + + + + + + + +
+ + + + + + + + + + + + +
+

paint-other-203-t

+
+

FAIL

+
+ raster image of paint-other-203-t +
+
+ + +
+

+ Test solidColor animation. Animates solid-color and solid-opacity on two rects. +

+

+ The test is passed if the following objects are displayed: + Rect 1 + - Fill: blue animated to red, opacity 0 animated to 1 + - Stroke: none + + Rect 2 (roated -30 degrees) + - Fill: none + - Stroke: red animated to yellow, opacity 1 animated to 0 +

+

+ One rect animates its fill from blue to red over 3 seconds and has its solid-opacity animated from 0 to 1 over 5 seconds. + The other rect (no fill and rotated -30) has its stroke animated from red to yellow over 3s and solid-opacity from 1 to 0 over 5 seconds. +

+ +
+ + + diff --git a/test/W3C_SVG_12_TinyTestSuite_beta/htmlObjectHarness/paint-stroke-01-t.html b/test/W3C_SVG_12_TinyTestSuite_beta/htmlObjectHarness/paint-stroke-01-t.html new file mode 100755 index 00000000..082086c6 --- /dev/null +++ b/test/W3C_SVG_12_TinyTestSuite_beta/htmlObjectHarness/paint-stroke-01-t.html @@ -0,0 +1,88 @@ + + + + + + + + +SVG 1.2 Tiny test:paint-stroke-01-t + + + + + + + + + + +
+ + + + + + + + + + + + +
+

paint-stroke-01-t

+
+

FAIL

+
+ raster image of paint-stroke-01-t +
+
+ + +
+

+ Verify the basic capability to handle the stroke properties ("stroke") in combination with the "rect" element. The + pair should be rendered as two blue rectangles, the upper one without a stroke and the lower with a red stroke. +

+

The rendered picture should match the reference image, except for possible variations in the labeling text (per CSS2 rules).

+

+ The test uses the "rect" element, as well as basic "fill" (solid primary colors), "stroke", stroke="red", + "font-family" (Arial) and "font-size" attributes. +

+ +
+ + + diff --git a/test/W3C_SVG_12_TinyTestSuite_beta/htmlObjectHarness/paint-stroke-02-t.html b/test/W3C_SVG_12_TinyTestSuite_beta/htmlObjectHarness/paint-stroke-02-t.html new file mode 100755 index 00000000..c0d72c65 --- /dev/null +++ b/test/W3C_SVG_12_TinyTestSuite_beta/htmlObjectHarness/paint-stroke-02-t.html @@ -0,0 +1,89 @@ + + + + + + + + +SVG 1.2 Tiny test:paint-stroke-02-t + + + + + + + + + + +
+ + + + + + + + + + + + +
+

paint-stroke-02-t

+
+

FAIL

+
+ raster image of paint-stroke-02-t +
+
+ + +
+

+ Verify the basic capability to handle the stroke properties ("stroke", "stroke-width", "stroke-linejoin") in + combination with the "rect" element. The pair should be rendered as two red rectangles without an interior fill. + The upper rectangle should have a stroke width of 5 with sharp corners. The lower rectangle should have a stroke + width of 5 with round corners. +

+

+ The test uses the "rect" element, as well as basic "fill" (solid primary colors), "stroke", stroke="red" + stroke-width="10" stroke-linejoin="round", "font-family" (Arial) and "font-size" properties. +

+ +
+ + + diff --git a/test/W3C_SVG_12_TinyTestSuite_beta/htmlObjectHarness/paint-stroke-03-t.html b/test/W3C_SVG_12_TinyTestSuite_beta/htmlObjectHarness/paint-stroke-03-t.html new file mode 100755 index 00000000..4d9e3949 --- /dev/null +++ b/test/W3C_SVG_12_TinyTestSuite_beta/htmlObjectHarness/paint-stroke-03-t.html @@ -0,0 +1,88 @@ + + + + + + + + +SVG 1.2 Tiny test:paint-stroke-03-t + + + + + + + + + + +
+ + + + + + + + + + + + +
+

paint-stroke-03-t

+
+

FAIL

+
+ raster image of paint-stroke-03-t +
+
+ + +
+

+ Verify the basic capability to handle the stroke properties ("stroke", "stroke-width" "stroke-linejoin", "stroke-linecap", + "stroke-miter") in combination with straight-line path commands. The pair should be rendered as as two red line segments. + The upper segment should have round end caps. The lower segment should be chopped off where the two line segments meet. +

+

+ The test uses the "path" element, as well as basic "fill" (solid primary colors), "stroke", "stroke-width", + "stroke-linejoin", "stroke-linecap", "stroke-miter", "font-family" (Arial) and "font-size" properties. +

+ +
+ + + diff --git a/test/W3C_SVG_12_TinyTestSuite_beta/htmlObjectHarness/paint-stroke-04-t.html b/test/W3C_SVG_12_TinyTestSuite_beta/htmlObjectHarness/paint-stroke-04-t.html new file mode 100755 index 00000000..9e378655 --- /dev/null +++ b/test/W3C_SVG_12_TinyTestSuite_beta/htmlObjectHarness/paint-stroke-04-t.html @@ -0,0 +1,89 @@ + + + + + + + + +SVG 1.2 Tiny test:paint-stroke-04-t + + + + + + + + + + +
+ + + + + + + + + + + + +
+

paint-stroke-04-t

+
+

FAIL

+
+ raster image of paint-stroke-04-t +
+
+ + +
+

+ Verify the "stroke-dasharray" and "stroke-dashoffset" properties. Two lines are drawn, one red and one black. + Both have a "stroke-dasharray" of "10,10" giving a dashed appearance where the size of the gaps and the size of + the dash is equal. The help show this, the black line has a "stroke-dashoffset" so that the dashes in the black + line match up with the gaps in the red line. +

+

+ The test uses the "path" element, "stroke", "stroke-width", "stroke-dasharray" and "stroke-dashoffset", "font-family" + (Arial) and "font-size" properties. +

+ +
+ + + diff --git a/test/W3C_SVG_12_TinyTestSuite_beta/htmlObjectHarness/paint-stroke-05-t.html b/test/W3C_SVG_12_TinyTestSuite_beta/htmlObjectHarness/paint-stroke-05-t.html new file mode 100755 index 00000000..7c2568c0 --- /dev/null +++ b/test/W3C_SVG_12_TinyTestSuite_beta/htmlObjectHarness/paint-stroke-05-t.html @@ -0,0 +1,89 @@ + + + + + + + + +SVG 1.2 Tiny test:paint-stroke-05-t + + + + + + + + + + +
+ + + + + + + + + + + + +
+

paint-stroke-05-t

+
+

FAIL

+
+ raster image of paint-stroke-05-t +
+
+ + +
+

+ User agents may render graphical primitives with different levels of accurancy. + This test is aimed at determining how does a UA render thin strokes. +

+

+ The test file contains a number of vertical and horizontal lines. + The stroke width of the vertical lines are increasing from left to right. + The stroke width of the horizontal lines are increasing from top to bottom. + The user should be able to see a smooth stroke width increment for the vertical and horizontal lines. +

+ +
+ + + diff --git a/test/W3C_SVG_12_TinyTestSuite_beta/htmlObjectHarness/paint-stroke-06-t.html b/test/W3C_SVG_12_TinyTestSuite_beta/htmlObjectHarness/paint-stroke-06-t.html new file mode 100755 index 00000000..c75fde3e --- /dev/null +++ b/test/W3C_SVG_12_TinyTestSuite_beta/htmlObjectHarness/paint-stroke-06-t.html @@ -0,0 +1,93 @@ + + + + + + + + +SVG 1.2 Tiny test:paint-stroke-06-t + + + + + + + + + + +
+ + + + + + + + + + + + +
+

paint-stroke-06-t

+
+

FAIL

+
+ raster image of paint-stroke-06-t +
+
+ + +
+

+ Test default effects of stroke-dasharray. +

+

+ This specifically tests the values of none and 0. + This also tests an odd number of values in a dash-array attribute + and in combination with an offset. +

+

+ The top two lines must be solid black. The next line shows a thick + black line with a thinner red line on top; both must have the same + dash pattern. The bottom two lines, one black and one blue, must render + so that the gaps of one correspond to the dashes of the other. +

+ +
+ + + diff --git a/test/W3C_SVG_12_TinyTestSuite_beta/htmlObjectHarness/paint-stroke-07-t.html b/test/W3C_SVG_12_TinyTestSuite_beta/htmlObjectHarness/paint-stroke-07-t.html new file mode 100755 index 00000000..69dcb089 --- /dev/null +++ b/test/W3C_SVG_12_TinyTestSuite_beta/htmlObjectHarness/paint-stroke-07-t.html @@ -0,0 +1,84 @@ + + + + + + + + +SVG 1.2 Tiny test:paint-stroke-07-t + + + + + + + + + + +
+ + + + + + + + + + + + +
+

paint-stroke-07-t

+
+

FAIL

+
+ raster image of paint-stroke-07-t +
+
+ + +
+

+ Test effect of different stroke-miterlimits. For this particular combination of stroke width and angle, + the cut off value of stroke-miterlimit is 18.028. Thus, the first and second subtests should not truncate + the stroke, and all the rest must truncate it. +

+ +
+ + + diff --git a/test/W3C_SVG_12_TinyTestSuite_beta/htmlObjectHarness/paint-stroke-08-t.html b/test/W3C_SVG_12_TinyTestSuite_beta/htmlObjectHarness/paint-stroke-08-t.html new file mode 100755 index 00000000..ab4028ce --- /dev/null +++ b/test/W3C_SVG_12_TinyTestSuite_beta/htmlObjectHarness/paint-stroke-08-t.html @@ -0,0 +1,89 @@ + + + + + + + + +SVG 1.2 Tiny test:paint-stroke-08-t + + + + + + + + + + +
+ + + + + + + + + + + + +
+

paint-stroke-08-t

+
+

FAIL

+
+ raster image of paint-stroke-08-t +
+
+ + +
+

+ Test effects of stroke-opacity range. Values + outside the range 0-1.0 must be clamped. +

+

+ There must be no blue bars visible beside the three pink dots. + Four semitransparent blue bars, increasingly more opaque, + must line up with the yellow dots. Three fully opaque + blue bars must line up with the green dots. +

+ +
+ + + diff --git a/test/W3C_SVG_12_TinyTestSuite_beta/htmlObjectHarness/paint-stroke-201-t.html b/test/W3C_SVG_12_TinyTestSuite_beta/htmlObjectHarness/paint-stroke-201-t.html new file mode 100755 index 00000000..1f475efb --- /dev/null +++ b/test/W3C_SVG_12_TinyTestSuite_beta/htmlObjectHarness/paint-stroke-201-t.html @@ -0,0 +1,98 @@ + + + + + + + + +SVG 1.2 Tiny test:paint-stroke-201-t + + + + + + + + + + +
+ + + + + + + + + + + + +
+

paint-stroke-201-t

+
+

FAIL

+
+ raster image of paint-stroke-201-t +
+
+ + +
+

+ Stroking for circle, large stroke-width, small r. +

+

+ The main indication for a failed test is the appearence of something red. + A second indication is a thin white line inside a blue area. +

+

+ For smaller circles the radius gets smaller than the half stroke-width, therefore the fill is not + visible anymore for them. Only the animated circle at the beginning and the next circle + on its right have a visible fill. +

+

+ To test the correct rendering, the blue circles cover always red filled circles without a stroke. + Additionally the size of the circles is given with a thin white stroke on top. If something + red gets visible or blue parts of the stroke of the circle are outside of the related white + stroked circle, an error is occured. If the circles are not displayed as circles with an accuracy of + one device pixel, an error is occured too. +

+ +
+ + + diff --git a/test/W3C_SVG_12_TinyTestSuite_beta/htmlObjectHarness/paint-stroke-202-t.html b/test/W3C_SVG_12_TinyTestSuite_beta/htmlObjectHarness/paint-stroke-202-t.html new file mode 100755 index 00000000..6e4d7879 --- /dev/null +++ b/test/W3C_SVG_12_TinyTestSuite_beta/htmlObjectHarness/paint-stroke-202-t.html @@ -0,0 +1,99 @@ + + + + + + + + +SVG 1.2 Tiny test:paint-stroke-202-t + + + + + + + + + + +
+ + + + + + + + + + + + +
+

paint-stroke-202-t

+
+

FAIL

+
+ raster image of paint-stroke-202-t +
+
+ + +
+

+ Direction of stroke-dasharray and stroke-dashoffset for basic shapes. +

+

+ The main indication for a failed test is the appearence of a blue path on + a white background area. It is passed, if all blue paths are on a gray background area. +

+

+ stroke-dasharray and stroke-dashoffset are tested on basic shapes circle, ellipse, rectangle, + rectangle with rounded corners, line, polyline and polygon. The test is sensitive to the + direction of stroke-dasharray and stroke-dashoffset and on the starting point on the basic + shape. +

+

+ The dashes are positioned correctly, if they are only on a gray background area. + If there are dashes on a white background, this is an indication for an error. + Additional information given in the elements title and desc for the related subtest + may help to identify the tested shape and property combination and the error, + if there is one. +

+ +
+ + + diff --git a/test/W3C_SVG_12_TinyTestSuite_beta/htmlObjectHarness/paint-stroke-204-t.html b/test/W3C_SVG_12_TinyTestSuite_beta/htmlObjectHarness/paint-stroke-204-t.html new file mode 100755 index 00000000..80a1a673 --- /dev/null +++ b/test/W3C_SVG_12_TinyTestSuite_beta/htmlObjectHarness/paint-stroke-204-t.html @@ -0,0 +1,97 @@ + + + + + + + + +SVG 1.2 Tiny test:paint-stroke-204-t + + + + + + + + + + +
+ + + + + + + + + + + + +
+

paint-stroke-204-t

+
+

FAIL

+
+ raster image of paint-stroke-204-t +
+
+ + +
+

+ Precision tests for stroke-linejoin. +

+

+ The main indication for a failed test is the appearence of something red. +

+

+ stroke-linejoin is tested, using a comparsion with filled or stroked paths or shapes with the same appearance. + This is tested for different three miter angles for the values round, miter and bevel, for each of them one with + test path on top of the comparsion shapes and one with the path below. +

+ The four paths top right test the inheritance either for the value explicitely set to 'inherit' or a missing stroke-linejoin property. +

+

+

+ The top is always blue. If something + red gets visible, an error is occured. +

+ +
+ + + diff --git a/test/W3C_SVG_12_TinyTestSuite_beta/htmlObjectHarness/paint-stroke-205-t.html b/test/W3C_SVG_12_TinyTestSuite_beta/htmlObjectHarness/paint-stroke-205-t.html new file mode 100755 index 00000000..95459e46 --- /dev/null +++ b/test/W3C_SVG_12_TinyTestSuite_beta/htmlObjectHarness/paint-stroke-205-t.html @@ -0,0 +1,113 @@ + + + + + + + + +SVG 1.2 Tiny test:paint-stroke-205-t + + + + + + + + + + +
+ + + + + + + + + + + + +
+

paint-stroke-205-t

+
+

FAIL

+
+ raster image of paint-stroke-205-t +
+
+ + +
+

+ Stroking for subpaths with path length zero, depending on stroke-linecap. +

+

+ The main indication for a failed test is the appearence of something red + (this simple indication may fail itself, if the viewer does not support stroke-linecap). +

+

+ Several paths containing a subpath with length zero are + stroked and some of them animated. +

+

+ The zero length subpath is placed between two + other subpaths of finite length or before or after a + subpath of finite length or in one case the path consists of two + subpaths of length zero. + The behaviour is checked for stroke-linecap round, + square (subpath visible) and bevel (subpath not visible) + on the left. +

+

+ On the right the behaviour is tested with simple + animations to check the correct alignment + or shrinking to zero length. + stroke-linecap is animated between round or square too + for some of them. +

+

+ The behaviour is compared with similar paths with a + subpath of a very small length. Because the red stroked + paths have a slightly smaller stroke, they are always covered + by blue paths. + If something red gets visible, an error is occured. +

+ +
+ + + diff --git a/test/W3C_SVG_12_TinyTestSuite_beta/htmlObjectHarness/paint-stroke-207-t.html b/test/W3C_SVG_12_TinyTestSuite_beta/htmlObjectHarness/paint-stroke-207-t.html new file mode 100755 index 00000000..f338fb7c --- /dev/null +++ b/test/W3C_SVG_12_TinyTestSuite_beta/htmlObjectHarness/paint-stroke-207-t.html @@ -0,0 +1,102 @@ + + + + + + + + +SVG 1.2 Tiny test:paint-stroke-207-t + + + + + + + + + + +
+ + + + + + + + + + + + +
+

paint-stroke-207-t

+
+

FAIL

+
+ raster image of paint-stroke-207-t +
+
+ + +
+

+ Centering of stroke on the outline of rectangles. +

+

+ The main indication for a failed test is the appearence of something red. +

+

+ The width and position of the stroke centered on the outline of a rectangle is tested with four stroked rectangles, + one is the thin black stroked test frame rectangle, the second one a large blue rectangle, the third a rectangle + with rounded corners, looking like a circle and the fourth a small square. +

+

+ The correct position is tested by a comparsion with several filled rectangles in the background or in the fourth case + covering the test square completely. The parts of the background covered with the blue test rectangles are filled red, + respectively the test square is stroked red too. + Therefore if something red gets visible, the position of the stroke of + the related test rectangle is wrong. +

+

+ According to the conformance criteria all visual rendering should be accurate to within one px unit to the mathematically + correct result. Therefore possible residuals from the red background parts have to be in this + range of accuracy to pass the test. +

+ +
+ + + diff --git a/test/W3C_SVG_12_TinyTestSuite_beta/htmlObjectHarness/paint-vfill-201-t.html b/test/W3C_SVG_12_TinyTestSuite_beta/htmlObjectHarness/paint-vfill-201-t.html new file mode 100755 index 00000000..910bb1f8 --- /dev/null +++ b/test/W3C_SVG_12_TinyTestSuite_beta/htmlObjectHarness/paint-vfill-201-t.html @@ -0,0 +1,85 @@ + + + + + + + + +SVG 1.2 Tiny test:paint-vfill-201-t + + + + + + + + + + +
+ + + + + + + + + + + + +
+

paint-vfill-201-t

+
+

FAIL

+
+ raster image of paint-vfill-201-t +
+
+ + +
+

Viewport Fill Attribute

+

+ The root SVG element of this test slide has a 'viewport-fill' attribute set to 'silver'. + At the start the entire background should be a light grey.This should then change to aqua. + There are two reference squares in the center - silver and aqua. +

+ +
+ + + diff --git a/test/W3C_SVG_12_TinyTestSuite_beta/htmlObjectHarness/paint-vfill-202-t.html b/test/W3C_SVG_12_TinyTestSuite_beta/htmlObjectHarness/paint-vfill-202-t.html new file mode 100755 index 00000000..9abc5bf0 --- /dev/null +++ b/test/W3C_SVG_12_TinyTestSuite_beta/htmlObjectHarness/paint-vfill-202-t.html @@ -0,0 +1,83 @@ + + + + + + + + +SVG 1.2 Tiny test:paint-vfill-202-t + + + + + + + + + + +
+ + + + + + + + + + + + +
+

paint-vfill-202-t

+
+

FAIL

+
+ raster image of paint-vfill-202-t +
+
+ + +
+

+ Tests viewport-fill and viewport-fill-opacity. + The image should show the correct viewport-fill (green). +

+ +
+ + + diff --git a/test/W3C_SVG_12_TinyTestSuite_beta/htmlObjectHarness/paint-vfill-203-t.html b/test/W3C_SVG_12_TinyTestSuite_beta/htmlObjectHarness/paint-vfill-203-t.html new file mode 100755 index 00000000..53c3656d --- /dev/null +++ b/test/W3C_SVG_12_TinyTestSuite_beta/htmlObjectHarness/paint-vfill-203-t.html @@ -0,0 +1,83 @@ + + + + + + + + +SVG 1.2 Tiny test:paint-vfill-203-t + + + + + + + + + + +
+ + + + + + + + + + + + +
+

paint-vfill-203-t

+
+

FAIL

+
+ raster image of paint-vfill-203-t +
+
+ + +
+

+ Test on viewport-fill and viewport-fill-opacity. + Animates viewport-fill from yellow to blue over one second, and animates viewport-fill-opacity from 1.0 to 0.5. +

+ +
+ + + diff --git a/test/W3C_SVG_12_TinyTestSuite_beta/htmlObjectHarness/paint-vfill-204-t.html b/test/W3C_SVG_12_TinyTestSuite_beta/htmlObjectHarness/paint-vfill-204-t.html new file mode 100755 index 00000000..afe09aad --- /dev/null +++ b/test/W3C_SVG_12_TinyTestSuite_beta/htmlObjectHarness/paint-vfill-204-t.html @@ -0,0 +1,84 @@ + + + + + + + + +SVG 1.2 Tiny test:paint-vfill-204-t + + + + + + + + + + +
+ + + + + + + + + + + + +
+

paint-vfill-204-t

+
+

FAIL

+
+ raster image of paint-vfill-204-t +
+
+ + +
+

+ Test on viewport-fill and viewport-fill-opacity. viewport-fill-opacity is set to 0.0 so the set viewport-fill + color should not be visible. The image has its viewport-fill set to "inherit" and viewport-fill-opacity to 1.0 + so the image should show with a yellow viewport-fill and full opacity. +

+ +
+ + + diff --git a/test/W3C_SVG_12_TinyTestSuite_beta/htmlObjectHarness/paint-vfill-205-t.html b/test/W3C_SVG_12_TinyTestSuite_beta/htmlObjectHarness/paint-vfill-205-t.html new file mode 100755 index 00000000..e5352273 --- /dev/null +++ b/test/W3C_SVG_12_TinyTestSuite_beta/htmlObjectHarness/paint-vfill-205-t.html @@ -0,0 +1,83 @@ + + + + + + + + +SVG 1.2 Tiny test:paint-vfill-205-t + + + + + + + + + + +
+ + + + + + + + + + + + +
+

paint-vfill-205-t

+
+

FAIL

+
+ raster image of paint-vfill-205-t +
+
+ + +
+

+ Tests viewport-fill and viewport-fill-opacity. + Output should match reference image. +

+ +
+ + + diff --git a/test/W3C_SVG_12_TinyTestSuite_beta/htmlObjectHarness/paint-vfill-206-t.html b/test/W3C_SVG_12_TinyTestSuite_beta/htmlObjectHarness/paint-vfill-206-t.html new file mode 100755 index 00000000..64b035e9 --- /dev/null +++ b/test/W3C_SVG_12_TinyTestSuite_beta/htmlObjectHarness/paint-vfill-206-t.html @@ -0,0 +1,86 @@ + + + + + + + + +SVG 1.2 Tiny test:paint-vfill-206-t + + + + + + + + + + +
+ + + + + + + + + + + + +
+

paint-vfill-206-t

+
+

FAIL

+
+ raster image of paint-vfill-206-t +
+
+ + +
+

Viewport Fill Opacity Attribute

+

+ The root SVG element of this test slide has a 'viewport-fill' attribute set to 'yellow' + with a 'viewport-fill-opacity' of 1. At the start the entire background should be solid yellow. + This should then change to a pale bluish gray. There are two reference squares in the center - solid yellow - to + match the background at the start and a pale yellow that should match the backgound after a few seconds. +

+ +
+ + + diff --git a/test/W3C_SVG_12_TinyTestSuite_beta/htmlObjectHarness/paths-data-01-t.html b/test/W3C_SVG_12_TinyTestSuite_beta/htmlObjectHarness/paths-data-01-t.html new file mode 100755 index 00000000..46ef1469 --- /dev/null +++ b/test/W3C_SVG_12_TinyTestSuite_beta/htmlObjectHarness/paths-data-01-t.html @@ -0,0 +1,82 @@ + + + + + + + + +SVG 1.2 Tiny test:paths-data-01-t + + + + + + + + + + +
+ + + + + + + + + + + + +
+

paths-data-01-t

+
+

FAIL

+
+ raster image of paths-data-01-t +
+
+ + +
+

Test that the viewer has the basic capability to handle the 'path' element and its data (d) attribute in combination with the cubic Bezier curveto commands, C, c, S, s (plus Mm and Zz).

+

There are 8 subtests, each composed from the cubic Bezier path commands per the label by the subtest. On-curve control points (i.e., the curve position) are marked by small blue squares. Subtests are filled, or stroked, or both, using simple style properties and colors.

+

The rendered picture should match the reference image exactly, except for possible variations in the labelling text (per CSS2 rules).

+ +
+ + + diff --git a/test/W3C_SVG_12_TinyTestSuite_beta/htmlObjectHarness/paths-data-02-t.html b/test/W3C_SVG_12_TinyTestSuite_beta/htmlObjectHarness/paths-data-02-t.html new file mode 100755 index 00000000..60632350 --- /dev/null +++ b/test/W3C_SVG_12_TinyTestSuite_beta/htmlObjectHarness/paths-data-02-t.html @@ -0,0 +1,82 @@ + + + + + + + + +SVG 1.2 Tiny test:paths-data-02-t + + + + + + + + + + +
+ + + + + + + + + + + + +
+

paths-data-02-t

+
+

FAIL

+
+ raster image of paths-data-02-t +
+
+ + +
+

Test that the viewer has the basic capability to handle the 'path' element and its data (d) attribute in combination with the quadratic Bezier curveto commands, Q, q, T, t (plus Mm and Zz).

+

There are 7 subtests, each composed from the quadric Bezier path commands per the label by the subtest. On-curve control points (i.e., the curve position) are marked by small colored squares. Subtests are filled, or stroked, or both, using simple style properties and colors.

+

The rendered picture should match the reference image exactly, except for possible variations in the labelling text (per CSS2 rules).

+ +
+ + + diff --git a/test/W3C_SVG_12_TinyTestSuite_beta/htmlObjectHarness/paths-data-04-t.html b/test/W3C_SVG_12_TinyTestSuite_beta/htmlObjectHarness/paths-data-04-t.html new file mode 100755 index 00000000..0a81b439 --- /dev/null +++ b/test/W3C_SVG_12_TinyTestSuite_beta/htmlObjectHarness/paths-data-04-t.html @@ -0,0 +1,81 @@ + + + + + + + + +SVG 1.2 Tiny test:paths-data-04-t + + + + + + + + + + +
+ + + + + + + + + + + + +
+

paths-data-04-t

+
+

FAIL

+
+ raster image of paths-data-04-t +
+
+ + +
+

Verify the basic capability to handle the 'path' element, and its data attribute (d) in combination with the straight-line path commands. Two pairs of concentric equilateral triangles are drawn using respectively M,L,Z and m,l,z. The shapes are identical, with one stroked and one filled. The fill-mode default of "even-odd" means that the inner triangle is hollow.

+

The rendered picture should match the reference image exactly, except for possible variations in the labelling text (per CSS2 rules).

+ +
+ + + diff --git a/test/W3C_SVG_12_TinyTestSuite_beta/htmlObjectHarness/paths-data-05-t.html b/test/W3C_SVG_12_TinyTestSuite_beta/htmlObjectHarness/paths-data-05-t.html new file mode 100755 index 00000000..5a4162d3 --- /dev/null +++ b/test/W3C_SVG_12_TinyTestSuite_beta/htmlObjectHarness/paths-data-05-t.html @@ -0,0 +1,81 @@ + + + + + + + + +SVG 1.2 Tiny test:paths-data-05-t + + + + + + + + + + +
+ + + + + + + + + + + + +
+

paths-data-05-t

+
+

FAIL

+
+ raster image of paths-data-05-t +
+
+ + +
+

Verify the basic capability to handle the 'path' element, and its data attribute (d) in combination with the straight-line path commands. Two pairs of concentric equilateral triangles are drawn using respectively M,L,Z and m,l,z. The shapes in each pair are identical, with one stroked and one filled. The fill-mode default of "even-odd" means that the inner triangle is hollow.

+

The rendered picture should match the reference image exactly, except for possible variations in the labelling text (per CSS2 rules).

+ +
+ + + diff --git a/test/W3C_SVG_12_TinyTestSuite_beta/htmlObjectHarness/paths-data-06-t.html b/test/W3C_SVG_12_TinyTestSuite_beta/htmlObjectHarness/paths-data-06-t.html new file mode 100755 index 00000000..a343f8fb --- /dev/null +++ b/test/W3C_SVG_12_TinyTestSuite_beta/htmlObjectHarness/paths-data-06-t.html @@ -0,0 +1,81 @@ + + + + + + + + +SVG 1.2 Tiny test:paths-data-06-t + + + + + + + + + + +
+ + + + + + + + + + + + +
+

paths-data-06-t

+
+

FAIL

+
+ raster image of paths-data-06-t +
+
+ + +
+

Verify the basic capability to handle the 'path' element, and its data attribute (d) in combination with the straight-line path commands. Two pairs of staircase figures are drawn using respectively M,H,V,Z and m,h,v,z. The shapes in each pair are identical, with one stroked and one filled.

+

The rendered picture should match the reference image exactly, except for possible variations in the labelling text (per CSS2 rules).

+ +
+ + + diff --git a/test/W3C_SVG_12_TinyTestSuite_beta/htmlObjectHarness/paths-data-07-t.html b/test/W3C_SVG_12_TinyTestSuite_beta/htmlObjectHarness/paths-data-07-t.html new file mode 100755 index 00000000..27589bc7 --- /dev/null +++ b/test/W3C_SVG_12_TinyTestSuite_beta/htmlObjectHarness/paths-data-07-t.html @@ -0,0 +1,81 @@ + + + + + + + + +SVG 1.2 Tiny test:paths-data-07-t + + + + + + + + + + +
+ + + + + + + + + + + + +
+

paths-data-07-t

+
+

FAIL

+
+ raster image of paths-data-07-t +
+
+ + +
+

Verify the basic capability to handle the 'path' element, and its data attribute (d) in combination with the straight-line path commands. Two pairs of staircase figures are drawn using respectively M,H,V,Z and m,h,v,z. The shapes in each pair are identical, with one stroked and one filled.

+

The rendered picture should match the reference image exactly, except for possible variations in the labelling text (per CSS2 rules).

+ +
+ + + diff --git a/test/W3C_SVG_12_TinyTestSuite_beta/htmlObjectHarness/paths-data-08-t.html b/test/W3C_SVG_12_TinyTestSuite_beta/htmlObjectHarness/paths-data-08-t.html new file mode 100755 index 00000000..29905009 --- /dev/null +++ b/test/W3C_SVG_12_TinyTestSuite_beta/htmlObjectHarness/paths-data-08-t.html @@ -0,0 +1,81 @@ + + + + + + + + +SVG 1.2 Tiny test:paths-data-08-t + + + + + + + + + + +
+ + + + + + + + + + + + +
+

paths-data-08-t

+
+

FAIL

+
+ raster image of paths-data-08-t +
+
+ + +
+

Verify the basic capability to handle the 'path' element, and its data attribute (d) in combination with the straight-line path commands. Two pairs of concentric equilateral triangles are drawn using M and Z. No L commands are used in this test as they are implied after an M or Z command. The shapes are identical, with one stroked and one filled. The fill-mode default of "even-odd" means that the inner triangle is hollow.

+

The rendered picture should match the reference image exactly, except for possible variations in the labelling text (per CSS2 rules).

+ +
+ + + diff --git a/test/W3C_SVG_12_TinyTestSuite_beta/htmlObjectHarness/paths-data-09-t.html b/test/W3C_SVG_12_TinyTestSuite_beta/htmlObjectHarness/paths-data-09-t.html new file mode 100755 index 00000000..cab4e831 --- /dev/null +++ b/test/W3C_SVG_12_TinyTestSuite_beta/htmlObjectHarness/paths-data-09-t.html @@ -0,0 +1,81 @@ + + + + + + + + +SVG 1.2 Tiny test:paths-data-09-t + + + + + + + + + + +
+ + + + + + + + + + + + +
+

paths-data-09-t

+
+

FAIL

+
+ raster image of paths-data-09-t +
+
+ + +
+

Verify the basic capability to handle the 'path' element, and its data attribute (d) in combination with the straight-line path commands. Two pairs of concentric equilateral triangles are drawn using m and z. No l commands are used in this test as they are implied after an m or z command. The shapes are identical, with one stroked and one filled. The fill-mode default of "even-odd" means that the inner triangle is hollow.

+

The rendered picture should match the reference image exactly, except for possible variations in the labelling text (per CSS2 rules).

+ +
+ + + diff --git a/test/W3C_SVG_12_TinyTestSuite_beta/htmlObjectHarness/paths-data-10-t.html b/test/W3C_SVG_12_TinyTestSuite_beta/htmlObjectHarness/paths-data-10-t.html new file mode 100755 index 00000000..01f0f35a --- /dev/null +++ b/test/W3C_SVG_12_TinyTestSuite_beta/htmlObjectHarness/paths-data-10-t.html @@ -0,0 +1,81 @@ + + + + + + + + +SVG 1.2 Tiny test:paths-data-10-t + + + + + + + + + + +
+ + + + + + + + + + + + +
+

paths-data-10-t

+
+

FAIL

+
+ raster image of paths-data-10-t +
+
+ + +
+

Verify that the viewer renders the line caps and line joins for open and closed paths properly. Verify that the open triangular paths are stroked differently at ends of the path than they are at their intermediate corners. In contrast, the corners of a closed path should all appear the same.

+

The rendered picture should match the reference image, except for possible variations in the labelling text (per CSS2 rules).

+ +
+ + + diff --git a/test/W3C_SVG_12_TinyTestSuite_beta/htmlObjectHarness/paths-data-12-t.html b/test/W3C_SVG_12_TinyTestSuite_beta/htmlObjectHarness/paths-data-12-t.html new file mode 100755 index 00000000..da6df6c2 --- /dev/null +++ b/test/W3C_SVG_12_TinyTestSuite_beta/htmlObjectHarness/paths-data-12-t.html @@ -0,0 +1,81 @@ + + + + + + + + +SVG 1.2 Tiny test:paths-data-12-t + + + + + + + + + + +
+ + + + + + + + + + + + +
+

paths-data-12-t

+
+

FAIL

+
+ raster image of paths-data-12-t +
+
+ + +
+

Test using multiple coord sets to build a polybézier, and implicit values for initial S.

+

The rendered picture should match the reference image exactly, except for possible variations in the labelling text (per CSS2 rules).

+ +
+ + + diff --git a/test/W3C_SVG_12_TinyTestSuite_beta/htmlObjectHarness/paths-data-13-t.html b/test/W3C_SVG_12_TinyTestSuite_beta/htmlObjectHarness/paths-data-13-t.html new file mode 100755 index 00000000..7c8cfc8f --- /dev/null +++ b/test/W3C_SVG_12_TinyTestSuite_beta/htmlObjectHarness/paths-data-13-t.html @@ -0,0 +1,81 @@ + + + + + + + + +SVG 1.2 Tiny test:paths-data-13-t + + + + + + + + + + +
+ + + + + + + + + + + + +
+

paths-data-13-t

+
+

FAIL

+
+ raster image of paths-data-13-t +
+
+ + +
+

Test multiple coordinates for V and H. There should be one horizontal red line and one vertical blue line.

+

The rendered picture should match the reference image exactly, except for possible variations in the labelling text (per CSS2 rules).

+ +
+ + + diff --git a/test/W3C_SVG_12_TinyTestSuite_beta/htmlObjectHarness/paths-data-14-t.html b/test/W3C_SVG_12_TinyTestSuite_beta/htmlObjectHarness/paths-data-14-t.html new file mode 100755 index 00000000..182a8ec3 --- /dev/null +++ b/test/W3C_SVG_12_TinyTestSuite_beta/htmlObjectHarness/paths-data-14-t.html @@ -0,0 +1,81 @@ + + + + + + + + +SVG 1.2 Tiny test:paths-data-14-t + + + + + + + + + + +
+ + + + + + + + + + + + +
+

paths-data-14-t

+
+

FAIL

+
+ raster image of paths-data-14-t +
+
+ + +
+

Test implicit values for moveto. If the first command is 'm' it should be taken as an absolute moveto, plus implicit lineto.

+

The rendered picture should match the reference image exactly, except for possible variations in the labelling text (per CSS2 rules).

+ +
+ + + diff --git a/test/W3C_SVG_12_TinyTestSuite_beta/htmlObjectHarness/paths-data-15-t.html b/test/W3C_SVG_12_TinyTestSuite_beta/htmlObjectHarness/paths-data-15-t.html new file mode 100755 index 00000000..2ff55669 --- /dev/null +++ b/test/W3C_SVG_12_TinyTestSuite_beta/htmlObjectHarness/paths-data-15-t.html @@ -0,0 +1,81 @@ + + + + + + + + +SVG 1.2 Tiny test:paths-data-15-t + + + + + + + + + + +
+ + + + + + + + + + + + +
+

paths-data-15-t

+
+

FAIL

+
+ raster image of paths-data-15-t +
+
+ + +
+

Test using multiple coord sets to build a polybézier, then T with no preceding Q or T.

+

The rendered picture should match the reference image exactly, except for possible variations in the labeling text (per CSS2 rules).

+ +
+ + + diff --git a/test/W3C_SVG_12_TinyTestSuite_beta/htmlObjectHarness/render-elems-01-t.html b/test/W3C_SVG_12_TinyTestSuite_beta/htmlObjectHarness/render-elems-01-t.html new file mode 100755 index 00000000..b61c36c8 --- /dev/null +++ b/test/W3C_SVG_12_TinyTestSuite_beta/htmlObjectHarness/render-elems-01-t.html @@ -0,0 +1,83 @@ + + + + + + + + +SVG 1.2 Tiny test:render-elems-01-t + + + + + + + + + + +
+ + + + + + + + + + + + +
+

render-elems-01-t

+
+

FAIL

+
+ raster image of render-elems-01-t +
+
+ + +
+

Verifies that shapes can be filled.

+

There is one pair of octagons. These are filled.

+

The rendered image should match the reference image except for the text which may show minor layout differences.

+

The test uses the 'path' element, as well as basic fill (solid primary colors), stroke (primary color 1-pixel and wide lines), font-family (Arial) and font-size properties - the common prerequisites.

+ +
+ + + diff --git a/test/W3C_SVG_12_TinyTestSuite_beta/htmlObjectHarness/render-elems-02-t.html b/test/W3C_SVG_12_TinyTestSuite_beta/htmlObjectHarness/render-elems-02-t.html new file mode 100755 index 00000000..29618bad --- /dev/null +++ b/test/W3C_SVG_12_TinyTestSuite_beta/htmlObjectHarness/render-elems-02-t.html @@ -0,0 +1,83 @@ + + + + + + + + +SVG 1.2 Tiny test:render-elems-02-t + + + + + + + + + + +
+ + + + + + + + + + + + +
+

render-elems-02-t

+
+

FAIL

+
+ raster image of render-elems-02-t +
+
+ + +
+

Verifies that shapes can be stroked.

+

There is one pair of octagons. These are stroked.

+

The rendered image should match the reference image except for the text which may show minor layout differences.

+

The test uses the 'rect' element, as well as basic fill (solid primary colors), stroke (primary color 1-pixel and wide lines), font-family (Arial) and font-size properties - the common prerequisites.

+ +
+ + + diff --git a/test/W3C_SVG_12_TinyTestSuite_beta/htmlObjectHarness/render-elems-03-t.html b/test/W3C_SVG_12_TinyTestSuite_beta/htmlObjectHarness/render-elems-03-t.html new file mode 100755 index 00000000..d27d3cbe --- /dev/null +++ b/test/W3C_SVG_12_TinyTestSuite_beta/htmlObjectHarness/render-elems-03-t.html @@ -0,0 +1,83 @@ + + + + + + + + +SVG 1.2 Tiny test:render-elems-03-t + + + + + + + + + + +
+ + + + + + + + + + + + +
+

render-elems-03-t

+
+

FAIL

+
+ raster image of render-elems-03-t +
+
+ + +
+

Verifies that shapes can be filled, stroked and the order of filling and stroking.

+

There is one pair of octagons. These are filled plus stroked.

+

The rendered image should match the reference image except for the text which may show minor layout differences.

+

The test uses the 'rect' element, as well as basic fill (solid primary colors), stroke (primary color 1-pixel and wide lines), font-family (Arial) and font-size properties - the common prerequisites.

+ +
+ + + diff --git a/test/W3C_SVG_12_TinyTestSuite_beta/htmlObjectHarness/render-elems-06-t.html b/test/W3C_SVG_12_TinyTestSuite_beta/htmlObjectHarness/render-elems-06-t.html new file mode 100755 index 00000000..a77a29c3 --- /dev/null +++ b/test/W3C_SVG_12_TinyTestSuite_beta/htmlObjectHarness/render-elems-06-t.html @@ -0,0 +1,81 @@ + + + + + + + + +SVG 1.2 Tiny test:render-elems-06-t + + + + + + + + + + +
+ + + + + + + + + + + + +
+

render-elems-06-t

+
+

FAIL

+
+ raster image of render-elems-06-t +
+
+ + +
+

Verifies that text can be filled. The test shows two 'A' characters that are filled and not stroked.

+

The rendered image should match the reference image except for the text which may show minor layout differences.

+ +
+ + + diff --git a/test/W3C_SVG_12_TinyTestSuite_beta/htmlObjectHarness/render-elems-07-t.html b/test/W3C_SVG_12_TinyTestSuite_beta/htmlObjectHarness/render-elems-07-t.html new file mode 100755 index 00000000..0c760733 --- /dev/null +++ b/test/W3C_SVG_12_TinyTestSuite_beta/htmlObjectHarness/render-elems-07-t.html @@ -0,0 +1,81 @@ + + + + + + + + +SVG 1.2 Tiny test:render-elems-07-t + + + + + + + + + + +
+ + + + + + + + + + + + +
+

render-elems-07-t

+
+

FAIL

+
+ raster image of render-elems-07-t +
+
+ + +
+

Verifies that text can be stroked. The The test shows two characters that are stroked and not filled.

+

The rendered image should match the reference image except for the text which may show minor layout differences.

+ +
+ + + diff --git a/test/W3C_SVG_12_TinyTestSuite_beta/htmlObjectHarness/render-elems-08-t.html b/test/W3C_SVG_12_TinyTestSuite_beta/htmlObjectHarness/render-elems-08-t.html new file mode 100755 index 00000000..ca6b46b8 --- /dev/null +++ b/test/W3C_SVG_12_TinyTestSuite_beta/htmlObjectHarness/render-elems-08-t.html @@ -0,0 +1,81 @@ + + + + + + + + +SVG 1.2 Tiny test:render-elems-08-t + + + + + + + + + + +
+ + + + + + + + + + + + +
+

render-elems-08-t

+
+

FAIL

+
+ raster image of render-elems-08-t +
+
+ + +
+

Verifies that text can be stroked. The test shows two 'A' characters that are both stroked and filled.

+

The rendered image should match the reference image except for the text which may show minor layout differences.

+ +
+ + + diff --git a/test/W3C_SVG_12_TinyTestSuite_beta/htmlObjectHarness/render-groups-01-t.html b/test/W3C_SVG_12_TinyTestSuite_beta/htmlObjectHarness/render-groups-01-t.html new file mode 100755 index 00000000..0dd8e02b --- /dev/null +++ b/test/W3C_SVG_12_TinyTestSuite_beta/htmlObjectHarness/render-groups-01-t.html @@ -0,0 +1,83 @@ + + + + + + + + +SVG 1.2 Tiny test:render-groups-01-t + + + + + + + + + + +
+ + + + + + + + + + + + +
+

render-groups-01-t

+
+

FAIL

+
+ raster image of render-groups-01-t +
+
+ + +
+

Verifies implicit rendering order (paragraph 3.3) and grouping mechanism (paragraphs 3.4). It also validates basic Shape, Image and text rendering.

+

This test renders 3 elements: a text string "SVG", then a shape, then an image. Because of their definition order and coordinates, the image should be on top of the rectangle and the rectangle on top of the text. None of the "SVG" should show through the rectangle and none of the rectangle should show through the image.

+

Prerequisites: the test assumes proper handling of the fill stroke, stroke-width, font-size rendering properties. It uses the rect, line, text and image elements, as well as all the elements required for the test template. To ensure that the text string is overlapped by the other elements and to avoid a dependency on system fonts, an SVG font is used.

+

The rendered image should match the reference image exactly.

+ +
+ + + diff --git a/test/W3C_SVG_12_TinyTestSuite_beta/htmlObjectHarness/render-groups-03-t.html b/test/W3C_SVG_12_TinyTestSuite_beta/htmlObjectHarness/render-groups-03-t.html new file mode 100755 index 00000000..f4e6ba58 --- /dev/null +++ b/test/W3C_SVG_12_TinyTestSuite_beta/htmlObjectHarness/render-groups-03-t.html @@ -0,0 +1,83 @@ + + + + + + + + +SVG 1.2 Tiny test:render-groups-03-t + + + + + + + + + + +
+ + + + + + + + + + + + +
+

render-groups-03-t

+
+

FAIL

+
+ raster image of render-groups-03-t +
+
+ + +
+

Verifies implicit rendering order (paragraph 3.3) and grouping mechanism (paragraphs 3.4). It also validates basic Shape, Image and text rendering.

+

This test renders 3 elements: a text string "SVG", then a shape, then an image. Because of their definition order and coordinates, the image should be on top of the rectangle and the rectangle on top of the text. None of the "SVG" should show through the rectangle and none of the rectangle should show through the image.

+

Prerequisites: the test assumes proper handling of the fill stroke, stroke-width, font-size rendering properties. It uses the rect, line, text and image elements, as well as all the elements required for the test template. To ensure that the text string is overlapped by the other elements and to avoid a dependency on system fonts, an SVG font is used.

+

The rendered image should match the reference image exactly.

+ +
+ + + diff --git a/test/W3C_SVG_12_TinyTestSuite_beta/htmlObjectHarness/script-element-201-t.html b/test/W3C_SVG_12_TinyTestSuite_beta/htmlObjectHarness/script-element-201-t.html new file mode 100755 index 00000000..bb66c1f8 --- /dev/null +++ b/test/W3C_SVG_12_TinyTestSuite_beta/htmlObjectHarness/script-element-201-t.html @@ -0,0 +1,92 @@ + + + + + + + + +SVG 1.2 Tiny test:script-element-201-t + + + + + + + + + + +
+ + + + + + + + + + + + +
+

script-element-201-t

+
+

FAIL

+
+ raster image of script-element-201-t +
+
+ + +
+

+ Test that when a script element has both an xlink:href attribute and child character data, + the executable content for the script is retrieved from the IRI of the xlink:href attribute, + and the child content is not added to the scripting context. +

+

+ The test loads an external script resource, which if executed sets the fill or the blue rect to green. + If the child content is executed the fill will be set to red and an alert will be displayed. +

+

+ The test has passed if the rect is green after script execution has taken place and there has been no + alert displayed. +

+ +
+ + + diff --git a/test/W3C_SVG_12_TinyTestSuite_beta/htmlObjectHarness/script-element-202-t.html b/test/W3C_SVG_12_TinyTestSuite_beta/htmlObjectHarness/script-element-202-t.html new file mode 100755 index 00000000..5429476f --- /dev/null +++ b/test/W3C_SVG_12_TinyTestSuite_beta/htmlObjectHarness/script-element-202-t.html @@ -0,0 +1,91 @@ + + + + + + + + +SVG 1.2 Tiny test:script-element-202-t + + + + + + + + + + +
+ + + + + + + + + + + + +
+

script-element-202-t

+
+

FAIL

+
+ raster image of script-element-202-t +
+
+ + +
+

+ Test that scripts are not processed until added to the DOM tree. Also test that a function defined in a script + element can be called from a handler element in the same scripting context. +

+

+ When the blue rect is clicked a script element is created. The script to be run must not be processed until + the script element is added to the tree. If it is processed before added to the tree, the rect that is + inserted into the document will be red. If not, then it will be green. +

+

+ The test has passed if after clicking the blue rect a green rect is displayed in its place. +

+ +
+ + + diff --git a/test/W3C_SVG_12_TinyTestSuite_beta/htmlObjectHarness/script-element-203-t.html b/test/W3C_SVG_12_TinyTestSuite_beta/htmlObjectHarness/script-element-203-t.html new file mode 100755 index 00000000..7557818d --- /dev/null +++ b/test/W3C_SVG_12_TinyTestSuite_beta/htmlObjectHarness/script-element-203-t.html @@ -0,0 +1,86 @@ + + + + + + + + +SVG 1.2 Tiny test:script-element-203-t + + + + + + + + + + +
+ + + + + + + + + + + + +
+

script-element-203-t

+
+

FAIL

+
+ raster image of script-element-203-t +
+
+ + +
+

+ The test consists of 8 subtests, each testing requirements from the script processing section. + When the test is first loaded it shows 8 red circles. After the scripts have been executed the circles should all be green. +

+

+ The test has passed if all 8 circles are green after the script processing has taken place. +

+ +
+ + + diff --git a/test/W3C_SVG_12_TinyTestSuite_beta/htmlObjectHarness/script-handle-05-t.html b/test/W3C_SVG_12_TinyTestSuite_beta/htmlObjectHarness/script-handle-05-t.html new file mode 100755 index 00000000..9571d57a --- /dev/null +++ b/test/W3C_SVG_12_TinyTestSuite_beta/htmlObjectHarness/script-handle-05-t.html @@ -0,0 +1,81 @@ + + + + + + + + +SVG 1.2 Tiny test:script-handle-05-t + + + + + + + + + + +
+ + + + + + + + + + + + +
+

script-handle-05-t

+
+

FAIL

+
+ raster image of script-handle-05-t +
+
+ + +
+

Tests basic mouse event handler and DOM manipulation through ECMA script binding.

+

The test uses ECMA Script and initially displays a target with a message asking the user to click on the target. Once the user has done so, and if both event handling and DOM manipulation are supported, then the target and initial text are hidden and a text message indicating that the test was successful is displayed.

+ +
+ + + diff --git a/test/W3C_SVG_12_TinyTestSuite_beta/htmlObjectHarness/script-handle-06-t.html b/test/W3C_SVG_12_TinyTestSuite_beta/htmlObjectHarness/script-handle-06-t.html new file mode 100755 index 00000000..b565f29d --- /dev/null +++ b/test/W3C_SVG_12_TinyTestSuite_beta/htmlObjectHarness/script-handle-06-t.html @@ -0,0 +1,82 @@ + + + + + + + + +SVG 1.2 Tiny test:script-handle-06-t + + + + + + + + + + +
+ + + + + + + + + + + + +
+

script-handle-06-t

+
+

FAIL

+
+ raster image of script-handle-06-t +
+
+ + +
+

Tests basic mouse event handlers.

+

The test shows a target that can be used to generate the various kinds of mouse and keyboard events supported in SVG. Below the target, the list of events is shown with red markers next to each.

+

If the test passes, all the markers should have turned to green after the events have been triggered on the target. If any event has not triggered, its marker will remain red.

+ +
+ + + diff --git a/test/W3C_SVG_12_TinyTestSuite_beta/htmlObjectHarness/script-handle-07-t.html b/test/W3C_SVG_12_TinyTestSuite_beta/htmlObjectHarness/script-handle-07-t.html new file mode 100755 index 00000000..f4da95fd --- /dev/null +++ b/test/W3C_SVG_12_TinyTestSuite_beta/htmlObjectHarness/script-handle-07-t.html @@ -0,0 +1,82 @@ + + + + + + + + +SVG 1.2 Tiny test:script-handle-07-t + + + + + + + + + + +
+ + + + + + + + + + + + +
+

script-handle-07-t

+
+

FAIL

+
+ raster image of script-handle-07-t +
+
+ + +
+

Tests basic mouse event handlers.

+

The test shows a target that can be used to generate the various kinds of mouse and keyboard events supported in SVG. Below the target, the list of events is shown with red markers next to each.

+

If the test passes, all the markers should have turned to green after the events have been triggered on the target. If any event has not triggered, its marker will remain red.

+ +
+ + + diff --git a/test/W3C_SVG_12_TinyTestSuite_beta/htmlObjectHarness/script-handle-08-t.html b/test/W3C_SVG_12_TinyTestSuite_beta/htmlObjectHarness/script-handle-08-t.html new file mode 100755 index 00000000..5d2e89ef --- /dev/null +++ b/test/W3C_SVG_12_TinyTestSuite_beta/htmlObjectHarness/script-handle-08-t.html @@ -0,0 +1,82 @@ + + + + + + + + +SVG 1.2 Tiny test:script-handle-08-t + + + + + + + + + + +
+ + + + + + + + + + + + +
+

script-handle-08-t

+
+

FAIL

+
+ raster image of script-handle-08-t +
+
+ + +
+

Tests basic mouse event handlers.

+

The test shows a target that can be used to generate the various kinds of mouse and keyboard events supported in SVG. Below the target, the list of events is shown with red markers next to each.

+

If the test passes, all the markers should have turned to green after the events have been triggered on the target. If any event has not triggered, its marker will remain red.

+ +
+ + + diff --git a/test/W3C_SVG_12_TinyTestSuite_beta/htmlObjectHarness/script-handle-201-t.html b/test/W3C_SVG_12_TinyTestSuite_beta/htmlObjectHarness/script-handle-201-t.html new file mode 100755 index 00000000..5488eee8 --- /dev/null +++ b/test/W3C_SVG_12_TinyTestSuite_beta/htmlObjectHarness/script-handle-201-t.html @@ -0,0 +1,82 @@ + + + + + + + + +SVG 1.2 Tiny test:script-handle-201-t + + + + + + + + + + +
+ + + + + + + + + + + + +
+

script-handle-201-t

+
+

FAIL

+
+ raster image of script-handle-201-t +
+
+ + +
+

+ Test on event handling and scripting. While the mouse is over the rect, a new red rect should become visible underneath. +

+ +
+ + + diff --git a/test/W3C_SVG_12_TinyTestSuite_beta/htmlObjectHarness/script-handle-202-t.html b/test/W3C_SVG_12_TinyTestSuite_beta/htmlObjectHarness/script-handle-202-t.html new file mode 100755 index 00000000..63510eff --- /dev/null +++ b/test/W3C_SVG_12_TinyTestSuite_beta/htmlObjectHarness/script-handle-202-t.html @@ -0,0 +1,82 @@ + + + + + + + + +SVG 1.2 Tiny test:script-handle-202-t + + + + + + + + + + +
+ + + + + + + + + + + + +
+

script-handle-202-t

+
+

FAIL

+
+ raster image of script-handle-202-t +
+
+ + +
+

+ Test of script handlers for SMIL events. A red square should flash on the screen six times. +

+ +
+ + + diff --git a/test/W3C_SVG_12_TinyTestSuite_beta/htmlObjectHarness/script-listener-201-t.html b/test/W3C_SVG_12_TinyTestSuite_beta/htmlObjectHarness/script-listener-201-t.html new file mode 100755 index 00000000..8621126a --- /dev/null +++ b/test/W3C_SVG_12_TinyTestSuite_beta/htmlObjectHarness/script-listener-201-t.html @@ -0,0 +1,98 @@ + + + + + + + + +SVG 1.2 Tiny test:script-listener-201-t + + + + + + + + + + +
+ + + + + + + + + + + + +
+

script-listener-201-t

+
+

FAIL

+
+ raster image of script-listener-201-t +
+
+ + +
+

+ This test tests the assertion from the Namespaces in XML specification, + "The namespace prefix, unless it is xml or xmlns, MUST have been declared + in a namespace declaration attribute in either the start-tag of the element + where the prefix is used or in an ancestor element (i.e. an element in whose content the prefixed markup occurs)." + The root element doesn't declare the XML Event namespace for the prefix "ev". + +

+ The test has passed if handlers are implemented (the handler with xml:id="passhandler" has run) + but the handler with xml:id="failhandler" has not run. + If the handler is run then the text in the testcase will show "Test failed: magic prefixes!". + If handlers are not implemented at all, the testcase will show "Test failed: handlers not implemented." +

+

+ The test is also passed if the implementation states somehow that the test case is not namespace + well formed (by overlaying it on the image, informing the user in the error console, not + showing the document at all, etc.). +

+

+ +
+ + + diff --git a/test/W3C_SVG_12_TinyTestSuite_beta/htmlObjectHarness/script-listener-202-t.html b/test/W3C_SVG_12_TinyTestSuite_beta/htmlObjectHarness/script-listener-202-t.html new file mode 100755 index 00000000..72f3e48f --- /dev/null +++ b/test/W3C_SVG_12_TinyTestSuite_beta/htmlObjectHarness/script-listener-202-t.html @@ -0,0 +1,83 @@ + + + + + + + + +SVG 1.2 Tiny test:script-listener-202-t + + + + + + + + + + +
+ + + + + + + + + + + + +
+

script-listener-202-t

+
+

FAIL

+
+ raster image of script-listener-202-t +
+
+ + +
+

+ This test tests that a handler is not found when the 'handler' attribute contains + an IDREF. The test fails if a red rectangle covers the text content area or the string "Test failed" is displayed. +

+ +
+ + + diff --git a/test/W3C_SVG_12_TinyTestSuite_beta/htmlObjectHarness/script-listener-203-t.html b/test/W3C_SVG_12_TinyTestSuite_beta/htmlObjectHarness/script-listener-203-t.html new file mode 100755 index 00000000..8f6b4166 --- /dev/null +++ b/test/W3C_SVG_12_TinyTestSuite_beta/htmlObjectHarness/script-listener-203-t.html @@ -0,0 +1,92 @@ + + + + + + + + +SVG 1.2 Tiny test:script-listener-203-t + + + + + + + + + + +
+ + + + + + + + + + + + +
+

script-listener-203-t

+
+

FAIL

+
+ raster image of script-listener-203-t +
+
+ + +
+

+ This test tests that an element with the name 'listener' is not interpreted as an svg element, + and that it's not the same as an element named 'listener' in the XML Events namespace. +

+

+ The test has passed if handlers are implemented (the handler with xml:id="passhandler" has run) + but the handler with xml:id="failhandler" has not run. + + If the handler is run then the text in the testcase will show "Test failed: 'listener' is not an svg element.". + + The pass condition is indicated by two rects that must both be green after running the test, if + either of the rects is red then the test has failed. +

+ +
+ + + diff --git a/test/W3C_SVG_12_TinyTestSuite_beta/htmlObjectHarness/script-listener-204-t.html b/test/W3C_SVG_12_TinyTestSuite_beta/htmlObjectHarness/script-listener-204-t.html new file mode 100755 index 00000000..53d90e61 --- /dev/null +++ b/test/W3C_SVG_12_TinyTestSuite_beta/htmlObjectHarness/script-listener-204-t.html @@ -0,0 +1,87 @@ + + + + + + + + +SVG 1.2 Tiny test:script-listener-204-t + + + + + + + + + + +
+ + + + + + + + + + + + +
+

script-listener-204-t

+
+

FAIL

+
+ raster image of script-listener-204-t +
+
+ + +
+

+ This test tests the 'propagate' and 'defaultAction' attributes on the XML Event 'listener' element. +

+

+ The test has passed if after clicking the each of the blue rects they both turn green and show the text "Passed", + and that clicking the leftmost rect doesn't traverse the link. If any of the rects are blue or red after clicking + them the test has failed. +

+ +
+ + + diff --git a/test/W3C_SVG_12_TinyTestSuite_beta/htmlObjectHarness/shapes-circle-01-t.html b/test/W3C_SVG_12_TinyTestSuite_beta/htmlObjectHarness/shapes-circle-01-t.html new file mode 100755 index 00000000..8441f2f6 --- /dev/null +++ b/test/W3C_SVG_12_TinyTestSuite_beta/htmlObjectHarness/shapes-circle-01-t.html @@ -0,0 +1,80 @@ + + + + + + + + +SVG 1.2 Tiny test:shapes-circle-01-t + + + + + + + + + + +
+ + + + + + + + + + + + +
+

shapes-circle-01-t

+
+

FAIL

+
+ raster image of shapes-circle-01-t +
+
+ + +
+

The rendered picture should match the reference image, except for possible variations in the labelling text (per CSS2 rules).

+ +
+ + + diff --git a/test/W3C_SVG_12_TinyTestSuite_beta/htmlObjectHarness/shapes-circle-02-t.html b/test/W3C_SVG_12_TinyTestSuite_beta/htmlObjectHarness/shapes-circle-02-t.html new file mode 100755 index 00000000..dc7c7634 --- /dev/null +++ b/test/W3C_SVG_12_TinyTestSuite_beta/htmlObjectHarness/shapes-circle-02-t.html @@ -0,0 +1,80 @@ + + + + + + + + +SVG 1.2 Tiny test:shapes-circle-02-t + + + + + + + + + + +
+ + + + + + + + + + + + +
+

shapes-circle-02-t

+
+

FAIL

+
+ raster image of shapes-circle-02-t +
+
+ + +
+

Defaults test with circle.

+ +
+ + + diff --git a/test/W3C_SVG_12_TinyTestSuite_beta/htmlObjectHarness/shapes-circle-03-t.html b/test/W3C_SVG_12_TinyTestSuite_beta/htmlObjectHarness/shapes-circle-03-t.html new file mode 100755 index 00000000..2401f175 --- /dev/null +++ b/test/W3C_SVG_12_TinyTestSuite_beta/htmlObjectHarness/shapes-circle-03-t.html @@ -0,0 +1,80 @@ + + + + + + + + +SVG 1.2 Tiny test:shapes-circle-03-t + + + + + + + + + + +
+ + + + + + + + + + + + +
+

shapes-circle-03-t

+
+

FAIL

+
+ raster image of shapes-circle-03-t +
+
+ + +
+

Defaults test with circle.

+ +
+ + + diff --git a/test/W3C_SVG_12_TinyTestSuite_beta/htmlObjectHarness/shapes-ellipse-01-t.html b/test/W3C_SVG_12_TinyTestSuite_beta/htmlObjectHarness/shapes-ellipse-01-t.html new file mode 100755 index 00000000..1d2cb71b --- /dev/null +++ b/test/W3C_SVG_12_TinyTestSuite_beta/htmlObjectHarness/shapes-ellipse-01-t.html @@ -0,0 +1,80 @@ + + + + + + + + +SVG 1.2 Tiny test:shapes-ellipse-01-t + + + + + + + + + + +
+ + + + + + + + + + + + +
+

shapes-ellipse-01-t

+
+

FAIL

+
+ raster image of shapes-ellipse-01-t +
+
+ + +
+

The rendered picture should match the reference image, except for possible variations in the labelling text (per CSS2 rules).

+ +
+ + + diff --git a/test/W3C_SVG_12_TinyTestSuite_beta/htmlObjectHarness/shapes-ellipse-02-t.html b/test/W3C_SVG_12_TinyTestSuite_beta/htmlObjectHarness/shapes-ellipse-02-t.html new file mode 100755 index 00000000..a1d766d4 --- /dev/null +++ b/test/W3C_SVG_12_TinyTestSuite_beta/htmlObjectHarness/shapes-ellipse-02-t.html @@ -0,0 +1,80 @@ + + + + + + + + +SVG 1.2 Tiny test:shapes-ellipse-02-t + + + + + + + + + + +
+ + + + + + + + + + + + +
+

shapes-ellipse-02-t

+
+

FAIL

+
+ raster image of shapes-ellipse-02-t +
+
+ + +
+

Defaults test with ellipse. Ellipses with rx or ry set to zero shouldn't be drawn. Unspecified cx and cy attributes default to zero.

+ +
+ + + diff --git a/test/W3C_SVG_12_TinyTestSuite_beta/htmlObjectHarness/shapes-ellipse-03-t.html b/test/W3C_SVG_12_TinyTestSuite_beta/htmlObjectHarness/shapes-ellipse-03-t.html new file mode 100755 index 00000000..8d196fde --- /dev/null +++ b/test/W3C_SVG_12_TinyTestSuite_beta/htmlObjectHarness/shapes-ellipse-03-t.html @@ -0,0 +1,80 @@ + + + + + + + + +SVG 1.2 Tiny test:shapes-ellipse-03-t + + + + + + + + + + +
+ + + + + + + + + + + + +
+

shapes-ellipse-03-t

+
+

FAIL

+
+ raster image of shapes-ellipse-03-t +
+
+ + +
+

Defaults test with circle.

+ +
+ + + diff --git a/test/W3C_SVG_12_TinyTestSuite_beta/htmlObjectHarness/shapes-intro-01-t.html b/test/W3C_SVG_12_TinyTestSuite_beta/htmlObjectHarness/shapes-intro-01-t.html new file mode 100755 index 00000000..8218f469 --- /dev/null +++ b/test/W3C_SVG_12_TinyTestSuite_beta/htmlObjectHarness/shapes-intro-01-t.html @@ -0,0 +1,81 @@ + + + + + + + + +SVG 1.2 Tiny test:shapes-intro-01-t + + + + + + + + + + +
+ + + + + + + + + + + + +
+

shapes-intro-01-t

+
+

FAIL

+
+ raster image of shapes-intro-01-t +
+
+ + +
+

Tests the degenerate cases of the basic shapes. The shapes are positioned within the black rectangles.

+

None of the shapes should be visible (each of the ten black rectangles should be empty). The rendered picture should match the reference image, except for possible variations in the labelling text (per CSS2 rules).

+ +
+ + + diff --git a/test/W3C_SVG_12_TinyTestSuite_beta/htmlObjectHarness/shapes-line-01-t.html b/test/W3C_SVG_12_TinyTestSuite_beta/htmlObjectHarness/shapes-line-01-t.html new file mode 100755 index 00000000..f5100243 --- /dev/null +++ b/test/W3C_SVG_12_TinyTestSuite_beta/htmlObjectHarness/shapes-line-01-t.html @@ -0,0 +1,80 @@ + + + + + + + + +SVG 1.2 Tiny test:shapes-line-01-t + + + + + + + + + + +
+ + + + + + + + + + + + +
+

shapes-line-01-t

+
+

FAIL

+
+ raster image of shapes-line-01-t +
+
+ + +
+

The rendered picture should match the reference image, except for possible variations in the labelling text (per CSS2 rules).

+ +
+ + + diff --git a/test/W3C_SVG_12_TinyTestSuite_beta/htmlObjectHarness/shapes-line-02-t.html b/test/W3C_SVG_12_TinyTestSuite_beta/htmlObjectHarness/shapes-line-02-t.html new file mode 100755 index 00000000..edee4372 --- /dev/null +++ b/test/W3C_SVG_12_TinyTestSuite_beta/htmlObjectHarness/shapes-line-02-t.html @@ -0,0 +1,97 @@ + + + + + + + + +SVG 1.2 Tiny test:shapes-line-02-t + + + + + + + + + + +
+ + + + + + + + + + + + +
+

shapes-line-02-t

+
+

FAIL

+
+ raster image of shapes-line-02-t +
+
+ + +
+

+ For this test to pass the following lines must be drawn: + - Green line across the top from 480,0 to 0,0 + - Red line across the left hand side from 0,0 to 0,360 + - Blue line across the bottom from 480,360 to 0,360 + - Purple line across the test from 480,85 to 0,0 + - Fuchsia line across the test from 0,0 to 480,170 + - Aqua line across the test from 0,360 to 480,170 + - Teal line across the test from 480,256 to 0,360 +

+

+ If the x1, x2, y1, or y2 attribute is not specified the effect is as if + a value of "0" were specified. +

+

+ The rendered picture should match the reference image, except for possible + variations in the labelling text (per CSS2 rules). +

+ +
+ + + diff --git a/test/W3C_SVG_12_TinyTestSuite_beta/htmlObjectHarness/shapes-polygon-01-t.html b/test/W3C_SVG_12_TinyTestSuite_beta/htmlObjectHarness/shapes-polygon-01-t.html new file mode 100755 index 00000000..f2627d32 --- /dev/null +++ b/test/W3C_SVG_12_TinyTestSuite_beta/htmlObjectHarness/shapes-polygon-01-t.html @@ -0,0 +1,80 @@ + + + + + + + + +SVG 1.2 Tiny test:shapes-polygon-01-t + + + + + + + + + + +
+ + + + + + + + + + + + +
+

shapes-polygon-01-t

+
+

FAIL

+
+ raster image of shapes-polygon-01-t +
+
+ + +
+

The rendered picture should match the reference image, except for possible variations in the labelling text (per CSS2 rules).

+ +
+ + + diff --git a/test/W3C_SVG_12_TinyTestSuite_beta/htmlObjectHarness/shapes-polygon-02-t.html b/test/W3C_SVG_12_TinyTestSuite_beta/htmlObjectHarness/shapes-polygon-02-t.html new file mode 100755 index 00000000..2fe547d4 --- /dev/null +++ b/test/W3C_SVG_12_TinyTestSuite_beta/htmlObjectHarness/shapes-polygon-02-t.html @@ -0,0 +1,91 @@ + + + + + + + + +SVG 1.2 Tiny test:shapes-polygon-02-t + + + + + + + + + + +
+ + + + + + + + + + + + +
+

shapes-polygon-02-t

+
+

FAIL

+
+ raster image of shapes-polygon-02-t +
+
+ + +
+

+ Testing different points attribute syntaxes, empty and invalid points + attributes (e.g. odd number of coordinates). +

+

+ Only three identical polygon elements should be rendered down the + right hand side of the test. +

+

+ The rendered picture should match the reference image, except for + possible variations in the labelling text (per CSS2 rules). +

+ +
+ + + diff --git a/test/W3C_SVG_12_TinyTestSuite_beta/htmlObjectHarness/shapes-polyline-01-t.html b/test/W3C_SVG_12_TinyTestSuite_beta/htmlObjectHarness/shapes-polyline-01-t.html new file mode 100755 index 00000000..375ecd7e --- /dev/null +++ b/test/W3C_SVG_12_TinyTestSuite_beta/htmlObjectHarness/shapes-polyline-01-t.html @@ -0,0 +1,80 @@ + + + + + + + + +SVG 1.2 Tiny test:shapes-polyline-01-t + + + + + + + + + + +
+ + + + + + + + + + + + +
+

shapes-polyline-01-t

+
+

FAIL

+
+ raster image of shapes-polyline-01-t +
+
+ + +
+

The rendered picture should match the reference image, except for possible variations in the labelling text (per CSS2 rules).

+ +
+ + + diff --git a/test/W3C_SVG_12_TinyTestSuite_beta/htmlObjectHarness/shapes-polyline-02-t.html b/test/W3C_SVG_12_TinyTestSuite_beta/htmlObjectHarness/shapes-polyline-02-t.html new file mode 100755 index 00000000..c6935ee1 --- /dev/null +++ b/test/W3C_SVG_12_TinyTestSuite_beta/htmlObjectHarness/shapes-polyline-02-t.html @@ -0,0 +1,91 @@ + + + + + + + + +SVG 1.2 Tiny test:shapes-polyline-02-t + + + + + + + + + + +
+ + + + + + + + + + + + +
+

shapes-polyline-02-t

+
+

FAIL

+
+ raster image of shapes-polyline-02-t +
+
+ + +
+

+ Testing different points attribute syntaxes, empty and invalid points + attributes (e.g. odd number of coordinates). +

+

+ Only three identical polygon elements should be rendered down the + right hand side of the test. +

+

+ The rendered picture should match the reference image, except for possible + variations in the labelling text (per CSS2 rules). +

+ +
+ + + diff --git a/test/W3C_SVG_12_TinyTestSuite_beta/htmlObjectHarness/shapes-rect-01-t.html b/test/W3C_SVG_12_TinyTestSuite_beta/htmlObjectHarness/shapes-rect-01-t.html new file mode 100755 index 00000000..864ac6f5 --- /dev/null +++ b/test/W3C_SVG_12_TinyTestSuite_beta/htmlObjectHarness/shapes-rect-01-t.html @@ -0,0 +1,80 @@ + + + + + + + + +SVG 1.2 Tiny test:shapes-rect-01-t + + + + + + + + + + +
+ + + + + + + + + + + + +
+

shapes-rect-01-t

+
+

FAIL

+
+ raster image of shapes-rect-01-t +
+
+ + +
+

The rendered picture should match the reference image, except for possible variations in the labelling text (per CSS2 rules).

+ +
+ + + diff --git a/test/W3C_SVG_12_TinyTestSuite_beta/htmlObjectHarness/shapes-rect-02-t.html b/test/W3C_SVG_12_TinyTestSuite_beta/htmlObjectHarness/shapes-rect-02-t.html new file mode 100755 index 00000000..3f275a7a --- /dev/null +++ b/test/W3C_SVG_12_TinyTestSuite_beta/htmlObjectHarness/shapes-rect-02-t.html @@ -0,0 +1,81 @@ + + + + + + + + +SVG 1.2 Tiny test:shapes-rect-02-t + + + + + + + + + + +
+ + + + + + + + + + + + +
+

shapes-rect-02-t

+
+

FAIL

+
+ raster image of shapes-rect-02-t +
+
+ + +
+

The rendered picture should match the reference image, except for possible variations in the labelling text (per CSS2 rules).

+

Testing the default attributes on the rect element. There should be four rectangles. One should be placed on the left (default x), one on the top (default y). Two rounded rectangles should appear where rx and ry are of the same value (one of the two had been omitted).

+ +
+ + + diff --git a/test/W3C_SVG_12_TinyTestSuite_beta/htmlObjectHarness/shapes-rect-03-t.html b/test/W3C_SVG_12_TinyTestSuite_beta/htmlObjectHarness/shapes-rect-03-t.html new file mode 100755 index 00000000..b25380b6 --- /dev/null +++ b/test/W3C_SVG_12_TinyTestSuite_beta/htmlObjectHarness/shapes-rect-03-t.html @@ -0,0 +1,80 @@ + + + + + + + + +SVG 1.2 Tiny test:shapes-rect-03-t + + + + + + + + + + +
+ + + + + + + + + + + + +
+

shapes-rect-03-t

+
+

FAIL

+
+ raster image of shapes-rect-03-t +
+
+ + +
+

Testing the correct stroking of the rect element. The blue lines indicate where a dash or gap should start and end. For the test to pass, it has to match the reference image.

+ +
+ + + diff --git a/test/W3C_SVG_12_TinyTestSuite_beta/htmlObjectHarness/struct-class-201-t.html b/test/W3C_SVG_12_TinyTestSuite_beta/htmlObjectHarness/struct-class-201-t.html new file mode 100755 index 00000000..df0619c8 --- /dev/null +++ b/test/W3C_SVG_12_TinyTestSuite_beta/htmlObjectHarness/struct-class-201-t.html @@ -0,0 +1,93 @@ + + + + + + + + +SVG 1.2 Tiny test:struct-class-201-t + + + + + + + + + + +
+ + + + + + + + + + + + +
+

struct-class-201-t

+
+

FAIL

+
+ raster image of struct-class-201-t +
+
+ + +
+

+ Tests that the value of the 'class' attribute is included in the DOM, + including space-separated values, and values with extraneous spaces. +

+

+ The rendered picture should match the reference image, except for + possible variations in the labelling text (per CSS2 rules). The pass + condition is seeing three green circles, with text below each circle + reflecting the normalized space-separated values for the class of that + circle. The leftmost circle has the value "foo", the middle circle has + the value "bar baz", and the rightmost circle has the value + " funky spacing ", normalized to "funky spacing". If any of the + circles are red, the test has failed. +

+ +
+ + + diff --git a/test/W3C_SVG_12_TinyTestSuite_beta/htmlObjectHarness/struct-common-201-t.html b/test/W3C_SVG_12_TinyTestSuite_beta/htmlObjectHarness/struct-common-201-t.html new file mode 100755 index 00000000..321411ed --- /dev/null +++ b/test/W3C_SVG_12_TinyTestSuite_beta/htmlObjectHarness/struct-common-201-t.html @@ -0,0 +1,88 @@ + + + + + + + + +SVG 1.2 Tiny test:struct-common-201-t + + + + + + + + + + +
+ + + + + + + + + + + + +
+

struct-common-201-t

+
+

FAIL

+
+ raster image of struct-common-201-t +
+
+ + +
+

+ Tests that reading of IDs and modification of id and xml:id is conformant to the SVG and xml:id specifications. The test passes if four green circles are shown. +

+

+ The first circle has an id only; the second, xml:id only. The third circle has both, with the same values; and the fourth has both, with different values. All four circles have a red fill; on loading the document, a script + gets each of the circles by its ID and then sets the fill to green. Lastly, the script attempts + to get the fourth circle by ID, using the value of the id attribute; this must fail. If the fourth + circle is dark red, the implementation is not giving priority to the value of xml:id. +

+ +
+ + + diff --git a/test/W3C_SVG_12_TinyTestSuite_beta/htmlObjectHarness/struct-cond-01-t.html b/test/W3C_SVG_12_TinyTestSuite_beta/htmlObjectHarness/struct-cond-01-t.html new file mode 100755 index 00000000..bf76d1a7 --- /dev/null +++ b/test/W3C_SVG_12_TinyTestSuite_beta/htmlObjectHarness/struct-cond-01-t.html @@ -0,0 +1,82 @@ + + + + + + + + +SVG 1.2 Tiny test:struct-cond-01-t + + + + + + + + + + +
+ + + + + + + + + + + + +
+

struct-cond-01-t

+
+

FAIL

+
+ raster image of struct-cond-01-t +
+
+ + +
+

This test evaluates a switch statement. The result should be a green rectangle in the lower left quarter of the output window.

+

The rendered picture should match the reference image, except for possible variations in the labelling text (per CSS2 rules).

+

The test uses the 'rect' element, as well as basic fill (solid primary colors), stroke (black 1-pixel lines), font-family (Arial) and font-size properties.

+ +
+ + + diff --git a/test/W3C_SVG_12_TinyTestSuite_beta/htmlObjectHarness/struct-cond-02-t.html b/test/W3C_SVG_12_TinyTestSuite_beta/htmlObjectHarness/struct-cond-02-t.html new file mode 100755 index 00000000..338c3a32 --- /dev/null +++ b/test/W3C_SVG_12_TinyTestSuite_beta/htmlObjectHarness/struct-cond-02-t.html @@ -0,0 +1,82 @@ + + + + + + + + +SVG 1.2 Tiny test:struct-cond-02-t + + + + + + + + + + +
+ + + + + + + + + + + + +
+

struct-cond-02-t

+
+

FAIL

+
+ raster image of struct-cond-02-t +
+
+ + +
+

This tests ability to use the 'systemLanguage' as a test attribute within a switch element. To pass, either

+

It is an error to display no output; the last child of switch has no test, so it will always be taken unless a more suitable child has already evaluated to true.

+

In addition, the string "Why don't they just speak <language>" should appear in the center of the graphic, translated into that language. It is not an error for some or all of this string to display as 'missing character' glyphs, if no suitable font is available - however, this is unlikely if the language is indeed the users primary language. (It can easily occur during testing, however).

+ +
+ + + diff --git a/test/W3C_SVG_12_TinyTestSuite_beta/htmlObjectHarness/struct-cond-03-t.html b/test/W3C_SVG_12_TinyTestSuite_beta/htmlObjectHarness/struct-cond-03-t.html new file mode 100755 index 00000000..8ff30dbb --- /dev/null +++ b/test/W3C_SVG_12_TinyTestSuite_beta/htmlObjectHarness/struct-cond-03-t.html @@ -0,0 +1,109 @@ + + + + + + + + +SVG 1.2 Tiny test:struct-cond-03-t + + + + + + + + + + +
+ + + + + + + + + + + + +
+

struct-cond-03-t

+
+

FAIL

+
+ raster image of struct-cond-03-t +
+
+ + +
+

+ Tests the <switch> element with requiredFeature. If a red rectangle with white text 'FAIL' is + displayed, the test fails. Otherwise, if a green rectangle is displayed in the lower part with the text '', + the test is passed. +

+

+ The red rectangle and the white text each require a non-existent feature; the test attribute will thus + evaluate to false and neither element will be rendered by a compliant implementation. +

+

+ The upper subtest is informative; it distinguishes between a purely SVG Tiny 1.2 + implementation and others which also implement more (eg SVG Full 1.1, or + some profile of SVG 1.2 greater than Tiny). The results of this subtest + does not affect the pass/fail criteria. +

+

+ Because SVG Tiny does not support for SVG Full DOM, an SVG Tiny implementation which + does not support other SVG Profiles should show a rectangle + like this. + If the application supports the DOM, meaning that it does more than just SVG Tiny, it + should show a rectangle like this. + Either result is a pass. +

+

+ The lower subtest,has another switch. The first child has a requiredFeature + set to http://www.w3.org/TR/SVG11/feature#BasicText which all SVG Tiny implementations + must support. If the application does, the lower rectangle is displayed in green + like this. Otherwise, a red rectangle + indicates that the text has failed. +

+ +
+ + + diff --git a/test/W3C_SVG_12_TinyTestSuite_beta/htmlObjectHarness/struct-cond-204-t.html b/test/W3C_SVG_12_TinyTestSuite_beta/htmlObjectHarness/struct-cond-204-t.html new file mode 100755 index 00000000..21a8527a --- /dev/null +++ b/test/W3C_SVG_12_TinyTestSuite_beta/htmlObjectHarness/struct-cond-204-t.html @@ -0,0 +1,107 @@ + + + + + + + + +SVG 1.2 Tiny test:struct-cond-204-t + + + + + + + + + + +
+ + + + + + + + + + + + +
+

struct-cond-204-t

+
+

FAIL

+
+ raster image of struct-cond-204-t +
+
+ + +
+

Required Formats Attribute

+

+ A series of switches are used to determine which Internet Media types ('MIME types') + are supported, using the 'requiredFormats' attribute, + displaying a 'yes' or 'no' as appropriate. The test is passed if there is text in + the second row of each column, and that text is only + green (in the top table) + or blueviolet (in the bottom table); + no red text is displayed. +

+

+ The SVG Tiny 1.2 specification mandates certain formats, so these must be supported: + image/jpeg, image/png, image/svg+xml. + It is an error not to support them, therefore 'yes' is green and 'no' is red. +

+

+ This test also checks for support of Internet Media types which are + assumed to not exist and are unlikely to ever be registered: garbage/garbage. + Therefore, 'yes' is red and 'no' is green. +

+

+ Lastly, most media types are optional. For example, image/tiff may be + supported but support is not mandated by the SVG Tiny 1.2 specification. + The second table examines these optional formats. + Both 'yes' and 'no' are displayed in blueviolet. Whether the particular Internet Media type + is supported or not does not affect whether the test is passed or failed, but does provide useful + information about the optional capabilities of a particular implementation. +

+ +
+ + + diff --git a/test/W3C_SVG_12_TinyTestSuite_beta/htmlObjectHarness/struct-cond-205-t.html b/test/W3C_SVG_12_TinyTestSuite_beta/htmlObjectHarness/struct-cond-205-t.html new file mode 100755 index 00000000..2687d943 --- /dev/null +++ b/test/W3C_SVG_12_TinyTestSuite_beta/htmlObjectHarness/struct-cond-205-t.html @@ -0,0 +1,82 @@ + + + + + + + + +SVG 1.2 Tiny test:struct-cond-205-t + + + + + + + + + + +
+ + + + + + + + + + + + +
+

struct-cond-205-t

+
+

FAIL

+
+ raster image of struct-cond-205-t +
+
+ + +
+

+ Tests all the SVG Tiny 1.2 feature strings using requiredFeatures. +

+ +
+ + + diff --git a/test/W3C_SVG_12_TinyTestSuite_beta/htmlObjectHarness/struct-cond-209-t.html b/test/W3C_SVG_12_TinyTestSuite_beta/htmlObjectHarness/struct-cond-209-t.html new file mode 100755 index 00000000..6a915498 --- /dev/null +++ b/test/W3C_SVG_12_TinyTestSuite_beta/htmlObjectHarness/struct-cond-209-t.html @@ -0,0 +1,101 @@ + + + + + + + + +SVG 1.2 Tiny test:struct-cond-209-t + + + + + + + + + + +
+ + + + + + + + + + + + +
+

struct-cond-209-t

+
+

FAIL

+
+ raster image of struct-cond-209-t +
+
+ + +
+

+ This test evaluates the effects of the 'display' or 'visibility' + attributes on a switch statement. The result should be a green circle + in the center of the output window. +

+

+ The rendered picture should match the reference image, except for + possible variations in the labelling text (per CSS2 rules). The pass + condition is seeing a green circle in the center of the image. If a + gray rectangle is visible, the test cannot be evaluated because the + 'display' attribute is not supported. If a blue rectangle is visible, + the test cannot be evaluated because the 'visibility' attribute is not + supported. If a red rectangle with a gray stroke is visible, the test + is failed because the switch is affected by the 'display' attribute. + If a red rectangle with a black stroke is visible, the test is failed + because the switch is affected by the 'display' attribute. +

+

+ The test uses the 'rect' and 'circle' elements, as well as basic fill + (solid primary colors), stroke (black or gray 2-pixel lines), and the + 'display' and 'visibility' attributes. +

+ +
+ + + diff --git a/test/W3C_SVG_12_TinyTestSuite_beta/htmlObjectHarness/struct-cond-210-t.html b/test/W3C_SVG_12_TinyTestSuite_beta/htmlObjectHarness/struct-cond-210-t.html new file mode 100755 index 00000000..79517b38 --- /dev/null +++ b/test/W3C_SVG_12_TinyTestSuite_beta/htmlObjectHarness/struct-cond-210-t.html @@ -0,0 +1,103 @@ + + + + + + + + +SVG 1.2 Tiny test:struct-cond-210-t + + + + + + + + + + +
+ + + + + + + + + + + + +
+

struct-cond-210-t

+
+

FAIL

+
+ raster image of struct-cond-210-t +
+
+ + +
+

+ This test evaluates the effects of the switch statement on referencing + content such as gradients or elements. The result should be a yellow + rectangle in the center of the output window, with green circles in + three of the corners of the rectangle. +

+

+ The rendered picture should match the reference image, except for + possible variations in the labelling text (per CSS2 rules). The pass + condition is seeing three circles, one solid green circle in upper + right corner of the rectangle, and a circle with a green gradient in + each of the bottom corners of the rectangle. If a red or black circle + is visible in the upper left corner of the rectangle, the test cannot + be evaluated because the 'switch' is not correctly supported. If any of + the upper-right or lower circles is not visible, or does not have the + correct fill, the test is failed. If the bottom-right circle is not + visible or does not have the gradient fill, then the 'switch' is not + correctly supported, and does not allow one conditionally hidden + resource to reference another. +

+

+ The test uses the 'rect', 'circle', 'gradient', and 'use' elements, as + well as basic fill (solid primary colors) and radial gradients. +

+ +
+ + + diff --git a/test/W3C_SVG_12_TinyTestSuite_beta/htmlObjectHarness/struct-defs-01-t.html b/test/W3C_SVG_12_TinyTestSuite_beta/htmlObjectHarness/struct-defs-01-t.html new file mode 100755 index 00000000..3ba109cb --- /dev/null +++ b/test/W3C_SVG_12_TinyTestSuite_beta/htmlObjectHarness/struct-defs-01-t.html @@ -0,0 +1,83 @@ + + + + + + + + +SVG 1.2 Tiny test:struct-defs-01-t + + + + + + + + + + +
+ + + + + + + + + + + + +
+

struct-defs-01-t

+
+

FAIL

+
+ raster image of struct-defs-01-t +
+
+ + +
+

Test to verify that the defs element is used as a container correctly.

+

In this test a fill is created which is solid red. The view should be a solid red rectangle centered in the viewport 100 pixels from from left,top and right,bottom. Also, in the defs sections there are rectangle defined, one to paint over the entire canvas with a green fill and the other to obscure most of the red rectangle. The green rectangles should not show in the view as defs are referenced items and are not rendered. No green should show.

+

The rendered picture should match the reference image, except for possible variations in the labelling text (per CSS2 rules).

+

The test uses the 'rect' element, as well as basic fill (solid primary colors), stroke (black 1-pixel lines), font-family (Arial) and font-size properties.

+ +
+ + + diff --git a/test/W3C_SVG_12_TinyTestSuite_beta/htmlObjectHarness/struct-defs-201-t.html b/test/W3C_SVG_12_TinyTestSuite_beta/htmlObjectHarness/struct-defs-201-t.html new file mode 100755 index 00000000..3c4705f3 --- /dev/null +++ b/test/W3C_SVG_12_TinyTestSuite_beta/htmlObjectHarness/struct-defs-201-t.html @@ -0,0 +1,92 @@ + + + + + + + + +SVG 1.2 Tiny test:struct-defs-201-t + + + + + + + + + + +
+ + + + + + + + + + + + +
+

struct-defs-201-t

+
+

FAIL

+
+ raster image of struct-defs-201-t +
+
+ + +
+

+ Tests that the value of the display property on the defs element or on its descendants + doesn't prevent the elements from being referenced. +

+

+ The test has passed if the following conditions are met: +

+
    +
  1. there are 8 big rects visible each of a different color.
  2. +
  3. on top of the 8 big rects there are 8 circles that contain the reference color, the color of each circle must match the color of the rect to the right of its center
  4. +
  5. from the top-left to the top-right corner the colors must be: green, lime, yellow, olive.
  6. +
  7. from the bottom-left to the bottom-right corner the colors must be: navy, teal, blue, fuchsia.
  8. +
+ +
+ + + diff --git a/test/W3C_SVG_12_TinyTestSuite_beta/htmlObjectHarness/struct-discard-201-t.html b/test/W3C_SVG_12_TinyTestSuite_beta/htmlObjectHarness/struct-discard-201-t.html new file mode 100755 index 00000000..71818eb0 --- /dev/null +++ b/test/W3C_SVG_12_TinyTestSuite_beta/htmlObjectHarness/struct-discard-201-t.html @@ -0,0 +1,81 @@ + + + + + + + + +SVG 1.2 Tiny test:struct-discard-201-t + + + + + + + + + + +
+ + + + + + + + + + + + +
+

struct-discard-201-t

+
+

FAIL

+
+ raster image of struct-discard-201-t +
+
+ + +
+

Discard Element

+

The blue bars are animated then 'discarded' as indicated by comments.

+ +
+ + + diff --git a/test/W3C_SVG_12_TinyTestSuite_beta/htmlObjectHarness/struct-discard-204-t.html b/test/W3C_SVG_12_TinyTestSuite_beta/htmlObjectHarness/struct-discard-204-t.html new file mode 100755 index 00000000..0218e6b0 --- /dev/null +++ b/test/W3C_SVG_12_TinyTestSuite_beta/htmlObjectHarness/struct-discard-204-t.html @@ -0,0 +1,87 @@ + + + + + + + + +SVG 1.2 Tiny test:struct-discard-204-t + + + + + + + + + + +
+ + + + + + + + + + + + +
+

struct-discard-204-t

+
+

FAIL

+
+ raster image of struct-discard-204-t +
+
+ + +
+

+ This test tests that trying to animate xlink:href on the discard element will not + apply. +

+

+ The test has passed if after 3 seconds there are 4 green circles visible, and + no red. +

+ +
+ + + diff --git a/test/W3C_SVG_12_TinyTestSuite_beta/htmlObjectHarness/struct-discard-205-t.html b/test/W3C_SVG_12_TinyTestSuite_beta/htmlObjectHarness/struct-discard-205-t.html new file mode 100755 index 00000000..8b985e2b --- /dev/null +++ b/test/W3C_SVG_12_TinyTestSuite_beta/htmlObjectHarness/struct-discard-205-t.html @@ -0,0 +1,85 @@ + + + + + + + + +SVG 1.2 Tiny test:struct-discard-205-t + + + + + + + + + + +
+ + + + + + + + + + + + +
+

struct-discard-205-t

+
+

FAIL

+
+ raster image of struct-discard-205-t +
+
+ + +
+

+ This test tests that discard elements themselves are discarded after being activated. +

+

+ The test has passed if after 3 seconds there are three green circles visible, and no red. +

+ +
+ + + diff --git a/test/W3C_SVG_12_TinyTestSuite_beta/htmlObjectHarness/struct-discard-206-t.html b/test/W3C_SVG_12_TinyTestSuite_beta/htmlObjectHarness/struct-discard-206-t.html new file mode 100755 index 00000000..11ca4d83 --- /dev/null +++ b/test/W3C_SVG_12_TinyTestSuite_beta/htmlObjectHarness/struct-discard-206-t.html @@ -0,0 +1,86 @@ + + + + + + + + +SVG 1.2 Tiny test:struct-discard-206-t + + + + + + + + + + +
+ + + + + + + + + + + + +
+

struct-discard-206-t

+
+

FAIL

+
+ raster image of struct-discard-206-t +
+
+ + +
+

+ Tests that discard elements can be discarded before activation. +

+

+ The test has passed if after 3 seconds there is there are 4 green rects visible, + and nothing red. +

+ +
+ + + diff --git a/test/W3C_SVG_12_TinyTestSuite_beta/htmlObjectHarness/struct-discard-207-t.html b/test/W3C_SVG_12_TinyTestSuite_beta/htmlObjectHarness/struct-discard-207-t.html new file mode 100755 index 00000000..c812a797 --- /dev/null +++ b/test/W3C_SVG_12_TinyTestSuite_beta/htmlObjectHarness/struct-discard-207-t.html @@ -0,0 +1,89 @@ + + + + + + + + +SVG 1.2 Tiny test:struct-discard-207-t + + + + + + + + + + +
+ + + + + + + + + + + + +
+

struct-discard-207-t

+
+

FAIL

+
+ raster image of struct-discard-207-t +
+
+ + +
+

+ This test tests that discard acts the same as removeChild. + First two red rects and a blue circle should be seen. The blue circle has + its radius animated to 0 over the course of 3 seconds. At the point where + the blue circle disappears the two red rects should be removed from the + tree. This reveals two green circles. +

+

+ The test has passed if in the interval 0-3 seconds there are two red rects and a blue circle, and after 3 seconds two green circles can be seen and the text at the bottom says "Test passed". +

+ +
+ + + diff --git a/test/W3C_SVG_12_TinyTestSuite_beta/htmlObjectHarness/struct-frag-02-t.html b/test/W3C_SVG_12_TinyTestSuite_beta/htmlObjectHarness/struct-frag-02-t.html new file mode 100755 index 00000000..6ef7fe35 --- /dev/null +++ b/test/W3C_SVG_12_TinyTestSuite_beta/htmlObjectHarness/struct-frag-02-t.html @@ -0,0 +1,82 @@ + + + + + + + + +SVG 1.2 Tiny test:struct-frag-02-t + + + + + + + + + + +
+ + + + + + + + + + + + +
+

struct-frag-02-t

+
+

FAIL

+
+ raster image of struct-frag-02-t +
+
+ + +
+

This test validates the use of the preserveAspectRatio attribute on the root svg element in an SVG Tiny document. In this document, preserveAspectRatio is set to none and the width and height of the document set to 100%.

+

The document's viewBox is defined to be 100 by 100 with an origin in (100, 100). The content is made of 2 red squares and 2 orange circles.

+

Because preserveAspectRatio is set to 'none', the content should appear distorted: squares show as rectangles and circles show as ellipses.

+ +
+ + + diff --git a/test/W3C_SVG_12_TinyTestSuite_beta/htmlObjectHarness/struct-frag-03-t.html b/test/W3C_SVG_12_TinyTestSuite_beta/htmlObjectHarness/struct-frag-03-t.html new file mode 100755 index 00000000..7aee196a --- /dev/null +++ b/test/W3C_SVG_12_TinyTestSuite_beta/htmlObjectHarness/struct-frag-03-t.html @@ -0,0 +1,82 @@ + + + + + + + + +SVG 1.2 Tiny test:struct-frag-03-t + + + + + + + + + + +
+ + + + + + + + + + + + +
+

struct-frag-03-t

+
+

FAIL

+
+ raster image of struct-frag-03-t +
+
+ + +
+

This test validates the use of the preserveAspectRatio attribute on the root svg element in an SVG Tiny document. In this document, preserveAspectRatio is set to 'xMidYMid meet' and the width and height of the document set to 100%.

+

The document's viewBox is defined to be 100 by 100 with an origin in (100, 100). The content is made of 2 red squares and 2 orange circles.

+

Because preserveAspectRatio is set to 'xMidYMid meet', the content should appear centered within the viewport: squares show as squares (and not rectangles) and circles show as circles (and not ellipses).

+ +
+ + + diff --git a/test/W3C_SVG_12_TinyTestSuite_beta/htmlObjectHarness/struct-frag-04-t.html b/test/W3C_SVG_12_TinyTestSuite_beta/htmlObjectHarness/struct-frag-04-t.html new file mode 100755 index 00000000..012e58f4 --- /dev/null +++ b/test/W3C_SVG_12_TinyTestSuite_beta/htmlObjectHarness/struct-frag-04-t.html @@ -0,0 +1,82 @@ + + + + + + + + +SVG 1.2 Tiny test:struct-frag-04-t + + + + + + + + + + +
+ + + + + + + + + + + + +
+

struct-frag-04-t

+
+

FAIL

+
+ raster image of struct-frag-04-t +
+
+ + +
+

This test validates the operation of the svg element when there is no viewbox.

+

The document's size is 480 by 360 with an x/y origin in (1000, 1000). Because x/y are ignored on the root svg element, the x/y origin should have no effect on the drawing.

+

The document contains squares and circles between the (100,100) and (200, 200) coordinates. Changing the viewport size should have no effect on the placement or scale of the document's conten.

+ +
+ + + diff --git a/test/W3C_SVG_12_TinyTestSuite_beta/htmlObjectHarness/struct-frag-05-t.html b/test/W3C_SVG_12_TinyTestSuite_beta/htmlObjectHarness/struct-frag-05-t.html new file mode 100755 index 00000000..bea02c0b --- /dev/null +++ b/test/W3C_SVG_12_TinyTestSuite_beta/htmlObjectHarness/struct-frag-05-t.html @@ -0,0 +1,82 @@ + + + + + + + + +SVG 1.2 Tiny test:struct-frag-05-t + + + + + + + + + + +
+ + + + + + + + + + + + +
+

struct-frag-05-t

+
+

FAIL

+
+ raster image of struct-frag-05-t +
+
+ + +
+

This tests that XML Namespaces are correctly implemented, in that the tuple of local name and namespace URI, rather than the prefix, is important. The first subtest is a group where the namespace prefix 's' is bound to the SVG namespace and an 's:circle' is drawn in pale yellow. The same group declares the default namespace to be a non-SVG namespace; the blue circle element in that namespace must not be drawn.

+

The second subtest puts the namespace declarations on the elements themselves. The prefix 'toto' is bound to the SVG namespace and the XLink namespace is made the default namespace. Thus, the blue '<toto:a href="uri">Valid</toto:a>' is a valid link and must be traversable. Select this link, then go back to the test.

+

The third subtest has no prefix on the element name 'a' and uses the usual 'xlink:' prefix on the 'href' attribute. However, both the default namespace and the namespace bound to the 'xlink' prefix are dummy namespaces. Not only should the link not be traversable, it must not even display at all. If the text 'Invalid' is displayed, the test fails.

+ +
+ + + diff --git a/test/W3C_SVG_12_TinyTestSuite_beta/htmlObjectHarness/struct-frag-06-t.html b/test/W3C_SVG_12_TinyTestSuite_beta/htmlObjectHarness/struct-frag-06-t.html new file mode 100755 index 00000000..040bd525 --- /dev/null +++ b/test/W3C_SVG_12_TinyTestSuite_beta/htmlObjectHarness/struct-frag-06-t.html @@ -0,0 +1,83 @@ + + + + + + + + +SVG 1.2 Tiny test:struct-frag-06-t + + + + + + + + + + +
+ + + + + + + + + + + + +
+

struct-frag-06-t

+
+

FAIL

+
+ raster image of struct-frag-06-t +
+
+ + +
+

This test adds testing of some basic XML features SVG User Agents should support.

+

First, the test checks support for the default entities amp, lt, gt, apos and quot. This is what the first line shows in gray.

+

Second, the test checks support for hexadecimal and decimal character entities, as shown in the second line, again in gray

+

Finally, the last line shows usage of an entity defined in the document's internal DTD subset. The same geometry (a path) is reused twice, once filled in gray and ones stroked in gray.

+ +
+ + + diff --git a/test/W3C_SVG_12_TinyTestSuite_beta/htmlObjectHarness/struct-group-01-t.html b/test/W3C_SVG_12_TinyTestSuite_beta/htmlObjectHarness/struct-group-01-t.html new file mode 100755 index 00000000..6bd71ff8 --- /dev/null +++ b/test/W3C_SVG_12_TinyTestSuite_beta/htmlObjectHarness/struct-group-01-t.html @@ -0,0 +1,82 @@ + + + + + + + + +SVG 1.2 Tiny test:struct-group-01-t + + + + + + + + + + +
+ + + + + + + + + + + + +
+

struct-group-01-t

+
+

FAIL

+
+ raster image of struct-group-01-t +
+
+ + +
+

The test checks to see that graphics elements (g) can be nested and that the like attributes can be passed to the children. All the g elements for this test are in the g element whose xml:id=allGs. The two red rectangles and the yellow are in the g labeled rects. The reds inherit a fill color the green rect has a fill specified and it should not be overwritten. The two yellow rectangles should inherit the fill color and the transform attribute, they should be yellow and rotated at -20 degrees. These two rectangles are in g "yellowNrotate", that g is nested inside g "gratuitiousG". The black rectangle in the upper right, has no attributes inherited from its parent. The focus is nesting of g elements and passing on of attributes.

+

The rendered picture should match the reference image, except for possible variations in the labelling text (per CSS2 rules).

+

The test uses the 'rect' element, as well as basic fill (solid primary colors), stroke (black 1-pixel lines), font-family (Arial) and font-size properties.

+ +
+ + + diff --git a/test/W3C_SVG_12_TinyTestSuite_beta/htmlObjectHarness/struct-group-03-t.html b/test/W3C_SVG_12_TinyTestSuite_beta/htmlObjectHarness/struct-group-03-t.html new file mode 100755 index 00000000..410932ca --- /dev/null +++ b/test/W3C_SVG_12_TinyTestSuite_beta/htmlObjectHarness/struct-group-03-t.html @@ -0,0 +1,81 @@ + + + + + + + + +SVG 1.2 Tiny test:struct-group-03-t + + + + + + + + + + +
+ + + + + + + + + + + + +
+

struct-group-03-t

+
+

FAIL

+
+ raster image of struct-group-03-t +
+
+ + +
+

This test validates that properties are inherited (or not, depending on their defintion), from a group to its children.

+

The two rows displayed in this test should be identical. In the top row, each property is set to the value 'inherit'. In the bottom row, which is the reference, each property is set to the value that should be inherited in the top row.

+ +
+ + + diff --git a/test/W3C_SVG_12_TinyTestSuite_beta/htmlObjectHarness/struct-image-01-t.html b/test/W3C_SVG_12_TinyTestSuite_beta/htmlObjectHarness/struct-image-01-t.html new file mode 100755 index 00000000..d7b9c140 --- /dev/null +++ b/test/W3C_SVG_12_TinyTestSuite_beta/htmlObjectHarness/struct-image-01-t.html @@ -0,0 +1,81 @@ + + + + + + + + +SVG 1.2 Tiny test:struct-image-01-t + + + + + + + + + + +
+ + + + + + + + + + + + +
+

struct-image-01-t

+
+

FAIL

+
+ raster image of struct-image-01-t +
+
+ + +
+

The image test case checks to see if the basic image formats allowed in the tiny profile are supported. The upper right has an JPG image the lower right has a PNG image. They are the same image. Those positions are relative to the upper left of the entire canvas. If any of the components are missing, then an image format is not being properly supported.

+

The rendered picture should match the reference image, except for possible variations in the labelling text (per CSS2 rules).

+ +
+ + + diff --git a/test/W3C_SVG_12_TinyTestSuite_beta/htmlObjectHarness/struct-image-03-t.html b/test/W3C_SVG_12_TinyTestSuite_beta/htmlObjectHarness/struct-image-03-t.html new file mode 100755 index 00000000..a989f681 --- /dev/null +++ b/test/W3C_SVG_12_TinyTestSuite_beta/htmlObjectHarness/struct-image-03-t.html @@ -0,0 +1,80 @@ + + + + + + + + +SVG 1.2 Tiny test:struct-image-03-t + + + + + + + + + + +
+ + + + + + + + + + + + +
+

struct-image-03-t

+
+

FAIL

+
+ raster image of struct-image-03-t +
+
+ + +
+

This test verifies the support for gamma correction of displayed PNG images. Several different images are displayed one above the other; if gamma correction is correctly performed based on the values in the gAMA chunk in the PNG file, the resulting displayed values are the same in all of the files (except for rounding error, which gives some artefacts at the right side of the lowest two images due to the very high levels of gamma correction needed for this test).

+ +
+ + + diff --git a/test/W3C_SVG_12_TinyTestSuite_beta/htmlObjectHarness/struct-image-04-t.html b/test/W3C_SVG_12_TinyTestSuite_beta/htmlObjectHarness/struct-image-04-t.html new file mode 100755 index 00000000..cfa2c068 --- /dev/null +++ b/test/W3C_SVG_12_TinyTestSuite_beta/htmlObjectHarness/struct-image-04-t.html @@ -0,0 +1,81 @@ + + + + + + + + +SVG 1.2 Tiny test:struct-image-04-t + + + + + + + + + + +
+ + + + + + + + + + + + +
+

struct-image-04-t

+
+

FAIL

+
+ raster image of struct-image-04-t +
+
+ + +
+

The image test case checks to see if the basic image formats allowed in the tiny profile are supported using the data: URI schema and base64 encoding.. The upper right has an JPG image the lower right has a PNG image. They are the same image. Those positions are relative to the upper left of the entire canvas. If any of the components are missing, then an image format is not being properly supported.

+

The rendered picture should match the reference image, except for possible variations in the labelling text (per CSS2 rules).

+ +
+ + + diff --git a/test/W3C_SVG_12_TinyTestSuite_beta/htmlObjectHarness/struct-image-06-t.html b/test/W3C_SVG_12_TinyTestSuite_beta/htmlObjectHarness/struct-image-06-t.html new file mode 100755 index 00000000..eeb0109b --- /dev/null +++ b/test/W3C_SVG_12_TinyTestSuite_beta/htmlObjectHarness/struct-image-06-t.html @@ -0,0 +1,80 @@ + + + + + + + + +SVG 1.2 Tiny test:struct-image-06-t + + + + + + + + + + +
+ + + + + + + + + + + + +
+

struct-image-06-t

+
+

FAIL

+
+ raster image of struct-image-06-t +
+
+ + +
+

Check that all the preserveAspectRatio values are supported for the <image> element. In particular, check that values which are not supported on the svg element's preserveAspectRatio are supported for <image>.

+ +
+ + + diff --git a/test/W3C_SVG_12_TinyTestSuite_beta/htmlObjectHarness/struct-image-07-t.html b/test/W3C_SVG_12_TinyTestSuite_beta/htmlObjectHarness/struct-image-07-t.html new file mode 100755 index 00000000..7c51cc32 --- /dev/null +++ b/test/W3C_SVG_12_TinyTestSuite_beta/htmlObjectHarness/struct-image-07-t.html @@ -0,0 +1,80 @@ + + + + + + + + +SVG 1.2 Tiny test:struct-image-07-t + + + + + + + + + + +
+ + + + + + + + + + + + +
+

struct-image-07-t

+
+

FAIL

+
+ raster image of struct-image-07-t +
+
+ + +
+

This test validates that xml:base is properly handled on the <image> element. It shows the same image three times, with different xml:base and xlink:href values.

+ +
+ + + diff --git a/test/W3C_SVG_12_TinyTestSuite_beta/htmlObjectHarness/struct-image-08-t.html b/test/W3C_SVG_12_TinyTestSuite_beta/htmlObjectHarness/struct-image-08-t.html new file mode 100755 index 00000000..f68d08c7 --- /dev/null +++ b/test/W3C_SVG_12_TinyTestSuite_beta/htmlObjectHarness/struct-image-08-t.html @@ -0,0 +1,80 @@ + + + + + + + + +SVG 1.2 Tiny test:struct-image-08-t + + + + + + + + + + +
+ + + + + + + + + + + + +
+

struct-image-08-t

+
+

FAIL

+
+ raster image of struct-image-08-t +
+
+ + +
+

Tests PNG images with alpha. The result should be identical to the reference image.

+ +
+ + + diff --git a/test/W3C_SVG_12_TinyTestSuite_beta/htmlObjectHarness/struct-image-09-t.html b/test/W3C_SVG_12_TinyTestSuite_beta/htmlObjectHarness/struct-image-09-t.html new file mode 100755 index 00000000..4ffad2dc --- /dev/null +++ b/test/W3C_SVG_12_TinyTestSuite_beta/htmlObjectHarness/struct-image-09-t.html @@ -0,0 +1,80 @@ + + + + + + + + +SVG 1.2 Tiny test:struct-image-09-t + + + + + + + + + + +
+ + + + + + + + + + + + +
+

struct-image-09-t

+
+

FAIL

+
+ raster image of struct-image-09-t +
+
+ + +
+

Tests PNG images with pallete ransparency (tRNS chunk). The result should be identical to the reference image.

+ +
+ + + diff --git a/test/W3C_SVG_12_TinyTestSuite_beta/htmlObjectHarness/struct-image-10-t.html b/test/W3C_SVG_12_TinyTestSuite_beta/htmlObjectHarness/struct-image-10-t.html new file mode 100755 index 00000000..287bbeda --- /dev/null +++ b/test/W3C_SVG_12_TinyTestSuite_beta/htmlObjectHarness/struct-image-10-t.html @@ -0,0 +1,80 @@ + + + + + + + + +SVG 1.2 Tiny test:struct-image-10-t + + + + + + + + + + +
+ + + + + + + + + + + + +
+

struct-image-10-t

+
+

FAIL

+
+ raster image of struct-image-10-t +
+
+ + +
+

Tests PNG greyscale images with alpha. The result should be identical to the reference image.

+ +
+ + + diff --git a/test/W3C_SVG_12_TinyTestSuite_beta/htmlObjectHarness/struct-progressive-201-t.html b/test/W3C_SVG_12_TinyTestSuite_beta/htmlObjectHarness/struct-progressive-201-t.html new file mode 100755 index 00000000..9ab456a5 --- /dev/null +++ b/test/W3C_SVG_12_TinyTestSuite_beta/htmlObjectHarness/struct-progressive-201-t.html @@ -0,0 +1,91 @@ + + + + + + + + +SVG 1.2 Tiny test:struct-progressive-201-t + + + + + + + + + + +
+ + + + + + + + + + + + +
+

struct-progressive-201-t

+
+

FAIL

+
+ raster image of struct-progressive-201-t +
+
+ + +
+

+ Tests progressive rendering. Progressive rendering is an optional feature. +

+

+ On user agents which support progressive rendering, the test is passed + if the circles render progressively. The update frequency is + implementation dependant. +

+

+ On user agents which do not support progressive rendering, the test is passed + if all the circles are all displayed in a single render. +

+ +
+ + + diff --git a/test/W3C_SVG_12_TinyTestSuite_beta/htmlObjectHarness/struct-progressive-202-t.html b/test/W3C_SVG_12_TinyTestSuite_beta/htmlObjectHarness/struct-progressive-202-t.html new file mode 100755 index 00000000..652b0038 --- /dev/null +++ b/test/W3C_SVG_12_TinyTestSuite_beta/htmlObjectHarness/struct-progressive-202-t.html @@ -0,0 +1,84 @@ + + + + + + + + +SVG 1.2 Tiny test:struct-progressive-202-t + + + + + + + + + + +
+ + + + + + + + + + + + +
+

struct-progressive-202-t

+
+

FAIL

+
+ raster image of struct-progressive-202-t +
+
+ + +
+

+ Tests progressive rendering. On user agents which support progressive rendering, + the rectangle should be full of circles, rendered all at once because of forward use with externalResourcesRequired. + The update frequency is implementation dependant. +

+ +
+ + + diff --git a/test/W3C_SVG_12_TinyTestSuite_beta/htmlObjectHarness/struct-progressive-203-t.html b/test/W3C_SVG_12_TinyTestSuite_beta/htmlObjectHarness/struct-progressive-203-t.html new file mode 100755 index 00000000..9120de25 --- /dev/null +++ b/test/W3C_SVG_12_TinyTestSuite_beta/htmlObjectHarness/struct-progressive-203-t.html @@ -0,0 +1,85 @@ + + + + + + + + +SVG 1.2 Tiny test:struct-progressive-203-t + + + + + + + + + + +
+ + + + + + + + + + + + +
+

struct-progressive-203-t

+
+

FAIL

+
+ raster image of struct-progressive-203-t +
+
+ + +
+

+ Tests progressive rendering. On user agents which support progressive rendering, + the rectangle should be full of circles, rendered progressively. + Images should appear as the circles pass the yellow dots. + The update frequency is implementation dependant. +

+ +
+ + + diff --git a/test/W3C_SVG_12_TinyTestSuite_beta/htmlObjectHarness/struct-progressive-204-t.html b/test/W3C_SVG_12_TinyTestSuite_beta/htmlObjectHarness/struct-progressive-204-t.html new file mode 100755 index 00000000..b55a025c --- /dev/null +++ b/test/W3C_SVG_12_TinyTestSuite_beta/htmlObjectHarness/struct-progressive-204-t.html @@ -0,0 +1,84 @@ + + + + + + + + +SVG 1.2 Tiny test:struct-progressive-204-t + + + + + + + + + + +
+ + + + + + + + + + + + +
+

struct-progressive-204-t

+
+

FAIL

+
+ raster image of struct-progressive-204-t +
+
+ + +
+

+ Tests progressive rendering. On user agents which support progressive rendering, + the content should be rendered all at once due to forward use of externalResourcesRequired on top-level SVG. + The update frequency is implementation dependant. +

+ +
+ + + diff --git a/test/W3C_SVG_12_TinyTestSuite_beta/htmlObjectHarness/struct-svg-201-t.html b/test/W3C_SVG_12_TinyTestSuite_beta/htmlObjectHarness/struct-svg-201-t.html new file mode 100755 index 00000000..6b36a480 --- /dev/null +++ b/test/W3C_SVG_12_TinyTestSuite_beta/htmlObjectHarness/struct-svg-201-t.html @@ -0,0 +1,83 @@ + + + + + + + + +SVG 1.2 Tiny test:struct-svg-201-t + + + + + + + + + + +
+ + + + + + + + + + + + +
+

struct-svg-201-t

+
+

FAIL

+
+ raster image of struct-svg-201-t +
+
+ + +
+

+ The svg should look the same on both sides and the text + should read "OK". +

+ +
+ + + diff --git a/test/W3C_SVG_12_TinyTestSuite_beta/htmlObjectHarness/struct-svg-202-t.html b/test/W3C_SVG_12_TinyTestSuite_beta/htmlObjectHarness/struct-svg-202-t.html new file mode 100755 index 00000000..a6edbb1e --- /dev/null +++ b/test/W3C_SVG_12_TinyTestSuite_beta/htmlObjectHarness/struct-svg-202-t.html @@ -0,0 +1,83 @@ + + + + + + + + +SVG 1.2 Tiny test:struct-svg-202-t + + + + + + + + + + +
+ + + + + + + + + + + + +
+

struct-svg-202-t

+
+

FAIL

+
+ raster image of struct-svg-202-t +
+
+ + +
+

+ The svg shold look the same on both sides and the text + should read "OK". +

+ +
+ + + diff --git a/test/W3C_SVG_12_TinyTestSuite_beta/htmlObjectHarness/struct-svg-203-t.html b/test/W3C_SVG_12_TinyTestSuite_beta/htmlObjectHarness/struct-svg-203-t.html new file mode 100755 index 00000000..dd15bc9c --- /dev/null +++ b/test/W3C_SVG_12_TinyTestSuite_beta/htmlObjectHarness/struct-svg-203-t.html @@ -0,0 +1,97 @@ + + + + + + + + +SVG 1.2 Tiny test:struct-svg-203-t + + + + + + + + + + +
+ + + + + + + + + + + + +
+

struct-svg-203-t

+
+

FAIL

+
+ raster image of struct-svg-203-t +
+
+ + +
+

+ This test tests that any <svg> elements that are encountered inside + an <svg> element are ignored, if the user agent supports SVG Tiny 1.2 only. +

+

+ If the user agent can handle SVG 1.1 Basic or Full, then the test has passed + if only the string "This text should be visible if the viewer supports at least SVG 1.1 Basic." + is visible. +

+

+ If the user agent supports only SVG 1.2 Tiny then the test has passed if + the svg element and it's contents have been ignored. Only the string + "This text should be visible if the viewer supports only SVG 1.2 Tiny." should + be visible. +

+

+ If both strings are visible then the test has failed. +

+ +
+ + + diff --git a/test/W3C_SVG_12_TinyTestSuite_beta/htmlObjectHarness/struct-svg-204-t.html b/test/W3C_SVG_12_TinyTestSuite_beta/htmlObjectHarness/struct-svg-204-t.html new file mode 100755 index 00000000..4d09246d --- /dev/null +++ b/test/W3C_SVG_12_TinyTestSuite_beta/htmlObjectHarness/struct-svg-204-t.html @@ -0,0 +1,83 @@ + + + + + + + + +SVG 1.2 Tiny test:struct-svg-204-t + + + + + + + + + + +
+ + + + + + + + + + + + +
+

struct-svg-204-t

+
+

FAIL

+
+ raster image of struct-svg-204-t +
+
+ + +
+

+ This test is passed if nothing is rendered as the SVG root element + contains negative values for the width and height. +

+ +
+ + + diff --git a/test/W3C_SVG_12_TinyTestSuite_beta/htmlObjectHarness/struct-use-01-t.html b/test/W3C_SVG_12_TinyTestSuite_beta/htmlObjectHarness/struct-use-01-t.html new file mode 100755 index 00000000..c7919d58 --- /dev/null +++ b/test/W3C_SVG_12_TinyTestSuite_beta/htmlObjectHarness/struct-use-01-t.html @@ -0,0 +1,81 @@ + + + + + + + + +SVG 1.2 Tiny test:struct-use-01-t + + + + + + + + + + +
+ + + + + + + + + + + + +
+

struct-use-01-t

+
+

FAIL

+
+ raster image of struct-use-01-t +
+
+ + +
+

The purpose of this test is to validate proper handling of the use element. In particular, the test checks the proper inheritance of properties through the shadow tree (rather than through the document tree).

+

The test should display various elements in different shades of green. If an element is not displayed in green, but in red fill and/or yellow stroke, then it is in error.

+ +
+ + + diff --git a/test/W3C_SVG_12_TinyTestSuite_beta/htmlObjectHarness/struct-use-03-t.html b/test/W3C_SVG_12_TinyTestSuite_beta/htmlObjectHarness/struct-use-03-t.html new file mode 100755 index 00000000..174ba0c5 --- /dev/null +++ b/test/W3C_SVG_12_TinyTestSuite_beta/htmlObjectHarness/struct-use-03-t.html @@ -0,0 +1,81 @@ + + + + + + + + +SVG 1.2 Tiny test:struct-use-03-t + + + + + + + + + + +
+ + + + + + + + + + + + +
+

struct-use-03-t

+
+

FAIL

+
+ raster image of struct-use-03-t +
+
+ + +
+

The purpose of this test is to validate proper handling of the x/y attributes on the use element.

+

The test shows a <use> element displayed on the right. On the left, a group built as described in section 5.6 of the SVG 1.1 specification validates that the <use element is properly processed.

+ +
+ + + diff --git a/test/W3C_SVG_12_TinyTestSuite_beta/htmlObjectHarness/struct-use-09-t.html b/test/W3C_SVG_12_TinyTestSuite_beta/htmlObjectHarness/struct-use-09-t.html new file mode 100755 index 00000000..5a698fa7 --- /dev/null +++ b/test/W3C_SVG_12_TinyTestSuite_beta/htmlObjectHarness/struct-use-09-t.html @@ -0,0 +1,85 @@ + + + + + + + + +SVG 1.2 Tiny test:struct-use-09-t + + + + + + + + + + +
+ + + + + + + + + + + + +
+

struct-use-09-t

+
+

FAIL

+
+ raster image of struct-use-09-t +
+
+ + +
+

+ This tests a set of 'use' and 'rect' elements inside 'g' elements, with + each referencing the one before. For the test to pass, 5 nested + rectangles with a green stroke must be rendered, and no red rectangles + must be rendered. +

+ +
+ + + diff --git a/test/W3C_SVG_12_TinyTestSuite_beta/htmlObjectHarness/struct-use-201-t.html b/test/W3C_SVG_12_TinyTestSuite_beta/htmlObjectHarness/struct-use-201-t.html new file mode 100755 index 00000000..99b9ea4f --- /dev/null +++ b/test/W3C_SVG_12_TinyTestSuite_beta/htmlObjectHarness/struct-use-201-t.html @@ -0,0 +1,93 @@ + + + + + + + + +SVG 1.2 Tiny test:struct-use-201-t + + + + + + + + + + +
+ + + + + + + + + + + + +
+

struct-use-201-t

+
+

FAIL

+
+ raster image of struct-use-201-t +
+
+ + +
+

+ This test tests reference restrictions on the use element. Each of the 5 different + restrictions is tested. +

+

+ A compliant SVG Tiny 1.2 user agent must treat each of the invalid IRI:s as if the xlink:href + attribute hadn't been specified, which is the same as disabling rendering of the use element + in question. Thus for the test to pass none of the content that the use elements try to reference + must be visible, the end result should be 5 empty (white) rects. +

+

+ For a user agent that handles at least SVG 1.1 Basic the testcase has still passed if the referenced + content in the rect that is labelled "B" is visible since this is allowed for 1.1. +

+ +
+ + + diff --git a/test/W3C_SVG_12_TinyTestSuite_beta/htmlObjectHarness/struct-use-202-t.html b/test/W3C_SVG_12_TinyTestSuite_beta/htmlObjectHarness/struct-use-202-t.html new file mode 100755 index 00000000..ce6c26c6 --- /dev/null +++ b/test/W3C_SVG_12_TinyTestSuite_beta/htmlObjectHarness/struct-use-202-t.html @@ -0,0 +1,94 @@ + + + + + + + + +SVG 1.2 Tiny test:struct-use-202-t + + + + + + + + + + +
+ + + + + + + + + + + + +
+

struct-use-202-t

+
+

FAIL

+
+ raster image of struct-use-202-t +
+
+ + +
+

+ This test tests the reference restriction B on the use element. +

+

+ A compliant SVG Tiny 1.2 user agent must treat each of the invalid IRI:s as if the xlink:href + attribute hadn't been specified, which is the same as disabling rendering of the use element + in question. Thus for the test to pass the content that the use element tries to reference + must be invisible, the end result should be an empty (white) rect. +

+

+ For a user agent that handles at least SVG 1.1 Basic the testcase has still passed if the referenced + content in the rect that is labelled "B" is visible since this is allowed for 1.1. + If the script in the external resource is executed then the color of the rect will be green. + If not then the rect will be red. +

+ +
+ + + diff --git a/test/W3C_SVG_12_TinyTestSuite_beta/htmlObjectHarness/struct-use-203-t.html b/test/W3C_SVG_12_TinyTestSuite_beta/htmlObjectHarness/struct-use-203-t.html new file mode 100755 index 00000000..4b190c5c --- /dev/null +++ b/test/W3C_SVG_12_TinyTestSuite_beta/htmlObjectHarness/struct-use-203-t.html @@ -0,0 +1,80 @@ + + + + + + + + +SVG 1.2 Tiny test:struct-use-203-t + + + + + + + + + + +
+ + + + + + + + + + + + +
+

struct-use-203-t

+
+

FAIL

+
+ raster image of struct-use-203-t +
+
+ + +
+

The intent of the file is to determine if the UA supports references to external SVG fragments. To pass this test, the UA agent must display a total of 8 graphical primitives (2 rectangles, 2 circles, 2 ellipses and 2 triangles). For each object, the UA should display a semi transparent duplicate copy at an offset position. See referenced image.

+ +
+ + + diff --git a/test/W3C_SVG_12_TinyTestSuite_beta/htmlObjectHarness/struct-use-204-t.html b/test/W3C_SVG_12_TinyTestSuite_beta/htmlObjectHarness/struct-use-204-t.html new file mode 100755 index 00000000..c3b97b9a --- /dev/null +++ b/test/W3C_SVG_12_TinyTestSuite_beta/htmlObjectHarness/struct-use-204-t.html @@ -0,0 +1,80 @@ + + + + + + + + +SVG 1.2 Tiny test:struct-use-204-t + + + + + + + + + + +
+ + + + + + + + + + + + +
+

struct-use-204-t

+
+

FAIL

+
+ raster image of struct-use-204-t +
+
+ + +
+

The intent of the file is to determine if the UA supports references to external SVG fragments. To pass this test, the UA agent must display a total of 8 graphical primitives (2 rectangles, 2 circles, 2 ellipses and 2 triangles). For each object, the UA should display a semi-transparent duplicate copy at an offset position. See referenced image.

+ +
+ + + diff --git a/test/W3C_SVG_12_TinyTestSuite_beta/htmlObjectHarness/struct-use-205-t.html b/test/W3C_SVG_12_TinyTestSuite_beta/htmlObjectHarness/struct-use-205-t.html new file mode 100755 index 00000000..dfaa8a70 --- /dev/null +++ b/test/W3C_SVG_12_TinyTestSuite_beta/htmlObjectHarness/struct-use-205-t.html @@ -0,0 +1,105 @@ + + + + + + + + +SVG 1.2 Tiny test:struct-use-205-t + + + + + + + + + + +
+ + + + + + + + + + + + +
+

struct-use-205-t

+
+

FAIL

+
+ raster image of struct-use-205-t +
+
+ + +
+

+ This test checks some aspects of the SVGElementInstance with regards to events. +

+

+ Four blue rects should be visible at first. To run the test each rect must be clicked a minimum of two times. Once + to run the basic test, and once to verify that the event handler was removed properly. The test has passed if after + clicking all the rects two times or more there are four green rects with the word "Passed" on them. If anything red + is visible or the text on any of the rects say "Failed" then the test has failed. +

+

+ The top-left rect checks that correspondingUseElement and correspondingElement are returning the correct values, and + also that the currentTarget isn't the same as target here. +

+

+ The top-right rect checks that events bubble the correct way when SVGElementInstance is involved. It's almost the same + as the first subtest, but uses another 'use' element. +

+

+ The bottom-left rect doesn't use 'use' elements at all, it's to illustrate event bubbling in normal trees as compared + to SVGElementInstance trees. +

+

+ The bottom-right rect uses nested 'use' elements. The event handler 'nestedhandler' should be executed first, and will + check some aspects of nested use elements. It will modify what it references, and that is checked in the 'h4' event + handler. +

+ +
+ + + diff --git a/test/W3C_SVG_12_TinyTestSuite_beta/htmlObjectHarness/struct-use-206-t.html b/test/W3C_SVG_12_TinyTestSuite_beta/htmlObjectHarness/struct-use-206-t.html new file mode 100755 index 00000000..44a4e20e --- /dev/null +++ b/test/W3C_SVG_12_TinyTestSuite_beta/htmlObjectHarness/struct-use-206-t.html @@ -0,0 +1,82 @@ + + + + + + + + +SVG 1.2 Tiny test:struct-use-206-t + + + + + + + + + + +
+ + + + + + + + + + + + +
+

struct-use-206-t

+
+

FAIL

+
+ raster image of struct-use-206-t +
+
+ + +
+

+ If the user agent supports referencing external content you should see three green rects. +

+ +
+ + + diff --git a/test/W3C_SVG_12_TinyTestSuite_beta/htmlObjectHarness/struct-use-207-t.html b/test/W3C_SVG_12_TinyTestSuite_beta/htmlObjectHarness/struct-use-207-t.html new file mode 100755 index 00000000..beadabb3 --- /dev/null +++ b/test/W3C_SVG_12_TinyTestSuite_beta/htmlObjectHarness/struct-use-207-t.html @@ -0,0 +1,96 @@ + + + + + + + + +SVG 1.2 Tiny test:struct-use-207-t + + + + + + + + + + +
+ + + + + + + + + + + + +
+

struct-use-207-t

+
+

FAIL

+
+ raster image of struct-use-207-t +
+
+ + +
+

+ This file is intented to test the computed values in external + references. Both files (referencing and referenced) define similar + colors/gradients via 'color', 'linearGradient' and 'radialGradient'. + The ids of those definitions are the same but the actual appearance are + different. These definitions are used to test the property inheritance + feature of SVG. +

+

+ The top left rectangle should be filled with the blue linear gradient + since the 'use' has a specified value defined in the 'defs' section. + The top right rectangle is forestgreen since the 'use' has a computed + value. The bottom left rectangle is also forestgreen since the fill is + not inherited from the referenced element's original parent. The bottom + right rectangle is filled with the orange radial gradient since the + computed value is given by the CSS cascade. +

+ +
+ + + diff --git a/test/W3C_SVG_12_TinyTestSuite_beta/htmlObjectHarness/struct-use-208-t.html b/test/W3C_SVG_12_TinyTestSuite_beta/htmlObjectHarness/struct-use-208-t.html new file mode 100755 index 00000000..3a38d05a --- /dev/null +++ b/test/W3C_SVG_12_TinyTestSuite_beta/htmlObjectHarness/struct-use-208-t.html @@ -0,0 +1,86 @@ + + + + + + + + +SVG 1.2 Tiny test:struct-use-208-t + + + + + + + + + + +
+ + + + + + + + + + + + +
+

struct-use-208-t

+
+

FAIL

+
+ raster image of struct-use-208-t +
+
+ + +
+

+ Tests the reference a group of shapes with the use element. +

+

+ The test is passed if two green circles with a black border are + rendered. +

+ +
+ + + diff --git a/test/W3C_SVG_12_TinyTestSuite_beta/htmlObjectHarness/struct-use-209-t.html b/test/W3C_SVG_12_TinyTestSuite_beta/htmlObjectHarness/struct-use-209-t.html new file mode 100755 index 00000000..16cf9462 --- /dev/null +++ b/test/W3C_SVG_12_TinyTestSuite_beta/htmlObjectHarness/struct-use-209-t.html @@ -0,0 +1,88 @@ + + + + + + + + +SVG 1.2 Tiny test:struct-use-209-t + + + + + + + + + + +
+ + + + + + + + + + + + +
+

struct-use-209-t

+
+

FAIL

+
+ raster image of struct-use-209-t +
+
+ + +
+

+ Tests circular references. +

+

+ For this test to pass the green text "This text should be visible." must + be rendered. It is not an error if graphics are visible in addition to + the green text. It is not a requirement that graphics be rendered in + addition to the green text. +

+ +
+ + + diff --git a/test/W3C_SVG_12_TinyTestSuite_beta/htmlObjectHarness/struct-use-recursion-01-t.html b/test/W3C_SVG_12_TinyTestSuite_beta/htmlObjectHarness/struct-use-recursion-01-t.html new file mode 100755 index 00000000..ec41da6b --- /dev/null +++ b/test/W3C_SVG_12_TinyTestSuite_beta/htmlObjectHarness/struct-use-recursion-01-t.html @@ -0,0 +1,82 @@ + + + + + + + + +SVG 1.2 Tiny test:struct-use-recursion-01-t + + + + + + + + + + +
+ + + + + + + + + + + + +
+

struct-use-recursion-01-t

+
+

FAIL

+
+ raster image of struct-use-recursion-01-t +
+
+ + +
+

+ This test checks for recursion in 'use' elements. The passing conditions are that the browser does not crash, and that at least one orange circle, and one yellow circle, and a line of green text are rendered. + Also, on an implementation-specific basis, additional orange and yellow circles with a dashed gray stroke may or may not be rendered, depending upon when and how the implementation detects the circular reference, + with the number of dashed circles of a given color indicating now many times the level of recurrsion permitted by the implementation. +

+ +
+ + + diff --git a/test/W3C_SVG_12_TinyTestSuite_beta/htmlObjectHarness/struct-use-recursion-02-t.html b/test/W3C_SVG_12_TinyTestSuite_beta/htmlObjectHarness/struct-use-recursion-02-t.html new file mode 100755 index 00000000..5dbe5192 --- /dev/null +++ b/test/W3C_SVG_12_TinyTestSuite_beta/htmlObjectHarness/struct-use-recursion-02-t.html @@ -0,0 +1,85 @@ + + + + + + + + +SVG 1.2 Tiny test:struct-use-recursion-02-t + + + + + + + + + + +
+ + + + + + + + + + + + +
+

struct-use-recursion-02-t

+
+

FAIL

+
+ raster image of struct-use-recursion-02-t +
+
+ + +
+

+ This test checks for recursion in 'use' elements with external references. The passing conditions are that the browser does not crash, and that the green test is rendered. The passing conditions are that the + browser does not crash, and that at least one orange circle and a line of green text are rendered. Also, on an implementation-specific basis, additional orange and yellow circles with a dashed gray stroke may or may + not be rendered, depending upon when and how the implementation detects the circular reference, with the number of dashed circles of a given color indicating now many times the level of recurrsion permitted by the implementation.. +

+

+ This test depends upon 'struct-use-recursion-03-t.svg'. +

+ +
+ + + diff --git a/test/W3C_SVG_12_TinyTestSuite_beta/htmlObjectHarness/struct-use-recursion-03-t.html b/test/W3C_SVG_12_TinyTestSuite_beta/htmlObjectHarness/struct-use-recursion-03-t.html new file mode 100755 index 00000000..f0422fd9 --- /dev/null +++ b/test/W3C_SVG_12_TinyTestSuite_beta/htmlObjectHarness/struct-use-recursion-03-t.html @@ -0,0 +1,85 @@ + + + + + + + + +SVG 1.2 Tiny test:struct-use-recursion-03-t + + + + + + + + + + +
+ + + + + + + + + + + + +
+

struct-use-recursion-03-t

+
+

FAIL

+
+ raster image of struct-use-recursion-03-t +
+
+ + +
+

+ This test checks for recursion in 'use' elements with external references. The passing conditions are that the browser does not crash, and that at least one yellow circle and a line of green text are rendered. + Also, on an implementation-specific basis, additional orange and yellow circles with a dashed gray stroke may or may not be rendered, depending upon when and how the implementation detects the circular reference, + with the number of dashed circles of a given color indicating now many times the level of recurrsion permitted by the implementation. +

+

+ This test depends upon 'struct-use-recursion-02-t.svg'. It differs from 'struct-use-recursion-02-t.svg' in that the 'use' element comes before the 'circle' element. +

+ +
+ + + diff --git a/test/W3C_SVG_12_TinyTestSuite_beta/htmlObjectHarness/styling-inherit-01-t.html b/test/W3C_SVG_12_TinyTestSuite_beta/htmlObjectHarness/styling-inherit-01-t.html new file mode 100755 index 00000000..9acbaf8f --- /dev/null +++ b/test/W3C_SVG_12_TinyTestSuite_beta/htmlObjectHarness/styling-inherit-01-t.html @@ -0,0 +1,84 @@ + + + + + + + + +SVG 1.2 Tiny test:styling-inherit-01-t + + + + + + + + + + +
+ + + + + + + + + + + + +
+

styling-inherit-01-t

+
+

FAIL

+
+ raster image of styling-inherit-01-t +
+
+ + +
+

Verify property inheritance as required by 6.7 "Property inheritance".

+

For this test to pass:

+

At the center right, there is an ellipse. The fill color is not specified on that element but on its parent. The ellipse must be filled a solid yellow

+

At the top left, an oval shape is formed from a rectangle with a radial gradient. The color of the middle stop uses the keyword 'inherit' and thus takes its parent's value of green, giving a yellow, green, white gradient from the center to the edge.

+

At the bottom left, an oval shape is formed from a rectangle with a radial gradient. The color of the middle stop uses the value 'currentColor' and thus takes the value its parent's color property, a dark red, giving a yellow, dark red, white gradient from the center to the edge

+ +
+ + + diff --git a/test/W3C_SVG_12_TinyTestSuite_beta/htmlObjectHarness/styling-inherit-02-t.html b/test/W3C_SVG_12_TinyTestSuite_beta/htmlObjectHarness/styling-inherit-02-t.html new file mode 100755 index 00000000..be3acccb --- /dev/null +++ b/test/W3C_SVG_12_TinyTestSuite_beta/htmlObjectHarness/styling-inherit-02-t.html @@ -0,0 +1,107 @@ + + + + + + + + +SVG 1.2 Tiny test:styling-inherit-02-t + + + + + + + + + + +
+ + + + + + + + + + + + +
+

styling-inherit-02-t

+
+

FAIL

+
+ raster image of styling-inherit-02-t +
+
+ + +
+

+ Tests inheritance, animation and effect of display:none on stop-color. Three + rectangles are displayed. After a five second animation has completed, + the test is passed if all three rectangles display a green to blue gradient. +

+

+ The stop-color property is not inherited by default, but the value 'inherit' forces it to + inherit the current animated value from its parent. +

+

+ In the first subtest, the value of the stop-color property on the second stop is + 'inherit'. Its parent, linearGradient with id "MyGradient" also has stop-color set to + "inherit". The parent of this gradient is the group with id "g2" and the property + stop-color is animated on that group. Thus, after the animation finishes, + the inherited value is blue. +

+

+ In the second subtest, the value of the stop-color property on the second stop is + 'currentColor'. Its parent, linearGradient with id "MyGradient" does not have the + color property set, but the property is inherited, so it inherits from the + parent - the group with id "g2". The property color is animated on that group. + Thus, after the animation finishes, the inherited value is again blue. +

+

+ The third subtest is not animated. It checks that, per specification, the properties + on a gradient are inherited from the point of definition, not the point of use. An + implementation which does this incorrectly will show a green to red fill. +

+ +
+ + + diff --git a/test/W3C_SVG_12_TinyTestSuite_beta/htmlObjectHarness/styling-inherit-03-t.html b/test/W3C_SVG_12_TinyTestSuite_beta/htmlObjectHarness/styling-inherit-03-t.html new file mode 100755 index 00000000..b99e4680 --- /dev/null +++ b/test/W3C_SVG_12_TinyTestSuite_beta/htmlObjectHarness/styling-inherit-03-t.html @@ -0,0 +1,126 @@ + + + + + + + + +SVG 1.2 Tiny test:styling-inherit-03-t + + + + + + + + + + +
+ + + + + + + + + + + + +
+

styling-inherit-03-t

+
+

FAIL

+
+ raster image of styling-inherit-03-t +
+
+ + +
+

+ Tests inheritance, animation, currentColor on solid-color. Four + rectangles are displayed. After a five second animation has completed, + the test is passed if all four rectangles display a solid green fill. +

+

+ Note: The solid-color property is not inherited by default, but the value 'inherit' forces it to + inherit the current animated value from its parent. +

+ +

+ In the first subtest, the rectangle has a solid fill. + On the solidColor element, the value of the solid-color property is + 'inherit'. Its parent, a group, also has solid-color set to + "inherit". The parent of this group is another group, the property + solid-color is green on it. +

+

+ In the second subtest, the rectangle has a solid fill. + On the solidColor element, the value of the solid-color property is + 'inherit'. Its parent has solid-color set to + "inherit". The parent of this group is another group whose solid-color + property is yellow. + The solid-color property on the solidColor element is + animated from yellow to green. Thus, after the animation finishes, + the inherited value is green. +

+

+ In the third subtest, the rectangle has a solid fill. + On the solidColor element, the value of the solid-color property is + 'inherit'. Its parent has solid-color set to + "inherit". The parent of this group is another group whose solid-color + property is yellow. + The solid-color property on the outermost group is + animated from yellow to green. Thus, after the animation finishes, + the inherited value is green. +

+

+ In the fourth subtest, the rectangle has a solid fill. + On the solidColor element, the value of the solid-color property is + 'currentColor'. Its parent has color set to + "inherit". The parent of this group is another group whose color + property is yellow. + The color property on theoutermost group is + animated from yellow to green. Thus, after the animation finishes, + the inherited value of color, and thus the value used by currentColor, is green. +

+ +
+ + + diff --git a/test/W3C_SVG_12_TinyTestSuite_beta/htmlObjectHarness/styling-pres-01-t.html b/test/W3C_SVG_12_TinyTestSuite_beta/htmlObjectHarness/styling-pres-01-t.html new file mode 100755 index 00000000..79478ea6 --- /dev/null +++ b/test/W3C_SVG_12_TinyTestSuite_beta/htmlObjectHarness/styling-pres-01-t.html @@ -0,0 +1,85 @@ + + + + + + + + +SVG 1.2 Tiny test:styling-pres-01-t + + + + + + + + + + +
+ + + + + + + + + + + + +
+

styling-pres-01-t

+
+

FAIL

+
+ raster image of styling-pres-01-t +
+
+ + +
+

Check that !important in presentation attribute is an unsupported attribute value. To pass, two rectangles should be drawn. A black filled rectangle and a lime green stroked rectangle.

+

+ A fill attribute is set to red with !important. This is an unsupported attribute value, + consequently the fill attribute should be the lacuna value, which is black. Therefore, to pass, the rectangle should be filled with black. +

+

A lime green border is also drawn, to check that rendering continues after the element with the unsupported value.

+ +
+ + + diff --git a/test/W3C_SVG_12_TinyTestSuite_beta/htmlObjectHarness/text-align-01-t.html b/test/W3C_SVG_12_TinyTestSuite_beta/htmlObjectHarness/text-align-01-t.html new file mode 100755 index 00000000..6e3f3f49 --- /dev/null +++ b/test/W3C_SVG_12_TinyTestSuite_beta/htmlObjectHarness/text-align-01-t.html @@ -0,0 +1,81 @@ + + + + + + + + +SVG 1.2 Tiny test:text-align-01-t + + + + + + + + + + +
+ + + + + + + + + + + + +
+

text-align-01-t

+
+

FAIL

+
+ raster image of text-align-01-t +
+
+ + +
+

Test 'text-anchor' property (horizontal).

+

The three lines test the three values for property 'text-anchor': start, middle and end.

+ +
+ + + diff --git a/test/W3C_SVG_12_TinyTestSuite_beta/htmlObjectHarness/text-align-07-t.html b/test/W3C_SVG_12_TinyTestSuite_beta/htmlObjectHarness/text-align-07-t.html new file mode 100755 index 00000000..2a66756c --- /dev/null +++ b/test/W3C_SVG_12_TinyTestSuite_beta/htmlObjectHarness/text-align-07-t.html @@ -0,0 +1,90 @@ + + + + + + + + +SVG 1.2 Tiny test:text-align-07-t + + + + + + + + + + +
+ + + + + + + + + + + + +
+

text-align-07-t

+
+

FAIL

+
+ raster image of text-align-07-t +
+
+ + +
+

Test horizontal baselines across script and font size changes.

+

+ The dominant baseline should be alphabetic, so the 'ab' will be sitting + on the blue line, the japanese glyphs will be on the ideographic + baseline and 'ण' is a devangari character and will use the hanging + baseline. The smaller versions of the characters should be aligned to + the same baselines. So 'ab' on the blue line, the ideographic chars + slightly below the line and the devangari should be hanging from the + hanging baseline. +

+

Original test authored by Rodney Hardy at CISRA.

+ +
+ + + diff --git a/test/W3C_SVG_12_TinyTestSuite_beta/htmlObjectHarness/text-align-08-t.html b/test/W3C_SVG_12_TinyTestSuite_beta/htmlObjectHarness/text-align-08-t.html new file mode 100755 index 00000000..fe255286 --- /dev/null +++ b/test/W3C_SVG_12_TinyTestSuite_beta/htmlObjectHarness/text-align-08-t.html @@ -0,0 +1,95 @@ + + + + + + + + +SVG 1.2 Tiny test:text-align-08-t + + + + + + + + + + +
+ + + + + + + + + + + + +
+

text-align-08-t

+
+

FAIL

+
+ raster image of text-align-08-t +
+
+ + +
+

+ Test horizontal baselines across script and font size changes. It uses + an SVG Font, where the Latin letter "a" is a rectangle, the Japanese + letter "犜" is an upward-pointing triangle, and the Devanagari letter + "ण" is a downward-pointing triangle. +

+

+ The dominant baseline should be alphabetic, so the 'a' will be sitting + on the alphabetic (blue) line, the japanese glyph (upward pointing + triangle) will be aligned on the ideographic (red) baseline and 'ण' is + a devangari character (downward pointing triangle) and will use the + hanging baseline (green). The smaller versions of the characters should + be aligned to the same baselines as the respective larger characters, + so all like shapes align to the same baseline.. +

+

Original test authored by Rodney Hardy at CISRA.

+ +
+ + + diff --git a/test/W3C_SVG_12_TinyTestSuite_beta/htmlObjectHarness/text-align-201-t.html b/test/W3C_SVG_12_TinyTestSuite_beta/htmlObjectHarness/text-align-201-t.html new file mode 100755 index 00000000..149b7e5b --- /dev/null +++ b/test/W3C_SVG_12_TinyTestSuite_beta/htmlObjectHarness/text-align-201-t.html @@ -0,0 +1,96 @@ + + + + + + + + +SVG 1.2 Tiny test:text-align-201-t + + + + + + + + + + +
+ + + + + + + + + + + + +
+

text-align-201-t

+
+

FAIL

+
+ raster image of text-align-201-t +
+
+ + +
+

+ Test for viewer capability to handle the basics of the 'textAnchor' + alignment property for 'text' when it has child elements. +

+

+ The first line from the top tests that a 'tspan' element is rendered + after the text content of the parent 'text' element. +

+

+ The second line from the top tests that all the text content, including + that of child 'tspan' elements, is taken into account when positioning + the text with respect to its alignment point. +

+

+ The rendered picture should match the reference image, except for + possible variations in the text fonts and layout (per CSS2 rules). +

+ +
+ + + diff --git a/test/W3C_SVG_12_TinyTestSuite_beta/htmlObjectHarness/text-align-202-t.html b/test/W3C_SVG_12_TinyTestSuite_beta/htmlObjectHarness/text-align-202-t.html new file mode 100755 index 00000000..7f6b94c8 --- /dev/null +++ b/test/W3C_SVG_12_TinyTestSuite_beta/htmlObjectHarness/text-align-202-t.html @@ -0,0 +1,83 @@ + + + + + + + + +SVG 1.2 Tiny test:text-align-202-t + + + + + + + + + + +
+ + + + + + + + + + + + +
+

text-align-202-t

+
+

FAIL

+
+ raster image of text-align-202-t +
+
+ + +
+

This test checks for text alignment on right-to-left text.

+

The first subtest has the word for 'Egypt', مص

+

The second subtest has the hebrew text פעילות

+

Text-anchor values of start are black, middle are maroon and end are dark blue.

+ +
+ + + diff --git a/test/W3C_SVG_12_TinyTestSuite_beta/htmlObjectHarness/text-area-201-t.html b/test/W3C_SVG_12_TinyTestSuite_beta/htmlObjectHarness/text-area-201-t.html new file mode 100755 index 00000000..acc71792 --- /dev/null +++ b/test/W3C_SVG_12_TinyTestSuite_beta/htmlObjectHarness/text-area-201-t.html @@ -0,0 +1,86 @@ + + + + + + + + +SVG 1.2 Tiny test:text-area-201-t + + + + + + + + + + +
+ + + + + + + + + + + + +
+

text-area-201-t

+
+

FAIL

+
+ raster image of text-area-201-t +
+
+ + +
+

Testing 'textArea' with fixed 'width' and 'height'

+

+ Lines should break at character boundaries if there is not enough room to perform word breaks. + The 'height' of the first 'textArea' below (top-right) is less than that of the characters + so nothing should appear. +

+

The text is taken from "The Lost Princess of Oz" by Baum, L. Frank (Lyman Frank), 1856-1919

+ +
+ + + diff --git a/test/W3C_SVG_12_TinyTestSuite_beta/htmlObjectHarness/text-area-202-t.html b/test/W3C_SVG_12_TinyTestSuite_beta/htmlObjectHarness/text-area-202-t.html new file mode 100755 index 00000000..ae74a9c5 --- /dev/null +++ b/test/W3C_SVG_12_TinyTestSuite_beta/htmlObjectHarness/text-area-202-t.html @@ -0,0 +1,92 @@ + + + + + + + + +SVG 1.2 Tiny test:text-area-202-t + + + + + + + + + + +
+ + + + + + + + + + + + +
+

text-area-202-t

+
+

FAIL

+
+ raster image of text-area-202-t +
+
+ + +
+

Testing 'textArea' with fixed 'width' and 'height'

+

+ Three 'textArea' elements contain words which are increasing in 'font-size'. + + To pass, no characters should appear in the top-right box since the 'height' of the 'textArea' is less + than that of the characters. + + There should be no characters outside of the border of the larger bottom-left box. + + In the left-side box, there may be characters outside of the border, depending on whether + the implementation breaks words or not. +

+

The text is taken from "The Lost Princess of Oz" by Baum, L. Frank (Lyman Frank), 1856-1919

+ +
+ + + diff --git a/test/W3C_SVG_12_TinyTestSuite_beta/htmlObjectHarness/text-area-203-t.html b/test/W3C_SVG_12_TinyTestSuite_beta/htmlObjectHarness/text-area-203-t.html new file mode 100755 index 00000000..e4cd4419 --- /dev/null +++ b/test/W3C_SVG_12_TinyTestSuite_beta/htmlObjectHarness/text-area-203-t.html @@ -0,0 +1,93 @@ + + + + + + + + +SVG 1.2 Tiny test:text-area-203-t + + + + + + + + + + +
+ + + + + + + + + + + + +
+

text-area-203-t

+
+

FAIL

+
+ raster image of text-area-203-t +
+
+ + +
+

TextArea with Animated Width and Height

+

+ A visible rectangle is drawn the same size as the textArea. The text + contained in the textArea should automatically wrap. +

+

+ The textArea starts off as a 24x 24 square and is animated down to full + size. The text should continually rewrap as the textArea increases in + size. +

+

+ The text is taken from "The Lost Princess of Oz" by Baum, L. Frank + (Lyman Frank), 1856-1919 +

+ +
+ + + diff --git a/test/W3C_SVG_12_TinyTestSuite_beta/htmlObjectHarness/text-area-204-t.html b/test/W3C_SVG_12_TinyTestSuite_beta/htmlObjectHarness/text-area-204-t.html new file mode 100755 index 00000000..673d3c92 --- /dev/null +++ b/test/W3C_SVG_12_TinyTestSuite_beta/htmlObjectHarness/text-area-204-t.html @@ -0,0 +1,82 @@ + + + + + + + + +SVG 1.2 Tiny test:text-area-204-t + + + + + + + + + + +
+ + + + + + + + + + + + +
+

text-area-204-t

+
+

FAIL

+
+ raster image of text-area-204-t +
+
+ + +
+

TextArea with Animated Font-size

+

The font-size is animated from 32 to 8.5 - text should continually rewrap as the font-size decreases in size.

+

The text is taken from "The Lost Princess of Oz" by Baum, L. Frank (Lyman Frank), 1856-1919

+ +
+ + + diff --git a/test/W3C_SVG_12_TinyTestSuite_beta/htmlObjectHarness/text-area-205-t.html b/test/W3C_SVG_12_TinyTestSuite_beta/htmlObjectHarness/text-area-205-t.html new file mode 100755 index 00000000..2135f0ba --- /dev/null +++ b/test/W3C_SVG_12_TinyTestSuite_beta/htmlObjectHarness/text-area-205-t.html @@ -0,0 +1,82 @@ + + + + + + + + +SVG 1.2 Tiny test:text-area-205-t + + + + + + + + + + +
+ + + + + + + + + + + + +
+

text-area-205-t

+
+

FAIL

+
+ raster image of text-area-205-t +
+
+ + +
+

TextArea with Height Set to Auto

+

Text should wrap at the right-hand margin and continue to the end of the paragraph.

+

The text is taken from "The Lost Princess of Oz" by Baum, L. Frank (Lyman Frank), 1856-1919

+ +
+ + + diff --git a/test/W3C_SVG_12_TinyTestSuite_beta/htmlObjectHarness/text-area-206-t.html b/test/W3C_SVG_12_TinyTestSuite_beta/htmlObjectHarness/text-area-206-t.html new file mode 100755 index 00000000..2ec33895 --- /dev/null +++ b/test/W3C_SVG_12_TinyTestSuite_beta/htmlObjectHarness/text-area-206-t.html @@ -0,0 +1,81 @@ + + + + + + + + +SVG 1.2 Tiny test:text-area-206-t + + + + + + + + + + +
+ + + + + + + + + + + + +
+

text-area-206-t

+
+

FAIL

+
+ raster image of text-area-206-t +
+
+ + +
+

TextArea with Line-increment and Tbreak

+

The blue lines should appear below each of the five text lines in the 'textArea'.

+ +
+ + + diff --git a/test/W3C_SVG_12_TinyTestSuite_beta/htmlObjectHarness/text-area-207-t.html b/test/W3C_SVG_12_TinyTestSuite_beta/htmlObjectHarness/text-area-207-t.html new file mode 100755 index 00000000..4e868694 --- /dev/null +++ b/test/W3C_SVG_12_TinyTestSuite_beta/htmlObjectHarness/text-area-207-t.html @@ -0,0 +1,82 @@ + + + + + + + + +SVG 1.2 Tiny test:text-area-207-t + + + + + + + + + + +
+ + + + + + + + + + + + +
+

text-area-207-t

+
+

FAIL

+
+ raster image of text-area-207-t +
+
+ + +
+

TextArea Transformed by Rotation

+

The three 'textArea's should be rotated by 35, 90 and 180 degrees.

+

The text is taken from "The Lost Princess of Oz" by Baum, L. Frank (Lyman Frank), 1856-1919

+ +
+ + + diff --git a/test/W3C_SVG_12_TinyTestSuite_beta/htmlObjectHarness/text-area-208-t.html b/test/W3C_SVG_12_TinyTestSuite_beta/htmlObjectHarness/text-area-208-t.html new file mode 100755 index 00000000..d3c6494a --- /dev/null +++ b/test/W3C_SVG_12_TinyTestSuite_beta/htmlObjectHarness/text-area-208-t.html @@ -0,0 +1,90 @@ + + + + + + + + +SVG 1.2 Tiny test:text-area-208-t + + + + + + + + + + +
+ + + + + + + + + + + + +
+

text-area-208-t

+
+

FAIL

+
+ raster image of text-area-208-t +
+
+ + +
+

TextArea with Both Width and Height Set to Auto

+

+ The eight lines of numbers should not wrap. Each line is terminated by a tbreak element. + They have numbers from 0 to 50. Each line increases the 'font-size' by 25%. + The 'line-increment' attribute is not used. +

+

+ This test is passed if eight lines of numbers are rendered and not + wrapped to a new line. Numbers displayed will decrease with each line. + Every line must begin with number 0. +

+ +
+ + + diff --git a/test/W3C_SVG_12_TinyTestSuite_beta/htmlObjectHarness/text-area-209-t.html b/test/W3C_SVG_12_TinyTestSuite_beta/htmlObjectHarness/text-area-209-t.html new file mode 100755 index 00000000..5082a894 --- /dev/null +++ b/test/W3C_SVG_12_TinyTestSuite_beta/htmlObjectHarness/text-area-209-t.html @@ -0,0 +1,84 @@ + + + + + + + + +SVG 1.2 Tiny test:text-area-209-t + + + + + + + + + + +
+ + + + + + + + + + + + +
+

text-area-209-t

+
+

FAIL

+
+ raster image of text-area-209-t +
+
+ + +
+

TextArea Testing Word Breaks and Tbreak

+

+ Each word should break onto a new line. The left-hand 'textArea' has no 'tbreak' elements + while the right-hand one uses 'tbreak' after each word. Both should appear the same. +

+ +
+ + + diff --git a/test/W3C_SVG_12_TinyTestSuite_beta/htmlObjectHarness/text-area-210-t.html b/test/W3C_SVG_12_TinyTestSuite_beta/htmlObjectHarness/text-area-210-t.html new file mode 100755 index 00000000..aefb0039 --- /dev/null +++ b/test/W3C_SVG_12_TinyTestSuite_beta/htmlObjectHarness/text-area-210-t.html @@ -0,0 +1,81 @@ + + + + + + + + +SVG 1.2 Tiny test:text-area-210-t + + + + + + + + + + +
+ + + + + + + + + + + + +
+

text-area-210-t

+
+

FAIL

+
+ raster image of text-area-210-t +
+
+ + +
+

Testing "tbreak"

+

The gap between the lines should be as described

+ +
+ + + diff --git a/test/W3C_SVG_12_TinyTestSuite_beta/htmlObjectHarness/text-area-211-t.html b/test/W3C_SVG_12_TinyTestSuite_beta/htmlObjectHarness/text-area-211-t.html new file mode 100755 index 00000000..530b00e8 --- /dev/null +++ b/test/W3C_SVG_12_TinyTestSuite_beta/htmlObjectHarness/text-area-211-t.html @@ -0,0 +1,89 @@ + + + + + + + + +SVG 1.2 Tiny test:text-area-211-t + + + + + + + + + + +
+ + + + + + + + + + + + +
+

text-area-211-t

+
+

FAIL

+
+ raster image of text-area-211-t +
+
+ + +
+

TextArea with Line-increment and Tbreak

+

Testing 'tbreak' while animating the 'font-size' attribute in 'tspan' in 'textArea'

+

+ This test defines one 'textArea' element with a 'tspan' child. The 'tspan' has as red fill and also an animation + which animates the font-size from 0 to 20. The tspan element has a tbreak element before and after it. +

+

+ To pass, the red text should both start and end on a new line, even when the font-size of the tspan is animated. +

+

The text is taken from "The Lost Princess of Oz" by Baum, L. Frank (Lyman Frank), 1856-1919

+ +
+ + + diff --git a/test/W3C_SVG_12_TinyTestSuite_beta/htmlObjectHarness/text-area-213-t.html b/test/W3C_SVG_12_TinyTestSuite_beta/htmlObjectHarness/text-area-213-t.html new file mode 100755 index 00000000..42c3a818 --- /dev/null +++ b/test/W3C_SVG_12_TinyTestSuite_beta/htmlObjectHarness/text-area-213-t.html @@ -0,0 +1,89 @@ + + + + + + + + +SVG 1.2 Tiny test:text-area-213-t + + + + + + + + + + +
+ + + + + + + + + + + + +
+

text-area-213-t

+
+

FAIL

+
+ raster image of text-area-213-t +
+
+ + +
+

TextArea with Animated Width and Height

+

+ A visible rectangle is drawn the same size as the textArea. The text contained in the textArea should + automatically wrap. +

+

+ The textArea starts off as a 24x 24 square and is animated down to full size. The text should continually + rewrap as the textArea increases in size. +

+

The text is taken from "The Lost Princess of Oz" by Baum, L. Frank (Lyman Frank), 1856-1919

+ +
+ + + diff --git a/test/W3C_SVG_12_TinyTestSuite_beta/htmlObjectHarness/text-area-220-t.html b/test/W3C_SVG_12_TinyTestSuite_beta/htmlObjectHarness/text-area-220-t.html new file mode 100755 index 00000000..2624b88e --- /dev/null +++ b/test/W3C_SVG_12_TinyTestSuite_beta/htmlObjectHarness/text-area-220-t.html @@ -0,0 +1,83 @@ + + + + + + + + +SVG 1.2 Tiny test:text-area-220-t + + + + + + + + + + +
+ + + + + + + + + + + + +
+

text-area-220-t

+
+

FAIL

+
+ raster image of text-area-220-t +
+
+ + +
+

Testing "textArea"

+

A visible rectangle is drawn the same size as the textArea. The text contained in the textArea should automatically wrap.

+

The textArea starts off as a 24x 24 square and is animated down to full size. The text should continually rewrap as the textArea increases in size.

+

The text is taken from "The Lost Princess of Oz" by Baum, L. Frank (Lyman Frank), 1856-1919

+ +
+ + + diff --git a/test/W3C_SVG_12_TinyTestSuite_beta/htmlObjectHarness/text-area-221-t.html b/test/W3C_SVG_12_TinyTestSuite_beta/htmlObjectHarness/text-area-221-t.html new file mode 100755 index 00000000..62a26f66 --- /dev/null +++ b/test/W3C_SVG_12_TinyTestSuite_beta/htmlObjectHarness/text-area-221-t.html @@ -0,0 +1,85 @@ + + + + + + + + +SVG 1.2 Tiny test:text-area-221-t + + + + + + + + + + +
+ + + + + + + + + + + + +
+

text-area-221-t

+
+

FAIL

+
+ raster image of text-area-221-t +
+
+ + +
+

TextArea with line-increment, text-align and display-align

+

+ All text should be centered vertically and horizontally. + The 'font-size' is varied along with 'line-increment'. +

+

The text is taken from "The Lost Princess of Oz" by Baum, L. Frank (Lyman Frank), 1856-1919

+ +
+ + + diff --git a/test/W3C_SVG_12_TinyTestSuite_beta/htmlObjectHarness/text-area-222-t.html b/test/W3C_SVG_12_TinyTestSuite_beta/htmlObjectHarness/text-area-222-t.html new file mode 100755 index 00000000..9b86d717 --- /dev/null +++ b/test/W3C_SVG_12_TinyTestSuite_beta/htmlObjectHarness/text-area-222-t.html @@ -0,0 +1,82 @@ + + + + + + + + +SVG 1.2 Tiny test:text-area-222-t + + + + + + + + + + +
+ + + + + + + + + + + + +
+

text-area-222-t

+
+

FAIL

+
+ raster image of text-area-222-t +
+
+ + +
+

Testing 'textArea' with editable attribute

+

Activating a textArea element should bring up UI asking for new text

+

The initial text is taken from "The Lost Princess of Oz" by Baum, L. Frank (Lyman Frank), 1856-1919

+ +
+ + + diff --git a/test/W3C_SVG_12_TinyTestSuite_beta/htmlObjectHarness/text-edit-201-t.html b/test/W3C_SVG_12_TinyTestSuite_beta/htmlObjectHarness/text-edit-201-t.html new file mode 100755 index 00000000..d80958f4 --- /dev/null +++ b/test/W3C_SVG_12_TinyTestSuite_beta/htmlObjectHarness/text-edit-201-t.html @@ -0,0 +1,112 @@ + + + + + + + + +SVG 1.2 Tiny test:text-edit-201-t + + + + + + + + + + +
+ + + + + + + + + + + + +
+

text-edit-201-t

+
+

FAIL

+
+ raster image of text-edit-201-t +
+
+ + +
+

+ This test checks basic text-editing capabilities. +

+

+ Start editing by activating the textArea that has a green dashed outline. + This textArea has no child text content, but has a defined width and height. + Input the string "123 456" (one two three, space, space, four five six). + + After input is complete, click the button labeled "Check #1". If the frame around + the textArea goes from being dashed to being solid then that part of the test has passed. + Another condition is that the text string "123 456" should look like it only has one space + and not two due to the whitespace handling rules. +

+

+ Next activate the middle textArea that has a red dashed outline. + Input two spaces between 3 and 4. Now since this textArea has xml:space="preserve" those + two spaces should be rendered as two spaces, meaning it must look different from the first + textArea on the left. The textContent must be the same in both cases though, and this is + verified by clicking the button labeled "Check #2". If the test is successful the frame + will turn from dashed red to solid red. +

+

+ Finally activate the rightmost textArea that has a blue dashed outline. + Then exit the editing mode without changing the text. The text must not change and the 'tbreak' element + must be kept in the position it's in. Now activate the textArea again and input an additional linebreak between 3 and 4. + The line "345" must now be on the third line, the second line being blank. + Click the button labeled "Check #3" to verify the result, the frame will turn from dashed + blue to solid blue if successful. +

+

+ The test has passed if after inputting text according to the instructions above and clicking the three + buttons the rendered image matches the reference image exactly. +

+ +
+ + + diff --git a/test/W3C_SVG_12_TinyTestSuite_beta/htmlObjectHarness/text-fonts-01-t.html b/test/W3C_SVG_12_TinyTestSuite_beta/htmlObjectHarness/text-fonts-01-t.html new file mode 100755 index 00000000..1dac3635 --- /dev/null +++ b/test/W3C_SVG_12_TinyTestSuite_beta/htmlObjectHarness/text-fonts-01-t.html @@ -0,0 +1,82 @@ + + + + + + + + +SVG 1.2 Tiny test:text-fonts-01-t + + + + + + + + + + +
+ + + + + + + + + + + + +
+

text-fonts-01-t

+
+

FAIL

+
+ raster image of text-fonts-01-t +
+
+ + +
+

Purpose of test is to determine if the font family is being correctly selected. The top two lines of text test serif fonts; the top line in maroon tests the generic font family 'serif' and the second line in black tests a selection of commonly available named serif fonts. The next two lines of text test sans-serif fonts; the top line in maroon tests the generic font family 'sans-serif' and the second line in black tests a selection of commonly available named sans serif fonts. The following two lines of text test monospaced fonts; the top line in maroon tests the generic font family 'monospaced' and the second line in black tests a selection of commonly available named monospaced fonts. The lowercase 'i' and uppercase'W' should be the same width,for monospaced fonts.

+

The seventh line of text, in green, tests for three non-existent fonts (nonsense names). There is no fallback generic font specified. The text must be displayed anyway.

+

The first six lines contain two Japanese characters (画像) at the end of the line. Both of these characters must be displayed, although it is compliant to display them with the 'missing glyph' if no suitable font containing Japanese characters can be found. Most but not all fonts have a visible missing glyph character. If the selected font has a visible missing glyph character, it should appear wherever the corresponding glyph is not available.

+ +
+ + + diff --git a/test/W3C_SVG_12_TinyTestSuite_beta/htmlObjectHarness/text-fonts-02-t.html b/test/W3C_SVG_12_TinyTestSuite_beta/htmlObjectHarness/text-fonts-02-t.html new file mode 100755 index 00000000..76f356f2 --- /dev/null +++ b/test/W3C_SVG_12_TinyTestSuite_beta/htmlObjectHarness/text-fonts-02-t.html @@ -0,0 +1,82 @@ + + + + + + + + +SVG 1.2 Tiny test:text-fonts-02-t + + + + + + + + + + +
+ + + + + + + + + + + + +
+

text-fonts-02-t

+
+

FAIL

+
+ raster image of text-fonts-02-t +
+
+ + +
+

Purpose of test is to determine if the font weight is being correctly rendered. A number of font families are specified. The numerical weight values (100 to 900) should show the lighter weights on the lower numbers and the heavier weights on the larger numbers. Heavier is defined to mean 'no lighter'.

+

If only one font weight is available, they should all display at the same weight. The transition from black to green figures shows the correct light to bold transition for the common case where two weights are available. If three or more weights are available, see the CSS2 specification for how these are allocated to the nine weight numbers.

+

The absolute keywords 'normal' and bold' are tested by the first two lines on the right hand side of the test, the third line of text tests the to 'bolder' relative keyword and the fourth tests the 'lighter' relative keyword.

+ +
+ + + diff --git a/test/W3C_SVG_12_TinyTestSuite_beta/htmlObjectHarness/text-fonts-03-t.html b/test/W3C_SVG_12_TinyTestSuite_beta/htmlObjectHarness/text-fonts-03-t.html new file mode 100755 index 00000000..34484cad --- /dev/null +++ b/test/W3C_SVG_12_TinyTestSuite_beta/htmlObjectHarness/text-fonts-03-t.html @@ -0,0 +1,81 @@ + + + + + + + + +SVG 1.2 Tiny test:text-fonts-03-t + + + + + + + + + + +
+ + + + + + + + + + + + +
+

text-fonts-03-t

+
+

FAIL

+
+ raster image of text-fonts-03-t +
+
+ + +
+

Testing font-family attribute. Two SVG fonts are defined. Various text elements are then used with varying values for the font-family attribute. The first two text elements should display in their respective fonts, the last two should be displayed using the system font since the value specified for font-family is either invalid or not specified.

+

The rendered picture should match the reference image exactly, except for possible variations in the labelling text (per CSS2 rules).

+ +
+ + + diff --git a/test/W3C_SVG_12_TinyTestSuite_beta/htmlObjectHarness/text-fonts-04-t.html b/test/W3C_SVG_12_TinyTestSuite_beta/htmlObjectHarness/text-fonts-04-t.html new file mode 100755 index 00000000..4e9f0da5 --- /dev/null +++ b/test/W3C_SVG_12_TinyTestSuite_beta/htmlObjectHarness/text-fonts-04-t.html @@ -0,0 +1,100 @@ + + + + + + + + +SVG 1.2 Tiny test:text-fonts-04-t + + + + + + + + + + +
+ + + + + + + + + + + + +
+

text-fonts-04-t

+
+

FAIL

+
+ raster image of text-fonts-04-t +
+
+ + +
+

+ Testing font-family attribute. + Various text elements are + used with varying values for the font-family attribute. + The first two text elements should display in their respective fonts, + Haettenschweiler and + , + if they are installed on the target system. Otherwise, simply + displaying + the text in some fallback font is enough to pass the test. + The last two should be displayed using a fallback font since the + value specified for font-family is either invalid or not specified. + Failing to display the text means the test is not passed. +

+

+ If the two named fonts are available on the system, + the rendered picture should match the reference image exactly, + except for possible + variations in the labelling text (per CSS2 rules) + and variations in text antialiasing or hinting. +

+ +
+ + + diff --git a/test/W3C_SVG_12_TinyTestSuite_beta/htmlObjectHarness/text-fonts-202-t.html b/test/W3C_SVG_12_TinyTestSuite_beta/htmlObjectHarness/text-fonts-202-t.html new file mode 100755 index 00000000..434ba26d --- /dev/null +++ b/test/W3C_SVG_12_TinyTestSuite_beta/htmlObjectHarness/text-fonts-202-t.html @@ -0,0 +1,103 @@ + + + + + + + + +SVG 1.2 Tiny test:text-fonts-202-t + + + + + + + + + + +
+ + + + + + + + + + + + +
+

text-fonts-202-t

+
+

FAIL

+
+ raster image of text-fonts-202-t +
+
+ + +
+

+ This tests the 'font-weight' property when multiple weights are available. A + font family with six weights is specified, with a fallback to 'serif'. If + the platform supports installable opentype fonts, please download + Zalamander Caps + by Tim Ahrens of Just Another Foundry. +

+

+ The numerical weight values (100 to 900) should show the lighter weights on the + lower numbers and the heavier weights on the larger numbers. Heavier is defined + to mean 'no lighter'. +

+

+ If only one font weight is available, they should all display at the same weight. + The transition from black to green figures shows the correct light to bold transition + for the common case where two weights are available. If three or more weights are + available, see the CSS2 specification for how these are allocated to the nine weight + numbers. +

+

+ The absolute keywords 'normal' and bold' are tested by the first two lines on the + right hand side of the test, the third line of text tests the to 'bolder' relative + keyword and the fourth tests the 'lighter' relative keyword. +

+ +
+ + + diff --git a/test/W3C_SVG_12_TinyTestSuite_beta/htmlObjectHarness/text-intro-01-t.html b/test/W3C_SVG_12_TinyTestSuite_beta/htmlObjectHarness/text-intro-01-t.html new file mode 100755 index 00000000..0b793d73 --- /dev/null +++ b/test/W3C_SVG_12_TinyTestSuite_beta/htmlObjectHarness/text-intro-01-t.html @@ -0,0 +1,82 @@ + + + + + + + + +SVG 1.2 Tiny test:text-intro-01-t + + + + + + + + + + +
+ + + + + + + + + + + + +
+

text-intro-01-t

+
+

FAIL

+
+ raster image of text-intro-01-t +
+
+ + +
+

Test left-to-right aspect of internationalized text.

+

Various text strings in various languages appear. The main purpose of the test is to verify that the correct characters appear and that they appear in the correct order and orientation, even though the first choice font does not have the right glyphs.

+

Correct rendering requires that each character is rendered. it may be rendered with the 'missing glyph' if no glyphs are found in the fonts listed in the content, or in any fallback font that is available. The first choice font is a special SVG font that only contains the 'missing glyph'. Missing glyph from other fonts may conformantly be used, however.

+ +
+ + + diff --git a/test/W3C_SVG_12_TinyTestSuite_beta/htmlObjectHarness/text-intro-04-t.html b/test/W3C_SVG_12_TinyTestSuite_beta/htmlObjectHarness/text-intro-04-t.html new file mode 100755 index 00000000..760a1486 --- /dev/null +++ b/test/W3C_SVG_12_TinyTestSuite_beta/htmlObjectHarness/text-intro-04-t.html @@ -0,0 +1,83 @@ + + + + + + + + +SVG 1.2 Tiny test:text-intro-04-t + + + + + + + + + + +
+ + + + + + + + + + + + +
+

text-intro-04-t

+
+

FAIL

+
+ raster image of text-intro-04-t +
+
+ + +
+

Test basic aspect of internationalized text.

+

Various text strings in various languages appear. The main purpose of the test is to verify that the correct characters appear and that they appear in the correct order and orientation.

+

Correct rendering requires that each character is rendered. It is not required that a given character be rendered with any particular font; just that it is rendered. It may be rendered with the 'missing glyph' if no glyphs are found in the fonts listed in the content, or in any fallback font that is available.

+

A future version of this test might include all necessary glyphs as an SVG font.

+ +
+ + + diff --git a/test/W3C_SVG_12_TinyTestSuite_beta/htmlObjectHarness/text-intro-05-t.html b/test/W3C_SVG_12_TinyTestSuite_beta/htmlObjectHarness/text-intro-05-t.html new file mode 100755 index 00000000..abe6cefd --- /dev/null +++ b/test/W3C_SVG_12_TinyTestSuite_beta/htmlObjectHarness/text-intro-05-t.html @@ -0,0 +1,80 @@ + + + + + + + + +SVG 1.2 Tiny test:text-intro-05-t + + + + + + + + + + +
+ + + + + + + + + + + + +
+

text-intro-05-t

+
+

FAIL

+
+ raster image of text-intro-05-t +
+
+ + +
+

Tests Arabic text using various platform fonts. If these fonts are not available, a fallback font should be used that has Arabic glyphs. If such a font is not available, the 'missing glyph' (typically an open rectangle) should be displayed. It is an error to display the wrong Arabic glyphs, for example to display all isolate forms.

+ +
+ + + diff --git a/test/W3C_SVG_12_TinyTestSuite_beta/htmlObjectHarness/text-intro-06-t.html b/test/W3C_SVG_12_TinyTestSuite_beta/htmlObjectHarness/text-intro-06-t.html new file mode 100755 index 00000000..8c26a7b0 --- /dev/null +++ b/test/W3C_SVG_12_TinyTestSuite_beta/htmlObjectHarness/text-intro-06-t.html @@ -0,0 +1,91 @@ + + + + + + + + +SVG 1.2 Tiny test:text-intro-06-t + + + + + + + + + + +
+ + + + + + + + + + + + +
+

text-intro-06-t

+
+

FAIL

+
+ raster image of text-intro-06-t +
+
+ + +
+

This test ensures that mandatory ligatures in Arabic are displayed.

+

+ There are two subtests. The first requires an isolate lam-alef ligature + and the second requires a right-joining lam-alef ligature. +

+

+ The test is passed if subtests are displayed as following: +

+ + +
+ + + diff --git a/test/W3C_SVG_12_TinyTestSuite_beta/htmlObjectHarness/text-intro-201-t.html b/test/W3C_SVG_12_TinyTestSuite_beta/htmlObjectHarness/text-intro-201-t.html new file mode 100755 index 00000000..3a7d2d31 --- /dev/null +++ b/test/W3C_SVG_12_TinyTestSuite_beta/htmlObjectHarness/text-intro-201-t.html @@ -0,0 +1,82 @@ + + + + + + + + +SVG 1.2 Tiny test:text-intro-201-t + + + + + + + + + + +
+ + + + + + + + + + + + +
+

text-intro-201-t

+
+

FAIL

+
+ raster image of text-intro-201-t +
+
+ + +
+

Test text element, tspan element and various text styles.

+

The first group tests that text displays at all, that it displays in a straight line, and that the font style can be made italic or bold.

+

The second group tests that text can be treated as any other graphical element, with stroke and fill properties. The first word tests that fill color can be specified. The second word tests that stroke color can be specified in absence of fill. The third group tests the combination of all these effects. The final group tests positioning of 'text' elements.

+ +
+ + + diff --git a/test/W3C_SVG_12_TinyTestSuite_beta/htmlObjectHarness/text-text-04-t.html b/test/W3C_SVG_12_TinyTestSuite_beta/htmlObjectHarness/text-text-04-t.html new file mode 100755 index 00000000..4504f3c3 --- /dev/null +++ b/test/W3C_SVG_12_TinyTestSuite_beta/htmlObjectHarness/text-text-04-t.html @@ -0,0 +1,87 @@ + + + + + + + + +SVG 1.2 Tiny test:text-text-04-t + + + + + + + + + + +
+ + + + + + + + + + + + +
+

text-text-04-t

+
+

FAIL

+
+ raster image of text-text-04-t +
+
+ + +
+

The purpose of this test is to validate proper handling of the text element's x and y attributes. In the various samples, a red marker shows the text's (0,0) coordinate. The blue markers show the current text positions. These are either defined by absolute x/y positioning or they are computed from the embeded font's glyphs advances.

+

The first text sample shows a reference piece of text.

+

The second text sample (x all) shows a piece of text where all the glyphs are positioned along the x axis.

+

The third text sample (x more) is a text element where there are more x values than characters (5 values for 4 characters). The last x value should be ignored and the result should be the same as the third sample.

+

The fourth text sample (x fewer) is a text element where there are fewer x values than characters (3 values for 4 characters). The last character should not be positioned but laid out normally, following its previous character sibling.

+

The fifth (y all), sixth (y more) and seventh (y fewer) text sample parallel the second, third and fourth test, but for the y attribute values.

+

The samples in the right column show combinations of x/y value sets.

+

In all the above tests, blue markers represent the expected glyph positions. The red markers are showing positions where no glyph should appear. The glyphs are black squares of increasing sizes.

+ +
+ + + diff --git a/test/W3C_SVG_12_TinyTestSuite_beta/htmlObjectHarness/text-text-06-t.html b/test/W3C_SVG_12_TinyTestSuite_beta/htmlObjectHarness/text-text-06-t.html new file mode 100755 index 00000000..2ea83f10 --- /dev/null +++ b/test/W3C_SVG_12_TinyTestSuite_beta/htmlObjectHarness/text-text-06-t.html @@ -0,0 +1,83 @@ + + + + + + + + +SVG 1.2 Tiny test:text-text-06-t + + + + + + + + + + +
+ + + + + + + + + + + + +
+

text-text-06-t

+
+

FAIL

+
+ raster image of text-text-06-t +
+
+ + +
+

The purpose of this test is to validate the interaction of x/y glyph positioning and ligatures.

+

The first line shows an example where there is a ligature (fi) which should be accounted for before breaking into text chunks (see specification section 10.5, additional x/y/dx/dy processing rules, bullet discussing ligatures). In this first line, the ligatures cause the x position 180 (shown in red), to be ignored. As a result, a glyph should be shown over each pale blue square markers. The glyphs are black squares of increasing sizes except for the initial ligature which has the form of two small black triangles joined at their tops. The ligature should show on the first pale blue marker position.

+

The second line shows the same test but using multiple y positions.

+

The third line shows the same test but using multiple x and y positions.

+ +
+ + + diff --git a/test/W3C_SVG_12_TinyTestSuite_beta/htmlObjectHarness/text-text-07-t.html b/test/W3C_SVG_12_TinyTestSuite_beta/htmlObjectHarness/text-text-07-t.html new file mode 100755 index 00000000..4b4aa59d --- /dev/null +++ b/test/W3C_SVG_12_TinyTestSuite_beta/htmlObjectHarness/text-text-07-t.html @@ -0,0 +1,81 @@ + + + + + + + + +SVG 1.2 Tiny test:text-text-07-t + + + + + + + + + + +
+ + + + + + + + + + + + +
+

text-text-07-t

+
+

FAIL

+
+ raster image of text-text-07-t +
+
+ + +
+

Tests multiple x, y, rotate, with various combinations. Since an array of values is given, each glyph must use the value from the corresponding character in the list.

+

The rendered picture should match the reference image exactly, except for possible variations in the labelling text (per CSS2 rules).

+ +
+ + + diff --git a/test/W3C_SVG_12_TinyTestSuite_beta/htmlObjectHarness/text-text-08-t.html b/test/W3C_SVG_12_TinyTestSuite_beta/htmlObjectHarness/text-text-08-t.html new file mode 100755 index 00000000..4657b53c --- /dev/null +++ b/test/W3C_SVG_12_TinyTestSuite_beta/htmlObjectHarness/text-text-08-t.html @@ -0,0 +1,80 @@ + + + + + + + + +SVG 1.2 Tiny test:text-text-08-t + + + + + + + + + + +
+ + + + + + + + + + + + +
+

text-text-08-t

+
+

FAIL

+
+ raster image of text-text-08-t +
+
+ + +
+

Two opacity properties (fill-opacity and stroke-opacity) of 'text' elements are covered in this test.

+ +
+ + + diff --git a/test/W3C_SVG_12_TinyTestSuite_beta/htmlObjectHarness/text-text-09-t.html b/test/W3C_SVG_12_TinyTestSuite_beta/htmlObjectHarness/text-text-09-t.html new file mode 100755 index 00000000..e22bb053 --- /dev/null +++ b/test/W3C_SVG_12_TinyTestSuite_beta/htmlObjectHarness/text-text-09-t.html @@ -0,0 +1,90 @@ + + + + + + + + +SVG 1.2 Tiny test:text-text-09-t + + + + + + + + + + +
+ + + + + + + + + + + + +
+

text-text-09-t

+
+

FAIL

+
+ raster image of text-text-09-t +
+
+ + +
+

+ Tests multiple x, y, rotate, with various combinations. Since an + array of values is given, each glyph must use the value from the + corresponding character in the list. In this test, there are less values + in the array than there are characters. + +

+

+ The rendered picture should match the reference image exactly, except for possible + variations in the labelling text (per CSS2 rules). +

+ +
+ + + diff --git a/test/W3C_SVG_12_TinyTestSuite_beta/htmlObjectHarness/text-tselect-03-t.html b/test/W3C_SVG_12_TinyTestSuite_beta/htmlObjectHarness/text-tselect-03-t.html new file mode 100755 index 00000000..e62170b7 --- /dev/null +++ b/test/W3C_SVG_12_TinyTestSuite_beta/htmlObjectHarness/text-tselect-03-t.html @@ -0,0 +1,89 @@ + + + + + + + + +SVG 1.2 Tiny test:text-tselect-03-t + + + + + + + + + + +
+ + + + + + + + + + + + +
+

text-tselect-03-t

+
+

FAIL

+
+ raster image of text-tselect-03-t +
+
+ + +
+

+ This test demonstrates text selection of bidirectional text. +

+

To pass the test the the first 9 characters in logical order starting from logical position 0 are to be selected. This must be done by the tester since there's no way to control the selection in DOM. The selection should be started at the letter 'a' and proceed to the number '1' as indicated by the arrows. Visually this makes the selection discontigous and these substrings must be selected (listed in visual order):

+

"abc"

+

the space between "c" and "ו"

+

"1"

+

the space between "3" and "ג"

+

"אבג"

+

If only the substrings listed above were selected then the test has passed.

+ +
+ + + diff --git a/test/W3C_SVG_12_TinyTestSuite_beta/htmlObjectHarness/text-ws-01-t.html b/test/W3C_SVG_12_TinyTestSuite_beta/htmlObjectHarness/text-ws-01-t.html new file mode 100755 index 00000000..414699e4 --- /dev/null +++ b/test/W3C_SVG_12_TinyTestSuite_beta/htmlObjectHarness/text-ws-01-t.html @@ -0,0 +1,83 @@ + + + + + + + + +SVG 1.2 Tiny test:text-ws-01-t + + + + + + + + + + +
+ + + + + + + + + + + + +
+

text-ws-01-t

+
+

FAIL

+
+ raster image of text-ws-01-t +
+
+ + +
+

Test for viewer correct handling of whitespace and the 'xml:space' attribute. There are two sub-tests, for xml:space value "default". In each test, the content of the 'text' element is written on multiple lines. The first test of each pair has indented text with leading space characters, tabs, etc. The second has no indentation, but a line break before the content and after it. There are no space (or other whitespace) characters at the ends of the lines.

+

The two test cases are self-descriptive. From the top; first, "default" value applied to 3 lines of content with indents, space characters, tabs, etc; second, "default" applied to two lines content with no indent;

+

In each test, the test string is in blue and the reference image is in black. The rendered picture should approximately match the reference image, however there is some question in the reference image concerning the exact amount of space in the long-space areas. The third test uses the nbsp unicode character to force the reference white spaces display, which provides an accurate match if the font in use has the same metrics for that character and the default white space. Also, variations are possible in the text fonts and layout (per CSS2 rules).

+

The test also uses the 'rect' element, as well as basic fill (solid primary colors), stroke (black 1-pixel lines), font-family (Arial) and font-size properties.

+ +
+ + + diff --git a/test/W3C_SVG_12_TinyTestSuite_beta/htmlObjectHarness/text-ws-02-t.html b/test/W3C_SVG_12_TinyTestSuite_beta/htmlObjectHarness/text-ws-02-t.html new file mode 100755 index 00000000..7aab76b9 --- /dev/null +++ b/test/W3C_SVG_12_TinyTestSuite_beta/htmlObjectHarness/text-ws-02-t.html @@ -0,0 +1,83 @@ + + + + + + + + +SVG 1.2 Tiny test:text-ws-02-t + + + + + + + + + + +
+ + + + + + + + + + + + +
+

text-ws-02-t

+
+

FAIL

+
+ raster image of text-ws-02-t +
+
+ + +
+

Test for viewer correct handling of whitespace and the 'xml:space' attribute. There are two sub-tests, for value "preserve". In each test, the content of the 'text' element is written on multiple lines. The first test of each pair has indented text with leading space characters, tabs, etc. The second has no indentation, but a line break before the content and after it. There are no space (or other whitespace) characters at the ends of the lines.

+

The two test cases are self-descriptive. From the top; first, "preserve" applied to essentially the same content as first; second, "preserve" applied to essentially the same content as second.

+

In each test, the test string is in blue and the reference image is in black. The rendered picture should approximately match the reference image, however there is some question in the reference image concerning the exact amount of space in the long-space areas. The third test uses the nbsp unicode character to force the reference white spaces display, which provides an accurate match if the font in use has the same metrics for that character and the default white space. Also, variations are possible in the text fonts and layout (per CSS2 rules).

+

The test also uses the 'rect' element, as well as basic fill (solid primary colors), stroke (black 1-pixel lines), font-family (Arial) and font-size properties.

+ +
+ + + diff --git a/test/W3C_SVG_12_TinyTestSuite_beta/htmlObjectHarness/udom-conform-201-t.html b/test/W3C_SVG_12_TinyTestSuite_beta/htmlObjectHarness/udom-conform-201-t.html new file mode 100755 index 00000000..c29a6eb2 --- /dev/null +++ b/test/W3C_SVG_12_TinyTestSuite_beta/htmlObjectHarness/udom-conform-201-t.html @@ -0,0 +1,94 @@ + + + + + + + + +SVG 1.2 Tiny test:udom-conform-201-t + + + + + + + + + + +
+ + + + + + + + + + + + +
+

udom-conform-201-t

+
+

FAIL

+
+ raster image of udom-conform-201-t +
+
+ + +
+

+ This tests that the getTrait[NS] and setTrait[NS] + methods of the TraitAccess interface work for the special + '#text' trait on the desc, title, + metadata, text, tspan and textArea + elements. +

+

+ The rectangle in the top left corner indicates whether the + getTrait and getTraitNS returned the expected + strings for each of the relevant elements; blue for pass, + red for fail. The four text strings below it indicate whether + setTrait and setTraitNS worked on the text + and textArea elements; they must all be the string “PASS”. +

+ +
+ + + diff --git a/test/W3C_SVG_12_TinyTestSuite_beta/htmlObjectHarness/udom-dom-201-t.html b/test/W3C_SVG_12_TinyTestSuite_beta/htmlObjectHarness/udom-dom-201-t.html new file mode 100755 index 00000000..357012dd --- /dev/null +++ b/test/W3C_SVG_12_TinyTestSuite_beta/htmlObjectHarness/udom-dom-201-t.html @@ -0,0 +1,88 @@ + + + + + + + + +SVG 1.2 Tiny test:udom-dom-201-t + + + + + + + + + + +
+ + + + + + + + + + + + +
+

udom-dom-201-t

+
+

FAIL

+
+ raster image of udom-dom-201-t +
+
+ + +
+

+ This tests that the DOMException interface is present + and that all of its constant fields exist and are correct. +

+

+ The rectangle in the top left corner indicates whether all + of the constant fields are correct; green for pass, red for fail. +

+ + +
+ + + diff --git a/test/W3C_SVG_12_TinyTestSuite_beta/htmlObjectHarness/udom-dom-202-t.html b/test/W3C_SVG_12_TinyTestSuite_beta/htmlObjectHarness/udom-dom-202-t.html new file mode 100755 index 00000000..fb252880 --- /dev/null +++ b/test/W3C_SVG_12_TinyTestSuite_beta/htmlObjectHarness/udom-dom-202-t.html @@ -0,0 +1,89 @@ + + + + + + + + +SVG 1.2 Tiny test:udom-dom-202-t + + + + + + + + + + +
+ + + + + + + + + + + + +
+

udom-dom-202-t

+
+

FAIL

+
+ raster image of udom-dom-202-t +
+
+ + +
+

+ This tests that the Node interface attributes + namespaceURI, localName, parentNode + and ownerDocument are correct, for some simple cases. +

+

+ The rectangle in the top left corner indicates whether all + of the attributes being tested have the expected values; green for + pass, red for fail. +

+ +
+ + + diff --git a/test/W3C_SVG_12_TinyTestSuite_beta/htmlObjectHarness/udom-dom-203-t.html b/test/W3C_SVG_12_TinyTestSuite_beta/htmlObjectHarness/udom-dom-203-t.html new file mode 100755 index 00000000..6d7aef7f --- /dev/null +++ b/test/W3C_SVG_12_TinyTestSuite_beta/htmlObjectHarness/udom-dom-203-t.html @@ -0,0 +1,92 @@ + + + + + + + + +SVG 1.2 Tiny test:udom-dom-203-t + + + + + + + + + + +
+ + + + + + + + + + + + +
+

udom-dom-203-t

+
+

FAIL

+
+ raster image of udom-dom-203-t +
+
+ + +
+

+ This tests that the textContent attribute of the + Node interface works correctly. The test is passed + if a blue square and two "PASS" are displayed. +

+

+ The rectangle in the top left corner indicates whether the + behavior when manipulating the textContent attribute + on various elements. + The two text strings below it indicate whether setting + textContent on the text and textArea + elements succeeded. +

+ +
+ + + diff --git a/test/W3C_SVG_12_TinyTestSuite_beta/htmlObjectHarness/udom-dom-204-t.html b/test/W3C_SVG_12_TinyTestSuite_beta/htmlObjectHarness/udom-dom-204-t.html new file mode 100755 index 00000000..cbca708e --- /dev/null +++ b/test/W3C_SVG_12_TinyTestSuite_beta/htmlObjectHarness/udom-dom-204-t.html @@ -0,0 +1,126 @@ + + + + + + + + +SVG 1.2 Tiny test:udom-dom-204-t + + + + + + + + + + +
+ + + + + + + + + + + + +
+

udom-dom-204-t

+
+

FAIL

+
+ raster image of udom-dom-204-t +
+
+ + +
+

+ This tests that the appendChild method of the + Node interface works correctly. +

+

+ The test has been passed if six blue rectangles are displayed. + Each rectangle indicates the result of a different aspect of + appendChild behavior being tested: +

+ + +
+ + + diff --git a/test/W3C_SVG_12_TinyTestSuite_beta/htmlObjectHarness/udom-dom-206-t.html b/test/W3C_SVG_12_TinyTestSuite_beta/htmlObjectHarness/udom-dom-206-t.html new file mode 100755 index 00000000..bda2c2e6 --- /dev/null +++ b/test/W3C_SVG_12_TinyTestSuite_beta/htmlObjectHarness/udom-dom-206-t.html @@ -0,0 +1,126 @@ + + + + + + + + +SVG 1.2 Tiny test:udom-dom-206-t + + + + + + + + + + +
+ + + + + + + + + + + + +
+

udom-dom-206-t

+
+

FAIL

+
+ raster image of udom-dom-206-t +
+
+ + +
+

+ This tests that the removeChild method of the + Node interface works correctly. +

+

+ The test has three sub-tests, for different removeChild + behavior, which consist of a paired rectangle and circle: +

+ +

+ The test has been passed if the top row shows three blue rectangles + and the bottom row shows three blue circles. +

+ +
+ + + diff --git a/test/W3C_SVG_12_TinyTestSuite_beta/htmlObjectHarness/udom-dom-207-t.html b/test/W3C_SVG_12_TinyTestSuite_beta/htmlObjectHarness/udom-dom-207-t.html new file mode 100755 index 00000000..a3b70ce4 --- /dev/null +++ b/test/W3C_SVG_12_TinyTestSuite_beta/htmlObjectHarness/udom-dom-207-t.html @@ -0,0 +1,110 @@ + + + + + + + + +SVG 1.2 Tiny test:udom-dom-207-t + + + + + + + + + + +
+ + + + + + + + + + + + +
+

udom-dom-207-t

+
+

FAIL

+
+ raster image of udom-dom-207-t +
+
+ + +
+

+ This tests that the cloneNode method of the + Node interface works correctly. +

+

+ The test has two sub-tests: one for a deep clone, and + one for a shallow clone. +

+ + +
+ + + diff --git a/test/W3C_SVG_12_TinyTestSuite_beta/htmlObjectHarness/udom-dom-209-t.html b/test/W3C_SVG_12_TinyTestSuite_beta/htmlObjectHarness/udom-dom-209-t.html new file mode 100755 index 00000000..d5b1bd6b --- /dev/null +++ b/test/W3C_SVG_12_TinyTestSuite_beta/htmlObjectHarness/udom-dom-209-t.html @@ -0,0 +1,101 @@ + + + + + + + + +SVG 1.2 Tiny test:udom-dom-209-t + + + + + + + + + + +
+ + + + + + + + + + + + +
+

udom-dom-209-t

+
+

FAIL

+
+ raster image of udom-dom-209-t +
+
+ + +
+

+ This tests that the setAttribute and setAttributeNS + methods on the Element interface work correctly, for some + simple cases. +

+

+ There are five sub-tests (a rectangle for each). These are: +

+ +

+ The test has been passed if all five rectangles are blue. +

+ +
+ + + diff --git a/test/W3C_SVG_12_TinyTestSuite_beta/htmlObjectHarness/udom-dom-210-t.html b/test/W3C_SVG_12_TinyTestSuite_beta/htmlObjectHarness/udom-dom-210-t.html new file mode 100755 index 00000000..e14eeb02 --- /dev/null +++ b/test/W3C_SVG_12_TinyTestSuite_beta/htmlObjectHarness/udom-dom-210-t.html @@ -0,0 +1,100 @@ + + + + + + + + +SVG 1.2 Tiny test:udom-dom-210-t + + + + + + + + + + +
+ + + + + + + + + + + + +
+

udom-dom-210-t

+
+

FAIL

+
+ raster image of udom-dom-210-t +
+
+ + +
+

+ This tests that the createElementNS method on the + Document interface works correctly, for each SVG Tiny 1.2 + element, and for some unknown elements. +

+

+ There are four sub-tests (a rectangle for each). The test has been + passed if all four rectangles are blue. +

+

+ Thes are: +

+ +

+ +

+ +
+ + + diff --git a/test/W3C_SVG_12_TinyTestSuite_beta/htmlObjectHarness/udom-dom-211-t.html b/test/W3C_SVG_12_TinyTestSuite_beta/htmlObjectHarness/udom-dom-211-t.html new file mode 100755 index 00000000..0d1cf5c8 --- /dev/null +++ b/test/W3C_SVG_12_TinyTestSuite_beta/htmlObjectHarness/udom-dom-211-t.html @@ -0,0 +1,86 @@ + + + + + + + + +SVG 1.2 Tiny test:udom-dom-211-t + + + + + + + + + + +
+ + + + + + + + + + + + +
+

udom-dom-211-t

+
+

FAIL

+
+ raster image of udom-dom-211-t +
+
+ + +
+

+ This performs a simple test on the documentElement attribute + on the Document interface. +

+

+ The test has been passed if there is a single green rectangle. +

+ +
+ + + diff --git a/test/W3C_SVG_12_TinyTestSuite_beta/htmlObjectHarness/udom-dom-213-t.html b/test/W3C_SVG_12_TinyTestSuite_beta/htmlObjectHarness/udom-dom-213-t.html new file mode 100755 index 00000000..73632daa --- /dev/null +++ b/test/W3C_SVG_12_TinyTestSuite_beta/htmlObjectHarness/udom-dom-213-t.html @@ -0,0 +1,90 @@ + + + + + + + + +SVG 1.2 Tiny test:udom-dom-213-t + + + + + + + + + + +
+ + + + + + + + + + + + +
+

udom-dom-213-t

+
+

FAIL

+
+ raster image of udom-dom-213-t +
+
+ + +
+

+ This tests that the firstElementChild, + lastElementChild, nextElementSibling and + previousElementSibling methods of the ElementTraversal + interface works correctly. +

+

+ The rectangle in the top left corner indicates whether all + of the attributes being tested have the expected values; green for + pass, red for fail. +

+ +
+ + + diff --git a/test/W3C_SVG_12_TinyTestSuite_beta/htmlObjectHarness/udom-event-201-t.html b/test/W3C_SVG_12_TinyTestSuite_beta/htmlObjectHarness/udom-event-201-t.html new file mode 100755 index 00000000..a418588d --- /dev/null +++ b/test/W3C_SVG_12_TinyTestSuite_beta/htmlObjectHarness/udom-event-201-t.html @@ -0,0 +1,100 @@ + + + + + + + + +SVG 1.2 Tiny test:udom-event-201-t + + + + + + + + + + +
+ + + + + + + + + + + + +
+

udom-event-201-t

+
+

FAIL

+
+ raster image of udom-event-201-t +
+
+ + +
+

+ This tests that the methods of the EventTarget interface work + correctly. +

+

+ There are three sub-tests (a rectangle for each). These are: +

+ +

+ The test has been passed if all three rectangles are blue. +

+ +
+ + + diff --git a/test/W3C_SVG_12_TinyTestSuite_beta/htmlObjectHarness/udom-event-202-t.html b/test/W3C_SVG_12_TinyTestSuite_beta/htmlObjectHarness/udom-event-202-t.html new file mode 100755 index 00000000..7c584011 --- /dev/null +++ b/test/W3C_SVG_12_TinyTestSuite_beta/htmlObjectHarness/udom-event-202-t.html @@ -0,0 +1,95 @@ + + + + + + + + +SVG 1.2 Tiny test:udom-event-202-t + + + + + + + + + + +
+ + + + + + + + + + + + +
+

udom-event-202-t

+
+

FAIL

+
+ raster image of udom-event-202-t +
+
+ + +
+

+ This tests that the target, currentTarget, + type and cancelable + attributes of the Event interface work correctly. +

+

+ The test consists of a single rectangle, which has event listeners + registered on it and all of its ancestor nodes. Clicking on the + rectangle will test that the attribute of the Event object + all have expected values, for each invocation of an event listener. + It also tests whether each of the event listeners is indeed invoked. +

+

+ The test has been passed if the rectangle becomes blue when clicking + it. +

+ +
+ + + diff --git a/test/W3C_SVG_12_TinyTestSuite_beta/htmlObjectHarness/udom-event-203-t.html b/test/W3C_SVG_12_TinyTestSuite_beta/htmlObjectHarness/udom-event-203-t.html new file mode 100755 index 00000000..e28a6faf --- /dev/null +++ b/test/W3C_SVG_12_TinyTestSuite_beta/htmlObjectHarness/udom-event-203-t.html @@ -0,0 +1,95 @@ + + + + + + + + +SVG 1.2 Tiny test:udom-event-203-t + + + + + + + + + + +
+ + + + + + + + + + + + +
+

udom-event-203-t

+
+

FAIL

+
+ raster image of udom-event-203-t +
+
+ + +
+

+ This tests the stopPropagation method of the + Event interface. +

+

+ The test consists of a single rectangle, which has event listeners + registered on it and some of its ancestor nodes. Clicking on the + rectangle will dispatch the click event. The listener on + the parent node of the rect calls stopPropagation(). + The test checks that the listener for the grandparent node is not + dispatched. +

+

+ The test has been passed if the rectangle becomes blue when clicking + it. +

+ +
+ + + diff --git a/test/W3C_SVG_12_TinyTestSuite_beta/htmlObjectHarness/udom-event-204-t.html b/test/W3C_SVG_12_TinyTestSuite_beta/htmlObjectHarness/udom-event-204-t.html new file mode 100755 index 00000000..dbc433ac --- /dev/null +++ b/test/W3C_SVG_12_TinyTestSuite_beta/htmlObjectHarness/udom-event-204-t.html @@ -0,0 +1,95 @@ + + + + + + + + +SVG 1.2 Tiny test:udom-event-204-t + + + + + + + + + + +
+ + + + + + + + + + + + +
+

udom-event-204-t

+
+

FAIL

+
+ raster image of udom-event-204-t +
+
+ + +
+

+ This tests the defaultPrevented attribute and the + preventDefault method of the Event interface. +

+

+ The test consists of a single rectangle, which has event listeners + registered on it and some of its ancestor nodes. Clicking on the + rectangle will dispatch the click event. The listener on + the grandparent node of the rect calls + preventDefault(). The test checks that the event object has + defaultPrevented set to true. +

+

+ The test has been passed if the rectangle becomes blue when clicking + it. +

+ +
+ + + diff --git a/test/W3C_SVG_12_TinyTestSuite_beta/htmlObjectHarness/udom-event-205-t.html b/test/W3C_SVG_12_TinyTestSuite_beta/htmlObjectHarness/udom-event-205-t.html new file mode 100755 index 00000000..ce47c78a --- /dev/null +++ b/test/W3C_SVG_12_TinyTestSuite_beta/htmlObjectHarness/udom-event-205-t.html @@ -0,0 +1,102 @@ + + + + + + + + +SVG 1.2 Tiny test:udom-event-205-t + + + + + + + + + + +
+ + + + + + + + + + + + +
+

udom-event-205-t

+
+

FAIL

+
+ raster image of udom-event-205-t +
+
+ + +
+

+ This tests the clientX, clientY and button + attributes of the MouseEvent interface. +

+

+ The test consists of three rectangles, one for each of the three + common mouse buttons. To perform the test, the user must move the + mouse cursor over a rectangle, press the mouse button down, then + move the mouse cursor out of the rectangle. If after this the + rectangle becomes blue, then that sub-test has been passed, indicating + that the clientX, clientY and button + attributes of the MouseEvent object had expected values for + the mouseover, mousedown and mouseout + events. +

+

+ The test as a whole has been passed if, for each rectangle that + corresponds to a button on the pointing device that the user + agent supports, it becomes blue after performing the interaction. + If the user agent does not support a pointing device at all, + then the test is passed automatically without needing to + perform any interaction. +

+ +
+ + + diff --git a/test/W3C_SVG_12_TinyTestSuite_beta/htmlObjectHarness/udom-event-207-t.html b/test/W3C_SVG_12_TinyTestSuite_beta/htmlObjectHarness/udom-event-207-t.html new file mode 100755 index 00000000..1d8bf175 --- /dev/null +++ b/test/W3C_SVG_12_TinyTestSuite_beta/htmlObjectHarness/udom-event-207-t.html @@ -0,0 +1,102 @@ + + + + + + + + +SVG 1.2 Tiny test:udom-event-207-t + + + + + + + + + + +
+ + + + + + + + + + + + +
+

udom-event-207-t

+
+

FAIL

+
+ raster image of udom-event-207-t +
+
+ + +
+

+ This tests the data attribute of the TextEvent + interface. +

+

+ To perform the test, the user must input some text. This can be + from a variety of sources, such characters directly from a keyboard, + text pasted from the clipboard, input from an IME or input from a + speech recognizer. + Once the text has been input, the black rectangle should turn blue to + indicate that the test has been passed. In addition, the + text element below the rectangle will show the text that was + input. +

+

+ If the rectangle becomes red, the test failed because the + data attribute had an invalid value. If the rectangle + remains black, the test failed because the textInput + event is not supported. If the text string does not appear, + or does not match the input text, the test failed because the + textInput event is not supported correctly (e.g. it + only tests for any keyboard activity). +

+ +
+ + + diff --git a/test/W3C_SVG_12_TinyTestSuite_beta/htmlObjectHarness/udom-event-208-t.html b/test/W3C_SVG_12_TinyTestSuite_beta/htmlObjectHarness/udom-event-208-t.html new file mode 100755 index 00000000..227db8e7 --- /dev/null +++ b/test/W3C_SVG_12_TinyTestSuite_beta/htmlObjectHarness/udom-event-208-t.html @@ -0,0 +1,102 @@ + + + + + + + + +SVG 1.2 Tiny test:udom-event-208-t + + + + + + + + + + +
+ + + + + + + + + + + + +
+

udom-event-208-t

+
+

FAIL

+
+ raster image of udom-event-208-t +
+
+ + +
+

+ This tests the detail attribute of the UIEvent + interface and the dispatch order of mouse events when clicking. +

+

+ To perform the test, the user must triple click on the circle. + The nine rectangles to the right of the circle indicate whether the + detail attribute of the UIEvent object was correct + for the mousedown, click and mouseup + events. The first row of rectangles checks the three events when + detail = 1, the second row for detail = 2 and + the third row for detail = 3. +

+

+ In addition, the circle should remain black after the nine rectangles + have become blue. If the circle becomes red, it indicates that + the test failed because the mousedown, click and + mouseup events were fired in an incorrect order. +

+

+ The test has been passed if, after triple clicking the circle, all nine + rectangles are blue and the circle remains black. +

+ +
+ + + diff --git a/test/W3C_SVG_12_TinyTestSuite_beta/htmlObjectHarness/udom-event-209-t.html b/test/W3C_SVG_12_TinyTestSuite_beta/htmlObjectHarness/udom-event-209-t.html new file mode 100755 index 00000000..f7591b02 --- /dev/null +++ b/test/W3C_SVG_12_TinyTestSuite_beta/htmlObjectHarness/udom-event-209-t.html @@ -0,0 +1,98 @@ + + + + + + + + +SVG 1.2 Tiny test:udom-event-209-t + + + + + + + + + + +
+ + + + + + + + + + + + +
+

udom-event-209-t

+
+

FAIL

+
+ raster image of udom-event-209-t +
+
+ + +
+

+ This tests that the target, currentTarget, + type and cancelable + attributes of the Event interface work correctly. It + is the same as udom-event-202-t except that the event listener + is given by an ECMAScript object with a handleEvent + property, rather than by an ECMAScript Function object. +

+

+ The test consists of a single rectangle, which has event listeners + registered on it and all of its ancestor nodes. Clicking on the + rectangle will test that the attribute of the Event object + all have expected values, for each invocation of an event listener. + It also tests whether each of the event listeners is indeed invoked. +

+

+ The test has been passed if the rectangle becomes blue when clicking + it. +

+ +
+ + + diff --git a/test/W3C_SVG_12_TinyTestSuite_beta/htmlObjectHarness/udom-event-210-t.html b/test/W3C_SVG_12_TinyTestSuite_beta/htmlObjectHarness/udom-event-210-t.html new file mode 100755 index 00000000..0e2b8ef7 --- /dev/null +++ b/test/W3C_SVG_12_TinyTestSuite_beta/htmlObjectHarness/udom-event-210-t.html @@ -0,0 +1,89 @@ + + + + + + + + +SVG 1.2 Tiny test:udom-event-210-t + + + + + + + + + + +
+ + + + + + + + + + + + +
+

udom-event-210-t

+
+

FAIL

+
+ raster image of udom-event-210-t +
+
+ + +
+

+ The test at first should show a green rectangle. +

+

+ Trigger some mousewheel events, for example by using a mouse with a scrollwheel + or a jog dial. + The test has passed if, when you scroll down, the rectangle rotates clockwise; + and when you scroll up, the rectangle rotates counter clockwise. + For reference the values of the Mousewheel event are displayed as text. +

+ +
+ + + diff --git a/test/W3C_SVG_12_TinyTestSuite_beta/htmlObjectHarness/udom-glob-201-t.html b/test/W3C_SVG_12_TinyTestSuite_beta/htmlObjectHarness/udom-glob-201-t.html new file mode 100755 index 00000000..89a36f8e --- /dev/null +++ b/test/W3C_SVG_12_TinyTestSuite_beta/htmlObjectHarness/udom-glob-201-t.html @@ -0,0 +1,87 @@ + + + + + + + + +SVG 1.2 Tiny test:udom-glob-201-t + + + + + + + + + + +
+ + + + + + + + + + + + +
+

udom-glob-201-t

+
+

FAIL

+
+ raster image of udom-glob-201-t +
+
+ + +
+

+ This tests that the GlobalException interface is present + and that all of its constant fields exist and are correct. +

+

+ The rectangle in the top left corner indicates whether all + of the constant fields are correct; green for pass, red for fail. +

+ +
+ + + diff --git a/test/W3C_SVG_12_TinyTestSuite_beta/htmlObjectHarness/udom-glob-202-t.html b/test/W3C_SVG_12_TinyTestSuite_beta/htmlObjectHarness/udom-glob-202-t.html new file mode 100755 index 00000000..d7ed905e --- /dev/null +++ b/test/W3C_SVG_12_TinyTestSuite_beta/htmlObjectHarness/udom-glob-202-t.html @@ -0,0 +1,87 @@ + + + + + + + + +SVG 1.2 Tiny test:udom-glob-202-t + + + + + + + + + + +
+ + + + + + + + + + + + +
+

udom-glob-202-t

+
+

FAIL

+
+ raster image of udom-glob-202-t +
+
+ + +
+

+ This tests that the gotoLocation method is present + and works for a simple case. +

+

+ Once loaded, the SVG file will be replaced by the words success. Note that the + contents of this file may be displayed for a short interval until the new file is loaded. +

+ +
+ + + diff --git a/test/W3C_SVG_12_TinyTestSuite_beta/htmlObjectHarness/udom-glob-203-t.html b/test/W3C_SVG_12_TinyTestSuite_beta/htmlObjectHarness/udom-glob-203-t.html new file mode 100755 index 00000000..df10125f --- /dev/null +++ b/test/W3C_SVG_12_TinyTestSuite_beta/htmlObjectHarness/udom-glob-203-t.html @@ -0,0 +1,110 @@ + + + + + + + + +SVG 1.2 Tiny test:udom-glob-203-t + + + + + + + + + + +
+ + + + + + + + + + + + +
+

udom-glob-203-t

+
+

FAIL

+
+ raster image of udom-glob-203-t +
+
+ + +
+

+ This SVG will test the SVGGlobal's postURL() callback status. The test + is passed if, on each row, both squares have the same color. +

+

+ There are multiple calls to postURL(), each with a different expected + HTTP return code. +

+

+ The test works in conjunction with a JSP servlet called HttpCodeTest, + which will simulate the various HTTP return codes, based on the query + parameter from the client. +

+

+ For each call to postURL(), two squares will appear. The first square + represents the "expected" status code. The second square represents the + "actual" status code that the callback function receives. The status + codes are color-coded. +

+

+ Note that the status codes may take some time to update, due to the + asynchronous nature of the postURL() callback. Tester should allow some + time for all postURL() calls to receive ther return codes. The latency + will vary depending on the network environment, but normally, it should + only be a couple minutes at most. +

+

+ 100-ranges status codes are not tested here because the spec states that + these status codes should be ignored. It is not clear what the expected + callback status should be in this case. +

+ +
+ + + diff --git a/test/W3C_SVG_12_TinyTestSuite_beta/htmlObjectHarness/udom-glob-204-t.html b/test/W3C_SVG_12_TinyTestSuite_beta/htmlObjectHarness/udom-glob-204-t.html new file mode 100755 index 00000000..b2ae55c9 --- /dev/null +++ b/test/W3C_SVG_12_TinyTestSuite_beta/htmlObjectHarness/udom-glob-204-t.html @@ -0,0 +1,111 @@ + + + + + + + + +SVG 1.2 Tiny test:udom-glob-204-t + + + + + + + + + + +
+ + + + + + + + + + + + +
+

udom-glob-204-t

+
+

FAIL

+
+ raster image of udom-glob-204-t +
+
+ + +
+

+ This SVG will test the SVGGlobal's getURL() callback status. The test is + passed if, on each row, both squares have the same color. +

+

+ There are multiple calls to getURL(), each with a different expected + HTTP return code. +

+

+ The test works in conjunction with a JSP servlet called HttpCodeTest, + which will simulate the various HTTP return codes, based on the query + parameter from the client. +

+

+ For each call to getURL(), two squares will appear. The first square + represents the "expected" status code. The second square represents the + "actual" status code that the callback function receives. The status + codes are color-coded. +

+

+ Note that the status codes may take some time to update, due to the + asynchronous nature of the getURL() callback. Tester should allow some + time for all getURL() calls to receive ther return codes. The latency + will vary depending on the network environment, but normally, it should + only be a couple minutes at most. Once all calls have returned, the text + "Callbacks now finished" will show, in green. +

+

+ 100-ranges status codes are not tested here because the spec states that + these status codes should be ignored. It is not clear what the expected + callback status should be in this case. +

+ +
+ + + diff --git a/test/W3C_SVG_12_TinyTestSuite_beta/htmlObjectHarness/udom-node-201-t.html b/test/W3C_SVG_12_TinyTestSuite_beta/htmlObjectHarness/udom-node-201-t.html new file mode 100755 index 00000000..044ffa75 --- /dev/null +++ b/test/W3C_SVG_12_TinyTestSuite_beta/htmlObjectHarness/udom-node-201-t.html @@ -0,0 +1,83 @@ + + + + + + + + +SVG 1.2 Tiny test:udom-node-201-t + + + + + + + + + + +
+ + + + + + + + + + + + +
+

udom-node-201-t

+
+

FAIL

+
+ raster image of udom-node-201-t +
+
+ + +
+

+ Test with cloneNode on a use element. The red rect is cloned directly on the rect element. + The yellow rect is cloned on the use element. Two red and two yellow rects must be showing. +

+ +
+ + + diff --git a/test/W3C_SVG_12_TinyTestSuite_beta/htmlObjectHarness/udom-node-202-t.html b/test/W3C_SVG_12_TinyTestSuite_beta/htmlObjectHarness/udom-node-202-t.html new file mode 100755 index 00000000..ec713b07 --- /dev/null +++ b/test/W3C_SVG_12_TinyTestSuite_beta/htmlObjectHarness/udom-node-202-t.html @@ -0,0 +1,84 @@ + + + + + + + + +SVG 1.2 Tiny test:udom-node-202-t + + + + + + + + + + +
+ + + + + + + + + + + + +
+

udom-node-202-t

+
+

FAIL

+
+ raster image of udom-node-202-t +
+
+ + +
+

+ Testing CloneNode with different values of the "deep" parameter. + In this test an image with animations inside is cloned twice, one which should keep the animations and the second that should only clone image node. + The first and second image should animate from opacity 0 and width 20 to opacity 1 and width 100. The third image should not animate. +

+ +
+ + + diff --git a/test/W3C_SVG_12_TinyTestSuite_beta/htmlObjectHarness/udom-node-204-t.html b/test/W3C_SVG_12_TinyTestSuite_beta/htmlObjectHarness/udom-node-204-t.html new file mode 100755 index 00000000..8f9c34fb --- /dev/null +++ b/test/W3C_SVG_12_TinyTestSuite_beta/htmlObjectHarness/udom-node-204-t.html @@ -0,0 +1,84 @@ + + + + + + + + +SVG 1.2 Tiny test:udom-node-204-t + + + + + + + + + + +
+ + + + + + + + + + + + +
+

udom-node-204-t

+
+

FAIL

+
+ raster image of udom-node-204-t +
+
+ + +
+

+ Test basic uDOM support with node (parentNode) and trait access. + The svg shold look the same on both sides and the text + should read "OK". +

+ +
+ + + diff --git a/test/W3C_SVG_12_TinyTestSuite_beta/htmlObjectHarness/udom-over-01-t.html b/test/W3C_SVG_12_TinyTestSuite_beta/htmlObjectHarness/udom-over-01-t.html new file mode 100755 index 00000000..ac1afb86 --- /dev/null +++ b/test/W3C_SVG_12_TinyTestSuite_beta/htmlObjectHarness/udom-over-01-t.html @@ -0,0 +1,94 @@ + + + + + + + + +SVG 1.2 Tiny test:udom-over-01-t + + + + + + + + + + +
+ + + + + + + + + + + + +
+

udom-over-01-t

+
+

FAIL

+
+ raster image of udom-over-01-t +
+
+ + +
+

+ Verify the basic capability to handle the SVG DOM API. + The test is composed of a top level svg element with an 'onload' event handler and a rect element. + Both the svg and the rect elements have an identifier. The 'onload' handler invokes SVG-specific DOM API methods which use these identifiers. +

+

+ First, the handler gets the SVG root element and checks it has the expected identifier. + Then, the handler accesses the coordinates of the rect element and uses them to build a 'shadow' rectangle under the existing one. + Finally, the 'shadow' rectangle is created using the createElementNS method. +

+

+ If an implementation supports the ECMAScript DOM binding for SVG, then the image must show the following text: + "This document's root identifier is: svg-root" and a red rectangle with a black shadow rectangle. Otherwise, only a red rectangle will show. +

+

The rendered picture should match the reference image.

+ +
+ + + diff --git a/test/W3C_SVG_12_TinyTestSuite_beta/htmlObjectHarness/udom-smil-201-t.html b/test/W3C_SVG_12_TinyTestSuite_beta/htmlObjectHarness/udom-smil-201-t.html new file mode 100755 index 00000000..890a444f --- /dev/null +++ b/test/W3C_SVG_12_TinyTestSuite_beta/htmlObjectHarness/udom-smil-201-t.html @@ -0,0 +1,106 @@ + + + + + + + + +SVG 1.2 Tiny test:udom-smil-201-t + + + + + + + + + + +
+ + + + + + + + + + + + +
+

udom-smil-201-t

+
+

FAIL

+
+ raster image of udom-smil-201-t +
+
+ + +
+

+ This tests the beginElement and beginElementAt + methods of the ElementTimeControl interface. +

+

+ The test consists of four animated rectangles, one pink, three blue. + To perform the test, the user must click the pink rectangle. + The pink rectangle is set to animate with begin='mousedown', + while the three blue rectangles have begin='indefinite', + and are begun with calls to methods on the ElementTimeControl + interface: +

+ +

+ The test has been passed if the three blue rectangles reach their + destination at the same time as the pink rectangle. +

+ +
+ + + diff --git a/test/W3C_SVG_12_TinyTestSuite_beta/htmlObjectHarness/udom-smil-202-t.html b/test/W3C_SVG_12_TinyTestSuite_beta/htmlObjectHarness/udom-smil-202-t.html new file mode 100755 index 00000000..89947397 --- /dev/null +++ b/test/W3C_SVG_12_TinyTestSuite_beta/htmlObjectHarness/udom-smil-202-t.html @@ -0,0 +1,118 @@ + + + + + + + + +SVG 1.2 Tiny test:udom-smil-202-t + + + + + + + + + + +
+ + + + + + + + + + + + +
+

udom-smil-202-t

+
+

FAIL

+
+ raster image of udom-smil-202-t +
+
+ + +
+

+ This tests the beginElement and beginElementAt + methods of the ElementTimeControl interface, with different + begin instance time lists. +

+

+ The test has been passed if all the three rectangles and the circle + become blue one second after clicking the circle. +

+

+ The test consists of a pink circle and three animated rectangles. + To perform the test, the user must click the pink circle. + The three rectangles all have animations that begin='0s' + and run indefinitely, and are also set to restart='none'. + Clicking the circle will attempt to begin the three animations as follows: +

+ +

+ All three animations should not begin with these method calls, since + the animations have already started and are set to restart='none'. + If an animation does restart, its endEvent will be captured + and the rectangle will become red. If the animation does not restart, + it will become blue one second after clicking the pink circle. +

+

+ In addition, the circle should become blue one second after clicking + it. This indicates that the implementation correctly dispatches an + endEvent when an element restarts. +

+ +
+ + + diff --git a/test/W3C_SVG_12_TinyTestSuite_beta/htmlObjectHarness/udom-smil-203-t.html b/test/W3C_SVG_12_TinyTestSuite_beta/htmlObjectHarness/udom-smil-203-t.html new file mode 100755 index 00000000..24a946e4 --- /dev/null +++ b/test/W3C_SVG_12_TinyTestSuite_beta/htmlObjectHarness/udom-smil-203-t.html @@ -0,0 +1,111 @@ + + + + + + + + +SVG 1.2 Tiny test:udom-smil-203-t + + + + + + + + + + +
+ + + + + + + + + + + + +
+

udom-smil-203-t

+
+

FAIL

+
+ raster image of udom-smil-203-t +
+
+ + +
+

+ This tests the endElement and endElementAt + methods of the ElementTimeControl interface. +

+

+ The test consists of four animated rectangles, one pink, three blue. + To perform the test, the user must click the pink rectangle. + The pink rectangle is set to animate with begin='mousedown'. + The three blue rectangles have two animations each: the first is + an animation element that moves the rectangle along its + corresponding line, with begin='0s' dur='5s'. After the + animation element is a set element with + end='indefinite'. Each set animation is ended with + calls to methods on the ElementTimeControl interface: +

+ +

+ The test has been passed if the first two blue rectangles follow the + animation of the pink rectangle, and the third blue rectangle follows + the animation of the pink rectangle after 2.5 seconds (i.e., half way + through the pink rectangle's animation). +

+ +
+ + + diff --git a/test/W3C_SVG_12_TinyTestSuite_beta/htmlObjectHarness/udom-svg-201-t.html b/test/W3C_SVG_12_TinyTestSuite_beta/htmlObjectHarness/udom-svg-201-t.html new file mode 100755 index 00000000..d5b67235 --- /dev/null +++ b/test/W3C_SVG_12_TinyTestSuite_beta/htmlObjectHarness/udom-svg-201-t.html @@ -0,0 +1,87 @@ + + + + + + + + +SVG 1.2 Tiny test:udom-svg-201-t + + + + + + + + + + +
+ + + + + + + + + + + + +
+

udom-svg-201-t

+
+

FAIL

+
+ raster image of udom-svg-201-t +
+
+ + +
+

+ This tests that the SVGException interface is present + and that all of its constant fields exist and are correct. +

+

+ The rectangle in the top left corner indicates whether all + of the constant fields are correct; green for pass, red for fail. +

+ +
+ + + diff --git a/test/W3C_SVG_12_TinyTestSuite_beta/htmlObjectHarness/udom-svg-202-t.html b/test/W3C_SVG_12_TinyTestSuite_beta/htmlObjectHarness/udom-svg-202-t.html new file mode 100755 index 00000000..42ed9638 --- /dev/null +++ b/test/W3C_SVG_12_TinyTestSuite_beta/htmlObjectHarness/udom-svg-202-t.html @@ -0,0 +1,87 @@ + + + + + + + + +SVG 1.2 Tiny test:udom-svg-202-t + + + + + + + + + + +
+ + + + + + + + + + + + +
+

udom-svg-202-t

+
+

FAIL

+
+ raster image of udom-svg-202-t +
+
+ + +
+

+ This tests that the global attribute of the + SVGException interface does refer to the global script context. +

+

+ The rectangle in the top left corner indicates whether the test + passed; green for pass, red for fail. +

+ +
+ + + diff --git a/test/W3C_SVG_12_TinyTestSuite_beta/htmlObjectHarness/udom-svg-204-t.html b/test/W3C_SVG_12_TinyTestSuite_beta/htmlObjectHarness/udom-svg-204-t.html new file mode 100755 index 00000000..11d6e98b --- /dev/null +++ b/test/W3C_SVG_12_TinyTestSuite_beta/htmlObjectHarness/udom-svg-204-t.html @@ -0,0 +1,95 @@ + + + + + + + + +SVG 1.2 Tiny test:udom-svg-204-t + + + + + + + + + + +
+ + + + + + + + + + + + +
+

udom-svg-204-t

+
+

FAIL

+
+ raster image of udom-svg-204-t +
+
+ + +
+

+ This tests that the correspondingElement and + correspondingUseElement attributes of the + SVGElementInstance interface have expected values. +

+

+ The test consists of a single rectangle that is a descendant + of a number of g elements and a couple of nested + use shadow trees. When the user clicks the rectangle, + a mousedown event is dispatched, which travels up + the nested shadow trees. If the correspondingElement and + correspondingUseElement attributes of the + SVGElementInstance object (which is the currentTarget + of the event) are correct, the rectangle becomes blue. Otherwise, + it becomes red. +

+ +
+ + + diff --git a/test/W3C_SVG_12_TinyTestSuite_beta/htmlObjectHarness/udom-svg-205-t.html b/test/W3C_SVG_12_TinyTestSuite_beta/htmlObjectHarness/udom-svg-205-t.html new file mode 100755 index 00000000..19a793fb --- /dev/null +++ b/test/W3C_SVG_12_TinyTestSuite_beta/htmlObjectHarness/udom-svg-205-t.html @@ -0,0 +1,87 @@ + + + + + + + + +SVG 1.2 Tiny test:udom-svg-205-t + + + + + + + + + + +
+ + + + + + + + + + + + +
+

udom-svg-205-t

+
+

FAIL

+
+ raster image of udom-svg-205-t +
+
+ + +
+

+ This tests that the NAV_* constants on the + SVGSVGElement exist. +

+

+ The rectangle in the top left corner indicates whether all + of the constant fields are correct; green for pass, red for fail. +

+ +
+ + + diff --git a/test/W3C_SVG_12_TinyTestSuite_beta/htmlObjectHarness/udom-svg-206-t.html b/test/W3C_SVG_12_TinyTestSuite_beta/htmlObjectHarness/udom-svg-206-t.html new file mode 100755 index 00000000..70090fc9 --- /dev/null +++ b/test/W3C_SVG_12_TinyTestSuite_beta/htmlObjectHarness/udom-svg-206-t.html @@ -0,0 +1,97 @@ + + + + + + + + +SVG 1.2 Tiny test:udom-svg-206-t + + + + + + + + + + +
+ + + + + + + + + + + + +
+

udom-svg-206-t

+
+

FAIL

+
+ raster image of udom-svg-206-t +
+
+ + +
+

+ This tests setting and getting the currentScale attribute of + the SVGSVGElement interface. +

+

+ There are three sub-tests, each represented by a rectangle (blue for + pass, red for fail). The test has been passed if all three rectangles are blue, and + the test slide is shown at 90% of its regular size (i.e., the + range (0, 0) -> (533.333, 400) user units is shown). +

+ +

+ The first sub-test checks that the initial value of + currentScale is 1. The second checks setting + currentScale to a valid value (in this case, 0.9), and + looks at the resulting screenCTM. The third exercises retrieving + the newly set value. +

+ +
+ + + diff --git a/test/W3C_SVG_12_TinyTestSuite_beta/htmlObjectHarness/udom-svg-208-t.html b/test/W3C_SVG_12_TinyTestSuite_beta/htmlObjectHarness/udom-svg-208-t.html new file mode 100755 index 00000000..cfdbb1c3 --- /dev/null +++ b/test/W3C_SVG_12_TinyTestSuite_beta/htmlObjectHarness/udom-svg-208-t.html @@ -0,0 +1,83 @@ + + + + + + + + +SVG 1.2 Tiny test:udom-svg-208-t + + + + + + + + + + +
+ + + + + + + + + + + + +
+

udom-svg-208-t

+
+

FAIL

+
+ raster image of udom-svg-208-t +
+
+ + +
+

+ Test on SMIL with scripting. The animated bar should pause for 3s at 1.5s and resume at 4.5s. + The smaller rects should change color at the indicated times. +

+ +
+ + + diff --git a/test/W3C_SVG_12_TinyTestSuite_beta/htmlObjectHarness/udom-svg-209-t.html b/test/W3C_SVG_12_TinyTestSuite_beta/htmlObjectHarness/udom-svg-209-t.html new file mode 100755 index 00000000..2a5649ba --- /dev/null +++ b/test/W3C_SVG_12_TinyTestSuite_beta/htmlObjectHarness/udom-svg-209-t.html @@ -0,0 +1,82 @@ + + + + + + + + +SVG 1.2 Tiny test:udom-svg-209-t + + + + + + + + + + +
+ + + + + + + + + + + + +
+

udom-svg-209-t

+
+

FAIL

+
+ raster image of udom-svg-209-t +
+
+ + +
+

+ Test on SMIL with scripting. Animation should match the indicated begin- repeat- and end-values +

+ +
+ + + diff --git a/test/W3C_SVG_12_TinyTestSuite_beta/htmlObjectHarness/udom-svg-210-t.html b/test/W3C_SVG_12_TinyTestSuite_beta/htmlObjectHarness/udom-svg-210-t.html new file mode 100755 index 00000000..9470e6c5 --- /dev/null +++ b/test/W3C_SVG_12_TinyTestSuite_beta/htmlObjectHarness/udom-svg-210-t.html @@ -0,0 +1,83 @@ + + + + + + + + +SVG 1.2 Tiny test:udom-svg-210-t + + + + + + + + + + +
+ + + + + + + + + + + + +
+

udom-svg-210-t

+
+

FAIL

+
+ raster image of udom-svg-210-t +
+
+ + +
+

+ Test on SMIL with scripting. Animation should match the indicated begin- and end-values, + and should pause for three seconds when the pause-sign turn red. +

+ +
+ + + diff --git a/test/W3C_SVG_12_TinyTestSuite_beta/htmlObjectHarness/udom-svg-211-t.html b/test/W3C_SVG_12_TinyTestSuite_beta/htmlObjectHarness/udom-svg-211-t.html new file mode 100755 index 00000000..0e69b925 --- /dev/null +++ b/test/W3C_SVG_12_TinyTestSuite_beta/htmlObjectHarness/udom-svg-211-t.html @@ -0,0 +1,83 @@ + + + + + + + + +SVG 1.2 Tiny test:udom-svg-211-t + + + + + + + + + + +
+ + + + + + + + + + + + +
+

udom-svg-211-t

+
+

FAIL

+
+ raster image of udom-svg-211-t +
+
+ + +
+

+ Test on SMIL with scripting. Animation should match the indicated begin- and end-values, + and should pause for three seconds when the pause-sign turns red. restart is set to "never" so should NOT restart. +

+ +
+ + + diff --git a/test/W3C_SVG_12_TinyTestSuite_beta/htmlObjectHarness/udom-svg-213-t.html b/test/W3C_SVG_12_TinyTestSuite_beta/htmlObjectHarness/udom-svg-213-t.html new file mode 100755 index 00000000..b1235926 --- /dev/null +++ b/test/W3C_SVG_12_TinyTestSuite_beta/htmlObjectHarness/udom-svg-213-t.html @@ -0,0 +1,98 @@ + + + + + + + + +SVG 1.2 Tiny test:udom-svg-213-t + + + + + + + + + + +
+ + + + + + + + + + + + +
+

udom-svg-213-t

+
+

FAIL

+
+ raster image of udom-svg-213-t +
+
+ + +
+

+ This tests that the getCurrentTime method of the + SVGSVGElement interface returns sensible values. +

+

+ The test shows three rectangles. The test is passed if the first rectangle is blue, and after + clicking the second rectangle it turns blue, and after clicking + the third rectangle it also turns blue. +

+

+ The first one represents + whether calling getCurrentTime before the load + event is dispatched returns 0. Clicking the second rectangle + (which is red to begin with) then tests that the current time is + greater than 0. Finally, clicking the third rectangle (which + also is red to begin with) tests that the current time is greater + than the time at which the second rectangle was clicked. + +

+ +
+ + + diff --git a/test/W3C_SVG_12_TinyTestSuite_beta/htmlObjectHarness/udom-svg-216-t.html b/test/W3C_SVG_12_TinyTestSuite_beta/htmlObjectHarness/udom-svg-216-t.html new file mode 100755 index 00000000..dea605b9 --- /dev/null +++ b/test/W3C_SVG_12_TinyTestSuite_beta/htmlObjectHarness/udom-svg-216-t.html @@ -0,0 +1,90 @@ + + + + + + + + +SVG 1.2 Tiny test:udom-svg-216-t + + + + + + + + + + +
+ + + + + + + + + + + + +
+

udom-svg-216-t

+
+

FAIL

+
+ raster image of udom-svg-216-t +
+
+ + +
+

+ This tests the basic functionality of + SVGSVGElement.createSVGPath(). It + verifies that the returned path object has no path segments + initially, that a path segment can be added to the path object, + and that the object returned is actually + instanceof SVGPath. +

+

+ The test is passed if the rectangle is green. +

+ +
+ + + diff --git a/test/W3C_SVG_12_TinyTestSuite_beta/htmlObjectHarness/udom-svg-218-t.html b/test/W3C_SVG_12_TinyTestSuite_beta/htmlObjectHarness/udom-svg-218-t.html new file mode 100755 index 00000000..5b2590ff --- /dev/null +++ b/test/W3C_SVG_12_TinyTestSuite_beta/htmlObjectHarness/udom-svg-218-t.html @@ -0,0 +1,98 @@ + + + + + + + + +SVG 1.2 Tiny test:udom-svg-218-t + + + + + + + + + + +
+ + + + + + + + + + + + +
+

udom-svg-218-t

+
+

FAIL

+
+ raster image of udom-svg-218-t +
+
+ + +
+

+ This test some more complex invocations of SVGGlobal.getURL(). +

+

+ The test contains 3 subtests. The test is passed if all 3 rectangles + relating to a respective subtest turn green upon test completion. +

+

+ The first subtest tests fetching a text/plain resource via a 3xx + redirection status code using SVGGlobal.getURL(). +

+

+ The second subtest tests a text/plain resource returned with status + code 403 using SVGGlobal.getURL(). +

+

+ The third subtest tests a text/plain resource returned with status + code 500 using SVGGlobal.getURL(). +

+ +
+ + + diff --git a/test/W3C_SVG_12_TinyTestSuite_beta/htmlObjectHarness/udom-svg-220-t.html b/test/W3C_SVG_12_TinyTestSuite_beta/htmlObjectHarness/udom-svg-220-t.html new file mode 100755 index 00000000..345fb735 --- /dev/null +++ b/test/W3C_SVG_12_TinyTestSuite_beta/htmlObjectHarness/udom-svg-220-t.html @@ -0,0 +1,90 @@ + + + + + + + + +SVG 1.2 Tiny test:udom-svg-220-t + + + + + + + + + + +
+ + + + + + + + + + + + +
+

udom-svg-220-t

+
+

FAIL

+
+ raster image of udom-svg-220-t +
+
+ + +
+

+ This tests trait access methods on the TraitAccess interface + for the 'accumulate' trait. Each trait getter and setter method is called on + each applicable SVG Tiny 1.2 element. +

+

+ The test is passed if the rendering matches the reference rendering. + The rectangle must be blue, and there must be a blue circle to the + right of it whose diameter is the same as the height of the rectangle. + There must be no text displayed below the rectangle. +

+ +
+ + + diff --git a/test/W3C_SVG_12_TinyTestSuite_beta/htmlObjectHarness/udom-svg-224-t.html b/test/W3C_SVG_12_TinyTestSuite_beta/htmlObjectHarness/udom-svg-224-t.html new file mode 100755 index 00000000..3cb16810 --- /dev/null +++ b/test/W3C_SVG_12_TinyTestSuite_beta/htmlObjectHarness/udom-svg-224-t.html @@ -0,0 +1,100 @@ + + + + + + + + +SVG 1.2 Tiny test:udom-svg-224-t + + + + + + + + + + +
+ + + + + + + + + + + + +
+

udom-svg-224-t

+
+

FAIL

+
+ raster image of udom-svg-224-t +
+
+ + +
+

+ This tests trait access methods on the TraitAccess interface + for the 'begin' trait. Each trait getter and setter method is called on + each applicable SVG Tiny 1.2 element. +

+

+ The test is passed if, five seconds after the document begins: +

+ +

+ Also, there must be no text displayed inside the rounded green rectangle. +

+ +
+ + + diff --git a/test/W3C_SVG_12_TinyTestSuite_beta/htmlObjectHarness/udom-svg-225-t.html b/test/W3C_SVG_12_TinyTestSuite_beta/htmlObjectHarness/udom-svg-225-t.html new file mode 100755 index 00000000..272656d3 --- /dev/null +++ b/test/W3C_SVG_12_TinyTestSuite_beta/htmlObjectHarness/udom-svg-225-t.html @@ -0,0 +1,89 @@ + + + + + + + + +SVG 1.2 Tiny test:udom-svg-225-t + + + + + + + + + + +
+ + + + + + + + + + + + +
+

udom-svg-225-t

+
+

FAIL

+
+ raster image of udom-svg-225-t +
+
+ + +
+

+ This test verifies that the CTM fetched by getScreenCTM is a snapshot value of the current animated state. + + The CTM values are inspected on 'beginEvent', 'endEvent' and 'repeatEvent' times. The expected values are + calculated from the SMIL Animation equations and the current document time. + + The test has passed if the testcase reports "Results match expected values." 8 times, and each such string + is prefixed with a green rectangle. When this happens the text in the rect with blue stroke changes from + 'failed' to 'passed'. +

+ +
+ + + diff --git a/test/W3C_SVG_12_TinyTestSuite_beta/htmlObjectHarness/udom-svg-226-t.html b/test/W3C_SVG_12_TinyTestSuite_beta/htmlObjectHarness/udom-svg-226-t.html new file mode 100755 index 00000000..b35eff7d --- /dev/null +++ b/test/W3C_SVG_12_TinyTestSuite_beta/htmlObjectHarness/udom-svg-226-t.html @@ -0,0 +1,86 @@ + + + + + + + + +SVG 1.2 Tiny test:udom-svg-226-t + + + + + + + + + + +
+ + + + + + + + + + + + +
+

udom-svg-226-t

+
+

FAIL

+
+ raster image of udom-svg-226-t +
+
+ + +
+

+ Four animations begin at time 0 and end at times 1, 2, 5 and 9 seconds. Event listeners are registered + for the "endEvent" event. + As each animation ends, getCurrentTime() is called and verified with the expected time. The expected time is compared with + the minimum time to take into account implementation-specific document time resolution. + If all times have the expected values, the text changes from 'testing' to 'passed' +

+ +
+ + + diff --git a/test/W3C_SVG_12_TinyTestSuite_beta/htmlObjectHarness/udom-svg-227-t.html b/test/W3C_SVG_12_TinyTestSuite_beta/htmlObjectHarness/udom-svg-227-t.html new file mode 100755 index 00000000..4c9355d7 --- /dev/null +++ b/test/W3C_SVG_12_TinyTestSuite_beta/htmlObjectHarness/udom-svg-227-t.html @@ -0,0 +1,93 @@ + + + + + + + + +SVG 1.2 Tiny test:udom-svg-227-t + + + + + + + + + + +
+ + + + + + + + + + + + +
+

udom-svg-227-t

+
+

FAIL

+
+ raster image of udom-svg-227-t +
+
+ + +
+

+ Tests setCurrentTime. The test is passed if the the moving bar skips + from 2 to 4 , and from 5 to 8; and after the animation completes, the + text "passed" appears at the bottom right. +

+

+ Four animations begin at time 0 and end at times 1, 2, 5 and 9 seconds. + Event listeners are registered for the "endEvent" event. + As each animation ends, getCurrentTime() is called to verify the expected current time, which + is them followed by a call to setCurrentTime. + If all times have the expected values, the text changes from 'testing' to 'passed' + The expected time is compared with + the minimum time to take into account implementation-specific document time resolution. +

+ +
+ + + diff --git a/test/W3C_SVG_12_TinyTestSuite_beta/htmlObjectHarness/udom-svg-228-t.html b/test/W3C_SVG_12_TinyTestSuite_beta/htmlObjectHarness/udom-svg-228-t.html new file mode 100755 index 00000000..e9de389c --- /dev/null +++ b/test/W3C_SVG_12_TinyTestSuite_beta/htmlObjectHarness/udom-svg-228-t.html @@ -0,0 +1,87 @@ + + + + + + + + +SVG 1.2 Tiny test:udom-svg-228-t + + + + + + + + + + +
+ + + + + + + + + + + + +
+

udom-svg-228-t

+
+

FAIL

+
+ raster image of udom-svg-228-t +
+
+ + +
+

+ This tests setFocus and getCurrentFocusedObject, setting the focus and then checking that the correct element has focus. Successes are shown in green, + failures in red. If all subtests pass, the text in the blue box changes from "failed" to "passed". +

+

+ A numeric keypad is shown. Focus starts on the "5" and is then moved programatically + to each of the other numbers, finally returning to "5". Since this happens on the load event, there is no indication of the focus moving. +

+ +
+ + + diff --git a/test/W3C_SVG_12_TinyTestSuite_beta/htmlObjectHarness/udom-svg-231-t.html b/test/W3C_SVG_12_TinyTestSuite_beta/htmlObjectHarness/udom-svg-231-t.html new file mode 100755 index 00000000..d6db83a7 --- /dev/null +++ b/test/W3C_SVG_12_TinyTestSuite_beta/htmlObjectHarness/udom-svg-231-t.html @@ -0,0 +1,82 @@ + + + + + + + + +SVG 1.2 Tiny test:udom-svg-231-t + + + + + + + + + + +
+ + + + + + + + + + + + +
+

udom-svg-231-t

+
+

FAIL

+
+ raster image of udom-svg-231-t +
+
+ + +
+

+ The TraitAccess tests uses a set of common ECMAScript code to test various trait combinations with expected values. If a result is not as expected, an error is displayed in red text, indicating the returned result and what was expected. When all subtests have returned success, the result is set to 'passed'. The pass condition for the test is that all subtests are green, and the word 'passed' is at the bottom right. +

+ +
+ + + diff --git a/test/W3C_SVG_12_TinyTestSuite_beta/htmlObjectHarness/udom-svg-232-t.html b/test/W3C_SVG_12_TinyTestSuite_beta/htmlObjectHarness/udom-svg-232-t.html new file mode 100755 index 00000000..ca408aff --- /dev/null +++ b/test/W3C_SVG_12_TinyTestSuite_beta/htmlObjectHarness/udom-svg-232-t.html @@ -0,0 +1,82 @@ + + + + + + + + +SVG 1.2 Tiny test:udom-svg-232-t + + + + + + + + + + +
+ + + + + + + + + + + + +
+

udom-svg-232-t

+
+

FAIL

+
+ raster image of udom-svg-232-t +
+
+ + +
+

+ The TraitAccess tests uses a set of common ECMAScript code to test various trait combinations with expected values. If a result is not as expected, an error is displayed in red text, indicating the returned result and what was expected. When all subtests have returned success, the result is set to 'passed'. The pass condition for the test is that all subtests are green, and the word 'passed' is at the bottom right. +

+ +
+ + + diff --git a/test/W3C_SVG_12_TinyTestSuite_beta/htmlObjectHarness/udom-svg-233-t.html b/test/W3C_SVG_12_TinyTestSuite_beta/htmlObjectHarness/udom-svg-233-t.html new file mode 100755 index 00000000..f708d23a --- /dev/null +++ b/test/W3C_SVG_12_TinyTestSuite_beta/htmlObjectHarness/udom-svg-233-t.html @@ -0,0 +1,82 @@ + + + + + + + + +SVG 1.2 Tiny test:udom-svg-233-t + + + + + + + + + + +
+ + + + + + + + + + + + +
+

udom-svg-233-t

+
+

FAIL

+
+ raster image of udom-svg-233-t +
+
+ + +
+

+ The TraitAccess tests uses a set of common ECMAScript code to test various trait combinations with expected values. If a result is not as expected, an error is displayed in red text, indicating the returned result and what was expected. When all subtests have returned success, the result is set to 'passed'. The pass condition for the test is that all subtests are green, and the word 'passed' is at the bottom right. +

+ +
+ + + diff --git a/test/W3C_SVG_12_TinyTestSuite_beta/htmlObjectHarness/udom-svg-236-t.html b/test/W3C_SVG_12_TinyTestSuite_beta/htmlObjectHarness/udom-svg-236-t.html new file mode 100755 index 00000000..de776a70 --- /dev/null +++ b/test/W3C_SVG_12_TinyTestSuite_beta/htmlObjectHarness/udom-svg-236-t.html @@ -0,0 +1,82 @@ + + + + + + + + +SVG 1.2 Tiny test:udom-svg-236-t + + + + + + + + + + +
+ + + + + + + + + + + + +
+

udom-svg-236-t

+
+

FAIL

+
+ raster image of udom-svg-236-t +
+
+ + +
+

+ The TraitAccess tests uses a set of common ECMAScript code to test various trait combinations with expected values. If a result is not as expected, an error is displayed in red text, indicating the returned result and what was expected. When all subtests have returned success, the result is set to 'passed'. The pass condition for the test is that all subtests are green, and the word 'passed' is at the bottom right. +

+ +
+ + + diff --git a/test/W3C_SVG_12_TinyTestSuite_beta/htmlObjectHarness/udom-svg-237-t.html b/test/W3C_SVG_12_TinyTestSuite_beta/htmlObjectHarness/udom-svg-237-t.html new file mode 100755 index 00000000..ab2d6936 --- /dev/null +++ b/test/W3C_SVG_12_TinyTestSuite_beta/htmlObjectHarness/udom-svg-237-t.html @@ -0,0 +1,87 @@ + + + + + + + + +SVG 1.2 Tiny test:udom-svg-237-t + + + + + + + + + + +
+ + + + + + + + + + + + +
+

udom-svg-237-t

+
+

FAIL

+
+ raster image of udom-svg-237-t +
+
+ + +
+

+ The TraitAccess tests uses a set of common ECMAScript code to test + various trait combinations with expected values. If a result is not as + expected, an error is displayed in red text, indicating the returned + result and what was expected. When all subtests have returned success, + the result is set to 'passed'. The pass condition for the test is that + all subtests are green, and the word 'passed' is at the bottom right. +

+ +
+ + + diff --git a/test/W3C_SVG_12_TinyTestSuite_beta/htmlObjectHarness/udom-svgcolor-201-t.html b/test/W3C_SVG_12_TinyTestSuite_beta/htmlObjectHarness/udom-svgcolor-201-t.html new file mode 100755 index 00000000..d4c798a3 --- /dev/null +++ b/test/W3C_SVG_12_TinyTestSuite_beta/htmlObjectHarness/udom-svgcolor-201-t.html @@ -0,0 +1,85 @@ + + + + + + + + +SVG 1.2 Tiny test:udom-svgcolor-201-t + + + + + + + + + + +
+ + + + + + + + + + + + +
+

udom-svgcolor-201-t

+
+

FAIL

+
+ raster image of udom-svgcolor-201-t +
+
+ + +
+

+ This test creates an SVGColor object and verifies that the intial data is all zero. It then modifies the red, green, and blue attributes. + To pass, the resulting attributes should be as expected should be correct, and when this happens the text + changes from 'failed' to 'passed' +

+

Note that, since the test does not insert this object into the document, it is not displayed. The test simply verifies that the object has been created correctly.

+ +
+ + + diff --git a/test/W3C_SVG_12_TinyTestSuite_beta/htmlObjectHarness/udom-svglocatable-201-t.html b/test/W3C_SVG_12_TinyTestSuite_beta/htmlObjectHarness/udom-svglocatable-201-t.html new file mode 100755 index 00000000..4a62b6e1 --- /dev/null +++ b/test/W3C_SVG_12_TinyTestSuite_beta/htmlObjectHarness/udom-svglocatable-201-t.html @@ -0,0 +1,84 @@ + + + + + + + + +SVG 1.2 Tiny test:udom-svglocatable-201-t + + + + + + + + + + +
+ + + + + + + + + + + + +
+

udom-svglocatable-201-t

+
+

FAIL

+
+ raster image of udom-svglocatable-201-t +
+
+ + +
+

+ This test draws a few basic shapes and checks for correct values from getBBox(). + To pass, each returned bounding box must be correct (indicated by printing the values in green), and when this happens the text + in the rect with blue stroke changes from 'failed' to 'passed'. +

+ +
+ + + diff --git a/test/W3C_SVG_12_TinyTestSuite_beta/htmlObjectHarness/udom-svglocatable-202-t.html b/test/W3C_SVG_12_TinyTestSuite_beta/htmlObjectHarness/udom-svglocatable-202-t.html new file mode 100755 index 00000000..bf2e714a --- /dev/null +++ b/test/W3C_SVG_12_TinyTestSuite_beta/htmlObjectHarness/udom-svglocatable-202-t.html @@ -0,0 +1,88 @@ + + + + + + + + +SVG 1.2 Tiny test:udom-svglocatable-202-t + + + + + + + + + + +
+ + + + + + + + + + + + +
+

udom-svglocatable-202-t

+
+

FAIL

+
+ raster image of udom-svglocatable-202-t +
+
+ + +
+

+ Note, this test does not have 100% for the svg width and height on purpose as to have exact + expected results for the screen bounding boxes +

+

+ This test draws a few basic shapes and checks for correct values from getScreenBBox(). + To pass, each returned bounding box must be correct (indicated by printing the values in green), and when this happens the text + changes from 'failed' to 'passed' +

+ +
+ + + diff --git a/test/W3C_SVG_12_TinyTestSuite_beta/htmlObjectHarness/udom-svglocatable-203-t.html b/test/W3C_SVG_12_TinyTestSuite_beta/htmlObjectHarness/udom-svglocatable-203-t.html new file mode 100755 index 00000000..abfd29c4 --- /dev/null +++ b/test/W3C_SVG_12_TinyTestSuite_beta/htmlObjectHarness/udom-svglocatable-203-t.html @@ -0,0 +1,89 @@ + + + + + + + + +SVG 1.2 Tiny test:udom-svglocatable-203-t + + + + + + + + + + +
+ + + + + + + + + + + + +
+

udom-svglocatable-203-t

+
+

FAIL

+
+ raster image of udom-svglocatable-203-t +
+
+ + +
+ +

+ This test draws a few basic shapes and checks for correct values from getScreenCTM(). + To pass, each returned CTM must be correct (indicated by printing the values in green), + and the string 'passed' appears in the lower right. +

+

+ Note, this test does not have 100% for the svg width and height on purpose as to have exact + expected results for the screen CTM. +

+ +
+ + + diff --git a/test/W3C_SVG_12_TinyTestSuite_beta/htmlObjectHarness/udom-svgmatrix-201-t.html b/test/W3C_SVG_12_TinyTestSuite_beta/htmlObjectHarness/udom-svgmatrix-201-t.html new file mode 100755 index 00000000..b4553bea --- /dev/null +++ b/test/W3C_SVG_12_TinyTestSuite_beta/htmlObjectHarness/udom-svgmatrix-201-t.html @@ -0,0 +1,85 @@ + + + + + + + + +SVG 1.2 Tiny test:udom-svgmatrix-201-t + + + + + + + + + + +
+ + + + + + + + + + + + +
+

udom-svgmatrix-201-t

+
+

FAIL

+
+ raster image of udom-svgmatrix-201-t +
+
+ + +
+

+ This test creates a SVGMatrix object and calls getComponent to verify the result + To pass, each returned component must be correct. To indicate a pass + the result of the test changes to green and the text at the bottom right + hand corner changes from "failed" to "passed". +

+ +
+ + + diff --git a/test/W3C_SVG_12_TinyTestSuite_beta/htmlObjectHarness/udom-svgmatrix-202-t.html b/test/W3C_SVG_12_TinyTestSuite_beta/htmlObjectHarness/udom-svgmatrix-202-t.html new file mode 100755 index 00000000..7b0a1b96 --- /dev/null +++ b/test/W3C_SVG_12_TinyTestSuite_beta/htmlObjectHarness/udom-svgmatrix-202-t.html @@ -0,0 +1,86 @@ + + + + + + + + +SVG 1.2 Tiny test:udom-svgmatrix-202-t + + + + + + + + + + +
+ + + + + + + + + + + + +
+

udom-svgmatrix-202-t

+
+

FAIL

+
+ raster image of udom-svgmatrix-202-t +
+
+ + +
+

+ This test creates two SVGMatrix objects and calls inverse on each. + The first matrix is invertable, but the second one is not, and should throw an exception when inverse() is called. + To pass, the inverted matrix must be correct, and the exception for the second matrix must be thrown. + To indicate a pass the result of the test changes to green and the text at the bottom right + hand corner changes from "failed" to "passed". +

+ +
+ + + diff --git a/test/W3C_SVG_12_TinyTestSuite_beta/htmlObjectHarness/udom-svgmatrix-203-t.html b/test/W3C_SVG_12_TinyTestSuite_beta/htmlObjectHarness/udom-svgmatrix-203-t.html new file mode 100755 index 00000000..eb588ab0 --- /dev/null +++ b/test/W3C_SVG_12_TinyTestSuite_beta/htmlObjectHarness/udom-svgmatrix-203-t.html @@ -0,0 +1,84 @@ + + + + + + + + +SVG 1.2 Tiny test:udom-svgmatrix-203-t + + + + + + + + + + +
+ + + + + + + + + + + + +
+

udom-svgmatrix-203-t

+
+

FAIL

+
+ raster image of udom-svgmatrix-203-t +
+
+ + +
+

+ This test creates a few SVGMatrix objects and calls mMultiply. + To pass, the result matrices should be correct, and when this happens the text + changes from 'failed' to 'passed'. +

+ +
+ + + diff --git a/test/W3C_SVG_12_TinyTestSuite_beta/htmlObjectHarness/udom-svgmatrix-204-t.html b/test/W3C_SVG_12_TinyTestSuite_beta/htmlObjectHarness/udom-svgmatrix-204-t.html new file mode 100755 index 00000000..c31b221e --- /dev/null +++ b/test/W3C_SVG_12_TinyTestSuite_beta/htmlObjectHarness/udom-svgmatrix-204-t.html @@ -0,0 +1,84 @@ + + + + + + + + +SVG 1.2 Tiny test:udom-svgmatrix-204-t + + + + + + + + + + +
+ + + + + + + + + + + + +
+

udom-svgmatrix-204-t

+
+

FAIL

+
+ raster image of udom-svgmatrix-204-t +
+
+ + +
+

+ This test creates some SVGMatrix objects and then calls mRotate. + To pass, the result matrices should be correct, and when this happens the text + changes from 'failed' to 'passed'. +

+ +
+ + + diff --git a/test/W3C_SVG_12_TinyTestSuite_beta/htmlObjectHarness/udom-svgmatrix-205-t.html b/test/W3C_SVG_12_TinyTestSuite_beta/htmlObjectHarness/udom-svgmatrix-205-t.html new file mode 100755 index 00000000..306f3986 --- /dev/null +++ b/test/W3C_SVG_12_TinyTestSuite_beta/htmlObjectHarness/udom-svgmatrix-205-t.html @@ -0,0 +1,84 @@ + + + + + + + + +SVG 1.2 Tiny test:udom-svgmatrix-205-t + + + + + + + + + + +
+ + + + + + + + + + + + +
+

udom-svgmatrix-205-t

+
+

FAIL

+
+ raster image of udom-svgmatrix-205-t +
+
+ + +
+

+ This test creates an SVGMatrix object and calls mScale. + To pass, the result matrix should be correct, and when this happens the text + changes from 'failed' to 'passed'. +

+ +
+ + + diff --git a/test/W3C_SVG_12_TinyTestSuite_beta/htmlObjectHarness/udom-svgmatrix-206-t.html b/test/W3C_SVG_12_TinyTestSuite_beta/htmlObjectHarness/udom-svgmatrix-206-t.html new file mode 100755 index 00000000..2107c920 --- /dev/null +++ b/test/W3C_SVG_12_TinyTestSuite_beta/htmlObjectHarness/udom-svgmatrix-206-t.html @@ -0,0 +1,84 @@ + + + + + + + + +SVG 1.2 Tiny test:udom-svgmatrix-206-t + + + + + + + + + + +
+ + + + + + + + + + + + +
+

udom-svgmatrix-206-t

+
+

FAIL

+
+ raster image of udom-svgmatrix-206-t +
+
+ + +
+

+ This test creates an SVGMatrix object and calls mTranslate. + To pass, the result matrix should be correct, and when this happens the text + changes from 'failed' to 'passed'. +

+ +
+ + + diff --git a/test/W3C_SVG_12_TinyTestSuite_beta/htmlObjectHarness/udom-svgpath-201-t.html b/test/W3C_SVG_12_TinyTestSuite_beta/htmlObjectHarness/udom-svgpath-201-t.html new file mode 100755 index 00000000..31aafd41 --- /dev/null +++ b/test/W3C_SVG_12_TinyTestSuite_beta/htmlObjectHarness/udom-svgpath-201-t.html @@ -0,0 +1,85 @@ + + + + + + + + +SVG 1.2 Tiny test:udom-svgpath-201-t + + + + + + + + + + +
+ + + + + + + + + + + + +
+

udom-svgpath-201-t

+
+

FAIL

+
+ raster image of udom-svgpath-201-t +
+
+ + +
+

+ This test creates path data using the SVGPath interface, with emphasis on support for close, moveTo and quadTo + To pass, the path data must match expected results for the text at the bottom of the test to read 'pass'. + The path data is verified by calling getSegment and getSegmentParam. + In addition, no red should be seen through the path element. +

+ +
+ + + diff --git a/test/W3C_SVG_12_TinyTestSuite_beta/htmlObjectHarness/udom-svgpath-202-t.html b/test/W3C_SVG_12_TinyTestSuite_beta/htmlObjectHarness/udom-svgpath-202-t.html new file mode 100755 index 00000000..d4f46d3e --- /dev/null +++ b/test/W3C_SVG_12_TinyTestSuite_beta/htmlObjectHarness/udom-svgpath-202-t.html @@ -0,0 +1,85 @@ + + + + + + + + +SVG 1.2 Tiny test:udom-svgpath-202-t + + + + + + + + + + +
+ + + + + + + + + + + + +
+

udom-svgpath-202-t

+
+

FAIL

+
+ raster image of udom-svgpath-202-t +
+
+ + +
+

+ This test creates path data using the SVGPath interface, with emphasis on support for lineTo and curveTo + To pass, the path data must match expected results for the text at the bottom of the test to read 'pass'. + The path data is verified by calling getSegment and getSegmentParam. + In addition, no red should be seen through the path element. +

+ +
+ + + diff --git a/test/W3C_SVG_12_TinyTestSuite_beta/htmlObjectHarness/udom-svgpoint-201-t.html b/test/W3C_SVG_12_TinyTestSuite_beta/htmlObjectHarness/udom-svgpoint-201-t.html new file mode 100755 index 00000000..de06dd0e --- /dev/null +++ b/test/W3C_SVG_12_TinyTestSuite_beta/htmlObjectHarness/udom-svgpoint-201-t.html @@ -0,0 +1,83 @@ + + + + + + + + +SVG 1.2 Tiny test:udom-svgpoint-201-t + + + + + + + + + + +
+ + + + + + + + + + + + +
+

udom-svgpoint-201-t

+
+

FAIL

+
+ raster image of udom-svgpoint-201-t +
+
+ + +
+

+ This test creates a SVGPoint and sets some basic values for x and y. To pass, the text at the + bottom of the screen should read 'passed'. +

+ +
+ + + diff --git a/test/W3C_SVG_12_TinyTestSuite_beta/htmlObjectHarness/udom-svgrect-201-t.html b/test/W3C_SVG_12_TinyTestSuite_beta/htmlObjectHarness/udom-svgrect-201-t.html new file mode 100755 index 00000000..368fc03b --- /dev/null +++ b/test/W3C_SVG_12_TinyTestSuite_beta/htmlObjectHarness/udom-svgrect-201-t.html @@ -0,0 +1,84 @@ + + + + + + + + +SVG 1.2 Tiny test:udom-svgrect-201-t + + + + + + + + + + +
+ + + + + + + + + + + + +
+

udom-svgrect-201-t

+
+

FAIL

+
+ raster image of udom-svgrect-201-t +
+
+ + +
+

+ This test creates SVGRect object and verifies that the initial data is all zero. It then modifies the x, y, width and height. + To pass, the result matrix should be correct, and when this happens the text + changes from 'failed' to 'passed' +

+ +
+ + + diff --git a/test/W3C_SVG_12_TinyTestSuite_beta/htmlObjectHarness/udom-textcontent-201-t.html b/test/W3C_SVG_12_TinyTestSuite_beta/htmlObjectHarness/udom-textcontent-201-t.html new file mode 100755 index 00000000..26a1658f --- /dev/null +++ b/test/W3C_SVG_12_TinyTestSuite_beta/htmlObjectHarness/udom-textcontent-201-t.html @@ -0,0 +1,103 @@ + + + + + + + + +SVG 1.2 Tiny test:udom-textcontent-201-t + + + + + + + + + + +
+ + + + + + + + + + + + +
+

udom-textcontent-201-t

+
+

FAIL

+
+ raster image of udom-textcontent-201-t +
+
+ + +
+

+ Tests retrieving nested text using textContent. +

+

+ For this test to pass the text "Not changed yet!" in red must be + replaced by the text "Rect Text and Rect Animate Text!" in green. +

+

+ textContent is used in the following ways: +

+
+ +
+ +
+ + + diff --git a/test/W3C_SVG_12_TinyTestSuite_beta/htmlObjectHarness/udom-textcontent-202-t.html b/test/W3C_SVG_12_TinyTestSuite_beta/htmlObjectHarness/udom-textcontent-202-t.html new file mode 100755 index 00000000..daeca443 --- /dev/null +++ b/test/W3C_SVG_12_TinyTestSuite_beta/htmlObjectHarness/udom-textcontent-202-t.html @@ -0,0 +1,84 @@ + + + + + + + + +SVG 1.2 Tiny test:udom-textcontent-202-t + + + + + + + + + + +
+ + + + + + + + + + + + +
+

udom-textcontent-202-t

+
+

FAIL

+
+ raster image of udom-textcontent-202-t +
+
+ + +
+

+ Tests access to textContent. + The only text that should be visible is the string "Rect Text and Rect Animate Text!" in green. + The set element that makes the element "setTextContent" hidden should be removed when setting the new textContent and therefore the text must be visible. +

+ +
+ + + diff --git a/test/W3C_SVG_12_TinyTestSuite_beta/htmlObjectHarness/udom-traitaccess-201-t.html b/test/W3C_SVG_12_TinyTestSuite_beta/htmlObjectHarness/udom-traitaccess-201-t.html new file mode 100755 index 00000000..3fc967c1 --- /dev/null +++ b/test/W3C_SVG_12_TinyTestSuite_beta/htmlObjectHarness/udom-traitaccess-201-t.html @@ -0,0 +1,84 @@ + + + + + + + + +SVG 1.2 Tiny test:udom-traitaccess-201-t + + + + + + + + + + +
+ + + + + + + + + + + + +
+

udom-traitaccess-201-t

+
+

FAIL

+
+ raster image of udom-traitaccess-201-t +
+
+ + +
+

+ Tests trait access in uDOM. + The svg should look the same on both sides and the text + should read "Passed". Both the rects should link back to this test. +

+ +
+ + + diff --git a/test/W3C_SVG_12_TinyTestSuite_beta/htmlObjectHarness/udom-traitaccess-202-t.html b/test/W3C_SVG_12_TinyTestSuite_beta/htmlObjectHarness/udom-traitaccess-202-t.html new file mode 100755 index 00000000..f56f1cdd --- /dev/null +++ b/test/W3C_SVG_12_TinyTestSuite_beta/htmlObjectHarness/udom-traitaccess-202-t.html @@ -0,0 +1,93 @@ + + + + + + + + +SVG 1.2 Tiny test:udom-traitaccess-202-t + + + + + + + + + + +
+ + + + + + + + + + + + +
+

udom-traitaccess-202-t

+
+

FAIL

+
+ raster image of udom-traitaccess-202-t +
+
+ + +
+

+ Test on solidColor trait access. + The test result is displayed within the test. +

+

+ The test is passed if the results for the sub tests are as follows +

+ + +
+ + + diff --git a/test/W3C_SVG_12_TinyTestSuite_beta/htmlObjectHarness/udom-traitaccess-203-t.html b/test/W3C_SVG_12_TinyTestSuite_beta/htmlObjectHarness/udom-traitaccess-203-t.html new file mode 100755 index 00000000..9b74b422 --- /dev/null +++ b/test/W3C_SVG_12_TinyTestSuite_beta/htmlObjectHarness/udom-traitaccess-203-t.html @@ -0,0 +1,86 @@ + + + + + + + + +SVG 1.2 Tiny test:udom-traitaccess-203-t + + + + + + + + + + +
+ + + + + + + + + + + + +
+

udom-traitaccess-203-t

+
+

FAIL

+
+ raster image of udom-traitaccess-203-t +
+
+ + +
+

+ Test on solidColor solid-opacity trait access. + Test result are displayed within the test. + The first sub-test should display a number approximately equal to 0.2. + The second sub-test should display a number approximately equal to 0.5. + The third sub-test should display a number equal to 1. +

+ +
+ + + diff --git a/test/W3C_SVG_12_TinyTestSuite_beta/htmlObjectHarness/udom-traitaccess-204-t.html b/test/W3C_SVG_12_TinyTestSuite_beta/htmlObjectHarness/udom-traitaccess-204-t.html new file mode 100755 index 00000000..2958d1f2 --- /dev/null +++ b/test/W3C_SVG_12_TinyTestSuite_beta/htmlObjectHarness/udom-traitaccess-204-t.html @@ -0,0 +1,83 @@ + + + + + + + + +SVG 1.2 Tiny test:udom-traitaccess-204-t + + + + + + + + + + +
+ + + + + + + + + + + + +
+

udom-traitaccess-204-t

+
+

FAIL

+
+ raster image of udom-traitaccess-204-t +
+
+ + +
+

+ Tests set/get access on 'fill-rule' trait. + The start should look the same on both sides and the text should read "OK". +

+ +
+ + + diff --git a/test/W3C_SVG_12_TinyTestSuite_beta/htmlObjectHarness/udom-traitaccess-205-t.html b/test/W3C_SVG_12_TinyTestSuite_beta/htmlObjectHarness/udom-traitaccess-205-t.html new file mode 100755 index 00000000..25335e08 --- /dev/null +++ b/test/W3C_SVG_12_TinyTestSuite_beta/htmlObjectHarness/udom-traitaccess-205-t.html @@ -0,0 +1,82 @@ + + + + + + + + +SVG 1.2 Tiny test:udom-traitaccess-205-t + + + + + + + + + + +
+ + + + + + + + + + + + +
+

udom-traitaccess-205-t

+
+

FAIL

+
+ raster image of udom-traitaccess-205-t +
+
+ + +
+

+ Test on Ecma-script. Sets viewport-fill to green with setRGBColorTrait (should show a green viewport). +

+ +
+ + + diff --git a/test/W3C_SVG_12_TinyTestSuite_beta/htmlObjectHarness/udom-traitaccess-206-t.html b/test/W3C_SVG_12_TinyTestSuite_beta/htmlObjectHarness/udom-traitaccess-206-t.html new file mode 100755 index 00000000..4d9885b2 --- /dev/null +++ b/test/W3C_SVG_12_TinyTestSuite_beta/htmlObjectHarness/udom-traitaccess-206-t.html @@ -0,0 +1,82 @@ + + + + + + + + +SVG 1.2 Tiny test:udom-traitaccess-206-t + + + + + + + + + + +
+ + + + + + + + + + + + +
+

udom-traitaccess-206-t

+
+

FAIL

+
+ raster image of udom-traitaccess-206-t +
+
+ + +
+

+ Test on Ecma-script. Sets viewport-fill to green with setTrait (should show a green viewport). +

+ +
+ + + diff --git a/test/W3C_SVG_12_TinyTestSuite_beta/htmlObjectHarness/udom-traitaccess-207-t.html b/test/W3C_SVG_12_TinyTestSuite_beta/htmlObjectHarness/udom-traitaccess-207-t.html new file mode 100755 index 00000000..caa0f422 --- /dev/null +++ b/test/W3C_SVG_12_TinyTestSuite_beta/htmlObjectHarness/udom-traitaccess-207-t.html @@ -0,0 +1,83 @@ + + + + + + + + +SVG 1.2 Tiny test:udom-traitaccess-207-t + + + + + + + + + + +
+ + + + + + + + + + + + +
+

udom-traitaccess-207-t

+
+

FAIL

+
+ raster image of udom-traitaccess-207-t +
+
+ + +
+

+ Test on Ecma-script. Sets viewport-fill-opacity to 0.5 with setFloatTrait + (should show a red viewport with correct opacity, and the text 'viewport-fill-opacity="0.5"' should show). +

+ +
+ + + diff --git a/test/W3C_SVG_12_TinyTestSuite_beta/images/1pixelred.png b/test/W3C_SVG_12_TinyTestSuite_beta/images/1pixelred.png new file mode 100755 index 00000000..9c2f025f Binary files /dev/null and b/test/W3C_SVG_12_TinyTestSuite_beta/images/1pixelred.png differ diff --git a/test/W3C_SVG_12_TinyTestSuite_beta/images/1pixelwhite.png b/test/W3C_SVG_12_TinyTestSuite_beta/images/1pixelwhite.png new file mode 100755 index 00000000..adcee30c Binary files /dev/null and b/test/W3C_SVG_12_TinyTestSuite_beta/images/1pixelwhite.png differ diff --git a/test/W3C_SVG_12_TinyTestSuite_beta/images/20x20.png b/test/W3C_SVG_12_TinyTestSuite_beta/images/20x20.png new file mode 100755 index 00000000..32399c62 Binary files /dev/null and b/test/W3C_SVG_12_TinyTestSuite_beta/images/20x20.png differ diff --git a/test/W3C_SVG_12_TinyTestSuite_beta/images/CNN.3gp b/test/W3C_SVG_12_TinyTestSuite_beta/images/CNN.3gp new file mode 100755 index 00000000..4929a530 Binary files /dev/null and b/test/W3C_SVG_12_TinyTestSuite_beta/images/CNN.3gp differ diff --git a/test/W3C_SVG_12_TinyTestSuite_beta/images/DisplaceChecker.png b/test/W3C_SVG_12_TinyTestSuite_beta/images/DisplaceChecker.png new file mode 100755 index 00000000..25c77d0a Binary files /dev/null and b/test/W3C_SVG_12_TinyTestSuite_beta/images/DisplaceChecker.png differ diff --git a/test/W3C_SVG_12_TinyTestSuite_beta/images/SVG-1.1-monolithic-fixed.dtd b/test/W3C_SVG_12_TinyTestSuite_beta/images/SVG-1.1-monolithic-fixed.dtd new file mode 100755 index 00000000..d028699d --- /dev/null +++ b/test/W3C_SVG_12_TinyTestSuite_beta/images/SVG-1.1-monolithic-fixed.dtd @@ -0,0 +1,1622 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + diff --git a/test/W3C_SVG_12_TinyTestSuite_beta/images/SVGFreeSans-ISO-8859-1.svg b/test/W3C_SVG_12_TinyTestSuite_beta/images/SVGFreeSans-ISO-8859-1.svg new file mode 100755 index 00000000..159a33a7 --- /dev/null +++ b/test/W3C_SVG_12_TinyTestSuite_beta/images/SVGFreeSans-ISO-8859-1.svg @@ -0,0 +1,1305 @@ + + + +Copyleft 2002, 2003 Free Software Foundation. + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + !"#$%&'()*+,-./0123456789:;<>? + @ABCDEFGHIJKLMNOPQRSTUVWXYZ[\]^_ + `abcdefghijklmnopqrstuvwxyz|{}~ + ¡¢£¤¥¦§¨©ª«¬­®¯°±²³´µ¶·¸¹º»¼½¾¿ + ÀÁÂÃÄÅÆÇÈÉÊËÌÍÎÏÐÑÒÓÔÕÖרÙÚÛÜÝÞß + àáâãäåæçèéêëìíîïðñòóôõö÷øùúûüýþÿ + + diff --git a/test/W3C_SVG_12_TinyTestSuite_beta/images/SVGFreeSans.svg b/test/W3C_SVG_12_TinyTestSuite_beta/images/SVGFreeSans.svg new file mode 100755 index 00000000..6aa11059 --- /dev/null +++ b/test/W3C_SVG_12_TinyTestSuite_beta/images/SVGFreeSans.svg @@ -0,0 +1,568 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + !"#$%&'()*+,-./0123456789:;<>? +@ABCDEFGHIJKLMNOPQRSTUVWXYZ[\]^_ +`abcdefghijklmnopqrstuvwxyz|{}~ + + diff --git a/test/W3C_SVG_12_TinyTestSuite_beta/images/SVGImageTest.svg b/test/W3C_SVG_12_TinyTestSuite_beta/images/SVGImageTest.svg new file mode 100755 index 00000000..ffeb8ba3 --- /dev/null +++ b/test/W3C_SVG_12_TinyTestSuite_beta/images/SVGImageTest.svg @@ -0,0 +1,27 @@ + + + + + + + + + + + + + + + + + + + + + + SVGImageTest.svg + $Revision: 1.1 $ + + + + diff --git a/test/W3C_SVG_12_TinyTestSuite_beta/images/TraitAccess.common.es b/test/W3C_SVG_12_TinyTestSuite_beta/images/TraitAccess.common.es new file mode 100755 index 00000000..518a59cf --- /dev/null +++ b/test/W3C_SVG_12_TinyTestSuite_beta/images/TraitAccess.common.es @@ -0,0 +1,672 @@ +var svg_ns = "http://www.w3.org/2000/svg"; +var xlink_ns = "http://www.w3.org/1999/xlink"; + +var count=0; +var column = 0; +var topsvg = document.documentElement; +var startY = 50; +var rowHeight = 8; +var rowWidth = 240; +var fontSize = "8"; +var isPassed = true; + + +/************************************************************************ + ************************************************************************ + * Utility Functions + ************************************************************************ + ************************************************************************/ + + +function drawString( text, color ) +{ + node_to_insert=document.createElementNS(svg_ns,"text"); + node_to_insert.setAttributeNS(null,"font-size",fontSize); + var xVal = 5 +( column * rowWidth ); + node_to_insert.setAttributeNS(null,"x", xVal.toString() ); + var yVal = startY + count++ * rowHeight; + node_to_insert.setAttributeNS(null, "y", yVal.toString() ); + node_to_insert.setAttributeNS(null, "fill", color ); + node_to_insert.textContent=text ; + document.getElementById( "test-body-content" ).appendChild(node_to_insert); + + if ( count > 26 && column == 0 ) + { + count = 1; + column++; + } +} + + + + +/** + * Get a string representation of the given SVGPath object. + */ +function getSVGPathString( path ) +{ + if ( 0 == path.numberOfSegments ) + { + return ""; + } + + var str = "[ "; + for ( var segNum = 0; segNum < path.numberOfSegments; ++segNum ) + { + var pathSeg = path.getSegment( segNum ); + + var numParams = 2; + switch( pathSeg ) + { + case SVGPath.MOVE_TO: + str += "M"; + break; + + case SVGPath.LINE_TO: + str += "L"; + break; + + case SVGPath.CURVE_TO: + str += "C"; + numParams = 6; + break; + + case SVGPath.QUAD_TO: + str += "Q"; + numParams = 4; + break; + + case SVGPath.CLOSE: + str += "Z"; + numParams = 0; + break; + + default: + // Should not happen. + return 0; + } + + str += " "; + + for ( var parNum = 0; parNum < numParams; ++parNum ) + { + str += path.getSegmentParam( segNum, parNum ).toString(); + str += " "; + } + + str += " "; + } + + str += "]"; + return str; +} + + +/** + * Check if two SVGPath objects are equal. + * p1 : first path + * p2 : second path + * dev : allowed +/- deviation for float values + * Returns 1 if they are equal, 0 otherwise. + */ +function isEqualSVGPath( p1, p2, dev ) +{ + if ( p1.numberOfSegments != p2.numberOfSegments ) + { + return 0; + } + + for ( var segNum = 0; segNum < p1.numberOfSegments; ++segNum ) + { + var p1Seg = p1.getSegment( segNum ); + var p2Seg = p2.getSegment( segNum ); + if ( p1Seg != p2Seg ) + { + return 0; + } + + var numParams = 2; + switch( p1Seg ) + { + case SVGPath.MOVE_TO: + break; + + case SVGPath.LINE_TO: + break; + + case SVGPath.CURVE_TO: + numParams = 6; + break; + + case SVGPath.QUAD_TO: + numParams = 4; + break; + + case SVGPath.CLOSE: + numParams = 0; + break; + + default: + // Should not happen. + return 0; + } + + for ( var parNum = 0; parNum < numParams; ++parNum ) + { + var p1Param = p1.getSegmentParam( segNum, parNum ); + var p2Param = p2.getSegmentParam( segNum, parNum ); + if + ( + ( ( p1Param < ( p2Param - dev ) ) || ( p1Param >( p2Param + dev ) ) ) && + ( ( p2Param < ( p1Param - dev ) ) || ( p2Param >( p1Param + dev ) ) ) + ) + { + return 0; + } + } + } + return 1; +} + + +/************************************************************************ + ************************************************************************ + * Test Iteration Object Definitions + ************************************************************************ + ************************************************************************/ + + +/** + * Create a get*Trait() test iteration object. + * id : iter id + * fnName : function name (e.g. getTrait, getTraitNS, etc.) + * ns : namespace + * elem : SVG element + * attr : attribute/property name + * expected : expected value, 0 if no value is expected + * dev : allowed +/- deviation for float values + * ecode : expected exception code, 0 if no exception is expected + * ename : expected exception string, for display purposes, 0 if no exception is expected + */ +function getTraitIter +( + id, + fnName, + ns, + elem, + attr, + expected, + dev, + ecode, + ename +) +{ + this.id = id; + this.fnName = fnName; + this.ns = ns; + this.elem = elem; + this.attr = attr; + this.expected = expected; + this.dev = dev; + this.ecode = ecode; + this.ename = ename; +} + + +/** + * Create a set*Trait() test iteration object. + * id : iter id + * fnName : function name (e.g. setTrait, setTraitNS, etc.) + * getFnName : getter function name (e.g. getTrait, getTraitNS, etc.), used for verification + * ns : namespace + * elem : SVG element + * attr : attribute/property name + * value : value to set + * expected : expected value from getter function, 0 if no value expected + * dev : allowed +/- deviation for float values + * ecode : expected exception code, 0 if no exception expected + * ename : expected exception string, for display purposes, 0 if no exception expected + */ +function setTraitIter +( + id, + fnName, + getFnName, + ns, + elem, + attr, + value, + expected, + dev, + ecode, + ename +) +{ + this.id = id; + this.fnName = fnName; + this.getFnName = getFnName; + this.ns = ns; + this.elem = elem; + this.attr = attr; + this.value = value; + this.expected = expected; + this.dev = dev; + this.ecode = ecode; + this.ename = ename; +} + + +/************************************************************************ + ************************************************************************ + * Single Test Iteration Run Methods + ************************************************************************ + ************************************************************************/ + + +/** + * Run a single get*Trait() test iteration. + * iter : a getTraitIter object + */ +function runSingleGetTraitIter( iter ) +{ + //DEBUG + //drawString( "runSingleGetTraitIter( " + // + "id=" + iter.id + // + ", fnName=" + iter.fnName + // + ", ns=" + iter.ns + // + ", elem=" + iter.elem + // + ", attr=" + iter.attr + // + ", expected=" + iter.expected + // + ", dev=" + iter.dev + // + ", ecode=" + iter.ecode + // + ", ename=" + iter.ename + // + " )" ); + + try + { + var cmd = iter.id + ": "; + var fnNameLen = iter.fnName.length; + var fnNameSuffix = iter.fnName.substring( fnNameLen - 2, fnNameLen ); + if ( fnNameSuffix == "NS" ) + { + cmd += iter.elem.id + + "." + + iter.fnName + + "( " + + iter.ns + + ", \"" + + iter.attr + + "\" )"; + value = iter.elem[iter.fnName]( iter.ns, iter.attr ); + } + else if ( fnNameSuffix == "it" ) + { + cmd += iter.elem.id + + "." + + iter.fnName + + "( \"" + + iter.attr + + "\" )"; + value = iter.elem[iter.fnName](iter.attr); + } + else + { + isPassed = false; + drawString( "runSingleGetTraitIter: Invalid fnName = " + iter.fnName, "red" ); + } + + if ( iter.ecode ) + { + isPassed = false; + drawString( "No exception was thrown! Expected " + iter.ename, "red" ); + } + else if ( iter.fnName.match("Float") ) + { + if ( ( value >= ( iter.expected - iter.dev ) ) && ( value <= ( iter.expected + iter.dev ) ) ) + { + drawString( cmd + " = \"" + value + "\" (" + iter.expected + " +/- " + iter.dev + ")", "green" ); + } + else + { + isPassed = false; + drawString( cmd + " = \"" + value + "\", expected = " + iter.expected + " +/- " + iter.dev, "red" ); + } + } + else if ( iter.fnName.match("Matrix") ) + { + if + ( + ( value.getComponent(0) >= ( iter.expected.getComponent(0) - iter.dev ) ) + && ( value.getComponent(0) <= ( iter.expected.getComponent(0) + iter.dev ) ) + && ( value.getComponent(1) >= ( iter.expected.getComponent(1) - iter.dev ) ) + && ( value.getComponent(1) <= ( iter.expected.getComponent(1) + iter.dev ) ) + && ( value.getComponent(2) >= ( iter.expected.getComponent(2) - iter.dev ) ) + && ( value.getComponent(2) <= ( iter.expected.getComponent(2) + iter.dev ) ) + && ( value.getComponent(3) >= ( iter.expected.getComponent(3) - iter.dev ) ) + && ( value.getComponent(3) <= ( iter.expected.getComponent(3) + iter.dev ) ) + && ( value.getComponent(4) >= ( iter.expected.getComponent(4) - iter.dev ) ) + && ( value.getComponent(4) <= ( iter.expected.getComponent(4) + iter.dev ) ) + && ( value.getComponent(5) >= ( iter.expected.getComponent(5) - iter.dev ) ) + && ( value.getComponent(5) <= ( iter.expected.getComponent(5) + iter.dev ) ) + ) + { + drawString( cmd + " = [" + + value.getComponent(0) + " " + + value.getComponent(1) + " " + + value.getComponent(2) + " " + + value.getComponent(3) + " " + + value.getComponent(4) + " " + + value.getComponent(5) + + "] ( [" + + iter.expected.getComponent(0) + " " + + iter.expected.getComponent(1) + " " + + iter.expected.getComponent(2) + " " + + iter.expected.getComponent(3) + " " + + iter.expected.getComponent(4) + " " + + iter.expected.getComponent(5) + + "] +/- " + iter.dev + ")", "green" ); + } + else + { + isPassed = false; + drawString( cmd + " = [" + + value.getComponent(0) + " " + + value.getComponent(1) + " " + + value.getComponent(2) + " " + + value.getComponent(3) + " " + + value.getComponent(4) + " " + + value.getComponent(5) + + "], expected = [" + + iter.expected.getComponent(0) + " " + + iter.expected.getComponent(1) + " " + + iter.expected.getComponent(2) + " " + + iter.expected.getComponent(3) + " " + + iter.expected.getComponent(4) + " " + + iter.expected.getComponent(5) + + "] +/- " + iter.dev, "red" ); + } + } + else if ( iter.fnName.match("Rect") ) + { + if + ( + ( value.x >= ( iter.expected.x - iter.dev ) ) + && ( value.x <= ( iter.expected.x + iter.dev ) ) + && ( value.y >= ( iter.expected.y - iter.dev ) ) + && ( value.y <= ( iter.expected.y + iter.dev ) ) + && ( value.width >= ( iter.expected.width - iter.dev ) ) + && ( value.width <= ( iter.expected.width + iter.dev ) ) + && ( value.height >= ( iter.expected.height - iter.dev ) ) + && ( value.height <= ( iter.expected.height + iter.dev ) ) + ) + { + drawString( cmd + " = [" + + value.x + " " + + value.y + " " + + value.width + " " + + value.height + + "] ( [" + + iter.expected.x + " " + + iter.expected.y + " " + + iter.expected.width + " " + + iter.expected.height + + "] +/- " + iter.dev + ")", "green" ); + } + else + { + isPassed = false; + drawString( cmd + " = [" + + value.x + " " + + value.y + " " + + value.width + " " + + value.height + + "], expected = [" + + iter.expected.x + " " + + iter.expected.y + " " + + iter.expected.width + " " + + iter.expected.height + + "] +/- " + iter.dev, "red" ); + } + } + else if ( iter.fnName.match("Path") ) + { + if ( isEqualSVGPath ( value, iter.expected, iter.dev ) ) + { + drawString( cmd + " = " + getSVGPathString(value) + + " ( " + getSVGPathString(iter.expected) + " +/- " + iter.dev + " )", "green" ); + } + else + { + isPassed = false; + drawString( cmd + " = " + getSVGPathString(value) + + ", expected = " + getSVGPathString(iter.expected) + " +/- " + iter.dev, "red" ); + } + } + else if ( iter.fnName.match("RGBColor") ) + { + if ( value == null && iter.expected == null ) + { + drawString( cmd + " = [ null ] ( null ) ", "green" ); + } + else if + ( + ( value.red >= ( iter.expected.red - iter.dev ) ) && + ( value.red <= ( iter.expected.red + iter.dev ) ) && + ( value.green >= ( iter.expected.green - iter.dev ) ) && + ( value.green <= ( iter.expected.green + iter.dev ) ) && + ( value.blue >= ( iter.expected.blue - iter.dev ) ) && + ( value.blue <= ( iter.expected.blue + iter.dev ) ) + ) + { + drawString( cmd + " = [ " + + value.red + ", " + + value.green + ", " + + value.blue + + " ] ( " + + iter.expected.red + ", " + + iter.expected.green + ", " + + iter.expected.blue + + " ] +/- " + iter.dev + " )", "green" ); + } + else + { + isPassed = false; + drawString( cmd + " = [ " + + value.red + ", " + + value.green + ", " + + value.blue + + " ], expected = [ " + + iter.expected.red + ", " + + iter.expected.green + ", " + + iter.expected.blue + + " ] +/- " + iter.dev, "red" ); + } + } + else + { + if ( value == iter.expected ) + { + drawString( cmd + " = \"" + value + "\"", "green" ); + } + else + { + isPassed = false; + drawString( cmd + " = \"" + value + "\", expected = \"" + iter.expected + "\"", "red" ); + } + } + } + catch(e) + { + if ( e.code == iter.ecode ) + { + drawString( cmd + ", got expected exception = " + iter.ename, "green" ); + } + else + { + isPassed = false; + drawString( cmd + ", got unexpected exception = (" + e.code + ") " + + ", expecting = (" + iter.ecode + ") " + iter.ename, "red" ); + } + } +} + + +/** + * Run a single set*Trait() test iteration. + * iter : a setTraitIter object + */ +function runSingleSetTraitIter( iter ) +{ + //DEBUG + //drawString( "runSingleSetTraitIter( " + // + "id=" + iter.id + // + ", fnName=" + iter.fnName + // + ", getFnName=" + iter.getFnName + // + ", ns=" + iter.ns + // + ", elem=" + iter.elem + // + ", attr=" + iter.attr + // + ", value=" + iter.value + // + ", expected=" + iter.expected + // + ", dev=" + iter.dev + // + ", ecode=" + iter.ecode + // + ", ename=" + iter.ename + // + " )" ); + + + try + { + var cmd = iter.id + ": "; + var fnNameLen = iter.fnName.length; + var fnNameSuffix = iter.fnName.substring( fnNameLen - 2, fnNameLen ); + if ( fnNameSuffix == "NS" ) + { + cmd += iter.elem.id + + "." + + iter.fnName + + "( " + + iter.ns + + ", \"" + + iter.attr + + "\", \"" + + iter.value + + "\" )"; + iter.elem[iter.fnName]( iter.ns, iter.attr, iter.value ); + drawString( cmd, "green" ); + } + else if ( fnNameSuffix == "it" ) + { + cmd += iter.elem.id + + "." + + iter.fnName + + "( \"" + + iter.attr + + "\", \"" + + iter.value + + "\" )"; + iter.elem[iter.fnName]( iter.attr, iter.value ); + drawString( cmd, "green" ); + } + else + { + isPassed = false; + drawString( "runSingleSetTraitIter: Invalid fnName = " + iter.fnName , "red"); + } + + if ( iter.ecode ) + { + isPassed = false; + drawString( "No exception was thrown! Expected " + iter.ename, "red" ); + } + else + { + runSingleGetTraitIter + ( + new getTraitIter + ( + iter.id, + iter.getFnName, + iter.ns, + iter.elem, + iter.attr, + iter.expected, + iter.dev, + 0, + 0 + ) + ); + } + + } + catch(e) + { + if ( e.code == iter.ecode ) + { + drawString( cmd + ", got expected exception = " + iter.ename, "green" ); + } + else + { + isPassed = false; + drawString( cmd + ", got unexpected exception = (" + e.code + ") " + + ", expecting = (" + iter.ecode + ") " + iter.ename, "red" ); + } + } + +} + + +/************************************************************************ + ************************************************************************ + * Bulk Test Iteration Run Methods + ************************************************************************ + ************************************************************************/ + + +/** + * Run all given getTraitIters. + * iters : array of getTraitIter objects + */ +function runGetTraitIters( iters ) +{ + var value = ""; + var elem = 0; + + for( var i = 0; i < iters.length; ++i ) + { + try + { + runSingleGetTraitIter( iters[i] ); + } + catch(e) + { + isPassed = false; + drawString( "runGetTraitIter: Unexpected exception thrown! (" + e.code + ") ", "red" ); + } + } +} + + +/** + * Run all given setTraitIters. + * iters : array of setTraitIter objects + */ +function runSetTraitIters( iters ) +{ + var value = ""; + var elem = 0; + + for( var i = 0; i < iters.length; ++i ) + { + try + { + runSingleSetTraitIter( iters[i] ); + } + catch(e) + { + isPassed = false; + drawString( "runSetTraitIters: Unexpected exception thrown! (" + e.code + ") ", "red" ); + } + } +} + + + diff --git a/test/W3C_SVG_12_TinyTestSuite_beta/images/advice.wav b/test/W3C_SVG_12_TinyTestSuite_beta/images/advice.wav new file mode 100755 index 00000000..8935a351 Binary files /dev/null and b/test/W3C_SVG_12_TinyTestSuite_beta/images/advice.wav differ diff --git a/test/W3C_SVG_12_TinyTestSuite_beta/images/animation-add-BE-09.svg b/test/W3C_SVG_12_TinyTestSuite_beta/images/animation-add-BE-09.svg new file mode 100755 index 00000000..efb9ab3b --- /dev/null +++ b/test/W3C_SVG_12_TinyTestSuite_beta/images/animation-add-BE-09.svg @@ -0,0 +1,201 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + +Test 'additive' and 'accumulate' attributes. + + +Eight animations have been defined. +For each animation, ruler lines and text are provided to help show +what the correct behavior is. +The red text shows the values for attributes 'additive' and 'accumulate'. +The black text and ruler lines help show the change in height of +the rectangles over time. + + +In the first row, a single animation which changes the height of the rectangle +is defined for each picture. +The height changes from 10 to 25, and the animation repeats (total of two loops). +The four pictures show the effect with the four possible combinations of +'additive' (either 'replace' or 'sum') and 'accumulate' (either 'none' or 'sum'). + + +In the second row, two identical animations change the height of the rectangle, +with each animation exactly the same as the corresponding animation in the first row. +Again, the four pictures show the effect with the four possible combinations of +'additive' (either 'replace' or 'sum') and 'accumulate' (either 'none' or 'sum'). +Because two animations are animating the height, the effects of 'additive' and +'accumulate' are sometimes different than when there is only a single animation. + + + + + + animation-add-BE-09 + Test 'additive' and 'accumulate' attributes. + + + + + Test 'additive' and 'accumulate' attributes. + + + 0,4 sec. + + 4,8+ sec. + + + + + additive='replace' + accumulate='none' + + + 0,4 sec. + + 4,8+ sec. + + + + + additive='sum' + accumulate='none' + + + 0 sec. + + 4 sec. + + 4 sec. + + 8+ sec. + + + + + additive='replace' + accumulate='sum' + + + 0 sec. + + 4 sec. + + 4 sec. + + 8+ sec. + + + + + additive='sum' + accumulate='sum' + + + 0,4 sec. + + 4,8+ sec. + + + + + + additive='replace' + accumulate='none' + + + 0,4 sec. + + 4,8+ sec. + + + + + + additive='sum' + accumulate='none' + + + 0 sec. + + 4 sec. + + 4 sec. + + 8+ sec. + + + + + + additive='replace' + accumulate='sum' + + + 0 sec. + + 4 sec. + + 4 sec. + + 8+ sec. + + + + + + additive='sum' + accumulate='sum' + + + + + + + + + + Scalable Vector Graphics (SVG) Conformance Suite + + Copyright 2000 W3C. All Rights Reserved. + + animation-add-BE-09 + $Revision: 1.1 $ + Release 3.0 + + + diff --git a/test/W3C_SVG_12_TinyTestSuite_beta/images/animation-extRef-image1.svg b/test/W3C_SVG_12_TinyTestSuite_beta/images/animation-extRef-image1.svg new file mode 100755 index 00000000..1670b4da --- /dev/null +++ b/test/W3C_SVG_12_TinyTestSuite_beta/images/animation-extRef-image1.svg @@ -0,0 +1,18 @@ + + + + + + + + + + + + + + + + Image 1 + + diff --git a/test/W3C_SVG_12_TinyTestSuite_beta/images/animation-extRef-image2.svg b/test/W3C_SVG_12_TinyTestSuite_beta/images/animation-extRef-image2.svg new file mode 100755 index 00000000..f174ad5a --- /dev/null +++ b/test/W3C_SVG_12_TinyTestSuite_beta/images/animation-extRef-image2.svg @@ -0,0 +1,16 @@ + + + + + + + + + + + + + + Image 2 + + diff --git a/test/W3C_SVG_12_TinyTestSuite_beta/images/animation-extRef-image3.svg b/test/W3C_SVG_12_TinyTestSuite_beta/images/animation-extRef-image3.svg new file mode 100755 index 00000000..7caefe42 --- /dev/null +++ b/test/W3C_SVG_12_TinyTestSuite_beta/images/animation-extRef-image3.svg @@ -0,0 +1,14 @@ + + + + + + + + + + + + Image 3 + + diff --git a/test/W3C_SVG_12_TinyTestSuite_beta/images/animation-script.svg b/test/W3C_SVG_12_TinyTestSuite_beta/images/animation-script.svg new file mode 100755 index 00000000..ac9631da --- /dev/null +++ b/test/W3C_SVG_12_TinyTestSuite_beta/images/animation-script.svg @@ -0,0 +1,34 @@ + + + Example: invoke an ECMAScript function from an activate event + + + + + + + + + + + + change(evt); + + Activate the + circle to change its size + + diff --git a/test/W3C_SVG_12_TinyTestSuite_beta/images/animation-time-scale.svg b/test/W3C_SVG_12_TinyTestSuite_beta/images/animation-time-scale.svg new file mode 100755 index 00000000..219a1f20 --- /dev/null +++ b/test/W3C_SVG_12_TinyTestSuite_beta/images/animation-time-scale.svg @@ -0,0 +1,42 @@ + + + + + + 0 + 1 + 2 + 3 + 4 + 5 + 6 + 7 + 8 + 9 + 10 + 11 + 12 + 13 + 14 + 15 + 16 + 17 + 18 + 19 + 20 + 21 + 22 + 23 + 24 + 25 + + + + + + + seconds + + + + diff --git a/test/W3C_SVG_12_TinyTestSuite_beta/images/animation1.svg b/test/W3C_SVG_12_TinyTestSuite_beta/images/animation1.svg new file mode 100755 index 00000000..5c0db1b6 --- /dev/null +++ b/test/W3C_SVG_12_TinyTestSuite_beta/images/animation1.svg @@ -0,0 +1,53 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + diff --git a/test/W3C_SVG_12_TinyTestSuite_beta/images/animation2.svg b/test/W3C_SVG_12_TinyTestSuite_beta/images/animation2.svg new file mode 100755 index 00000000..f49a1740 --- /dev/null +++ b/test/W3C_SVG_12_TinyTestSuite_beta/images/animation2.svg @@ -0,0 +1,29 @@ + + + + + + + + + + + + 0 + 2 + 4 + 6 + 8 + 10 + + + + + + + + + + diff --git a/test/W3C_SVG_12_TinyTestSuite_beta/images/animation3none.svg b/test/W3C_SVG_12_TinyTestSuite_beta/images/animation3none.svg new file mode 100755 index 00000000..ece86eb1 --- /dev/null +++ b/test/W3C_SVG_12_TinyTestSuite_beta/images/animation3none.svg @@ -0,0 +1,35 @@ + + + + + + + + + + + + + + + + + + + + This is an embedded + <animation> + A yellow rectangle + animates to cover + the entire viewBox + + + + + + + diff --git a/test/W3C_SVG_12_TinyTestSuite_beta/images/animation4none.svg b/test/W3C_SVG_12_TinyTestSuite_beta/images/animation4none.svg new file mode 100755 index 00000000..7967bd52 --- /dev/null +++ b/test/W3C_SVG_12_TinyTestSuite_beta/images/animation4none.svg @@ -0,0 +1,25 @@ + + + + + + + + + + + + + + This is an embedded + <animation> + A yellow rectangle + animates to cover + the entire viewBox + + + + + + + diff --git a/test/W3C_SVG_12_TinyTestSuite_beta/images/animation5none.svg b/test/W3C_SVG_12_TinyTestSuite_beta/images/animation5none.svg new file mode 100755 index 00000000..9cb6ae8a --- /dev/null +++ b/test/W3C_SVG_12_TinyTestSuite_beta/images/animation5none.svg @@ -0,0 +1,40 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + This is an embedded + <animation> + A yellow rectangle + animates to cover + the entire viewBox + + + + + + + diff --git a/test/W3C_SVG_12_TinyTestSuite_beta/images/animationresource-activecircle1.svg b/test/W3C_SVG_12_TinyTestSuite_beta/images/animationresource-activecircle1.svg new file mode 100755 index 00000000..8a681886 --- /dev/null +++ b/test/W3C_SVG_12_TinyTestSuite_beta/images/animationresource-activecircle1.svg @@ -0,0 +1,15 @@ + + + + + + + + + + + + + + + diff --git a/test/W3C_SVG_12_TinyTestSuite_beta/images/animationresource-activecircle2.svg b/test/W3C_SVG_12_TinyTestSuite_beta/images/animationresource-activecircle2.svg new file mode 100755 index 00000000..c1a37592 --- /dev/null +++ b/test/W3C_SVG_12_TinyTestSuite_beta/images/animationresource-activecircle2.svg @@ -0,0 +1,15 @@ + + + + + + + + + + + + + + + diff --git a/test/W3C_SVG_12_TinyTestSuite_beta/images/animationresource-anim1.svg b/test/W3C_SVG_12_TinyTestSuite_beta/images/animationresource-anim1.svg new file mode 100755 index 00000000..81a4a86e --- /dev/null +++ b/test/W3C_SVG_12_TinyTestSuite_beta/images/animationresource-anim1.svg @@ -0,0 +1,16 @@ + + + + + + + + + + + + + + + + diff --git a/test/W3C_SVG_12_TinyTestSuite_beta/images/animationresource-gradrect2.svg b/test/W3C_SVG_12_TinyTestSuite_beta/images/animationresource-gradrect2.svg new file mode 100755 index 00000000..09ec7fbe --- /dev/null +++ b/test/W3C_SVG_12_TinyTestSuite_beta/images/animationresource-gradrect2.svg @@ -0,0 +1,15 @@ + + + + + + + + + + + + + + + diff --git a/test/W3C_SVG_12_TinyTestSuite_beta/images/animationresource-myscale.svg b/test/W3C_SVG_12_TinyTestSuite_beta/images/animationresource-myscale.svg new file mode 100755 index 00000000..15df7e1a --- /dev/null +++ b/test/W3C_SVG_12_TinyTestSuite_beta/images/animationresource-myscale.svg @@ -0,0 +1,23 @@ + + + + + + + + + + + + + 0 + 2 + 4 + 6 + 8 + 10 + + + diff --git a/test/W3C_SVG_12_TinyTestSuite_beta/images/animationresource-userect.svg b/test/W3C_SVG_12_TinyTestSuite_beta/images/animationresource-userect.svg new file mode 100755 index 00000000..16973209 --- /dev/null +++ b/test/W3C_SVG_12_TinyTestSuite_beta/images/animationresource-userect.svg @@ -0,0 +1,22 @@ + + + + + + + + + + + + + + + + + + + + + + diff --git a/test/W3C_SVG_12_TinyTestSuite_beta/images/ball.svg b/test/W3C_SVG_12_TinyTestSuite_beta/images/ball.svg new file mode 100755 index 00000000..700e1c42 --- /dev/null +++ b/test/W3C_SVG_12_TinyTestSuite_beta/images/ball.svg @@ -0,0 +1,33 @@ + + + + + + + + + + + + + diff --git a/test/W3C_SVG_12_TinyTestSuite_beta/images/beep.wav b/test/W3C_SVG_12_TinyTestSuite_beta/images/beep.wav new file mode 100755 index 00000000..ec68bdac Binary files /dev/null and b/test/W3C_SVG_12_TinyTestSuite_beta/images/beep.wav differ diff --git a/test/W3C_SVG_12_TinyTestSuite_beta/images/bluesquidj.png b/test/W3C_SVG_12_TinyTestSuite_beta/images/bluesquidj.png new file mode 100755 index 00000000..9f5c5587 Binary files /dev/null and b/test/W3C_SVG_12_TinyTestSuite_beta/images/bluesquidj.png differ diff --git a/test/W3C_SVG_12_TinyTestSuite_beta/images/boing_x.wav b/test/W3C_SVG_12_TinyTestSuite_beta/images/boing_x.wav new file mode 100755 index 00000000..468b0689 Binary files /dev/null and b/test/W3C_SVG_12_TinyTestSuite_beta/images/boing_x.wav differ diff --git a/test/W3C_SVG_12_TinyTestSuite_beta/images/bread.png b/test/W3C_SVG_12_TinyTestSuite_beta/images/bread.png new file mode 100755 index 00000000..4f205556 Binary files /dev/null and b/test/W3C_SVG_12_TinyTestSuite_beta/images/bread.png differ diff --git a/test/W3C_SVG_12_TinyTestSuite_beta/images/bullet-small.png b/test/W3C_SVG_12_TinyTestSuite_beta/images/bullet-small.png new file mode 100755 index 00000000..2f92cc61 Binary files /dev/null and b/test/W3C_SVG_12_TinyTestSuite_beta/images/bullet-small.png differ diff --git a/test/W3C_SVG_12_TinyTestSuite_beta/images/bullet-white.png b/test/W3C_SVG_12_TinyTestSuite_beta/images/bullet-white.png new file mode 100755 index 00000000..d4c4abfd Binary files /dev/null and b/test/W3C_SVG_12_TinyTestSuite_beta/images/bullet-white.png differ diff --git a/test/W3C_SVG_12_TinyTestSuite_beta/images/bullet.png b/test/W3C_SVG_12_TinyTestSuite_beta/images/bullet.png new file mode 100755 index 00000000..e1495d98 Binary files /dev/null and b/test/W3C_SVG_12_TinyTestSuite_beta/images/bullet.png differ diff --git a/test/W3C_SVG_12_TinyTestSuite_beta/images/bumpMap.png b/test/W3C_SVG_12_TinyTestSuite_beta/images/bumpMap.png new file mode 100755 index 00000000..1ac02a8d Binary files /dev/null and b/test/W3C_SVG_12_TinyTestSuite_beta/images/bumpMap.png differ diff --git a/test/W3C_SVG_12_TinyTestSuite_beta/images/bumpMap2.png b/test/W3C_SVG_12_TinyTestSuite_beta/images/bumpMap2.png new file mode 100755 index 00000000..1609323d Binary files /dev/null and b/test/W3C_SVG_12_TinyTestSuite_beta/images/bumpMap2.png differ diff --git a/test/W3C_SVG_12_TinyTestSuite_beta/images/clock.mp4 b/test/W3C_SVG_12_TinyTestSuite_beta/images/clock.mp4 new file mode 100755 index 00000000..3ebff6b4 Binary files /dev/null and b/test/W3C_SVG_12_TinyTestSuite_beta/images/clock.mp4 differ diff --git a/test/W3C_SVG_12_TinyTestSuite_beta/images/cloud-ps411q4app.jpg b/test/W3C_SVG_12_TinyTestSuite_beta/images/cloud-ps411q4app.jpg new file mode 100755 index 00000000..13389f2e Binary files /dev/null and b/test/W3C_SVG_12_TinyTestSuite_beta/images/cloud-ps411q4app.jpg differ diff --git a/test/W3C_SVG_12_TinyTestSuite_beta/images/cloud411q25s.jpg b/test/W3C_SVG_12_TinyTestSuite_beta/images/cloud411q25s.jpg new file mode 100755 index 00000000..0cb50526 Binary files /dev/null and b/test/W3C_SVG_12_TinyTestSuite_beta/images/cloud411q25s.jpg differ diff --git a/test/W3C_SVG_12_TinyTestSuite_beta/images/cloud411q65float.jpg b/test/W3C_SVG_12_TinyTestSuite_beta/images/cloud411q65float.jpg new file mode 100755 index 00000000..1328ee84 Binary files /dev/null and b/test/W3C_SVG_12_TinyTestSuite_beta/images/cloud411q65float.jpg differ diff --git a/test/W3C_SVG_12_TinyTestSuite_beta/images/cloud411q75o.jpg b/test/W3C_SVG_12_TinyTestSuite_beta/images/cloud411q75o.jpg new file mode 100755 index 00000000..a37bdb18 Binary files /dev/null and b/test/W3C_SVG_12_TinyTestSuite_beta/images/cloud411q75o.jpg differ diff --git a/test/W3C_SVG_12_TinyTestSuite_beta/images/cloud411q75p.jpg b/test/W3C_SVG_12_TinyTestSuite_beta/images/cloud411q75p.jpg new file mode 100755 index 00000000..ad3f59e6 Binary files /dev/null and b/test/W3C_SVG_12_TinyTestSuite_beta/images/cloud411q75p.jpg differ diff --git a/test/W3C_SVG_12_TinyTestSuite_beta/images/cloud411q75s.jpg b/test/W3C_SVG_12_TinyTestSuite_beta/images/cloud411q75s.jpg new file mode 100755 index 00000000..6e42503e Binary files /dev/null and b/test/W3C_SVG_12_TinyTestSuite_beta/images/cloud411q75s.jpg differ diff --git a/test/W3C_SVG_12_TinyTestSuite_beta/images/cloud444q65o.jpg b/test/W3C_SVG_12_TinyTestSuite_beta/images/cloud444q65o.jpg new file mode 100755 index 00000000..0fe88896 Binary files /dev/null and b/test/W3C_SVG_12_TinyTestSuite_beta/images/cloud444q65o.jpg differ diff --git a/test/W3C_SVG_12_TinyTestSuite_beta/images/cloudgsq75s.jpg b/test/W3C_SVG_12_TinyTestSuite_beta/images/cloudgsq75s.jpg new file mode 100755 index 00000000..b01af94f Binary files /dev/null and b/test/W3C_SVG_12_TinyTestSuite_beta/images/cloudgsq75s.jpg differ diff --git a/test/W3C_SVG_12_TinyTestSuite_beta/images/cloudoddq65o.jpg b/test/W3C_SVG_12_TinyTestSuite_beta/images/cloudoddq65o.jpg new file mode 100755 index 00000000..f7051ceb Binary files /dev/null and b/test/W3C_SVG_12_TinyTestSuite_beta/images/cloudoddq65o.jpg differ diff --git a/test/W3C_SVG_12_TinyTestSuite_beta/images/cloudqllo.jpg b/test/W3C_SVG_12_TinyTestSuite_beta/images/cloudqllo.jpg new file mode 100755 index 00000000..0e8517ad Binary files /dev/null and b/test/W3C_SVG_12_TinyTestSuite_beta/images/cloudqllo.jpg differ diff --git a/test/W3C_SVG_12_TinyTestSuite_beta/images/colorprof.png b/test/W3C_SVG_12_TinyTestSuite_beta/images/colorprof.png new file mode 100755 index 00000000..c03ab9cf Binary files /dev/null and b/test/W3C_SVG_12_TinyTestSuite_beta/images/colorprof.png differ diff --git a/test/W3C_SVG_12_TinyTestSuite_beta/images/convolveImage.png b/test/W3C_SVG_12_TinyTestSuite_beta/images/convolveImage.png new file mode 100755 index 00000000..f8fb8523 Binary files /dev/null and b/test/W3C_SVG_12_TinyTestSuite_beta/images/convolveImage.png differ diff --git a/test/W3C_SVG_12_TinyTestSuite_beta/images/coords-pAR-t-xMaxYMax.svg b/test/W3C_SVG_12_TinyTestSuite_beta/images/coords-pAR-t-xMaxYMax.svg new file mode 100755 index 00000000..0b817ffe --- /dev/null +++ b/test/W3C_SVG_12_TinyTestSuite_beta/images/coords-pAR-t-xMaxYMax.svg @@ -0,0 +1,20 @@ + + + + + $RCSfile: coords-pAR-t-xMaxYMax.svg,v $ + + Basic svg file used for external svg reference tests. + + + + + + + + + + "> + + \ No newline at end of file diff --git a/test/W3C_SVG_12_TinyTestSuite_beta/images/coords-pAR-t-xMidYMid.svg b/test/W3C_SVG_12_TinyTestSuite_beta/images/coords-pAR-t-xMidYMid.svg new file mode 100755 index 00000000..052aaa59 --- /dev/null +++ b/test/W3C_SVG_12_TinyTestSuite_beta/images/coords-pAR-t-xMidYMid.svg @@ -0,0 +1,20 @@ + + + + + $RCSfile: coords-pAR-t-xMidYMid.svg,v $ + + Basic svg file used for external svg reference tests. + + + + + + + + + + "> + + \ No newline at end of file diff --git a/test/W3C_SVG_12_TinyTestSuite_beta/images/coords-pAR-t-xMinYMin.svg b/test/W3C_SVG_12_TinyTestSuite_beta/images/coords-pAR-t-xMinYMin.svg new file mode 100755 index 00000000..1771e29d --- /dev/null +++ b/test/W3C_SVG_12_TinyTestSuite_beta/images/coords-pAR-t-xMinYMin.svg @@ -0,0 +1,20 @@ + + + + + $RCSfile: coords-pAR-t-xMinYMin.svg,v $ + + Basic svg file used for external svg reference tests. + + + + + + + + + + "> + + \ No newline at end of file diff --git a/test/W3C_SVG_12_TinyTestSuite_beta/images/coords-units-01-f.png b/test/W3C_SVG_12_TinyTestSuite_beta/images/coords-units-01-f.png new file mode 100755 index 00000000..4a075c71 Binary files /dev/null and b/test/W3C_SVG_12_TinyTestSuite_beta/images/coords-units-01-f.png differ diff --git a/test/W3C_SVG_12_TinyTestSuite_beta/images/coords-units-01-f.svg b/test/W3C_SVG_12_TinyTestSuite_beta/images/coords-units-01-f.svg new file mode 100755 index 00000000..6ac478e1 --- /dev/null +++ b/test/W3C_SVG_12_TinyTestSuite_beta/images/coords-units-01-f.svg @@ -0,0 +1,193 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + +Verify the conversion processing of percentage and fraction values relative to +object bounding boxes. This is used when defining linear and radial gradients +as well as patterns. + + +The test validates conversion for coordinates, width, height and length. The first +test defines three corresponding linear gradients, which specify coordinates +using percentages for one, fractions for the second and user coordinates for the +third. The second test defines three corresponding radial gradients, which specify +a length (radius) using percentages for the first, fractions for the second and +user space for the third. Finally, the third test defines three corresponding patterns, +which specify their width and height using percentages for the first, fractions for the +second and user space coordinates for the last one. + + +The rendered image should match the reference image. Also, the text may +show minor differences, per CSS2 rules for font selection and matching. + + +The test also assumes that linear and radial gradients, +as well as patterns are implemented. + + + + coords-units-01-f + This test validates the processing rules for converting coordinates and length defined in fractions of the current object's bounding box to user space coordinates and length. Note that this test assumes that linear and radial gradients, as well as patterns are implemented. + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + Bounding box relative coordinates (percentage and fraction) + + + + + + + Percentage + Fraction + User Space + + + + + + + + + + + + + + + + + + + + + + + + + + Bounding box relative length (percentage and fraction) + + + + + Percent. + Fraction + User Space + + + + + + + + + + + + + + + + + + + + + + + + + + Bounding box relative width/height (percentage and fraction) + + + + + Percentage + Fraction + User Space + + + + + + + + + + + Scalable Vector Graphics (SVG) v1.1 Conformance Suite + + Copyright 2002 W3C. All Rights Reserved. + + coords-units-01-f + $Revision: 1.1 $ + Release 1.0 + + + diff --git a/test/W3C_SVG_12_TinyTestSuite_beta/images/copyright-documents-19990405.html b/test/W3C_SVG_12_TinyTestSuite_beta/images/copyright-documents-19990405.html new file mode 100755 index 00000000..50fc9dda --- /dev/null +++ b/test/W3C_SVG_12_TinyTestSuite_beta/images/copyright-documents-19990405.html @@ -0,0 +1,89 @@ + + + + + +DOCUMENT NOTICE + + + + + +

W3C DOCUMENT NOTICE AND LICENSE

+ +

Copyright 1994-2000 World Wide Web Consortium, (Massachusetts Institute of Technology, Institut National de Recherche en Informatique et en +Automatique, Keio University). All Rights +Reserved.
+http://www.w3.org/Consortium/Legal/

+ +

Public documents on the W3C site are provided by the copyright holders under the +following license. The software or Document Type Definitions (DTDs) associated with W3C +specifications are governed by the Software Notice. By +using and/or copying this document, or the W3C document from which this statement is +linked, you (the licensee) agree that you have read, understood, and will comply with the +following terms and conditions:

+ +

Permission to use, copy, and distribute the contents of this document, or the W3C +document from which this statement is linked, in any medium for any purpose and without +fee or royalty is hereby granted, provided that you include the following on ALL +copies of the document, or portions thereof, that you use: + +

    +
  1. A link or URL to the original W3C document.
  2. +
  3. The pre-existing copyright notice of the original author, or if it doesn't exist, a + notice of the form: "Copyright [$date-of-document] World + Wide Web Consortium, (Massachusetts Institute of + Technology, Institut National de Recherche en + Informatique et en Automatique, Keio University). + All Rights Reserved. http://www.w3.org/Consortium/Legal/" (Hypertext is preferred, + but a textual representation is permitted.)
  4. +
  5. If it exists, the STATUS of the W3C document.
  6. +
+ +

When space permits, inclusion of the full text of this NOTICE should be +provided. We request that authorship attribution be provided in any software, documents, +or other items or products that you create pursuant to the implementation of the contents +of this document, or any portion thereof.

+ +

No right to create modifications or derivatives of W3C documents is granted pursuant to +this license. However, if additional requirements (documented in the Copyright FAQ) are satisfied, the right to create modifications or +derivatives is sometimes granted by the W3C to individuals complying with those +requirements.

+ +

THIS DOCUMENT IS PROVIDED "AS IS," AND COPYRIGHT HOLDERS MAKE NO +REPRESENTATIONS OR WARRANTIES, EXPRESS OR IMPLIED, INCLUDING, BUT NOT LIMITED TO, +WARRANTIES OF MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE, NON-INFRINGEMENT, OR +TITLE; THAT THE CONTENTS OF THE DOCUMENT ARE SUITABLE FOR ANY PURPOSE; NOR THAT THE +IMPLEMENTATION OF SUCH CONTENTS WILL NOT INFRINGE ANY THIRD PARTY PATENTS, COPYRIGHTS, +TRADEMARKS OR OTHER RIGHTS.

+ +

COPYRIGHT HOLDERS WILL NOT BE LIABLE FOR ANY DIRECT, INDIRECT, SPECIAL OR CONSEQUENTIAL +DAMAGES ARISING OUT OF ANY USE OF THE DOCUMENT OR THE PERFORMANCE OR IMPLEMENTATION OF THE +CONTENTS THEREOF.

+ +

The name and trademarks of copyright holders may NOT be used in advertising or +publicity pertaining to this document or its contents without specific, written prior +permission. Title to copyright in this document will at all times remain with copyright +holders.

+ +

----------------------------------------------------------------------------

+ +

This formulation of W3C's notice and license became active on April 05 1999 so as to +account for the treatment of DTDs, schema's and bindings. See the older formulation for the policy prior to +this date. Please see our Copyright FAQ for common questions +about using materials from our site, including specific terms and conditions for packages +like libwww, Amaya, and Jigsaw. Other questions about this notice can be directed to site-policy@w3.org.

+ +
+ webmaster
+ (last updated by reagle on 1999/04/99.) +
+ + diff --git a/test/W3C_SVG_12_TinyTestSuite_beta/images/diagarrow.png b/test/W3C_SVG_12_TinyTestSuite_beta/images/diagarrow.png new file mode 100755 index 00000000..4cd284e8 Binary files /dev/null and b/test/W3C_SVG_12_TinyTestSuite_beta/images/diagarrow.png differ diff --git a/test/W3C_SVG_12_TinyTestSuite_beta/images/disco.jpg b/test/W3C_SVG_12_TinyTestSuite_beta/images/disco.jpg new file mode 100755 index 00000000..74e14beb Binary files /dev/null and b/test/W3C_SVG_12_TinyTestSuite_beta/images/disco.jpg differ diff --git a/test/W3C_SVG_12_TinyTestSuite_beta/images/dogandball.3gp b/test/W3C_SVG_12_TinyTestSuite_beta/images/dogandball.3gp new file mode 100755 index 00000000..bc670791 Binary files /dev/null and b/test/W3C_SVG_12_TinyTestSuite_beta/images/dogandball.3gp differ diff --git a/test/W3C_SVG_12_TinyTestSuite_beta/images/dogandball.jpg b/test/W3C_SVG_12_TinyTestSuite_beta/images/dogandball.jpg new file mode 100755 index 00000000..67d5205a Binary files /dev/null and b/test/W3C_SVG_12_TinyTestSuite_beta/images/dogandball.jpg differ diff --git a/test/W3C_SVG_12_TinyTestSuite_beta/images/duckfeeding.3gp b/test/W3C_SVG_12_TinyTestSuite_beta/images/duckfeeding.3gp new file mode 100755 index 00000000..65421549 Binary files /dev/null and b/test/W3C_SVG_12_TinyTestSuite_beta/images/duckfeeding.3gp differ diff --git a/test/W3C_SVG_12_TinyTestSuite_beta/images/duckfeeding.mov b/test/W3C_SVG_12_TinyTestSuite_beta/images/duckfeeding.mov new file mode 100755 index 00000000..77c73443 Binary files /dev/null and b/test/W3C_SVG_12_TinyTestSuite_beta/images/duckfeeding.mov differ diff --git a/test/W3C_SVG_12_TinyTestSuite_beta/images/excuse_me.wav b/test/W3C_SVG_12_TinyTestSuite_beta/images/excuse_me.wav new file mode 100755 index 00000000..1ce8d49d Binary files /dev/null and b/test/W3C_SVG_12_TinyTestSuite_beta/images/excuse_me.wav differ diff --git a/test/W3C_SVG_12_TinyTestSuite_beta/images/ext-TestComic.svg b/test/W3C_SVG_12_TinyTestSuite_beta/images/ext-TestComic.svg new file mode 100755 index 00000000..19ad7bc1 --- /dev/null +++ b/test/W3C_SVG_12_TinyTestSuite_beta/images/ext-TestComic.svg @@ -0,0 +1,21 @@ + + + + + + + + + + + + + + + + + + + + + diff --git a/test/W3C_SVG_12_TinyTestSuite_beta/images/externalscript.js b/test/W3C_SVG_12_TinyTestSuite_beta/images/externalscript.js new file mode 100755 index 00000000..cc0392c6 --- /dev/null +++ b/test/W3C_SVG_12_TinyTestSuite_beta/images/externalscript.js @@ -0,0 +1 @@ +document.getElementById("status").setAttribute("fill", "green"); \ No newline at end of file diff --git a/test/W3C_SVG_12_TinyTestSuite_beta/images/fail.svg b/test/W3C_SVG_12_TinyTestSuite_beta/images/fail.svg new file mode 100755 index 00000000..dd3c39b9 --- /dev/null +++ b/test/W3C_SVG_12_TinyTestSuite_beta/images/fail.svg @@ -0,0 +1,35 @@ + + + + + + + + + + + + Document indicating test failure + + + + + + + + + FAIL + + + $Revision: 1.1 $ + + + diff --git a/test/W3C_SVG_12_TinyTestSuite_beta/images/filters-blend-01-f.svg b/test/W3C_SVG_12_TinyTestSuite_beta/images/filters-blend-01-f.svg new file mode 100755 index 00000000..181b2113 --- /dev/null +++ b/test/W3C_SVG_12_TinyTestSuite_beta/images/filters-blend-01-f.svg @@ -0,0 +1,128 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + Verify correct operation of the five compositing modes + of the feBlend filter primitive. Five text strings + blended into a gradient, with one text string for each of + the five feBlend modes. The string indicates the blend + mode. + + + The rendered picture should match the reference image + exactly, except for possible variations in the + labelling text (per CSS2 rules). + + + The test uses a nested 'svg' element, 'text' element, + the 'enable-background' property, and linear gradients.as + well as basic fill (solid primary colors), stroke (solid + primary colors with stroke-width lines), font-family + (Helvetica) and font-size properties. + + + + filters-blend-01-f + Overall filter effects test case. Extracted from example filters00 in the March 3, 2000 spec. + + + + + + + Examples of the five + feBlend modes. + Five text strings blended + into a gradient, with one + text string for each of the + five feBlend modes. The + string indicates the blend + mode. + + + + Example feBlend - Examples of feBlend modes + Five text strings blended into a gradient, with one text string for each of the five feBlend modes. + + + + + + + + + + + + + + + + + + + + + + + + + + + + Normal + Multiply + Screen + Darken + Lighten + + + + + + + + + + + Scalable Vector Graphics (SVG) v1.1 Conformance Suite + + Copyright 2002 W3C. All Rights Reserved. + + filters-blend-01 + $Revision: 1.1 $ + Release 1.0 + + + \ No newline at end of file diff --git a/test/W3C_SVG_12_TinyTestSuite_beta/images/filters-color-01-f.svg b/test/W3C_SVG_12_TinyTestSuite_beta/images/filters-color-01-f.svg new file mode 100755 index 00000000..3f7e90d5 --- /dev/null +++ b/test/W3C_SVG_12_TinyTestSuite_beta/images/filters-color-01-f.svg @@ -0,0 +1,121 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + Test which verifies the basic facilities of + feColorMatrix. + + + This test uses the following elements : a nested + <svg> with a viewBox attribute, <linearGradient>, + <filter>, <feColorMatrix>, <feComposite> + + + The test case shows five rectangles filled with a + gradient showing the effects of feColorMatrix: an + unfiltered rectangle acting as a reference, use of the + feColorMatrix matrix option to convert to grayscale, + use of the feColorMatrix saturate option, use of the + feColorMatrix hueRotate option, and use of the + feColorMatrix luminanceToAlpha option. + + + The test is somewhat self-explanatory as the strings + document the type of feColorMatrix operation that is + being used. + + + + filters-color-01-f + Test which verifies the basic facilities of feColorMatrix. + + + + + + Example feColorMatrix - Examples of feColorMatrix operations + Five rectangles filled with a gradient showing the effects of feColorMatrix: an unfiltered rectangle acting as a reference, use of the feColorMatrix matrix option to convert to grayscale, use of the feColorMatrix saturate option, use of the feColorMatrix hueRotate option, and use of the feColorMatrix luminanceToAlpha option. + + + + + + + + + + + + + + + + + + + + + + + + + Unfiltered + + type="matrix" (grayscale matrix) + + type="saturate" values=".4" + + type="hueRotate" values="90" + + type="luminanceToAlpha" + + + + + + + + + + Scalable Vector Graphics (SVG) v1.1 Conformance Suite + + Copyright 2002 W3C. All Rights Reserved. + + filters-color-01 + $Revision: 1.1 $ + Release 1.0 + + + diff --git a/test/W3C_SVG_12_TinyTestSuite_beta/images/filters-composite-01-f.svg b/test/W3C_SVG_12_TinyTestSuite_beta/images/filters-composite-01-f.svg new file mode 100755 index 00000000..962b6ce1 --- /dev/null +++ b/test/W3C_SVG_12_TinyTestSuite_beta/images/filters-composite-01-f.svg @@ -0,0 +1,188 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + Test which verifies the basic facilities of feComposite. + + + This test uses the following elements: <path>, <use>, + <linearGradient>, <filter> with, an enable-background + attribute, <feFlood>, <feComposite>, <feMerge> + + + The test case shows six pairs of overlapping triangles + depicting the six different feComposite operators. The + first row shows compositing when both triangles have + opacity=1. The second row shows compositing when both + triangles have opacity=.5. The six columns illustrate the + six types of compositing operations. + + + + filters-composite-01-f + Test which verifies the basic facilities of feComposite. + + + + + Example feComposite - Examples of feComposite operations + Six pairs of overlapping triangles depicting the six different feComposite operators. + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + opacity 1.0 + opacity 0.5 + + + + + + + + over + + + + + + + + + in + + + + + + + + + out + + + + + + + + + atop + + + + + + + + + xor + + + + + + + + + arithmetic + + + + + + + + + + Scalable Vector Graphics (SVG) v1.1 Conformance Suite + + Copyright 2002 W3C. All Rights Reserved. + + filters-composite-01 + $Revision: 1.1 $ + Release 1.0 + + + diff --git a/test/W3C_SVG_12_TinyTestSuite_beta/images/filters-comptran-01-f.svg b/test/W3C_SVG_12_TinyTestSuite_beta/images/filters-comptran-01-f.svg new file mode 100755 index 00000000..dc008753 --- /dev/null +++ b/test/W3C_SVG_12_TinyTestSuite_beta/images/filters-comptran-01-f.svg @@ -0,0 +1,132 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + Test which verifies the basic facilities of + feComponentTransfer. + + + This test uses the following elements : a nested <svg> + with a viewBox attribute, <linearGradient>, <filter>, + <feComponentTransfer> + + + The test case shows four rectangles filled with a + gradient showing the effects of feComponentTransfer: an + identity function acting as a reference, use of the + feComponentTransfer table option, use of the + feComponentTransfer linear option, and use of the + feComponentTransfer gamma option. + + + The test is somewhat self-explanatory as the strings + document the type of feComponentTransfer operation that + is being used. + + + + filters-comptran-01-f + Test which verifies the basic facilities of feComponentTransfer. + + + + + + Example feComponentTransfer - Examples of feComponentTransfer operations + Four rectangles filled with a gradient showing the effects of feComponentTransfer: an identity function acting as a reference, use of the feComponentTransfer table option, use of the feComponentTransfer linear option, and use of the feComponentTransfer gamma option. + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + type="identity" + + type="table" + + type="linear" slope=".5" intercepts:.25/0/.5 + + type="gamma" amplitude="2" exponents:5/3/1 + + + + + + + + + + Scalable Vector Graphics (SVG) v1.1 Conformance Suite + + Copyright 2002 W3C. All Rights Reserved. + + filters-comptran-01 + $Revision: 1.1 $ + Release 1.0 + + + diff --git a/test/W3C_SVG_12_TinyTestSuite_beta/images/filters-conv-01-f.includeimage.png b/test/W3C_SVG_12_TinyTestSuite_beta/images/filters-conv-01-f.includeimage.png new file mode 100755 index 00000000..f8fb8523 Binary files /dev/null and b/test/W3C_SVG_12_TinyTestSuite_beta/images/filters-conv-01-f.includeimage.png differ diff --git a/test/W3C_SVG_12_TinyTestSuite_beta/images/filters-conv-01-f.svg b/test/W3C_SVG_12_TinyTestSuite_beta/images/filters-conv-01-f.svg new file mode 100755 index 00000000..8fbd2771 --- /dev/null +++ b/test/W3C_SVG_12_TinyTestSuite_beta/images/filters-conv-01-f.svg @@ -0,0 +1,121 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + Test which verifies the basic facilities of + feConvolveMatrix. + + + This test defines six filters that exercise traditional + convolutions: uniform blur, vertical and horizontal + blurs, edge detection, embossing and sharpening. Note + that the edge detection filter produces a fully + transparent image because the alpha chanel is convolved + and produces 0 values. + + + + filters-conv-01-f + Test which verifies the basic facilities of feConvolveMatrix. + + + + + + + + + + + + + + + + + + + + + + + + + + + + Blur (3x3) + + + + Edge Detection (3x3) + + + + Sharpening (3x3) + + + + Embossing (3x3) + + + + Horizontal blur (3x1) + + + + Vertical blur (1x3) + + + + + + + + + + + + + Scalable Vector Graphics (SVG) v1.1 Conformance Suite + + Copyright 2002 W3C. All Rights Reserved. + + filters-conv-01 + $Revision: 1.1 $ + Release 1.0 + + + diff --git a/test/W3C_SVG_12_TinyTestSuite_beta/images/filters-diffuse-01-f.svg b/test/W3C_SVG_12_TinyTestSuite_beta/images/filters-diffuse-01-f.svg new file mode 100755 index 00000000..7829e153 --- /dev/null +++ b/test/W3C_SVG_12_TinyTestSuite_beta/images/filters-diffuse-01-f.svg @@ -0,0 +1,172 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + Verify the basic operation of the feDiffuseLighting + element. The test shows three rows of 3 images. Each + rows tests a different aspect of the filter and shows + the result of the filtering operation. + + + The first row shows the result of varying the + surfaceScale attribute. The second row shows the result + of varying the diffuse constant (kd) attribute. The last + row shows the result of varying the lighting-color + property. + + + The rendered picture should match the reference image. + + + + filters-diffuse-01-f + Validates operation of the feDiffuseLighting filter + + + + + + Filters: feDiffuseLighting + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + Various values for surfaceScale: 1, 10 and -10 + + + + + + + Various values for diffuseConstants: 0, 1 and 2 + + + + + + + Various values for lighting color: red, yellow and blue + + + + + + + + + + + + + + + + Scalable Vector Graphics (SVG) v1.1 Conformance Suite + + Copyright 2002 W3C. All Rights Reserved. + + filters-diffuse-01 + $Revision: 1.1 $ + Release 1.0 + + + diff --git a/test/W3C_SVG_12_TinyTestSuite_beta/images/filters-example-01-f.svg b/test/W3C_SVG_12_TinyTestSuite_beta/images/filters-example-01-f.svg new file mode 100755 index 00000000..3f966589 --- /dev/null +++ b/test/W3C_SVG_12_TinyTestSuite_beta/images/filters-example-01-f.svg @@ -0,0 +1,120 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + Verify that a typical usage of filtering is operation. + This test case creates a 3D lightiing effect and requires + that several filters are working: feGaussianBlur, feOffset, + feSpecularLighting, feComposite and feMerge. The graphic + consisting of the string "SVG" sitting on top of oval + filled in red and surrounded by an oval outlined in red. + + + The rendered picture should match the reference image + exactly, except for possible variations in the labelling + text (per CSS2 rules). + + + The test uses a nested 'svg' element, 'rect' element, + 'path' element, as well as basic fill (solid primary + colors), stroke (solid primary colors with stroke-width + lines), font-family (Helvetica) and font-size properties. + + + + filters-example-01-f + Overall filter effects test case. Extracted from example filters00 in the March 3, 2000 spec. + + + + + + A single filter that uses a combination of filter primitives. You should see + a gray rectangle. Inside, there is an outer ring and an inner button with + "SVG" on it, both in red with a 3D appearance and a lighting effect. + + + + + Example filters01.svg - introducing filter effects + An example which combines multiple filter primitives to produce a 3D lighting effect on a graphic consisting of the string "SVG" sitting on top of oval filled in red and surrounded by an oval outlined in red. + + + + + + + + + + + + + + + + + + + + + + SVG + + + + + + + + + + + + Scalable Vector Graphics (SVG) v1.1 Conformance Suite + + Copyright 2002 W3C. All Rights Reserved. + + filters-example-01 + $Revision: 1.1 $ + Release 1.0 + + + diff --git a/test/W3C_SVG_12_TinyTestSuite_beta/images/focus-resource.svg b/test/W3C_SVG_12_TinyTestSuite_beta/images/focus-resource.svg new file mode 100755 index 00000000..4f26fca1 --- /dev/null +++ b/test/W3C_SVG_12_TinyTestSuite_beta/images/focus-resource.svg @@ -0,0 +1,22 @@ + + + + + + + + + + There once was a curious frog + Who sat by a pond on a log + And, to see what resulted, + In the pond catapulted + With a water-noise heard round the bog. + + + + + + + This file only contains fragments used from other files + diff --git a/test/W3C_SVG_12_TinyTestSuite_beta/images/galpha.png b/test/W3C_SVG_12_TinyTestSuite_beta/images/galpha.png new file mode 100755 index 00000000..0698cdf8 Binary files /dev/null and b/test/W3C_SVG_12_TinyTestSuite_beta/images/galpha.png differ diff --git a/test/W3C_SVG_12_TinyTestSuite_beta/images/gam030.png b/test/W3C_SVG_12_TinyTestSuite_beta/images/gam030.png new file mode 100755 index 00000000..904c9721 Binary files /dev/null and b/test/W3C_SVG_12_TinyTestSuite_beta/images/gam030.png differ diff --git a/test/W3C_SVG_12_TinyTestSuite_beta/images/gam030b.png b/test/W3C_SVG_12_TinyTestSuite_beta/images/gam030b.png new file mode 100755 index 00000000..90e71847 Binary files /dev/null and b/test/W3C_SVG_12_TinyTestSuite_beta/images/gam030b.png differ diff --git a/test/W3C_SVG_12_TinyTestSuite_beta/images/gam045.png b/test/W3C_SVG_12_TinyTestSuite_beta/images/gam045.png new file mode 100755 index 00000000..b649a8a5 Binary files /dev/null and b/test/W3C_SVG_12_TinyTestSuite_beta/images/gam045.png differ diff --git a/test/W3C_SVG_12_TinyTestSuite_beta/images/gam045b.png b/test/W3C_SVG_12_TinyTestSuite_beta/images/gam045b.png new file mode 100755 index 00000000..9885e339 Binary files /dev/null and b/test/W3C_SVG_12_TinyTestSuite_beta/images/gam045b.png differ diff --git a/test/W3C_SVG_12_TinyTestSuite_beta/images/gam056.png b/test/W3C_SVG_12_TinyTestSuite_beta/images/gam056.png new file mode 100755 index 00000000..e5f959dc Binary files /dev/null and b/test/W3C_SVG_12_TinyTestSuite_beta/images/gam056.png differ diff --git a/test/W3C_SVG_12_TinyTestSuite_beta/images/gam056b.png b/test/W3C_SVG_12_TinyTestSuite_beta/images/gam056b.png new file mode 100755 index 00000000..32af5b3a Binary files /dev/null and b/test/W3C_SVG_12_TinyTestSuite_beta/images/gam056b.png differ diff --git a/test/W3C_SVG_12_TinyTestSuite_beta/images/gam100.png b/test/W3C_SVG_12_TinyTestSuite_beta/images/gam100.png new file mode 100755 index 00000000..6c7ba5f1 Binary files /dev/null and b/test/W3C_SVG_12_TinyTestSuite_beta/images/gam100.png differ diff --git a/test/W3C_SVG_12_TinyTestSuite_beta/images/gam100b.png b/test/W3C_SVG_12_TinyTestSuite_beta/images/gam100b.png new file mode 100755 index 00000000..a3e91e0e Binary files /dev/null and b/test/W3C_SVG_12_TinyTestSuite_beta/images/gam100b.png differ diff --git a/test/W3C_SVG_12_TinyTestSuite_beta/images/gam200.png b/test/W3C_SVG_12_TinyTestSuite_beta/images/gam200.png new file mode 100755 index 00000000..daa20fcb Binary files /dev/null and b/test/W3C_SVG_12_TinyTestSuite_beta/images/gam200.png differ diff --git a/test/W3C_SVG_12_TinyTestSuite_beta/images/gam200b.png b/test/W3C_SVG_12_TinyTestSuite_beta/images/gam200b.png new file mode 100755 index 00000000..2c337d8f Binary files /dev/null and b/test/W3C_SVG_12_TinyTestSuite_beta/images/gam200b.png differ diff --git a/test/W3C_SVG_12_TinyTestSuite_beta/images/ghost.svg b/test/W3C_SVG_12_TinyTestSuite_beta/images/ghost.svg new file mode 100755 index 00000000..f2303b1b --- /dev/null +++ b/test/W3C_SVG_12_TinyTestSuite_beta/images/ghost.svg @@ -0,0 +1,105 @@ + + + + + + animate-motion-03-t-dt.svg + 2002 BitFlash + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + 0 sec. + + 6+ sec. + + + + rotate='90' + + + 0 sec. + + 6+ sec. + + + + rotate='auto' + + Prev + + + + Index + + + + Next + + \ No newline at end of file diff --git a/test/W3C_SVG_12_TinyTestSuite_beta/images/greentopbutton.jpg b/test/W3C_SVG_12_TinyTestSuite_beta/images/greentopbutton.jpg new file mode 100755 index 00000000..be33a3ce Binary files /dev/null and b/test/W3C_SVG_12_TinyTestSuite_beta/images/greentopbutton.jpg differ diff --git a/test/W3C_SVG_12_TinyTestSuite_beta/images/greentopbutton1.jpg b/test/W3C_SVG_12_TinyTestSuite_beta/images/greentopbutton1.jpg new file mode 100755 index 00000000..be33a3ce Binary files /dev/null and b/test/W3C_SVG_12_TinyTestSuite_beta/images/greentopbutton1.jpg differ diff --git a/test/W3C_SVG_12_TinyTestSuite_beta/images/greentopbutton2.jpg b/test/W3C_SVG_12_TinyTestSuite_beta/images/greentopbutton2.jpg new file mode 100755 index 00000000..be33a3ce Binary files /dev/null and b/test/W3C_SVG_12_TinyTestSuite_beta/images/greentopbutton2.jpg differ diff --git a/test/W3C_SVG_12_TinyTestSuite_beta/images/greentopbutton3.jpg b/test/W3C_SVG_12_TinyTestSuite_beta/images/greentopbutton3.jpg new file mode 100755 index 00000000..be33a3ce Binary files /dev/null and b/test/W3C_SVG_12_TinyTestSuite_beta/images/greentopbutton3.jpg differ diff --git a/test/W3C_SVG_12_TinyTestSuite_beta/images/greentopbutton4.jpg b/test/W3C_SVG_12_TinyTestSuite_beta/images/greentopbutton4.jpg new file mode 100755 index 00000000..be33a3ce Binary files /dev/null and b/test/W3C_SVG_12_TinyTestSuite_beta/images/greentopbutton4.jpg differ diff --git a/test/W3C_SVG_12_TinyTestSuite_beta/images/heroesLanding.3gp b/test/W3C_SVG_12_TinyTestSuite_beta/images/heroesLanding.3gp new file mode 100755 index 00000000..605ba43d Binary files /dev/null and b/test/W3C_SVG_12_TinyTestSuite_beta/images/heroesLanding.3gp differ diff --git a/test/W3C_SVG_12_TinyTestSuite_beta/images/image.png b/test/W3C_SVG_12_TinyTestSuite_beta/images/image.png new file mode 100755 index 00000000..01b57924 Binary files /dev/null and b/test/W3C_SVG_12_TinyTestSuite_beta/images/image.png differ diff --git a/test/W3C_SVG_12_TinyTestSuite_beta/images/image1.jpg b/test/W3C_SVG_12_TinyTestSuite_beta/images/image1.jpg new file mode 100755 index 00000000..40c1b258 Binary files /dev/null and b/test/W3C_SVG_12_TinyTestSuite_beta/images/image1.jpg differ diff --git a/test/W3C_SVG_12_TinyTestSuite_beta/images/image1.png b/test/W3C_SVG_12_TinyTestSuite_beta/images/image1.png new file mode 100755 index 00000000..fa37f6d6 Binary files /dev/null and b/test/W3C_SVG_12_TinyTestSuite_beta/images/image1.png differ diff --git a/test/W3C_SVG_12_TinyTestSuite_beta/images/image1_b.png b/test/W3C_SVG_12_TinyTestSuite_beta/images/image1_b.png new file mode 100755 index 00000000..01970226 Binary files /dev/null and b/test/W3C_SVG_12_TinyTestSuite_beta/images/image1_b.png differ diff --git a/test/W3C_SVG_12_TinyTestSuite_beta/images/image2/bread2.png b/test/W3C_SVG_12_TinyTestSuite_beta/images/image2/bread2.png new file mode 100755 index 00000000..4f205556 Binary files /dev/null and b/test/W3C_SVG_12_TinyTestSuite_beta/images/image2/bread2.png differ diff --git a/test/W3C_SVG_12_TinyTestSuite_beta/images/image2/xlink1.svg b/test/W3C_SVG_12_TinyTestSuite_beta/images/image2/xlink1.svg new file mode 100755 index 00000000..3458af7e --- /dev/null +++ b/test/W3C_SVG_12_TinyTestSuite_beta/images/image2/xlink1.svg @@ -0,0 +1,9 @@ + + + + + + + + diff --git a/test/W3C_SVG_12_TinyTestSuite_beta/images/image2_b.jpg b/test/W3C_SVG_12_TinyTestSuite_beta/images/image2_b.jpg new file mode 100755 index 00000000..b9cf8629 Binary files /dev/null and b/test/W3C_SVG_12_TinyTestSuite_beta/images/image2_b.jpg differ diff --git a/test/W3C_SVG_12_TinyTestSuite_beta/images/image2_b.png b/test/W3C_SVG_12_TinyTestSuite_beta/images/image2_b.png new file mode 100755 index 00000000..0b846492 Binary files /dev/null and b/test/W3C_SVG_12_TinyTestSuite_beta/images/image2_b.png differ diff --git a/test/W3C_SVG_12_TinyTestSuite_beta/images/interact-dom-01-f.svg b/test/W3C_SVG_12_TinyTestSuite_beta/images/interact-dom-01-f.svg new file mode 100755 index 00000000..a1d08aa8 --- /dev/null +++ b/test/W3C_SVG_12_TinyTestSuite_beta/images/interact-dom-01-f.svg @@ -0,0 +1,148 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + Verify basic support for DOM event listener registration. The root svg element + has an onload handler where a click event listener is registered on group element 'Start Button'. + + + If UI events listener registration is supported (and UI events), + when the user clicks on the button a text node is inserted reading "UI Event Listeners supported". + + + At the end of the test, the start test button in changed to pink, + and the click event listener is removed from the the start button. + + + Subsequent clicks on the start button should cause no effect if + the event listener has been removed successfully. + If additional lines of text appear in the document that say "UI Event Listeners supported", + then the implementation has not successfully removed the event listener. + + + After clicking at least once on the button, + the rendered image should be exactly as the reference image, except for + differences in text display. + + + + + + interact-dom-01-f + Checks if DOM/ECMA Script binding is supported. Checks that the DOM API +supports event listener registration/unregistration. + + + + + + + + + + + + + Start Test + + + + + + + + + + Scalable Vector Graphics (SVG) v1.1 Conformance Suite + + Copyright 2002 W3C. All Rights Reserved. + + interact-dom-01-f + $Revision: 1.1 $ + Release 1.0 + + + diff --git a/test/W3C_SVG_12_TinyTestSuite_beta/images/interact-order-02-t-targ.svg b/test/W3C_SVG_12_TinyTestSuite_beta/images/interact-order-02-t-targ.svg new file mode 100755 index 00000000..854f37c3 --- /dev/null +++ b/test/W3C_SVG_12_TinyTestSuite_beta/images/interact-order-02-t-targ.svg @@ -0,0 +1,70 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + $RCSfile: interact-order-02-t-targ.svg,v $ + + File that just serves as hyperlink target for test case + interact-order-05-t.svg. + + + + + + + + + + + + Hyperlink target for + + + interact-order-05-t.svg + + + + + + + + + + Click to hyperlink back to + + + interact-order-05-t.svg + + + + + diff --git a/test/W3C_SVG_12_TinyTestSuite_beta/images/interact-order-03-t-targ.svg b/test/W3C_SVG_12_TinyTestSuite_beta/images/interact-order-03-t-targ.svg new file mode 100755 index 00000000..9039f417 --- /dev/null +++ b/test/W3C_SVG_12_TinyTestSuite_beta/images/interact-order-03-t-targ.svg @@ -0,0 +1,71 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + $RCSfile: interact-order-03-t-targ.svg,v $ + + File that just serves as hyperlink target for test case + interact-order-06-t.svg. + + + + + + + + + + + + Hyperlink target for + + + interact-order-06-t.svg. + + + + + + + + + + Click to hyperlink back to + + + interact-order-06-t.svg. + + + + + diff --git a/test/W3C_SVG_12_TinyTestSuite_beta/images/leftarrow.png b/test/W3C_SVG_12_TinyTestSuite_beta/images/leftarrow.png new file mode 100755 index 00000000..07fb487b Binary files /dev/null and b/test/W3C_SVG_12_TinyTestSuite_beta/images/leftarrow.png differ diff --git a/test/W3C_SVG_12_TinyTestSuite_beta/images/linking-uri-01-b.svg b/test/W3C_SVG_12_TinyTestSuite_beta/images/linking-uri-01-b.svg new file mode 100755 index 00000000..febc3cb7 --- /dev/null +++ b/test/W3C_SVG_12_TinyTestSuite_beta/images/linking-uri-01-b.svg @@ -0,0 +1,88 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + linking-uri-01-b + Link test of the 'view' element and its attributes, 1 of 2, internal. + + + + + Link test of the 'view' element and its attributes, 1 of 2, internal. + + + + Go to Rectangle + + + Go to Ellipse + + + Go to Circle + + + Go to Polygon + + Click element's line + to link to its view + + + + + + Rectangle + + No view attributes except id. + + + + Ellipse + + viewBox, should fill frame. + + + + Circle + + viewBox & non-uniform + preserveAspectRatio + + + + Polygon + + viewTarget, should + highlight polygon + + + $Revision: 1.1 $ + + diff --git a/test/W3C_SVG_12_TinyTestSuite_beta/images/linking-uri-01-f-1st.png b/test/W3C_SVG_12_TinyTestSuite_beta/images/linking-uri-01-f-1st.png new file mode 100755 index 00000000..60a63b41 Binary files /dev/null and b/test/W3C_SVG_12_TinyTestSuite_beta/images/linking-uri-01-f-1st.png differ diff --git a/test/W3C_SVG_12_TinyTestSuite_beta/images/linking-uri-01-f-2nd.png b/test/W3C_SVG_12_TinyTestSuite_beta/images/linking-uri-01-f-2nd.png new file mode 100755 index 00000000..b67b0916 Binary files /dev/null and b/test/W3C_SVG_12_TinyTestSuite_beta/images/linking-uri-01-f-2nd.png differ diff --git a/test/W3C_SVG_12_TinyTestSuite_beta/images/linking-uri-01-f-3rd.png b/test/W3C_SVG_12_TinyTestSuite_beta/images/linking-uri-01-f-3rd.png new file mode 100755 index 00000000..b67b0916 Binary files /dev/null and b/test/W3C_SVG_12_TinyTestSuite_beta/images/linking-uri-01-f-3rd.png differ diff --git a/test/W3C_SVG_12_TinyTestSuite_beta/images/linking-uri-01-f-4th.png b/test/W3C_SVG_12_TinyTestSuite_beta/images/linking-uri-01-f-4th.png new file mode 100755 index 00000000..f6083419 Binary files /dev/null and b/test/W3C_SVG_12_TinyTestSuite_beta/images/linking-uri-01-f-4th.png differ diff --git a/test/W3C_SVG_12_TinyTestSuite_beta/images/linking-uri-01-f-start.png b/test/W3C_SVG_12_TinyTestSuite_beta/images/linking-uri-01-f-start.png new file mode 100755 index 00000000..b67b0916 Binary files /dev/null and b/test/W3C_SVG_12_TinyTestSuite_beta/images/linking-uri-01-f-start.png differ diff --git a/test/W3C_SVG_12_TinyTestSuite_beta/images/linking-uri-03-f-1st.png b/test/W3C_SVG_12_TinyTestSuite_beta/images/linking-uri-03-f-1st.png new file mode 100755 index 00000000..84bff579 Binary files /dev/null and b/test/W3C_SVG_12_TinyTestSuite_beta/images/linking-uri-03-f-1st.png differ diff --git a/test/W3C_SVG_12_TinyTestSuite_beta/images/linking-uri-03-f-start.png b/test/W3C_SVG_12_TinyTestSuite_beta/images/linking-uri-03-f-start.png new file mode 100755 index 00000000..9e3599f8 Binary files /dev/null and b/test/W3C_SVG_12_TinyTestSuite_beta/images/linking-uri-03-f-start.png differ diff --git a/test/W3C_SVG_12_TinyTestSuite_beta/images/linkingCircle-f.svg b/test/W3C_SVG_12_TinyTestSuite_beta/images/linkingCircle-f.svg new file mode 100755 index 00000000..27898204 --- /dev/null +++ b/test/W3C_SVG_12_TinyTestSuite_beta/images/linkingCircle-f.svg @@ -0,0 +1,32 @@ + + + + + + + linkingCircle-f.svg + Some circles with ids, for linking tests. + + + + + + + + + Some circles with ids, for linking tests. + + circle-1 + + circle-2 + + + + circle-3 + + + + + + diff --git a/test/W3C_SVG_12_TinyTestSuite_beta/images/linkingToc-t.svg b/test/W3C_SVG_12_TinyTestSuite_beta/images/linkingToc-t.svg new file mode 100755 index 00000000..ee01e753 --- /dev/null +++ b/test/W3C_SVG_12_TinyTestSuite_beta/images/linkingToc-t.svg @@ -0,0 +1,63 @@ + + + + + + + + + + + + + + + + + + + + + TOC & index of linking tests. + + + + + 1.) linking-a-04-t: Verify basic links out of SVG content ('a'). + + + + + + 2.) linking-uri-03-t: Verify handling of xlink attributes on 'a'. + + + + + + 3.) linking-a-02-b: Verify links into SVG content and fragment syntax. + + + + + + 4.) linking-uri-01-b: Verify 'view' element handling. + + + + + + 5.) linking-uri-02-b: Verify 'view' element handling (companion to linking-uri-01-f). + + + + + [Note. This is not a linking test, but a supplemental file and link + + + target for other linking tests.] + + + + + diff --git a/test/W3C_SVG_12_TinyTestSuite_beta/images/magnify.png b/test/W3C_SVG_12_TinyTestSuite_beta/images/magnify.png new file mode 100755 index 00000000..57135774 Binary files /dev/null and b/test/W3C_SVG_12_TinyTestSuite_beta/images/magnify.png differ diff --git a/test/W3C_SVG_12_TinyTestSuite_beta/images/makealpha.svg b/test/W3C_SVG_12_TinyTestSuite_beta/images/makealpha.svg new file mode 100755 index 00000000..aab190c8 --- /dev/null +++ b/test/W3C_SVG_12_TinyTestSuite_beta/images/makealpha.svg @@ -0,0 +1,34 @@ + + + + + Makes a simple graphic for testing alpha transparency + + + + + + + + + + + + + + + + + + + + + + diff --git a/test/W3C_SVG_12_TinyTestSuite_beta/images/myimage.jpg b/test/W3C_SVG_12_TinyTestSuite_beta/images/myimage.jpg new file mode 100755 index 00000000..16009ed1 Binary files /dev/null and b/test/W3C_SVG_12_TinyTestSuite_beta/images/myimage.jpg differ diff --git a/test/W3C_SVG_12_TinyTestSuite_beta/images/nav_bullet.png b/test/W3C_SVG_12_TinyTestSuite_beta/images/nav_bullet.png new file mode 100755 index 00000000..f2f7c1f9 Binary files /dev/null and b/test/W3C_SVG_12_TinyTestSuite_beta/images/nav_bullet.png differ diff --git a/test/W3C_SVG_12_TinyTestSuite_beta/images/nav_down.png b/test/W3C_SVG_12_TinyTestSuite_beta/images/nav_down.png new file mode 100755 index 00000000..0e8fb8e1 Binary files /dev/null and b/test/W3C_SVG_12_TinyTestSuite_beta/images/nav_down.png differ diff --git a/test/W3C_SVG_12_TinyTestSuite_beta/images/nav_downleft.png b/test/W3C_SVG_12_TinyTestSuite_beta/images/nav_downleft.png new file mode 100755 index 00000000..8405698b Binary files /dev/null and b/test/W3C_SVG_12_TinyTestSuite_beta/images/nav_downleft.png differ diff --git a/test/W3C_SVG_12_TinyTestSuite_beta/images/nav_downright.png b/test/W3C_SVG_12_TinyTestSuite_beta/images/nav_downright.png new file mode 100755 index 00000000..83973937 Binary files /dev/null and b/test/W3C_SVG_12_TinyTestSuite_beta/images/nav_downright.png differ diff --git a/test/W3C_SVG_12_TinyTestSuite_beta/images/nav_frame.png b/test/W3C_SVG_12_TinyTestSuite_beta/images/nav_frame.png new file mode 100755 index 00000000..4eb974ab Binary files /dev/null and b/test/W3C_SVG_12_TinyTestSuite_beta/images/nav_frame.png differ diff --git a/test/W3C_SVG_12_TinyTestSuite_beta/images/nav_left.png b/test/W3C_SVG_12_TinyTestSuite_beta/images/nav_left.png new file mode 100755 index 00000000..818c5118 Binary files /dev/null and b/test/W3C_SVG_12_TinyTestSuite_beta/images/nav_left.png differ diff --git a/test/W3C_SVG_12_TinyTestSuite_beta/images/nav_noframe.png b/test/W3C_SVG_12_TinyTestSuite_beta/images/nav_noframe.png new file mode 100755 index 00000000..9c5c8724 Binary files /dev/null and b/test/W3C_SVG_12_TinyTestSuite_beta/images/nav_noframe.png differ diff --git a/test/W3C_SVG_12_TinyTestSuite_beta/images/nav_right.png b/test/W3C_SVG_12_TinyTestSuite_beta/images/nav_right.png new file mode 100755 index 00000000..bcc3eeab Binary files /dev/null and b/test/W3C_SVG_12_TinyTestSuite_beta/images/nav_right.png differ diff --git a/test/W3C_SVG_12_TinyTestSuite_beta/images/nav_svg.png b/test/W3C_SVG_12_TinyTestSuite_beta/images/nav_svg.png new file mode 100755 index 00000000..98bb21cb Binary files /dev/null and b/test/W3C_SVG_12_TinyTestSuite_beta/images/nav_svg.png differ diff --git a/test/W3C_SVG_12_TinyTestSuite_beta/images/nav_up.png b/test/W3C_SVG_12_TinyTestSuite_beta/images/nav_up.png new file mode 100755 index 00000000..bab586ca Binary files /dev/null and b/test/W3C_SVG_12_TinyTestSuite_beta/images/nav_up.png differ diff --git a/test/W3C_SVG_12_TinyTestSuite_beta/images/nav_upleft.png b/test/W3C_SVG_12_TinyTestSuite_beta/images/nav_upleft.png new file mode 100755 index 00000000..44e568b8 Binary files /dev/null and b/test/W3C_SVG_12_TinyTestSuite_beta/images/nav_upleft.png differ diff --git a/test/W3C_SVG_12_TinyTestSuite_beta/images/nav_upright.png b/test/W3C_SVG_12_TinyTestSuite_beta/images/nav_upright.png new file mode 100755 index 00000000..ffc2d925 Binary files /dev/null and b/test/W3C_SVG_12_TinyTestSuite_beta/images/nav_upright.png differ diff --git a/test/W3C_SVG_12_TinyTestSuite_beta/images/pacman.wav b/test/W3C_SVG_12_TinyTestSuite_beta/images/pacman.wav new file mode 100755 index 00000000..0478d2f7 Binary files /dev/null and b/test/W3C_SVG_12_TinyTestSuite_beta/images/pacman.wav differ diff --git a/test/W3C_SVG_12_TinyTestSuite_beta/images/paths-data-01-f.png b/test/W3C_SVG_12_TinyTestSuite_beta/images/paths-data-01-f.png new file mode 100755 index 00000000..3886e793 Binary files /dev/null and b/test/W3C_SVG_12_TinyTestSuite_beta/images/paths-data-01-f.png differ diff --git a/test/W3C_SVG_12_TinyTestSuite_beta/images/paths-data-01-f.svg b/test/W3C_SVG_12_TinyTestSuite_beta/images/paths-data-01-f.svg new file mode 100755 index 00000000..fe98a719 --- /dev/null +++ b/test/W3C_SVG_12_TinyTestSuite_beta/images/paths-data-01-f.svg @@ -0,0 +1,169 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + +Test that the viewer has the basic capability to handle the 'path' +element and its data (d) attribute in combination with the cubic +Bezier curveto commands, C, c, S, s (plus Mm and Zz). + + +There are 8 subtests, each composed from the cubic Bezier path commands per +the label by the subtest. On-curve control points (i.e., the curve position) +are marked by small blue squares. Subtests are filled, or stroked, or +both, using simple style properties and colors. + + +The rendered picture should match the reference image exactly, except for possible +variations in the labelling text (per CSS2 rules). + + +The test uses the 'rect' element, as well as basic fill (solid primary colors), +stroke (primary color 1-pixel lines), font-family (Helvetica) and font-size properties. + + + + paths-data-01-f + Test that the viewer has the basic capability to handle the 'path' element and data (d) attribute in combination with the cubic Bezier curveto, both regular and shorthand/smooth forms - C, c, S, s (along with Mm and Zz). + + + + + + + + Cubic bezier curves drawn with commands: + + + + + + + + + + + M, C, S, m, c, s + + + + + + + + + + + + M, c, c, c, C, z + + + + + + + + + + M, C, Z + + + + + + + + + + + M, C, c, Z + + + + + + + + + + + m, c, s + + + + + + + + + + M, C + + + + + + + + + + + + M, c, s, s, s, z + + + + + + + + + + m, c, z + + + + + + + + Scalable Vector Graphics (SVG) v1.1 Conformance Suite + + Copyright 2002 W3C. All Rights Reserved. + + paths-data-01-f + $Revision: 1.1 $ + Release 1.0 + + + diff --git a/test/W3C_SVG_12_TinyTestSuite_beta/images/paths-data-02-f.png b/test/W3C_SVG_12_TinyTestSuite_beta/images/paths-data-02-f.png new file mode 100755 index 00000000..968ed60d Binary files /dev/null and b/test/W3C_SVG_12_TinyTestSuite_beta/images/paths-data-02-f.png differ diff --git a/test/W3C_SVG_12_TinyTestSuite_beta/images/paths-data-02-f.svg b/test/W3C_SVG_12_TinyTestSuite_beta/images/paths-data-02-f.svg new file mode 100755 index 00000000..06473c6a --- /dev/null +++ b/test/W3C_SVG_12_TinyTestSuite_beta/images/paths-data-02-f.svg @@ -0,0 +1,143 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + +Test that the viewer has the basic capability to handle the 'path' +element and its data (d) attribute in combination with the quadratic +Bezier curveto commands, Q, q, T, t (plus Mm and Zz). + + +There are 7 subtests, each composed from the quadric Bezier path commands per +the label by the subtest. On-curve control points (i.e., the curve position) +are marked by small colored squares. Subtests are filled, or stroked, or +both, using simple style properties and colors. + + +The rendered picture should match the reference image exactly, except for possible +variations in the labelling text (per CSS2 rules). + + +The test uses the 'rect' element, as well as basic fill (solid primary colors), +stroke (primary color wide and 1-pixel lines), font-family (Helvetica) and font-size properties. + + + + paths-data-02-f + Test that the viewer has the basic capability to handle the 'path' element and data (d) attribute in combination with the quadratic Bezier curveto commands, both regular and shorthand/smooth forms - Q, q, T, t (along with Mm and Zz). + + + + + Quadric bezier curves drawn with commands: + + + + + M, Q, M, q, z + + + + + + + + + m, q, z, m, q, z + + + + + + + + + M, Q, Z + + + + + + + M, Q, T, Q, z + + + + + + + + + M, Q, Q, z + + + + + + + + M, q, t, t, t, t, z + + + + + + + + + + + M, q, Q, q, Q, z + + + + + + + + + + + + + Scalable Vector Graphics (SVG) v1.1 Conformance Suite + + Copyright 2002 W3C. All Rights Reserved. + + paths-data-02-f + $Revision: 1.1 $ + Release 1.0 + + + diff --git a/test/W3C_SVG_12_TinyTestSuite_beta/images/paths-data-03-f.png b/test/W3C_SVG_12_TinyTestSuite_beta/images/paths-data-03-f.png new file mode 100755 index 00000000..a5f466bc Binary files /dev/null and b/test/W3C_SVG_12_TinyTestSuite_beta/images/paths-data-03-f.png differ diff --git a/test/W3C_SVG_12_TinyTestSuite_beta/images/paths-data-03-f.svg b/test/W3C_SVG_12_TinyTestSuite_beta/images/paths-data-03-f.svg new file mode 100755 index 00000000..6e524d24 --- /dev/null +++ b/test/W3C_SVG_12_TinyTestSuite_beta/images/paths-data-03-f.svg @@ -0,0 +1,137 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + +Test that the viewer has the basic capability to handle the 'path' +element and its data (d) attribute in combination with the elliptical +arc curveto commands, A, a (plus Mm and Zz). + + +There are 6 subtests, each composed from the elliptical arc path commands per +the label by the subtest. The curve positions +are marked by small colored squares. Subtests are filled, or stroked, or +both, using simple style properties and colors. + + +The rendered picture should match the reference image exactly, except for possible +variations in the labelling text (per CSS2 rules). + + +The test uses the 'rect' element, as well as basic fill (solid primary colors), +stroke (primary color wide and 1-pixel lines), font-family (Helvetica) and font-size properties. + + + + + paths-data-03-f.svg + Test that the viewer has the basic capability to handle the 'path' element and data (d) attribute in combination with the elliptical Arc curveto commands - A, a (along with Mm and Zz). + + + + + Elliptical arc curves drawn with commands: + + + + + M, A, Z + + + + + + + m, a, z + + + + + + + M, a + + + + + + + M, A, a, a, z + + + + + + + + + M, a, Z, m, A, Z, m, a, z + + + + + + + + + + + M, A, A, A, A + + + + + + + + + + + + + + Scalable Vector Graphics (SVG) v1.1 Conformance Suite + + Copyright 2002 W3C. All Rights Reserved. + + paths-data-03-f + $Revision: 1.1 $ + Release 1.0 + + + diff --git a/test/W3C_SVG_12_TinyTestSuite_beta/images/paths-data-04-f.png b/test/W3C_SVG_12_TinyTestSuite_beta/images/paths-data-04-f.png new file mode 100755 index 00000000..ed52be58 Binary files /dev/null and b/test/W3C_SVG_12_TinyTestSuite_beta/images/paths-data-04-f.png differ diff --git a/test/W3C_SVG_12_TinyTestSuite_beta/images/paths-data-04-f.svg b/test/W3C_SVG_12_TinyTestSuite_beta/images/paths-data-04-f.svg new file mode 100755 index 00000000..069c2c57 --- /dev/null +++ b/test/W3C_SVG_12_TinyTestSuite_beta/images/paths-data-04-f.svg @@ -0,0 +1,171 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + +Verify the basic capability to handle the 'path' element, and its data attribute (d) +in combination with the straight-line path commands. +Four pairs of figures should be displayed in the +four quadrants. The shapes in each pair are identical, with one stroked and +one filled. Two pairs of concentric equilateral triangles are drawn using respectively +M,L,Z and m,l,z. The fill-mode default of "even-odd" means that +the inner triangle is hollow. Two pairs of staircase figures are drawn using +respectively M,H,V,Z and m,h,v,z. + + +The rendered picture should match the reference image exactly, except for possible +variations in the labelling text (per CSS2 rules). + + +The test uses the 'rect' element, as well as basic fill (solid primary colors), +stroke (black 1-pixel lines), font-family (Helvetica) and font-size properties. + + + + + paths-data-04-f + Test that viewer has the basic capability to handle the <path> element and data (d) attribute in combination with the moveto, lineto, and closepath commands - M, L, Z, m, l, and z. + + + + + + + + Lines drawn with commands: + M, L, L, L, Z, + subpath + M, L, L, L, Z + + + + + + + + stroked + + + + + + + + filled + + + + m, l, l, l, z, + subpath + m, l, l, l, z + + + + + + + + + + + + + + + + + + M, H, V, H, + V. H, V, H, + V, Z + + + + + + + + + + + + + + + + + + + + + + m, h, v, h + v, h, v, h + v, z + + + + + + + + + + + + + + + + + + + + + + + + + + Scalable Vector Graphics (SVG) v1.1 Conformance Suite + + Copyright 2002 W3C. All Rights Reserved. + + paths-data-04-f + $Revision: 1.1 $ + Release 3.0 + + + diff --git a/test/W3C_SVG_12_TinyTestSuite_beta/images/pinksquidj.png b/test/W3C_SVG_12_TinyTestSuite_beta/images/pinksquidj.png new file mode 100755 index 00000000..e88ae4eb Binary files /dev/null and b/test/W3C_SVG_12_TinyTestSuite_beta/images/pinksquidj.png differ diff --git a/test/W3C_SVG_12_TinyTestSuite_beta/images/plant.jpg b/test/W3C_SVG_12_TinyTestSuite_beta/images/plant.jpg new file mode 100755 index 00000000..85541210 Binary files /dev/null and b/test/W3C_SVG_12_TinyTestSuite_beta/images/plant.jpg differ diff --git a/test/W3C_SVG_12_TinyTestSuite_beta/images/pref_image0.jpg b/test/W3C_SVG_12_TinyTestSuite_beta/images/pref_image0.jpg new file mode 100755 index 00000000..d096dd19 Binary files /dev/null and b/test/W3C_SVG_12_TinyTestSuite_beta/images/pref_image0.jpg differ diff --git a/test/W3C_SVG_12_TinyTestSuite_beta/images/pref_image1.jpg b/test/W3C_SVG_12_TinyTestSuite_beta/images/pref_image1.jpg new file mode 100755 index 00000000..556c5a83 Binary files /dev/null and b/test/W3C_SVG_12_TinyTestSuite_beta/images/pref_image1.jpg differ diff --git a/test/W3C_SVG_12_TinyTestSuite_beta/images/pref_image2.jpg b/test/W3C_SVG_12_TinyTestSuite_beta/images/pref_image2.jpg new file mode 100755 index 00000000..663ffef3 Binary files /dev/null and b/test/W3C_SVG_12_TinyTestSuite_beta/images/pref_image2.jpg differ diff --git a/test/W3C_SVG_12_TinyTestSuite_beta/images/pref_image3.jpg b/test/W3C_SVG_12_TinyTestSuite_beta/images/pref_image3.jpg new file mode 100755 index 00000000..452daf76 Binary files /dev/null and b/test/W3C_SVG_12_TinyTestSuite_beta/images/pref_image3.jpg differ diff --git a/test/W3C_SVG_12_TinyTestSuite_beta/images/pref_image4.jpg b/test/W3C_SVG_12_TinyTestSuite_beta/images/pref_image4.jpg new file mode 100755 index 00000000..6b6bc450 Binary files /dev/null and b/test/W3C_SVG_12_TinyTestSuite_beta/images/pref_image4.jpg differ diff --git a/test/W3C_SVG_12_TinyTestSuite_beta/images/pref_image5.jpg b/test/W3C_SVG_12_TinyTestSuite_beta/images/pref_image5.jpg new file mode 100755 index 00000000..cfbac36d Binary files /dev/null and b/test/W3C_SVG_12_TinyTestSuite_beta/images/pref_image5.jpg differ diff --git a/test/W3C_SVG_12_TinyTestSuite_beta/images/pref_image6.jpg b/test/W3C_SVG_12_TinyTestSuite_beta/images/pref_image6.jpg new file mode 100755 index 00000000..4f5380b4 Binary files /dev/null and b/test/W3C_SVG_12_TinyTestSuite_beta/images/pref_image6.jpg differ diff --git a/test/W3C_SVG_12_TinyTestSuite_beta/images/pref_image7.jpg b/test/W3C_SVG_12_TinyTestSuite_beta/images/pref_image7.jpg new file mode 100755 index 00000000..1b0cecd1 Binary files /dev/null and b/test/W3C_SVG_12_TinyTestSuite_beta/images/pref_image7.jpg differ diff --git a/test/W3C_SVG_12_TinyTestSuite_beta/images/pref_image8.jpg b/test/W3C_SVG_12_TinyTestSuite_beta/images/pref_image8.jpg new file mode 100755 index 00000000..88255c98 Binary files /dev/null and b/test/W3C_SVG_12_TinyTestSuite_beta/images/pref_image8.jpg differ diff --git a/test/W3C_SVG_12_TinyTestSuite_beta/images/pref_image9.jpg b/test/W3C_SVG_12_TinyTestSuite_beta/images/pref_image9.jpg new file mode 100755 index 00000000..16e1b01f Binary files /dev/null and b/test/W3C_SVG_12_TinyTestSuite_beta/images/pref_image9.jpg differ diff --git a/test/W3C_SVG_12_TinyTestSuite_beta/images/purplesquidj.png b/test/W3C_SVG_12_TinyTestSuite_beta/images/purplesquidj.png new file mode 100755 index 00000000..90000a8b Binary files /dev/null and b/test/W3C_SVG_12_TinyTestSuite_beta/images/purplesquidj.png differ diff --git a/test/W3C_SVG_12_TinyTestSuite_beta/images/rects.svg b/test/W3C_SVG_12_TinyTestSuite_beta/images/rects.svg new file mode 100755 index 00000000..ea0e57f1 --- /dev/null +++ b/test/W3C_SVG_12_TinyTestSuite_beta/images/rects.svg @@ -0,0 +1,11 @@ + + + + + + + + + + + diff --git a/test/W3C_SVG_12_TinyTestSuite_beta/images/rects_b.svg b/test/W3C_SVG_12_TinyTestSuite_beta/images/rects_b.svg new file mode 100755 index 00000000..5c25ea0a --- /dev/null +++ b/test/W3C_SVG_12_TinyTestSuite_beta/images/rects_b.svg @@ -0,0 +1,6 @@ + + + + + + \ No newline at end of file diff --git a/test/W3C_SVG_12_TinyTestSuite_beta/images/resources.svg b/test/W3C_SVG_12_TinyTestSuite_beta/images/resources.svg new file mode 100755 index 00000000..fa56519a --- /dev/null +++ b/test/W3C_SVG_12_TinyTestSuite_beta/images/resources.svg @@ -0,0 +1,10 @@ + + + + + + + + \ No newline at end of file diff --git a/test/W3C_SVG_12_TinyTestSuite_beta/images/rgbalpha.png b/test/W3C_SVG_12_TinyTestSuite_beta/images/rgbalpha.png new file mode 100755 index 00000000..c2e3baa9 Binary files /dev/null and b/test/W3C_SVG_12_TinyTestSuite_beta/images/rgbalpha.png differ diff --git a/test/W3C_SVG_12_TinyTestSuite_beta/images/rightarrow.png b/test/W3C_SVG_12_TinyTestSuite_beta/images/rightarrow.png new file mode 100755 index 00000000..c29fb8ae Binary files /dev/null and b/test/W3C_SVG_12_TinyTestSuite_beta/images/rightarrow.png differ diff --git a/test/W3C_SVG_12_TinyTestSuite_beta/images/rotate20.png b/test/W3C_SVG_12_TinyTestSuite_beta/images/rotate20.png new file mode 100755 index 00000000..e566bfad Binary files /dev/null and b/test/W3C_SVG_12_TinyTestSuite_beta/images/rotate20.png differ diff --git a/test/W3C_SVG_12_TinyTestSuite_beta/images/script1.js b/test/W3C_SVG_12_TinyTestSuite_beta/images/script1.js new file mode 100755 index 00000000..0a3e7d83 --- /dev/null +++ b/test/W3C_SVG_12_TinyTestSuite_beta/images/script1.js @@ -0,0 +1 @@ +document.getElementById('c1').setAttributeNS(null, 'fill','green'); \ No newline at end of file diff --git a/test/W3C_SVG_12_TinyTestSuite_beta/images/script10.js b/test/W3C_SVG_12_TinyTestSuite_beta/images/script10.js new file mode 100755 index 00000000..b987cf07 --- /dev/null +++ b/test/W3C_SVG_12_TinyTestSuite_beta/images/script10.js @@ -0,0 +1 @@ +document.getElementById('c8').setAttributeNS(null, 'fill','red'); diff --git a/test/W3C_SVG_12_TinyTestSuite_beta/images/script2.js b/test/W3C_SVG_12_TinyTestSuite_beta/images/script2.js new file mode 100755 index 00000000..97221462 --- /dev/null +++ b/test/W3C_SVG_12_TinyTestSuite_beta/images/script2.js @@ -0,0 +1 @@ +document.getElementById('c2').setAttributeNS(null, 'fill','red'); diff --git a/test/W3C_SVG_12_TinyTestSuite_beta/images/script3.js b/test/W3C_SVG_12_TinyTestSuite_beta/images/script3.js new file mode 100755 index 00000000..b006731f --- /dev/null +++ b/test/W3C_SVG_12_TinyTestSuite_beta/images/script3.js @@ -0,0 +1 @@ +document.getElementById('c3').setAttributeNS(null, 'fill','green'); diff --git a/test/W3C_SVG_12_TinyTestSuite_beta/images/script4.js b/test/W3C_SVG_12_TinyTestSuite_beta/images/script4.js new file mode 100755 index 00000000..9e9c0cab --- /dev/null +++ b/test/W3C_SVG_12_TinyTestSuite_beta/images/script4.js @@ -0,0 +1 @@ +document.getElementById('c3').setAttributeNS(null, 'fill','red'); diff --git a/test/W3C_SVG_12_TinyTestSuite_beta/images/script5.js b/test/W3C_SVG_12_TinyTestSuite_beta/images/script5.js new file mode 100755 index 00000000..dbd62a82 --- /dev/null +++ b/test/W3C_SVG_12_TinyTestSuite_beta/images/script5.js @@ -0,0 +1 @@ +document.getElementById('c4').setAttributeNS(null, 'fill','red'); diff --git a/test/W3C_SVG_12_TinyTestSuite_beta/images/script6.js b/test/W3C_SVG_12_TinyTestSuite_beta/images/script6.js new file mode 100755 index 00000000..2ddff155 --- /dev/null +++ b/test/W3C_SVG_12_TinyTestSuite_beta/images/script6.js @@ -0,0 +1 @@ +document.getElementById('c6').setAttributeNS(null, 'fill','green'); diff --git a/test/W3C_SVG_12_TinyTestSuite_beta/images/script7.js b/test/W3C_SVG_12_TinyTestSuite_beta/images/script7.js new file mode 100755 index 00000000..e3dfeb44 --- /dev/null +++ b/test/W3C_SVG_12_TinyTestSuite_beta/images/script7.js @@ -0,0 +1 @@ +document.getElementById('c7').setAttributeNS(null, 'fill','red'); diff --git a/test/W3C_SVG_12_TinyTestSuite_beta/images/script8.js b/test/W3C_SVG_12_TinyTestSuite_beta/images/script8.js new file mode 100755 index 00000000..7d9d2ba9 --- /dev/null +++ b/test/W3C_SVG_12_TinyTestSuite_beta/images/script8.js @@ -0,0 +1 @@ +document.getElementById('c7').setAttributeNS(null, 'fill','green'); diff --git a/test/W3C_SVG_12_TinyTestSuite_beta/images/script9.js b/test/W3C_SVG_12_TinyTestSuite_beta/images/script9.js new file mode 100755 index 00000000..ef4c3f59 --- /dev/null +++ b/test/W3C_SVG_12_TinyTestSuite_beta/images/script9.js @@ -0,0 +1 @@ +document.getElementById('c8').setAttributeNS(null, 'fill','green'); diff --git a/test/W3C_SVG_12_TinyTestSuite_beta/images/scriptresource.svg b/test/W3C_SVG_12_TinyTestSuite_beta/images/scriptresource.svg new file mode 100755 index 00000000..47565781 --- /dev/null +++ b/test/W3C_SVG_12_TinyTestSuite_beta/images/scriptresource.svg @@ -0,0 +1,13 @@ + + + + + + + + \ No newline at end of file diff --git a/test/W3C_SVG_12_TinyTestSuite_beta/images/shapes-ellipse-01-b.svg b/test/W3C_SVG_12_TinyTestSuite_beta/images/shapes-ellipse-01-b.svg new file mode 100755 index 00000000..20acffc1 --- /dev/null +++ b/test/W3C_SVG_12_TinyTestSuite_beta/images/shapes-ellipse-01-b.svg @@ -0,0 +1,59 @@ + + + + + + + + + + + + + + + + + + shapes-rect-01-b + Test that viewer has the basic capability to render the 'ellipse'element + + + + + + + default + + + + filled + + + + 'rx'='ry' + + + all attributes + + + + + + + + + + + SVG v1.1 Conformance Suite + + shapes-ellipse-01-b + + $Revision: 1.1 $ + + ©2002 W3C + + Release 1.0 + + + \ No newline at end of file diff --git a/test/W3C_SVG_12_TinyTestSuite_beta/images/shapes-ellipse-01-f.png b/test/W3C_SVG_12_TinyTestSuite_beta/images/shapes-ellipse-01-f.png new file mode 100755 index 00000000..73e78ad8 Binary files /dev/null and b/test/W3C_SVG_12_TinyTestSuite_beta/images/shapes-ellipse-01-f.png differ diff --git a/test/W3C_SVG_12_TinyTestSuite_beta/images/shapes-ellipse-01-f.svg b/test/W3C_SVG_12_TinyTestSuite_beta/images/shapes-ellipse-01-f.svg new file mode 100755 index 00000000..18264afe --- /dev/null +++ b/test/W3C_SVG_12_TinyTestSuite_beta/images/shapes-ellipse-01-f.svg @@ -0,0 +1,111 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + +Verify the basic capability to handle the 'ellipse' +shape element. Four pairs of ellipses should be displayed in the +four quadrants, with the shapes in each pair being identical. Filling, stroking, +and filling-plus-stroking are applied, and the cx,cy (center position) and +rx,ry (ellipse radii) attributes are varied. + + +The rendered picture should match the reference image, except for possible +variations in the labelling text (per CSS2 rules). + + +This test uses 'text', 'rect' and 'path' elements, as well as +fill (solid primary colors), stroke (primary colors and wide lines), +font-family ("Helvetica"), and font-size properties within the 'style' attribute. + + + + + shapes-ellipse-01-f + Test that viewer has the basic capability to handle the <ellipse> element. + + + + + + + + Basic ellipses + rx=30 + ry=50 + + + stroked + filled + + + + rx=35 + ry=35 + + + stroked + filled + + + + rx=30 + ry=50 + + + stroked + filled & stroked + + + + rx=70 + ry=40 + + filled & stroked + + + + + + + + Scalable Vector Graphics (SVG) v1.1 Conformance Suite + + Copyright 2002 W3C. All Rights Reserved. + + shapes-ellipse-01-f + $Revision: 1.1 $ + Release 1.0 + + + diff --git a/test/W3C_SVG_12_TinyTestSuite_beta/images/shapes-rect-01-b.svg b/test/W3C_SVG_12_TinyTestSuite_beta/images/shapes-rect-01-b.svg new file mode 100755 index 00000000..c003f464 --- /dev/null +++ b/test/W3C_SVG_12_TinyTestSuite_beta/images/shapes-rect-01-b.svg @@ -0,0 +1,60 @@ + + + + + + + + + + + + + + + + + + shapes-rect-01-b + Test that viewer has the basic capability to render the 'rect'element + + + + + + + default + + + + filled + + + + rounded 'x' + + + + rounded 'x', 'y' + + + + + + + + + + + SVG v1.1 Conformance Suite + + shapes-rect-01-b + + $Revision: 1.1 $ + + ©2002 W3C + + Release 1.0 + + + \ No newline at end of file diff --git a/test/W3C_SVG_12_TinyTestSuite_beta/images/shapes-rect-01-f.png b/test/W3C_SVG_12_TinyTestSuite_beta/images/shapes-rect-01-f.png new file mode 100755 index 00000000..bf25fdfe Binary files /dev/null and b/test/W3C_SVG_12_TinyTestSuite_beta/images/shapes-rect-01-f.png differ diff --git a/test/W3C_SVG_12_TinyTestSuite_beta/images/shapes-rect-01-f.svg b/test/W3C_SVG_12_TinyTestSuite_beta/images/shapes-rect-01-f.svg new file mode 100755 index 00000000..92988b48 --- /dev/null +++ b/test/W3C_SVG_12_TinyTestSuite_beta/images/shapes-rect-01-f.svg @@ -0,0 +1,113 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + +Verify that interpreter/viewer has basic capability to handle the 'rect' +shape element. Four pairs of rectangles should be displayed in the +four quadrants, with the shapes in each pair being identical to each other. +Filling, stroking, and filling-plus-stroking are tested, as are the round-rect +attributes. + + +The rendered picture should match the reference image, except for possible +variations in the labelling text (per CSS2 rules). + + +This test uses 'text' and 'path' elements, as well as +fill (solid primary colors), stroke (primary colors and wide lines), +font-family ("Helvetica"), and font-size properties within the 'style' attribute. + + + + + shapes-rect-01-f + Test that viewer has the basic capability to handle the <rect> element. + + + + + + + + Basic rectangles + width=50 + height=80 + + + stroked + filled + + + + width=50 + height=80 + rx=30 + + + stroked + filled + + + + width=50 + height=80 + + + stroked + filled & stroked + + + + width=50, height=80 + rx=30 ry=50 + + + stroked + filled + + + + + + + + Scalable Vector Graphics (SVG) v1.1 Conformance Suite + + Copyright 2002 W3C. All Rights Reserved. + + shapes-rect-01-f + $Revision: 1.1 $ + Release 1.0 + + + diff --git a/test/W3C_SVG_12_TinyTestSuite_beta/images/sign.png b/test/W3C_SVG_12_TinyTestSuite_beta/images/sign.png new file mode 100755 index 00000000..6aac7e15 Binary files /dev/null and b/test/W3C_SVG_12_TinyTestSuite_beta/images/sign.png differ diff --git a/test/W3C_SVG_12_TinyTestSuite_beta/images/skier.3gp b/test/W3C_SVG_12_TinyTestSuite_beta/images/skier.3gp new file mode 100755 index 00000000..7582bf99 Binary files /dev/null and b/test/W3C_SVG_12_TinyTestSuite_beta/images/skier.3gp differ diff --git a/test/W3C_SVG_12_TinyTestSuite_beta/images/skier.jpg b/test/W3C_SVG_12_TinyTestSuite_beta/images/skier.jpg new file mode 100755 index 00000000..3b85c939 Binary files /dev/null and b/test/W3C_SVG_12_TinyTestSuite_beta/images/skier.jpg differ diff --git a/test/W3C_SVG_12_TinyTestSuite_beta/images/smiley.png b/test/W3C_SVG_12_TinyTestSuite_beta/images/smiley.png new file mode 100755 index 00000000..5bcc67a2 Binary files /dev/null and b/test/W3C_SVG_12_TinyTestSuite_beta/images/smiley.png differ diff --git a/test/W3C_SVG_12_TinyTestSuite_beta/images/smiley.svg b/test/W3C_SVG_12_TinyTestSuite_beta/images/smiley.svg new file mode 100755 index 00000000..913662b4 --- /dev/null +++ b/test/W3C_SVG_12_TinyTestSuite_beta/images/smiley.svg @@ -0,0 +1,9 @@ + + + + + + + + + \ No newline at end of file diff --git a/test/W3C_SVG_12_TinyTestSuite_beta/images/sphere.png b/test/W3C_SVG_12_TinyTestSuite_beta/images/sphere.png new file mode 100755 index 00000000..9e22388e Binary files /dev/null and b/test/W3C_SVG_12_TinyTestSuite_beta/images/sphere.png differ diff --git a/test/W3C_SVG_12_TinyTestSuite_beta/images/stefan_252_tRNS_opti.png b/test/W3C_SVG_12_TinyTestSuite_beta/images/stefan_252_tRNS_opti.png new file mode 100755 index 00000000..1937a315 Binary files /dev/null and b/test/W3C_SVG_12_TinyTestSuite_beta/images/stefan_252_tRNS_opti.png differ diff --git a/test/W3C_SVG_12_TinyTestSuite_beta/images/struct-frag-01-B.svg b/test/W3C_SVG_12_TinyTestSuite_beta/images/struct-frag-01-B.svg new file mode 100755 index 00000000..6de69386 --- /dev/null +++ b/test/W3C_SVG_12_TinyTestSuite_beta/images/struct-frag-01-B.svg @@ -0,0 +1,55 @@ + + + + + + + + + + + + + + + + + + struct-frag-01 + Test that 'svg' elements nested inside of each other will render correctly + + + + + + + + + + + + + + + + + + + + + + + + + + SVG v1.1 Conformance Suite + struct-frag-01-B + + ©2002 W3C + + $Rev:1.0$ + Rel 1.1 + + + \ No newline at end of file diff --git a/test/W3C_SVG_12_TinyTestSuite_beta/images/struct-image-01.jpg b/test/W3C_SVG_12_TinyTestSuite_beta/images/struct-image-01.jpg new file mode 100755 index 00000000..a74e0722 Binary files /dev/null and b/test/W3C_SVG_12_TinyTestSuite_beta/images/struct-image-01.jpg differ diff --git a/test/W3C_SVG_12_TinyTestSuite_beta/images/struct-image-01.png b/test/W3C_SVG_12_TinyTestSuite_beta/images/struct-image-01.png new file mode 100755 index 00000000..4ed08406 Binary files /dev/null and b/test/W3C_SVG_12_TinyTestSuite_beta/images/struct-image-01.png differ diff --git a/test/W3C_SVG_12_TinyTestSuite_beta/images/struct-image-02.jpg b/test/W3C_SVG_12_TinyTestSuite_beta/images/struct-image-02.jpg new file mode 100755 index 00000000..9e44fec6 Binary files /dev/null and b/test/W3C_SVG_12_TinyTestSuite_beta/images/struct-image-02.jpg differ diff --git a/test/W3C_SVG_12_TinyTestSuite_beta/images/struct-image-02.png b/test/W3C_SVG_12_TinyTestSuite_beta/images/struct-image-02.png new file mode 100755 index 00000000..c609c467 Binary files /dev/null and b/test/W3C_SVG_12_TinyTestSuite_beta/images/struct-image-02.png differ diff --git a/test/W3C_SVG_12_TinyTestSuite_beta/images/struct-image-11-b.svg b/test/W3C_SVG_12_TinyTestSuite_beta/images/struct-image-11-b.svg new file mode 100755 index 00000000..d0fd33fa --- /dev/null +++ b/test/W3C_SVG_12_TinyTestSuite_beta/images/struct-image-11-b.svg @@ -0,0 +1,8 @@ + + + + + + + + diff --git a/test/W3C_SVG_12_TinyTestSuite_beta/images/struct-image-12-b-cycle.svg b/test/W3C_SVG_12_TinyTestSuite_beta/images/struct-image-12-b-cycle.svg new file mode 100755 index 00000000..42841b65 --- /dev/null +++ b/test/W3C_SVG_12_TinyTestSuite_beta/images/struct-image-12-b-cycle.svg @@ -0,0 +1,9 @@ + + + + + + + + + diff --git a/test/W3C_SVG_12_TinyTestSuite_beta/images/struct-symbol-01.png b/test/W3C_SVG_12_TinyTestSuite_beta/images/struct-symbol-01.png new file mode 100755 index 00000000..323a51fa Binary files /dev/null and b/test/W3C_SVG_12_TinyTestSuite_beta/images/struct-symbol-01.png differ diff --git a/test/W3C_SVG_12_TinyTestSuite_beta/images/struct-use-08-t-cycles.svg b/test/W3C_SVG_12_TinyTestSuite_beta/images/struct-use-08-t-cycles.svg new file mode 100755 index 00000000..393ce84c --- /dev/null +++ b/test/W3C_SVG_12_TinyTestSuite_beta/images/struct-use-08-t-cycles.svg @@ -0,0 +1,8 @@ + + + + + + + + diff --git a/test/W3C_SVG_12_TinyTestSuite_beta/images/struct-use-206-resource.svg b/test/W3C_SVG_12_TinyTestSuite_beta/images/struct-use-206-resource.svg new file mode 100755 index 00000000..83e394aa --- /dev/null +++ b/test/W3C_SVG_12_TinyTestSuite_beta/images/struct-use-206-resource.svg @@ -0,0 +1,8 @@ + + + + + + + + diff --git a/test/W3C_SVG_12_TinyTestSuite_beta/images/struct-use-209-t-cycles.svg b/test/W3C_SVG_12_TinyTestSuite_beta/images/struct-use-209-t-cycles.svg new file mode 100755 index 00000000..a00a9f22 --- /dev/null +++ b/test/W3C_SVG_12_TinyTestSuite_beta/images/struct-use-209-t-cycles.svg @@ -0,0 +1,9 @@ + + + + + + + + diff --git a/test/W3C_SVG_12_TinyTestSuite_beta/images/success.svg b/test/W3C_SVG_12_TinyTestSuite_beta/images/success.svg new file mode 100755 index 00000000..c04d02ea --- /dev/null +++ b/test/W3C_SVG_12_TinyTestSuite_beta/images/success.svg @@ -0,0 +1,36 @@ + + + + + + + + + + + + + Document indicating test success + + + + + + + + + SUCCESS! + + + $Revision: 1.2 $ + + + diff --git a/test/W3C_SVG_12_TinyTestSuite_beta/images/svgRef1.svg b/test/W3C_SVG_12_TinyTestSuite_beta/images/svgRef1.svg new file mode 100755 index 00000000..7e605c94 --- /dev/null +++ b/test/W3C_SVG_12_TinyTestSuite_beta/images/svgRef1.svg @@ -0,0 +1,49 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + svgRef1.svg + $Revision: 1.2 $ + + \ No newline at end of file diff --git a/test/W3C_SVG_12_TinyTestSuite_beta/images/svgRef12.svg b/test/W3C_SVG_12_TinyTestSuite_beta/images/svgRef12.svg new file mode 100755 index 00000000..0491e618 --- /dev/null +++ b/test/W3C_SVG_12_TinyTestSuite_beta/images/svgRef12.svg @@ -0,0 +1,40 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + svgRef4.svg + $Revision: 1.2 $ + + \ No newline at end of file diff --git a/test/W3C_SVG_12_TinyTestSuite_beta/images/svgRef13.svg b/test/W3C_SVG_12_TinyTestSuite_beta/images/svgRef13.svg new file mode 100755 index 00000000..88ce38f2 --- /dev/null +++ b/test/W3C_SVG_12_TinyTestSuite_beta/images/svgRef13.svg @@ -0,0 +1,49 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + svgRef1.svg + $Revision: 1.1 $ + + \ No newline at end of file diff --git a/test/W3C_SVG_12_TinyTestSuite_beta/images/svgRef4.css b/test/W3C_SVG_12_TinyTestSuite_beta/images/svgRef4.css new file mode 100755 index 00000000..e97a4888 --- /dev/null +++ b/test/W3C_SVG_12_TinyTestSuite_beta/images/svgRef4.css @@ -0,0 +1,4 @@ +rect {fill:red;} +circle {fill:blue;} +polygon {fill:green;} +ellipse {fill:gold;} \ No newline at end of file diff --git a/test/W3C_SVG_12_TinyTestSuite_beta/images/svgRef4.svg b/test/W3C_SVG_12_TinyTestSuite_beta/images/svgRef4.svg new file mode 100755 index 00000000..32958173 --- /dev/null +++ b/test/W3C_SVG_12_TinyTestSuite_beta/images/svgRef4.svg @@ -0,0 +1,41 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + svgRef4.svg + $Revision: 1.2 $ + + \ No newline at end of file diff --git a/test/W3C_SVG_12_TinyTestSuite_beta/images/svglib.svg b/test/W3C_SVG_12_TinyTestSuite_beta/images/svglib.svg new file mode 100755 index 00000000..5fb42655 --- /dev/null +++ b/test/W3C_SVG_12_TinyTestSuite_beta/images/svglib.svg @@ -0,0 +1,1058 @@ + + + This SVG file only contains data referenced by others + + + + + + + + + + + + + + + + + + + + + + + + + + ABC + ABC + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + diff --git a/test/W3C_SVG_12_TinyTestSuite_beta/images/svglib2.svg b/test/W3C_SVG_12_TinyTestSuite_beta/images/svglib2.svg new file mode 100755 index 00000000..eefd5219 --- /dev/null +++ b/test/W3C_SVG_12_TinyTestSuite_beta/images/svglib2.svg @@ -0,0 +1,16 @@ + + +This SVG file only contains data referenced by others + + + + + + + + + + + + + \ No newline at end of file diff --git a/test/W3C_SVG_12_TinyTestSuite_beta/images/svglib3.svg b/test/W3C_SVG_12_TinyTestSuite_beta/images/svglib3.svg new file mode 100755 index 00000000..8731c8ea --- /dev/null +++ b/test/W3C_SVG_12_TinyTestSuite_beta/images/svglib3.svg @@ -0,0 +1,12 @@ + + + This SVG file only contains data referenced by others + + + + + + + + + diff --git a/test/W3C_SVG_12_TinyTestSuite_beta/images/text-align-01-f.svg b/test/W3C_SVG_12_TinyTestSuite_beta/images/text-align-01-f.svg new file mode 100755 index 00000000..d9d8f87a --- /dev/null +++ b/test/W3C_SVG_12_TinyTestSuite_beta/images/text-align-01-f.svg @@ -0,0 +1,95 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + Test 'text-anchor' and the 'baseline-shift' properties (horizonatal). + + + The topmost three lines test the three values for property 'text-anchor': start, middle and end. + + + The next three lines test property 'baseline-shift'. + The fourth line tests 'baseline-shift:7' (i.e., a length for 'baseline-shift'). + The red text should shift upward by 7 pixels. + The fifth line tests 'baseline-shift:-70%' (i.e., a percentage for 'baseline-shift'). + The red text should shift downward by 70% of the 'font-size'. + The sixth line tests the three keywords 'sub', 'super' and 'normal'. + You should see a subscript, superscript and return to normal. + + + + + text-align-01-f + Test 'text-anchor' and the 'baseline-shift' properties (horizontal). + + + + + Test 'text-anchor' and the 'baseline-shift' properties (horizontal). + + + + + Text-anchor:start + + + + + Text-anchor:middle + + + + + Text-anchor:end + + + + Normal textbaseline-shift:7normal text + Normal textbaseline-shift:-70%normal text + Normal textsubsupernormaltext + + + + + + + + + Scalable Vector Graphics (SVG) v1.1 Conformance Suite + + Copyright 2002 W3C. All Rights Reserved. + + text-align-01-f + $Revision: 1.1 $ + Release 1.0 + + + + diff --git a/test/W3C_SVG_12_TinyTestSuite_beta/images/text-align-02-f.svg b/test/W3C_SVG_12_TinyTestSuite_beta/images/text-align-02-f.svg new file mode 100755 index 00000000..30377d67 --- /dev/null +++ b/test/W3C_SVG_12_TinyTestSuite_beta/images/text-align-02-f.svg @@ -0,0 +1,146 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + Test for viewer capibility to handle the basics of the 'textAnchor' + alignment property for 'text' and related elements. + + + There are several groups of sub-tests. The first group at the top has an + initial sub-test with no text-anchor property ("none"), then + tests the three values of the text-anchor property -- start, middle, end -- + for simple 'text' elements. In each case, the x-coordinate attribute of + the 'text' element corresponds to the position of the vertical red line. + + + The second group from the top contains sub-tests to verify that the + interpreter handles text-anchor when the text is comprised of other + text related elements, 'tspan', 'tref', and 'textPath'. + The text-anchor property is present on the containing 'text' element + in these cases, not on the contained child elements. + + + The third group from the top contains sub-tests to verify that + the interpreter correctly handles and applies the text-anchor + properties when present on "chunks", which are comprised of tspan elements + with absolute positioning, within the containing 'text' element. + + + The rendered picture should match the reference image, except for + possible variations in the text fonts and layout (per CSS2 rules). + + + The test also uses the 'rect' element, + as well as basic fill (solid primary colors), + stroke (black 1-pixel lines), font-family (Helvetica) + and font-size properties. + + + + + text-align-03-f + Test viewer basic capability to handle 'text-anchor' property. + + + + + + end. text w/ tref + + + Basic test of 'text-anchor' alignment property. + (The red line corresponds to the "initial current text position".) + Simple text. + + + + none + start + middle + end + + + + none... + start... + middle... + end... + + Tspan, tref, toap + + + + start. text w/ red tspan + middle. text w/ bold tspan + + + + + Text-anchor: end. Text on path + + + + + tspan... + tspan... + tref... + textPath... + + Changes in chunks. + + + + Begin with "end" align, and switch to middle in a tspan, and finish with start in another tspan. + + + + end... + middle... + start... + + + + + + + + + Scalable Vector Graphics (SVG) v1.1 Conformance Suite + + Copyright 2002 W3C. All Rights Reserved. + + text-align-02-f + $Revision: 1.1 $ + Release 1.0 + + + + diff --git a/test/W3C_SVG_12_TinyTestSuite_beta/images/text-align-03-f.svg b/test/W3C_SVG_12_TinyTestSuite_beta/images/text-align-03-f.svg new file mode 100755 index 00000000..36dcbc9d --- /dev/null +++ b/test/W3C_SVG_12_TinyTestSuite_beta/images/text-align-03-f.svg @@ -0,0 +1,96 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + Test 'text-anchor' and the 'baseline-shift' properties (vertical). + + + The leftmost three lines test the three values for property 'text-anchor': start, middle and end. + + + The next three lines test property 'baseline-shift'. + The fourth line tests 'baseline-shift:7' (i.e., a length for 'baseline-shift'). + The red text should shift right by 7 pixels. + The fifth line tests 'baseline-shift:-70%' (i.e., a percentage for 'baseline-shift'). + The red text should shift left by 70% of the 'font-size'. + The sixth line tests the three keywords 'sub', 'super' and 'normal'. + You should see a subscript, superscript and return to normal. + + + + + text-align-03-f + Test 'text-anchor' and the 'baseline-shift' properties (vertical). + + + + + Test 'text-anchor' and the 'baseline-shift' properties (vertical). + text-anchor + baseline-shift + + + + + start + + + + middle + + + + end + + + + noneshift by 7none + noneshift by -70%none + nonesubsuperno shift + + + + + + + + + + Scalable Vector Graphics (SVG) v1.1 Conformance Suite + + Copyright 2002 W3C. All Rights Reserved. + + text-align-03-f + $Revision: 1.1 $ + Release 1.0 + + + + diff --git a/test/W3C_SVG_12_TinyTestSuite_beta/images/text-altglyph-01-f.svg b/test/W3C_SVG_12_TinyTestSuite_beta/images/text-altglyph-01-f.svg new file mode 100755 index 00000000..ee7fc951 --- /dev/null +++ b/test/W3C_SVG_12_TinyTestSuite_beta/images/text-altglyph-01-f.svg @@ -0,0 +1,202 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + Test 'altGlyph' facilities and many-to-many chars to glyphs. + + + Three text strings show: the word "HAPPY" in red, the word "SAD" in green + and the word "SASSY" in blue. + + + The "HAPPY" and "SAD" strings test the 'altGlyph' facility and + the ability to map multiple glyphs to a single character. + All characters except the "D" are bracketed by 'altGlyph' elements + to use two different glyphs to render each character. + For "HAPPY", the horizontal stroke through the center of the characters + is a smile stroke. + For "SAD", the horizontal stroke through the center of the characters + is a frown stroke. + + + The "SASSY" string tests a single glyph representing multiple characters + (a ligature). The SVG font in the test case contains an "SS" ligature + so that the "SS" in "SASSY" is rendered with a single glyph, where + the two parts of the "SS" are connected. + + + This test requires some support for SVG fonts. + + + + + text-altglyph-01-f + Test 'altGlyph' facilities and many-to-many chars to glyphs. + + + + + Test 'altGlyph' facilities and many-to-many chars to glyphs + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + +H +A +P +P +Y + + SAD + SASSY + + + + + + + + + + + Scalable Vector Graphics (SVG) v1.1 Conformance Suite + + Copyright 2002 W3C. All Rights Reserved. + + text-altglyph-01-f + $Revision: 1.1 $ + Release 1.0 + + + diff --git a/test/W3C_SVG_12_TinyTestSuite_beta/images/text-extTref-BE-18-targ.svg b/test/W3C_SVG_12_TinyTestSuite_beta/images/text-extTref-BE-18-targ.svg new file mode 100755 index 00000000..aa947d1d --- /dev/null +++ b/test/W3C_SVG_12_TinyTestSuite_beta/images/text-extTref-BE-18-targ.svg @@ -0,0 +1,58 @@ + + + + + + + + + + + + + + + + + + +text-extTref-BE-18-targ + + +Auxiliary ('tref' target) file for test case text-extTref-BE-18. + + + + + + + + + Simple external referenced text. + + + + + + + + + + + + + + + Scalable Vector Graphics (SVG) Conformance Suite + text-extTref-BE-18-targ + Release 1.0 + $Revision: 1.1 $ + + + + + + + + + diff --git a/test/W3C_SVG_12_TinyTestSuite_beta/images/text-intro-01-f.svg b/test/W3C_SVG_12_TinyTestSuite_beta/images/text-intro-01-f.svg new file mode 100755 index 00000000..4fa023a9 --- /dev/null +++ b/test/W3C_SVG_12_TinyTestSuite_beta/images/text-intro-01-f.svg @@ -0,0 +1,106 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + Test various aspects of internationalized text, including + left-to-right, right-to-left, top-to-bottom, and the + following properties: 'writing-mode', + 'glyph-orientation-vertical', 'glyph-orientation-horizontal', + 'direction' and 'unicode-bidi'. + + + Various text strings in various languages appear. The main + purpose of the test is to verify that the correct characters + appear and that they appear in the correct order and orientation. + In particular, ensure that the three lines with Hebrew are ordered + correctly (test of bidi algorithms and support of 'unicode-bidi' and + 'direction' properties). Also, ensure that the two lines of + vertical Japanese text have the proper orientation + (test of 'glyph-orientation-vertical' property). + + + This test requires installation of a system font that supports + the various international characters used in this test case. + Due to differences across systems regarding system fonts and + font handling, for some implementations editing of the test case + may be necessary to specify the correct system font. To + minimize system dependencies, a future version of this test + might include all necessary glyphs as an SVG font. + + + + + text-intro-01-f + Test various aspects of internationalized text, including left-to-right, right-to-left, top-to-bottom, and the following properties: 'writing-mode', 'glyph-orientation-vertical', 'glyph-orientation-horizontal', 'direction' and 'unicode-bidi'. + + + + + Test combinations of left-to-right, right-to-left, top-to-bottom text. + + Polish: Mogę jeść szkło, i mi nie szkodzi. + Russian: Я могу есть стекло, это мне не вредит. + Greek: Μπορώ να φάω σπασμένα γυαλιά χωρίς να πάθω τίποτα. + Text "אני יכול לאכול זכוכית וזה לא מזיק לי" is in Hebrew + Yiddish: איך קען עסן גלאָז און עס טוט מיר נישט װײ. + + + Chinese:我能吞下玻璃而不伤身体。 + Japanese: 私はガラスを食べられます。それは私を傷つけません。 + + unicode-bidi:bidi-override. First, direction:ltr, then direction:rtl. + + Text "אני יכול לאכול זכוכית וזה לא מזיק לי" is in Hebrew + Text "אני יכול לאכול זכוכית וזה לא מזיק לי" is in Hebrew + + This text "我能吞下玻璃而不伤身体。" is in ChineseJapanese: 私はガラスを食べられます。それは私を傷つけません。Japanese: 私はガラスを食べられます。それは私を傷つけません。 + + + + + + + + + Scalable Vector Graphics (SVG) v1.1 Conformance Suite + + Copyright 2002 W3C. All Rights Reserved. + + text-intro-01-f + $Revision: 1.1 $ + Release 1.0 + + + diff --git a/test/W3C_SVG_12_TinyTestSuite_beta/images/text-tref-01-f.svg b/test/W3C_SVG_12_TinyTestSuite_beta/images/text-tref-01-f.svg new file mode 100755 index 00000000..51784864 --- /dev/null +++ b/test/W3C_SVG_12_TinyTestSuite_beta/images/text-tref-01-f.svg @@ -0,0 +1,160 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + Test for viewer capability to handle the basics of the 'tref' element + and its attributes. Basic referencing is tested, as well as + the equivalence of 'tref' to 'tspan' in attributes handling. + There are five sub-tests. + + + The first box down from the top should contain green "Simple internal referenced text.", + which is obtained by a 'tref' element reference to a 'text' element in a 'defs' + section of this test file. + + + The second box from the top tests changing of visual properties + of 'tref' substrings. It should contain + the string "Change color within string.", blue except for the single + word "color" in red. Three 'tref' elements within the + 'text' element each point to a substring in the 'defs' section of + this test file -- the second 'tref' sets fill color to red and the + others set fill color to blue. + + + The third box from the top tests an x-coordinate list in a 'tref', + which individually places each character of the string "Char-by-char." + The string is in a single 'text' element in the 'defs' section. + + + The fourth box from the top tests that the x,y attributes of 'tref' behave + like those of 'tspan'. The string + "Bouncing up and down." is formed by four 'tref' elements pointing to 'text' + elements in the 'defs' section, and each 'tref' is individually + positioned by the x,y attributes. + + + The final sub-test actually involves the single-line test description at the very + top. It is written initially in blue, and then at the end is over-written in + black by a 'tref' pointing to the 'desc' element of the test. + + + The rendered picture should match the reference image, except that some color + "fuzziness" in the top line may result from anti-aliasing. + Also, variations are possible in the text fonts and layout (per CSS2 rules). + + + The test also uses the 'rect' element, + as well as basic fill (solid primary colors), + stroke (black 1-pixel lines), font-family (Helvetica) + and font-size properties. + + + + + text-tref-01-f + Basic test of 'tref' element and its attributes. + + + + + + Simple internal referenced text. + Change + color + within string. + Bouncing + up + and + down. + Char-by-char. + + + Basic test of 'tref' element and its attributes. + + + + + + 'tref', within file + + + + + + + + multiple 'tref' and property changes + + + + + + 'tref' with x-coordinate list + + + + + + + + + 'tref's with x/y attribute changes + + + + + + + + + + + + + Scalable Vector Graphics (SVG) v1.1 Conformance Suite + + Copyright 2002 W3C. All Rights Reserved. + + text-tref-01-f + $Revision: 1.1 $ + Release 1.0 + + + diff --git a/test/W3C_SVG_12_TinyTestSuite_beta/images/text-ws-01-f.svg b/test/W3C_SVG_12_TinyTestSuite_beta/images/text-ws-01-f.svg new file mode 100755 index 00000000..824c2ecb --- /dev/null +++ b/test/W3C_SVG_12_TinyTestSuite_beta/images/text-ws-01-f.svg @@ -0,0 +1,130 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + Test for viewer correct handling of whitespace and the 'xml:space' attribute. + There are four sub-tests, two for xml:space value "default" and two for + value "preserve". In each test, the content of the 'text' element is written on + multiple lines. The first test of each pair has indented text with leading + space characters, tabs, etc. The second has no indentation, but a line break + before the content and after it. There are no space (or other whitespace) + characters at the ends of the lines. + + + The four test cases are self-descriptive. From the top; first, "default" value applied to + 3 lines of content with indents, space characters, tabs, etc; second, "default" applied to two lines content with no indent; third, "preserve" applied to essentially the same content as first; fourth, "preserve" applied to essentially the same content as second. + + + In each test, the test string is in blue and the reference + image is in black. + The rendered picture should approximately match the reference image, + however there is some question in the reference image concerning the + exact amount of space in the long-space areas. The third test uses the nbsp unicode character + to force the reference white spaces display, which provides an accurate match if the font in use + has the same metrics for that character and the default white space. + Also, variations are possible in the text fonts and layout (per CSS2 rules). + + + The test also uses the 'rect' element, + as well as basic fill (solid primary colors), + stroke (black 1-pixel lines), font-family (Helvetica) + and font-size properties. + + + + + text-ws-01-f + Test that viewer correctly handle whitespace and the "space" attribute. + + + + + Basic test of xml:space attribute & whitespace handling. + + + + WS example with indented lines. + WS example with indented lines. + + xml:space='default' + + + + +WS example +non-indented lines. + + WS examplenon-indented lines. + + xml:space='default' + + + + + WS example + with + indented lines. + + +                   WS example    with                   indented lines. + + + xml:space='preserve' + + + + WS example +non-indented lines. + + WS example non-indented lines. + + xml:space='preserve' + + + + + + + + + Scalable Vector Graphics (SVG) v1.1 Conformance Suite + + Copyright 2002 W3C. All Rights Reserved. + + text-ws-01-f + $Revision: 1.1 $ + Release 1.0 + + + diff --git a/test/W3C_SVG_12_TinyTestSuite_beta/images/timed-lyrics.svg b/test/W3C_SVG_12_TinyTestSuite_beta/images/timed-lyrics.svg new file mode 100755 index 00000000..78c02e52 --- /dev/null +++ b/test/W3C_SVG_12_TinyTestSuite_beta/images/timed-lyrics.svg @@ -0,0 +1,29 @@ + + + + This document contains the textual lyrics to synchronize with some SVG content in the referencing document + + + + + + + + + This is some text + + simulating some lyrics + + displayed synchronously + + with some SVG + + in a different document + + + \ No newline at end of file diff --git a/test/W3C_SVG_12_TinyTestSuite_beta/images/timed-lyrics2.svg b/test/W3C_SVG_12_TinyTestSuite_beta/images/timed-lyrics2.svg new file mode 100755 index 00000000..a8dd89aa --- /dev/null +++ b/test/W3C_SVG_12_TinyTestSuite_beta/images/timed-lyrics2.svg @@ -0,0 +1,33 @@ + + + + This document contains the textual lyrics to synchronize with some SVG content in the referencing document + + + + + + + + + This is some text + + simulating some lyrics + + displayed synchronously + + with some SVG + + in a different document + + with a skiier + + and noise + + + \ No newline at end of file diff --git a/test/W3C_SVG_12_TinyTestSuite_beta/images/toc-sv.svg b/test/W3C_SVG_12_TinyTestSuite_beta/images/toc-sv.svg new file mode 100755 index 00000000..bada7796 --- /dev/null +++ b/test/W3C_SVG_12_TinyTestSuite_beta/images/toc-sv.svg @@ -0,0 +1,114 @@ + + + + + + +SVG Conformance Tests -- TOC-SV + + + + + +26 December 2000 + +SVG Conformance Tests -- TOC (-SV) + + +Table of Contents + + +3. Rendering Model + + + +5. Structure + + + +6. Styling + + + +7. Coordinate Systems, Transformations, and Units + + + +8. Paths + + + +9. Basic Shapes + + + +10. Text + + + +11. Painting: Filling, Stroking, and Markers + + + +12. Color + + + +13. Gradients and Patterns + + + +14. Clipping, Masking, Compositing + + + +15. Filter Effects + + + +16. Interactivity + + + +17. Linking + + + +18. Scripting + + + +19. Animation + + + +20. Fonts + + + +21. Metadata + + + +23. Extensibility + + + +B. DOM + + + +F. Implementation requirements +G. Conformance requirements + + + diff --git a/test/W3C_SVG_12_TinyTestSuite_beta/images/toc-svcmp.svg b/test/W3C_SVG_12_TinyTestSuite_beta/images/toc-svcmp.svg new file mode 100755 index 00000000..2a4e2601 --- /dev/null +++ b/test/W3C_SVG_12_TinyTestSuite_beta/images/toc-svcmp.svg @@ -0,0 +1,114 @@ + + + + + + +SVG Conformance Tests -- TOC-SV + + + + + +26 December 2000 + +SVG Conformance Tests -- TOC (-SV) + + +Table of Contents + + +3. Rendering Model + + + +5. Structure + + + +6. Styling + + + +7. Coordinate Systems, Transformations, and Units + + + +8. Paths + + + +9. Basic Shapes + + + +10. Text + + + +11. Painting: Filling, Stroking, and Markers + + + +12. Color + + + +13. Gradients and Patterns + + + +14. Clipping, Masking, Compositing + + + +15. Filter Effects + + + +16. Interactivity + + + +17. Linking + + + +18. Scripting + + + +19. Animation + + + +20. Fonts + + + +21. Metadata + + + +23. Extensibility + + + +B. DOM + + + +F. Implementation requirements +G. Conformance requirements + + + diff --git a/test/W3C_SVG_12_TinyTestSuite_beta/images/uparrow.png b/test/W3C_SVG_12_TinyTestSuite_beta/images/uparrow.png new file mode 100755 index 00000000..6fe9f096 Binary files /dev/null and b/test/W3C_SVG_12_TinyTestSuite_beta/images/uparrow.png differ diff --git a/test/W3C_SVG_12_TinyTestSuite_beta/images/viewport-fill-img.png b/test/W3C_SVG_12_TinyTestSuite_beta/images/viewport-fill-img.png new file mode 100755 index 00000000..ad51db12 Binary files /dev/null and b/test/W3C_SVG_12_TinyTestSuite_beta/images/viewport-fill-img.png differ diff --git a/test/W3C_SVG_12_TinyTestSuite_beta/images/welcome.wav b/test/W3C_SVG_12_TinyTestSuite_beta/images/welcome.wav new file mode 100755 index 00000000..b512109b Binary files /dev/null and b/test/W3C_SVG_12_TinyTestSuite_beta/images/welcome.wav differ diff --git a/test/W3C_SVG_12_TinyTestSuite_beta/images/xmltree.xml b/test/W3C_SVG_12_TinyTestSuite_beta/images/xmltree.xml new file mode 100755 index 00000000..dafddea3 --- /dev/null +++ b/test/W3C_SVG_12_TinyTestSuite_beta/images/xmltree.xml @@ -0,0 +1,4 @@ + + + This is for testing xml in parsexml. + diff --git a/test/W3C_SVG_12_TinyTestSuite_beta/index.html b/test/W3C_SVG_12_TinyTestSuite_beta/index.html new file mode 100755 index 00000000..28570877 --- /dev/null +++ b/test/W3C_SVG_12_TinyTestSuite_beta/index.html @@ -0,0 +1,48 @@ + + + + + + + + +SVG 1.2 Tiny Test Suite + + + +

SVG 1.2 Tiny Test Suite

+

12 Sep 2008 +

+

Welcome to the SVG 1.2 Tiny Test Suite.

+

See the matrix of test results in either +HTML +or SVG.

+

Tests in HTML using <object>:

+ +

Tests in HTML using <embed>:

+ +

Download archives of the Testsuite

+ + + diff --git a/test/W3C_SVG_12_TinyTestSuite_beta/png/animate-elem-02-t.png b/test/W3C_SVG_12_TinyTestSuite_beta/png/animate-elem-02-t.png new file mode 100755 index 00000000..06d411ef Binary files /dev/null and b/test/W3C_SVG_12_TinyTestSuite_beta/png/animate-elem-02-t.png differ diff --git a/test/W3C_SVG_12_TinyTestSuite_beta/png/animate-elem-03-t.png b/test/W3C_SVG_12_TinyTestSuite_beta/png/animate-elem-03-t.png new file mode 100755 index 00000000..5afa9edd Binary files /dev/null and b/test/W3C_SVG_12_TinyTestSuite_beta/png/animate-elem-03-t.png differ diff --git a/test/W3C_SVG_12_TinyTestSuite_beta/png/animate-elem-04-t.png b/test/W3C_SVG_12_TinyTestSuite_beta/png/animate-elem-04-t.png new file mode 100755 index 00000000..308cfd06 Binary files /dev/null and b/test/W3C_SVG_12_TinyTestSuite_beta/png/animate-elem-04-t.png differ diff --git a/test/W3C_SVG_12_TinyTestSuite_beta/png/animate-elem-05-t.png b/test/W3C_SVG_12_TinyTestSuite_beta/png/animate-elem-05-t.png new file mode 100755 index 00000000..e71aeccb Binary files /dev/null and b/test/W3C_SVG_12_TinyTestSuite_beta/png/animate-elem-05-t.png differ diff --git a/test/W3C_SVG_12_TinyTestSuite_beta/png/animate-elem-06-t.png b/test/W3C_SVG_12_TinyTestSuite_beta/png/animate-elem-06-t.png new file mode 100755 index 00000000..067aac70 Binary files /dev/null and b/test/W3C_SVG_12_TinyTestSuite_beta/png/animate-elem-06-t.png differ diff --git a/test/W3C_SVG_12_TinyTestSuite_beta/png/animate-elem-07-t.png b/test/W3C_SVG_12_TinyTestSuite_beta/png/animate-elem-07-t.png new file mode 100755 index 00000000..13d9fab9 Binary files /dev/null and b/test/W3C_SVG_12_TinyTestSuite_beta/png/animate-elem-07-t.png differ diff --git a/test/W3C_SVG_12_TinyTestSuite_beta/png/animate-elem-08-t.png b/test/W3C_SVG_12_TinyTestSuite_beta/png/animate-elem-08-t.png new file mode 100755 index 00000000..e5e2e187 Binary files /dev/null and b/test/W3C_SVG_12_TinyTestSuite_beta/png/animate-elem-08-t.png differ diff --git a/test/W3C_SVG_12_TinyTestSuite_beta/png/animate-elem-09-t.png b/test/W3C_SVG_12_TinyTestSuite_beta/png/animate-elem-09-t.png new file mode 100755 index 00000000..d42baeea Binary files /dev/null and b/test/W3C_SVG_12_TinyTestSuite_beta/png/animate-elem-09-t.png differ diff --git a/test/W3C_SVG_12_TinyTestSuite_beta/png/animate-elem-10-t.png b/test/W3C_SVG_12_TinyTestSuite_beta/png/animate-elem-10-t.png new file mode 100755 index 00000000..d61c634d Binary files /dev/null and b/test/W3C_SVG_12_TinyTestSuite_beta/png/animate-elem-10-t.png differ diff --git a/test/W3C_SVG_12_TinyTestSuite_beta/png/animate-elem-11-t.png b/test/W3C_SVG_12_TinyTestSuite_beta/png/animate-elem-11-t.png new file mode 100755 index 00000000..5887bacb Binary files /dev/null and b/test/W3C_SVG_12_TinyTestSuite_beta/png/animate-elem-11-t.png differ diff --git a/test/W3C_SVG_12_TinyTestSuite_beta/png/animate-elem-12-t.png b/test/W3C_SVG_12_TinyTestSuite_beta/png/animate-elem-12-t.png new file mode 100755 index 00000000..b9982cd8 Binary files /dev/null and b/test/W3C_SVG_12_TinyTestSuite_beta/png/animate-elem-12-t.png differ diff --git a/test/W3C_SVG_12_TinyTestSuite_beta/png/animate-elem-13-t.png b/test/W3C_SVG_12_TinyTestSuite_beta/png/animate-elem-13-t.png new file mode 100755 index 00000000..5f9c0b1d Binary files /dev/null and b/test/W3C_SVG_12_TinyTestSuite_beta/png/animate-elem-13-t.png differ diff --git a/test/W3C_SVG_12_TinyTestSuite_beta/png/animate-elem-14-t.png b/test/W3C_SVG_12_TinyTestSuite_beta/png/animate-elem-14-t.png new file mode 100755 index 00000000..8e6d4cfc Binary files /dev/null and b/test/W3C_SVG_12_TinyTestSuite_beta/png/animate-elem-14-t.png differ diff --git a/test/W3C_SVG_12_TinyTestSuite_beta/png/animate-elem-15-t.png b/test/W3C_SVG_12_TinyTestSuite_beta/png/animate-elem-15-t.png new file mode 100755 index 00000000..42e9fb74 Binary files /dev/null and b/test/W3C_SVG_12_TinyTestSuite_beta/png/animate-elem-15-t.png differ diff --git a/test/W3C_SVG_12_TinyTestSuite_beta/png/animate-elem-17-t.png b/test/W3C_SVG_12_TinyTestSuite_beta/png/animate-elem-17-t.png new file mode 100755 index 00000000..82b77d26 Binary files /dev/null and b/test/W3C_SVG_12_TinyTestSuite_beta/png/animate-elem-17-t.png differ diff --git a/test/W3C_SVG_12_TinyTestSuite_beta/png/animate-elem-19-t.png b/test/W3C_SVG_12_TinyTestSuite_beta/png/animate-elem-19-t.png new file mode 100755 index 00000000..b33f766d Binary files /dev/null and b/test/W3C_SVG_12_TinyTestSuite_beta/png/animate-elem-19-t.png differ diff --git a/test/W3C_SVG_12_TinyTestSuite_beta/png/animate-elem-20-t.png b/test/W3C_SVG_12_TinyTestSuite_beta/png/animate-elem-20-t.png new file mode 100755 index 00000000..c71f2611 Binary files /dev/null and b/test/W3C_SVG_12_TinyTestSuite_beta/png/animate-elem-20-t.png differ diff --git a/test/W3C_SVG_12_TinyTestSuite_beta/png/animate-elem-201-t.png b/test/W3C_SVG_12_TinyTestSuite_beta/png/animate-elem-201-t.png new file mode 100755 index 00000000..74ec290b Binary files /dev/null and b/test/W3C_SVG_12_TinyTestSuite_beta/png/animate-elem-201-t.png differ diff --git a/test/W3C_SVG_12_TinyTestSuite_beta/png/animate-elem-202-t.png b/test/W3C_SVG_12_TinyTestSuite_beta/png/animate-elem-202-t.png new file mode 100755 index 00000000..bdc2b98a Binary files /dev/null and b/test/W3C_SVG_12_TinyTestSuite_beta/png/animate-elem-202-t.png differ diff --git a/test/W3C_SVG_12_TinyTestSuite_beta/png/animate-elem-203-t.png b/test/W3C_SVG_12_TinyTestSuite_beta/png/animate-elem-203-t.png new file mode 100755 index 00000000..1aeffbdc Binary files /dev/null and b/test/W3C_SVG_12_TinyTestSuite_beta/png/animate-elem-203-t.png differ diff --git a/test/W3C_SVG_12_TinyTestSuite_beta/png/animate-elem-205-t.png b/test/W3C_SVG_12_TinyTestSuite_beta/png/animate-elem-205-t.png new file mode 100755 index 00000000..cd5f541b Binary files /dev/null and b/test/W3C_SVG_12_TinyTestSuite_beta/png/animate-elem-205-t.png differ diff --git a/test/W3C_SVG_12_TinyTestSuite_beta/png/animate-elem-206-t.png b/test/W3C_SVG_12_TinyTestSuite_beta/png/animate-elem-206-t.png new file mode 100755 index 00000000..847136d9 Binary files /dev/null and b/test/W3C_SVG_12_TinyTestSuite_beta/png/animate-elem-206-t.png differ diff --git a/test/W3C_SVG_12_TinyTestSuite_beta/png/animate-elem-207-t.png b/test/W3C_SVG_12_TinyTestSuite_beta/png/animate-elem-207-t.png new file mode 100755 index 00000000..acee2a48 Binary files /dev/null and b/test/W3C_SVG_12_TinyTestSuite_beta/png/animate-elem-207-t.png differ diff --git a/test/W3C_SVG_12_TinyTestSuite_beta/png/animate-elem-209-t.png b/test/W3C_SVG_12_TinyTestSuite_beta/png/animate-elem-209-t.png new file mode 100755 index 00000000..b5f668d1 Binary files /dev/null and b/test/W3C_SVG_12_TinyTestSuite_beta/png/animate-elem-209-t.png differ diff --git a/test/W3C_SVG_12_TinyTestSuite_beta/png/animate-elem-21-t.png b/test/W3C_SVG_12_TinyTestSuite_beta/png/animate-elem-21-t.png new file mode 100755 index 00000000..7d2de934 Binary files /dev/null and b/test/W3C_SVG_12_TinyTestSuite_beta/png/animate-elem-21-t.png differ diff --git a/test/W3C_SVG_12_TinyTestSuite_beta/png/animate-elem-210-t.png b/test/W3C_SVG_12_TinyTestSuite_beta/png/animate-elem-210-t.png new file mode 100755 index 00000000..c4dab6c0 Binary files /dev/null and b/test/W3C_SVG_12_TinyTestSuite_beta/png/animate-elem-210-t.png differ diff --git a/test/W3C_SVG_12_TinyTestSuite_beta/png/animate-elem-211-t.png b/test/W3C_SVG_12_TinyTestSuite_beta/png/animate-elem-211-t.png new file mode 100755 index 00000000..2b564c70 Binary files /dev/null and b/test/W3C_SVG_12_TinyTestSuite_beta/png/animate-elem-211-t.png differ diff --git a/test/W3C_SVG_12_TinyTestSuite_beta/png/animate-elem-212-t.png b/test/W3C_SVG_12_TinyTestSuite_beta/png/animate-elem-212-t.png new file mode 100755 index 00000000..a427233b Binary files /dev/null and b/test/W3C_SVG_12_TinyTestSuite_beta/png/animate-elem-212-t.png differ diff --git a/test/W3C_SVG_12_TinyTestSuite_beta/png/animate-elem-213-t.png b/test/W3C_SVG_12_TinyTestSuite_beta/png/animate-elem-213-t.png new file mode 100755 index 00000000..18fd7c06 Binary files /dev/null and b/test/W3C_SVG_12_TinyTestSuite_beta/png/animate-elem-213-t.png differ diff --git a/test/W3C_SVG_12_TinyTestSuite_beta/png/animate-elem-214-t.png b/test/W3C_SVG_12_TinyTestSuite_beta/png/animate-elem-214-t.png new file mode 100755 index 00000000..df142839 Binary files /dev/null and b/test/W3C_SVG_12_TinyTestSuite_beta/png/animate-elem-214-t.png differ diff --git a/test/W3C_SVG_12_TinyTestSuite_beta/png/animate-elem-215-t.png b/test/W3C_SVG_12_TinyTestSuite_beta/png/animate-elem-215-t.png new file mode 100755 index 00000000..819d010e Binary files /dev/null and b/test/W3C_SVG_12_TinyTestSuite_beta/png/animate-elem-215-t.png differ diff --git a/test/W3C_SVG_12_TinyTestSuite_beta/png/animate-elem-216-t.png b/test/W3C_SVG_12_TinyTestSuite_beta/png/animate-elem-216-t.png new file mode 100755 index 00000000..abcb0d9b Binary files /dev/null and b/test/W3C_SVG_12_TinyTestSuite_beta/png/animate-elem-216-t.png differ diff --git a/test/W3C_SVG_12_TinyTestSuite_beta/png/animate-elem-217-t.png b/test/W3C_SVG_12_TinyTestSuite_beta/png/animate-elem-217-t.png new file mode 100755 index 00000000..1ab3dbb5 Binary files /dev/null and b/test/W3C_SVG_12_TinyTestSuite_beta/png/animate-elem-217-t.png differ diff --git a/test/W3C_SVG_12_TinyTestSuite_beta/png/animate-elem-218-t.png b/test/W3C_SVG_12_TinyTestSuite_beta/png/animate-elem-218-t.png new file mode 100755 index 00000000..08e970bf Binary files /dev/null and b/test/W3C_SVG_12_TinyTestSuite_beta/png/animate-elem-218-t.png differ diff --git a/test/W3C_SVG_12_TinyTestSuite_beta/png/animate-elem-219-t.png b/test/W3C_SVG_12_TinyTestSuite_beta/png/animate-elem-219-t.png new file mode 100755 index 00000000..1a8bff44 Binary files /dev/null and b/test/W3C_SVG_12_TinyTestSuite_beta/png/animate-elem-219-t.png differ diff --git a/test/W3C_SVG_12_TinyTestSuite_beta/png/animate-elem-22-t.png b/test/W3C_SVG_12_TinyTestSuite_beta/png/animate-elem-22-t.png new file mode 100755 index 00000000..c37f9fb0 Binary files /dev/null and b/test/W3C_SVG_12_TinyTestSuite_beta/png/animate-elem-22-t.png differ diff --git a/test/W3C_SVG_12_TinyTestSuite_beta/png/animate-elem-221-t.png b/test/W3C_SVG_12_TinyTestSuite_beta/png/animate-elem-221-t.png new file mode 100755 index 00000000..5626ebb7 Binary files /dev/null and b/test/W3C_SVG_12_TinyTestSuite_beta/png/animate-elem-221-t.png differ diff --git a/test/W3C_SVG_12_TinyTestSuite_beta/png/animate-elem-222-t.png b/test/W3C_SVG_12_TinyTestSuite_beta/png/animate-elem-222-t.png new file mode 100755 index 00000000..f14f212a Binary files /dev/null and b/test/W3C_SVG_12_TinyTestSuite_beta/png/animate-elem-222-t.png differ diff --git a/test/W3C_SVG_12_TinyTestSuite_beta/png/animate-elem-225-t.png b/test/W3C_SVG_12_TinyTestSuite_beta/png/animate-elem-225-t.png new file mode 100755 index 00000000..6f2675bc Binary files /dev/null and b/test/W3C_SVG_12_TinyTestSuite_beta/png/animate-elem-225-t.png differ diff --git a/test/W3C_SVG_12_TinyTestSuite_beta/png/animate-elem-226-t.png b/test/W3C_SVG_12_TinyTestSuite_beta/png/animate-elem-226-t.png new file mode 100755 index 00000000..67e3e8ab Binary files /dev/null and b/test/W3C_SVG_12_TinyTestSuite_beta/png/animate-elem-226-t.png differ diff --git a/test/W3C_SVG_12_TinyTestSuite_beta/png/animate-elem-227-t.png b/test/W3C_SVG_12_TinyTestSuite_beta/png/animate-elem-227-t.png new file mode 100755 index 00000000..60bbe765 Binary files /dev/null and b/test/W3C_SVG_12_TinyTestSuite_beta/png/animate-elem-227-t.png differ diff --git a/test/W3C_SVG_12_TinyTestSuite_beta/png/animate-elem-23-t.png b/test/W3C_SVG_12_TinyTestSuite_beta/png/animate-elem-23-t.png new file mode 100755 index 00000000..99d78234 Binary files /dev/null and b/test/W3C_SVG_12_TinyTestSuite_beta/png/animate-elem-23-t.png differ diff --git a/test/W3C_SVG_12_TinyTestSuite_beta/png/animate-elem-24-t.png b/test/W3C_SVG_12_TinyTestSuite_beta/png/animate-elem-24-t.png new file mode 100755 index 00000000..084d07a3 Binary files /dev/null and b/test/W3C_SVG_12_TinyTestSuite_beta/png/animate-elem-24-t.png differ diff --git a/test/W3C_SVG_12_TinyTestSuite_beta/png/animate-elem-25-t.png b/test/W3C_SVG_12_TinyTestSuite_beta/png/animate-elem-25-t.png new file mode 100755 index 00000000..f74ea22c Binary files /dev/null and b/test/W3C_SVG_12_TinyTestSuite_beta/png/animate-elem-25-t.png differ diff --git a/test/W3C_SVG_12_TinyTestSuite_beta/png/animate-elem-26-t.png b/test/W3C_SVG_12_TinyTestSuite_beta/png/animate-elem-26-t.png new file mode 100755 index 00000000..4af9010b Binary files /dev/null and b/test/W3C_SVG_12_TinyTestSuite_beta/png/animate-elem-26-t.png differ diff --git a/test/W3C_SVG_12_TinyTestSuite_beta/png/animate-elem-27-t.png b/test/W3C_SVG_12_TinyTestSuite_beta/png/animate-elem-27-t.png new file mode 100755 index 00000000..0d76d509 Binary files /dev/null and b/test/W3C_SVG_12_TinyTestSuite_beta/png/animate-elem-27-t.png differ diff --git a/test/W3C_SVG_12_TinyTestSuite_beta/png/animate-elem-28-t.png b/test/W3C_SVG_12_TinyTestSuite_beta/png/animate-elem-28-t.png new file mode 100755 index 00000000..df29f5e9 Binary files /dev/null and b/test/W3C_SVG_12_TinyTestSuite_beta/png/animate-elem-28-t.png differ diff --git a/test/W3C_SVG_12_TinyTestSuite_beta/png/animate-elem-29-t.png b/test/W3C_SVG_12_TinyTestSuite_beta/png/animate-elem-29-t.png new file mode 100755 index 00000000..7d2de934 Binary files /dev/null and b/test/W3C_SVG_12_TinyTestSuite_beta/png/animate-elem-29-t.png differ diff --git a/test/W3C_SVG_12_TinyTestSuite_beta/png/animate-elem-30-t.png b/test/W3C_SVG_12_TinyTestSuite_beta/png/animate-elem-30-t.png new file mode 100755 index 00000000..e61b1b0e Binary files /dev/null and b/test/W3C_SVG_12_TinyTestSuite_beta/png/animate-elem-30-t.png differ diff --git a/test/W3C_SVG_12_TinyTestSuite_beta/png/animate-elem-31-t.png b/test/W3C_SVG_12_TinyTestSuite_beta/png/animate-elem-31-t.png new file mode 100755 index 00000000..63a2815b Binary files /dev/null and b/test/W3C_SVG_12_TinyTestSuite_beta/png/animate-elem-31-t.png differ diff --git a/test/W3C_SVG_12_TinyTestSuite_beta/png/animate-elem-32-t.png b/test/W3C_SVG_12_TinyTestSuite_beta/png/animate-elem-32-t.png new file mode 100755 index 00000000..477dd58d Binary files /dev/null and b/test/W3C_SVG_12_TinyTestSuite_beta/png/animate-elem-32-t.png differ diff --git a/test/W3C_SVG_12_TinyTestSuite_beta/png/animate-elem-33-t.png b/test/W3C_SVG_12_TinyTestSuite_beta/png/animate-elem-33-t.png new file mode 100755 index 00000000..06dac6e1 Binary files /dev/null and b/test/W3C_SVG_12_TinyTestSuite_beta/png/animate-elem-33-t.png differ diff --git a/test/W3C_SVG_12_TinyTestSuite_beta/png/animate-elem-34-t.png b/test/W3C_SVG_12_TinyTestSuite_beta/png/animate-elem-34-t.png new file mode 100755 index 00000000..f1749cff Binary files /dev/null and b/test/W3C_SVG_12_TinyTestSuite_beta/png/animate-elem-34-t.png differ diff --git a/test/W3C_SVG_12_TinyTestSuite_beta/png/animate-elem-35-t.png b/test/W3C_SVG_12_TinyTestSuite_beta/png/animate-elem-35-t.png new file mode 100755 index 00000000..78b060fe Binary files /dev/null and b/test/W3C_SVG_12_TinyTestSuite_beta/png/animate-elem-35-t.png differ diff --git a/test/W3C_SVG_12_TinyTestSuite_beta/png/animate-elem-36-t.png b/test/W3C_SVG_12_TinyTestSuite_beta/png/animate-elem-36-t.png new file mode 100755 index 00000000..94771226 Binary files /dev/null and b/test/W3C_SVG_12_TinyTestSuite_beta/png/animate-elem-36-t.png differ diff --git a/test/W3C_SVG_12_TinyTestSuite_beta/png/animate-elem-37-t.png b/test/W3C_SVG_12_TinyTestSuite_beta/png/animate-elem-37-t.png new file mode 100755 index 00000000..18d6884e Binary files /dev/null and b/test/W3C_SVG_12_TinyTestSuite_beta/png/animate-elem-37-t.png differ diff --git a/test/W3C_SVG_12_TinyTestSuite_beta/png/animate-elem-38-t.png b/test/W3C_SVG_12_TinyTestSuite_beta/png/animate-elem-38-t.png new file mode 100755 index 00000000..4b4fa9b5 Binary files /dev/null and b/test/W3C_SVG_12_TinyTestSuite_beta/png/animate-elem-38-t.png differ diff --git a/test/W3C_SVG_12_TinyTestSuite_beta/png/animate-elem-39-t.png b/test/W3C_SVG_12_TinyTestSuite_beta/png/animate-elem-39-t.png new file mode 100755 index 00000000..2ee685a3 Binary files /dev/null and b/test/W3C_SVG_12_TinyTestSuite_beta/png/animate-elem-39-t.png differ diff --git a/test/W3C_SVG_12_TinyTestSuite_beta/png/animate-elem-40-t.png b/test/W3C_SVG_12_TinyTestSuite_beta/png/animate-elem-40-t.png new file mode 100755 index 00000000..c805ab7b Binary files /dev/null and b/test/W3C_SVG_12_TinyTestSuite_beta/png/animate-elem-40-t.png differ diff --git a/test/W3C_SVG_12_TinyTestSuite_beta/png/animate-elem-41-t.png b/test/W3C_SVG_12_TinyTestSuite_beta/png/animate-elem-41-t.png new file mode 100755 index 00000000..b2eda253 Binary files /dev/null and b/test/W3C_SVG_12_TinyTestSuite_beta/png/animate-elem-41-t.png differ diff --git a/test/W3C_SVG_12_TinyTestSuite_beta/png/animate-elem-44-t.png b/test/W3C_SVG_12_TinyTestSuite_beta/png/animate-elem-44-t.png new file mode 100755 index 00000000..d48a7d6c Binary files /dev/null and b/test/W3C_SVG_12_TinyTestSuite_beta/png/animate-elem-44-t.png differ diff --git a/test/W3C_SVG_12_TinyTestSuite_beta/png/animate-elem-46-t.png b/test/W3C_SVG_12_TinyTestSuite_beta/png/animate-elem-46-t.png new file mode 100755 index 00000000..f2ee4d2b Binary files /dev/null and b/test/W3C_SVG_12_TinyTestSuite_beta/png/animate-elem-46-t.png differ diff --git a/test/W3C_SVG_12_TinyTestSuite_beta/png/animate-elem-52-t.png b/test/W3C_SVG_12_TinyTestSuite_beta/png/animate-elem-52-t.png new file mode 100755 index 00000000..5b2803e7 Binary files /dev/null and b/test/W3C_SVG_12_TinyTestSuite_beta/png/animate-elem-52-t.png differ diff --git a/test/W3C_SVG_12_TinyTestSuite_beta/png/animate-elem-53-t.png b/test/W3C_SVG_12_TinyTestSuite_beta/png/animate-elem-53-t.png new file mode 100755 index 00000000..a7610865 Binary files /dev/null and b/test/W3C_SVG_12_TinyTestSuite_beta/png/animate-elem-53-t.png differ diff --git a/test/W3C_SVG_12_TinyTestSuite_beta/png/animate-elem-61-t.png b/test/W3C_SVG_12_TinyTestSuite_beta/png/animate-elem-61-t.png new file mode 100755 index 00000000..64ca8c22 Binary files /dev/null and b/test/W3C_SVG_12_TinyTestSuite_beta/png/animate-elem-61-t.png differ diff --git a/test/W3C_SVG_12_TinyTestSuite_beta/png/animate-elem-64-t.png b/test/W3C_SVG_12_TinyTestSuite_beta/png/animate-elem-64-t.png new file mode 100755 index 00000000..671f2121 Binary files /dev/null and b/test/W3C_SVG_12_TinyTestSuite_beta/png/animate-elem-64-t.png differ diff --git a/test/W3C_SVG_12_TinyTestSuite_beta/png/animate-elem-65-t.png b/test/W3C_SVG_12_TinyTestSuite_beta/png/animate-elem-65-t.png new file mode 100755 index 00000000..1de58f77 Binary files /dev/null and b/test/W3C_SVG_12_TinyTestSuite_beta/png/animate-elem-65-t.png differ diff --git a/test/W3C_SVG_12_TinyTestSuite_beta/png/animate-elem-66-t.png b/test/W3C_SVG_12_TinyTestSuite_beta/png/animate-elem-66-t.png new file mode 100755 index 00000000..becd0866 Binary files /dev/null and b/test/W3C_SVG_12_TinyTestSuite_beta/png/animate-elem-66-t.png differ diff --git a/test/W3C_SVG_12_TinyTestSuite_beta/png/animate-elem-67-t.png b/test/W3C_SVG_12_TinyTestSuite_beta/png/animate-elem-67-t.png new file mode 100755 index 00000000..87d6a0e0 Binary files /dev/null and b/test/W3C_SVG_12_TinyTestSuite_beta/png/animate-elem-67-t.png differ diff --git a/test/W3C_SVG_12_TinyTestSuite_beta/png/animate-elem-68-t.png b/test/W3C_SVG_12_TinyTestSuite_beta/png/animate-elem-68-t.png new file mode 100755 index 00000000..53b0bed2 Binary files /dev/null and b/test/W3C_SVG_12_TinyTestSuite_beta/png/animate-elem-68-t.png differ diff --git a/test/W3C_SVG_12_TinyTestSuite_beta/png/animate-elem-69-t.png b/test/W3C_SVG_12_TinyTestSuite_beta/png/animate-elem-69-t.png new file mode 100755 index 00000000..cc649bbf Binary files /dev/null and b/test/W3C_SVG_12_TinyTestSuite_beta/png/animate-elem-69-t.png differ diff --git a/test/W3C_SVG_12_TinyTestSuite_beta/png/animate-elem-70-t.png b/test/W3C_SVG_12_TinyTestSuite_beta/png/animate-elem-70-t.png new file mode 100755 index 00000000..b109407a Binary files /dev/null and b/test/W3C_SVG_12_TinyTestSuite_beta/png/animate-elem-70-t.png differ diff --git a/test/W3C_SVG_12_TinyTestSuite_beta/png/animate-elem-77-t.png b/test/W3C_SVG_12_TinyTestSuite_beta/png/animate-elem-77-t.png new file mode 100755 index 00000000..547b7623 Binary files /dev/null and b/test/W3C_SVG_12_TinyTestSuite_beta/png/animate-elem-77-t.png differ diff --git a/test/W3C_SVG_12_TinyTestSuite_beta/png/animate-elem-78-t.png b/test/W3C_SVG_12_TinyTestSuite_beta/png/animate-elem-78-t.png new file mode 100755 index 00000000..722d702c Binary files /dev/null and b/test/W3C_SVG_12_TinyTestSuite_beta/png/animate-elem-78-t.png differ diff --git a/test/W3C_SVG_12_TinyTestSuite_beta/png/animate-elem-80-t.png b/test/W3C_SVG_12_TinyTestSuite_beta/png/animate-elem-80-t.png new file mode 100755 index 00000000..b885f320 Binary files /dev/null and b/test/W3C_SVG_12_TinyTestSuite_beta/png/animate-elem-80-t.png differ diff --git a/test/W3C_SVG_12_TinyTestSuite_beta/png/animate-elem-81-t.png b/test/W3C_SVG_12_TinyTestSuite_beta/png/animate-elem-81-t.png new file mode 100755 index 00000000..f6bc32ea Binary files /dev/null and b/test/W3C_SVG_12_TinyTestSuite_beta/png/animate-elem-81-t.png differ diff --git a/test/W3C_SVG_12_TinyTestSuite_beta/png/animate-elem-82-t.png b/test/W3C_SVG_12_TinyTestSuite_beta/png/animate-elem-82-t.png new file mode 100755 index 00000000..cfe073bb Binary files /dev/null and b/test/W3C_SVG_12_TinyTestSuite_beta/png/animate-elem-82-t.png differ diff --git a/test/W3C_SVG_12_TinyTestSuite_beta/png/animate-elem-83-t.png b/test/W3C_SVG_12_TinyTestSuite_beta/png/animate-elem-83-t.png new file mode 100755 index 00000000..c09c7a6b Binary files /dev/null and b/test/W3C_SVG_12_TinyTestSuite_beta/png/animate-elem-83-t.png differ diff --git a/test/W3C_SVG_12_TinyTestSuite_beta/png/animate-elem-84-t.png b/test/W3C_SVG_12_TinyTestSuite_beta/png/animate-elem-84-t.png new file mode 100755 index 00000000..8ebd1ae3 Binary files /dev/null and b/test/W3C_SVG_12_TinyTestSuite_beta/png/animate-elem-84-t.png differ diff --git a/test/W3C_SVG_12_TinyTestSuite_beta/png/animate-elem-85-t.png b/test/W3C_SVG_12_TinyTestSuite_beta/png/animate-elem-85-t.png new file mode 100755 index 00000000..da371cbb Binary files /dev/null and b/test/W3C_SVG_12_TinyTestSuite_beta/png/animate-elem-85-t.png differ diff --git a/test/W3C_SVG_12_TinyTestSuite_beta/png/animate-elem-86-t.png b/test/W3C_SVG_12_TinyTestSuite_beta/png/animate-elem-86-t.png new file mode 100755 index 00000000..174e7bab Binary files /dev/null and b/test/W3C_SVG_12_TinyTestSuite_beta/png/animate-elem-86-t.png differ diff --git a/test/W3C_SVG_12_TinyTestSuite_beta/png/conf-reader-201-t.png b/test/W3C_SVG_12_TinyTestSuite_beta/png/conf-reader-201-t.png new file mode 100755 index 00000000..7d5955eb Binary files /dev/null and b/test/W3C_SVG_12_TinyTestSuite_beta/png/conf-reader-201-t.png differ diff --git a/test/W3C_SVG_12_TinyTestSuite_beta/png/coords-constr-201-t.png b/test/W3C_SVG_12_TinyTestSuite_beta/png/coords-constr-201-t.png new file mode 100755 index 00000000..f93408c2 Binary files /dev/null and b/test/W3C_SVG_12_TinyTestSuite_beta/png/coords-constr-201-t.png differ diff --git a/test/W3C_SVG_12_TinyTestSuite_beta/png/coords-constr-202-t.png b/test/W3C_SVG_12_TinyTestSuite_beta/png/coords-constr-202-t.png new file mode 100755 index 00000000..9c4a534b Binary files /dev/null and b/test/W3C_SVG_12_TinyTestSuite_beta/png/coords-constr-202-t.png differ diff --git a/test/W3C_SVG_12_TinyTestSuite_beta/png/coords-constr-203-t.png b/test/W3C_SVG_12_TinyTestSuite_beta/png/coords-constr-203-t.png new file mode 100755 index 00000000..b594aa4a Binary files /dev/null and b/test/W3C_SVG_12_TinyTestSuite_beta/png/coords-constr-203-t.png differ diff --git a/test/W3C_SVG_12_TinyTestSuite_beta/png/coords-constr-204-t.png b/test/W3C_SVG_12_TinyTestSuite_beta/png/coords-constr-204-t.png new file mode 100755 index 00000000..39529dd3 Binary files /dev/null and b/test/W3C_SVG_12_TinyTestSuite_beta/png/coords-constr-204-t.png differ diff --git a/test/W3C_SVG_12_TinyTestSuite_beta/png/coords-coord-01-t.png b/test/W3C_SVG_12_TinyTestSuite_beta/png/coords-coord-01-t.png new file mode 100755 index 00000000..b6e3c093 Binary files /dev/null and b/test/W3C_SVG_12_TinyTestSuite_beta/png/coords-coord-01-t.png differ diff --git a/test/W3C_SVG_12_TinyTestSuite_beta/png/coords-pAR-201-t.png b/test/W3C_SVG_12_TinyTestSuite_beta/png/coords-pAR-201-t.png new file mode 100755 index 00000000..95a29f6d Binary files /dev/null and b/test/W3C_SVG_12_TinyTestSuite_beta/png/coords-pAR-201-t.png differ diff --git a/test/W3C_SVG_12_TinyTestSuite_beta/png/coords-trans-01-t.png b/test/W3C_SVG_12_TinyTestSuite_beta/png/coords-trans-01-t.png new file mode 100755 index 00000000..a2823354 Binary files /dev/null and b/test/W3C_SVG_12_TinyTestSuite_beta/png/coords-trans-01-t.png differ diff --git a/test/W3C_SVG_12_TinyTestSuite_beta/png/coords-trans-02-t.png b/test/W3C_SVG_12_TinyTestSuite_beta/png/coords-trans-02-t.png new file mode 100755 index 00000000..7e5ba74a Binary files /dev/null and b/test/W3C_SVG_12_TinyTestSuite_beta/png/coords-trans-02-t.png differ diff --git a/test/W3C_SVG_12_TinyTestSuite_beta/png/coords-trans-03-t.png b/test/W3C_SVG_12_TinyTestSuite_beta/png/coords-trans-03-t.png new file mode 100755 index 00000000..75233de7 Binary files /dev/null and b/test/W3C_SVG_12_TinyTestSuite_beta/png/coords-trans-03-t.png differ diff --git a/test/W3C_SVG_12_TinyTestSuite_beta/png/coords-trans-04-t.png b/test/W3C_SVG_12_TinyTestSuite_beta/png/coords-trans-04-t.png new file mode 100755 index 00000000..c6fc002d Binary files /dev/null and b/test/W3C_SVG_12_TinyTestSuite_beta/png/coords-trans-04-t.png differ diff --git a/test/W3C_SVG_12_TinyTestSuite_beta/png/coords-trans-05-t.png b/test/W3C_SVG_12_TinyTestSuite_beta/png/coords-trans-05-t.png new file mode 100755 index 00000000..16e9cc0b Binary files /dev/null and b/test/W3C_SVG_12_TinyTestSuite_beta/png/coords-trans-05-t.png differ diff --git a/test/W3C_SVG_12_TinyTestSuite_beta/png/coords-trans-06-t.png b/test/W3C_SVG_12_TinyTestSuite_beta/png/coords-trans-06-t.png new file mode 100755 index 00000000..ed86cf17 Binary files /dev/null and b/test/W3C_SVG_12_TinyTestSuite_beta/png/coords-trans-06-t.png differ diff --git a/test/W3C_SVG_12_TinyTestSuite_beta/png/coords-trans-07-t.png b/test/W3C_SVG_12_TinyTestSuite_beta/png/coords-trans-07-t.png new file mode 100755 index 00000000..c21d9a6c Binary files /dev/null and b/test/W3C_SVG_12_TinyTestSuite_beta/png/coords-trans-07-t.png differ diff --git a/test/W3C_SVG_12_TinyTestSuite_beta/png/coords-trans-08-t.png b/test/W3C_SVG_12_TinyTestSuite_beta/png/coords-trans-08-t.png new file mode 100755 index 00000000..46cff6f8 Binary files /dev/null and b/test/W3C_SVG_12_TinyTestSuite_beta/png/coords-trans-08-t.png differ diff --git a/test/W3C_SVG_12_TinyTestSuite_beta/png/coords-trans-09-t.png b/test/W3C_SVG_12_TinyTestSuite_beta/png/coords-trans-09-t.png new file mode 100755 index 00000000..8e2eb21a Binary files /dev/null and b/test/W3C_SVG_12_TinyTestSuite_beta/png/coords-trans-09-t.png differ diff --git a/test/W3C_SVG_12_TinyTestSuite_beta/png/coords-units-01-t.png b/test/W3C_SVG_12_TinyTestSuite_beta/png/coords-units-01-t.png new file mode 100755 index 00000000..1dcae09f Binary files /dev/null and b/test/W3C_SVG_12_TinyTestSuite_beta/png/coords-units-01-t.png differ diff --git a/test/W3C_SVG_12_TinyTestSuite_beta/png/coords-viewattr-05-t.png b/test/W3C_SVG_12_TinyTestSuite_beta/png/coords-viewattr-05-t.png new file mode 100755 index 00000000..92f21273 Binary files /dev/null and b/test/W3C_SVG_12_TinyTestSuite_beta/png/coords-viewattr-05-t.png differ diff --git a/test/W3C_SVG_12_TinyTestSuite_beta/png/extend-namespace-02-t.png b/test/W3C_SVG_12_TinyTestSuite_beta/png/extend-namespace-02-t.png new file mode 100755 index 00000000..1d1f555d Binary files /dev/null and b/test/W3C_SVG_12_TinyTestSuite_beta/png/extend-namespace-02-t.png differ diff --git a/test/W3C_SVG_12_TinyTestSuite_beta/png/fonts-desc-02-t.png b/test/W3C_SVG_12_TinyTestSuite_beta/png/fonts-desc-02-t.png new file mode 100755 index 00000000..d8177875 Binary files /dev/null and b/test/W3C_SVG_12_TinyTestSuite_beta/png/fonts-desc-02-t.png differ diff --git a/test/W3C_SVG_12_TinyTestSuite_beta/png/fonts-elem-01-t.png b/test/W3C_SVG_12_TinyTestSuite_beta/png/fonts-elem-01-t.png new file mode 100755 index 00000000..76622802 Binary files /dev/null and b/test/W3C_SVG_12_TinyTestSuite_beta/png/fonts-elem-01-t.png differ diff --git a/test/W3C_SVG_12_TinyTestSuite_beta/png/fonts-elem-02-t.png b/test/W3C_SVG_12_TinyTestSuite_beta/png/fonts-elem-02-t.png new file mode 100755 index 00000000..6b1beda9 Binary files /dev/null and b/test/W3C_SVG_12_TinyTestSuite_beta/png/fonts-elem-02-t.png differ diff --git a/test/W3C_SVG_12_TinyTestSuite_beta/png/fonts-elem-03-t.png b/test/W3C_SVG_12_TinyTestSuite_beta/png/fonts-elem-03-t.png new file mode 100755 index 00000000..bb1cedad Binary files /dev/null and b/test/W3C_SVG_12_TinyTestSuite_beta/png/fonts-elem-03-t.png differ diff --git a/test/W3C_SVG_12_TinyTestSuite_beta/png/fonts-elem-06-t.png b/test/W3C_SVG_12_TinyTestSuite_beta/png/fonts-elem-06-t.png new file mode 100755 index 00000000..0aea0f72 Binary files /dev/null and b/test/W3C_SVG_12_TinyTestSuite_beta/png/fonts-elem-06-t.png differ diff --git a/test/W3C_SVG_12_TinyTestSuite_beta/png/fonts-glyph-02-t.png b/test/W3C_SVG_12_TinyTestSuite_beta/png/fonts-glyph-02-t.png new file mode 100755 index 00000000..8ca78931 Binary files /dev/null and b/test/W3C_SVG_12_TinyTestSuite_beta/png/fonts-glyph-02-t.png differ diff --git a/test/W3C_SVG_12_TinyTestSuite_beta/png/fonts-glyph-03-t.png b/test/W3C_SVG_12_TinyTestSuite_beta/png/fonts-glyph-03-t.png new file mode 100755 index 00000000..b70b0ea2 Binary files /dev/null and b/test/W3C_SVG_12_TinyTestSuite_beta/png/fonts-glyph-03-t.png differ diff --git a/test/W3C_SVG_12_TinyTestSuite_beta/png/fonts-glyph-04-t.png b/test/W3C_SVG_12_TinyTestSuite_beta/png/fonts-glyph-04-t.png new file mode 100755 index 00000000..2e5d26bd Binary files /dev/null and b/test/W3C_SVG_12_TinyTestSuite_beta/png/fonts-glyph-04-t.png differ diff --git a/test/W3C_SVG_12_TinyTestSuite_beta/png/fonts-glyph-201-t.png b/test/W3C_SVG_12_TinyTestSuite_beta/png/fonts-glyph-201-t.png new file mode 100755 index 00000000..a0ba0938 Binary files /dev/null and b/test/W3C_SVG_12_TinyTestSuite_beta/png/fonts-glyph-201-t.png differ diff --git a/test/W3C_SVG_12_TinyTestSuite_beta/png/fonts-glyph-202-t.png b/test/W3C_SVG_12_TinyTestSuite_beta/png/fonts-glyph-202-t.png new file mode 100755 index 00000000..0df793e2 Binary files /dev/null and b/test/W3C_SVG_12_TinyTestSuite_beta/png/fonts-glyph-202-t.png differ diff --git a/test/W3C_SVG_12_TinyTestSuite_beta/png/fonts-glyph-203-t.png b/test/W3C_SVG_12_TinyTestSuite_beta/png/fonts-glyph-203-t.png new file mode 100755 index 00000000..546097b2 Binary files /dev/null and b/test/W3C_SVG_12_TinyTestSuite_beta/png/fonts-glyph-203-t.png differ diff --git a/test/W3C_SVG_12_TinyTestSuite_beta/png/fonts-kern-01-t.png b/test/W3C_SVG_12_TinyTestSuite_beta/png/fonts-kern-01-t.png new file mode 100755 index 00000000..26a55e29 Binary files /dev/null and b/test/W3C_SVG_12_TinyTestSuite_beta/png/fonts-kern-01-t.png differ diff --git a/test/W3C_SVG_12_TinyTestSuite_beta/png/fonts-overview-201-t.png b/test/W3C_SVG_12_TinyTestSuite_beta/png/fonts-overview-201-t.png new file mode 100755 index 00000000..c1a9fae9 Binary files /dev/null and b/test/W3C_SVG_12_TinyTestSuite_beta/png/fonts-overview-201-t.png differ diff --git a/test/W3C_SVG_12_TinyTestSuite_beta/png/interact-dom-02-t.png b/test/W3C_SVG_12_TinyTestSuite_beta/png/interact-dom-02-t.png new file mode 100755 index 00000000..6bbf9829 Binary files /dev/null and b/test/W3C_SVG_12_TinyTestSuite_beta/png/interact-dom-02-t.png differ diff --git a/test/W3C_SVG_12_TinyTestSuite_beta/png/interact-event-201-t.png b/test/W3C_SVG_12_TinyTestSuite_beta/png/interact-event-201-t.png new file mode 100755 index 00000000..74f23f8a Binary files /dev/null and b/test/W3C_SVG_12_TinyTestSuite_beta/png/interact-event-201-t.png differ diff --git a/test/W3C_SVG_12_TinyTestSuite_beta/png/interact-event-202-t.png b/test/W3C_SVG_12_TinyTestSuite_beta/png/interact-event-202-t.png new file mode 100755 index 00000000..3105be71 Binary files /dev/null and b/test/W3C_SVG_12_TinyTestSuite_beta/png/interact-event-202-t.png differ diff --git a/test/W3C_SVG_12_TinyTestSuite_beta/png/interact-event-203-t.png b/test/W3C_SVG_12_TinyTestSuite_beta/png/interact-event-203-t.png new file mode 100755 index 00000000..ee67e690 Binary files /dev/null and b/test/W3C_SVG_12_TinyTestSuite_beta/png/interact-event-203-t.png differ diff --git a/test/W3C_SVG_12_TinyTestSuite_beta/png/interact-focus-201-t.png b/test/W3C_SVG_12_TinyTestSuite_beta/png/interact-focus-201-t.png new file mode 100755 index 00000000..e72ec0c2 Binary files /dev/null and b/test/W3C_SVG_12_TinyTestSuite_beta/png/interact-focus-201-t.png differ diff --git a/test/W3C_SVG_12_TinyTestSuite_beta/png/interact-focus-202-t.png b/test/W3C_SVG_12_TinyTestSuite_beta/png/interact-focus-202-t.png new file mode 100755 index 00000000..0a2c4c1a Binary files /dev/null and b/test/W3C_SVG_12_TinyTestSuite_beta/png/interact-focus-202-t.png differ diff --git a/test/W3C_SVG_12_TinyTestSuite_beta/png/interact-focus-203-t.png b/test/W3C_SVG_12_TinyTestSuite_beta/png/interact-focus-203-t.png new file mode 100755 index 00000000..e9c42324 Binary files /dev/null and b/test/W3C_SVG_12_TinyTestSuite_beta/png/interact-focus-203-t.png differ diff --git a/test/W3C_SVG_12_TinyTestSuite_beta/png/interact-focus-204-t.png b/test/W3C_SVG_12_TinyTestSuite_beta/png/interact-focus-204-t.png new file mode 100755 index 00000000..b871fa0b Binary files /dev/null and b/test/W3C_SVG_12_TinyTestSuite_beta/png/interact-focus-204-t.png differ diff --git a/test/W3C_SVG_12_TinyTestSuite_beta/png/interact-focus-205-t.png b/test/W3C_SVG_12_TinyTestSuite_beta/png/interact-focus-205-t.png new file mode 100755 index 00000000..7c09bb58 Binary files /dev/null and b/test/W3C_SVG_12_TinyTestSuite_beta/png/interact-focus-205-t.png differ diff --git a/test/W3C_SVG_12_TinyTestSuite_beta/png/interact-focus-206-t.png b/test/W3C_SVG_12_TinyTestSuite_beta/png/interact-focus-206-t.png new file mode 100755 index 00000000..0829fa2e Binary files /dev/null and b/test/W3C_SVG_12_TinyTestSuite_beta/png/interact-focus-206-t.png differ diff --git a/test/W3C_SVG_12_TinyTestSuite_beta/png/interact-focus-207-t.png b/test/W3C_SVG_12_TinyTestSuite_beta/png/interact-focus-207-t.png new file mode 100755 index 00000000..771dc3f6 Binary files /dev/null and b/test/W3C_SVG_12_TinyTestSuite_beta/png/interact-focus-207-t.png differ diff --git a/test/W3C_SVG_12_TinyTestSuite_beta/png/interact-focus-208-t.png b/test/W3C_SVG_12_TinyTestSuite_beta/png/interact-focus-208-t.png new file mode 100755 index 00000000..d3bcda71 Binary files /dev/null and b/test/W3C_SVG_12_TinyTestSuite_beta/png/interact-focus-208-t.png differ diff --git a/test/W3C_SVG_12_TinyTestSuite_beta/png/interact-focus-209-t.png b/test/W3C_SVG_12_TinyTestSuite_beta/png/interact-focus-209-t.png new file mode 100755 index 00000000..589df465 Binary files /dev/null and b/test/W3C_SVG_12_TinyTestSuite_beta/png/interact-focus-209-t.png differ diff --git a/test/W3C_SVG_12_TinyTestSuite_beta/png/interact-focus-210-t.png b/test/W3C_SVG_12_TinyTestSuite_beta/png/interact-focus-210-t.png new file mode 100755 index 00000000..bd8b8740 Binary files /dev/null and b/test/W3C_SVG_12_TinyTestSuite_beta/png/interact-focus-210-t.png differ diff --git a/test/W3C_SVG_12_TinyTestSuite_beta/png/interact-focus-211-t.png b/test/W3C_SVG_12_TinyTestSuite_beta/png/interact-focus-211-t.png new file mode 100755 index 00000000..718f6475 Binary files /dev/null and b/test/W3C_SVG_12_TinyTestSuite_beta/png/interact-focus-211-t.png differ diff --git a/test/W3C_SVG_12_TinyTestSuite_beta/png/interact-focus-212-t.png b/test/W3C_SVG_12_TinyTestSuite_beta/png/interact-focus-212-t.png new file mode 100755 index 00000000..688f96ce Binary files /dev/null and b/test/W3C_SVG_12_TinyTestSuite_beta/png/interact-focus-212-t.png differ diff --git a/test/W3C_SVG_12_TinyTestSuite_beta/png/interact-order-04-t.png b/test/W3C_SVG_12_TinyTestSuite_beta/png/interact-order-04-t.png new file mode 100755 index 00000000..9ee10594 Binary files /dev/null and b/test/W3C_SVG_12_TinyTestSuite_beta/png/interact-order-04-t.png differ diff --git a/test/W3C_SVG_12_TinyTestSuite_beta/png/interact-order-05-t.png b/test/W3C_SVG_12_TinyTestSuite_beta/png/interact-order-05-t.png new file mode 100755 index 00000000..2eb2dbc5 Binary files /dev/null and b/test/W3C_SVG_12_TinyTestSuite_beta/png/interact-order-05-t.png differ diff --git a/test/W3C_SVG_12_TinyTestSuite_beta/png/interact-order-06-t.png b/test/W3C_SVG_12_TinyTestSuite_beta/png/interact-order-06-t.png new file mode 100755 index 00000000..46e9c316 Binary files /dev/null and b/test/W3C_SVG_12_TinyTestSuite_beta/png/interact-order-06-t.png differ diff --git a/test/W3C_SVG_12_TinyTestSuite_beta/png/interact-pevents-02-t.png b/test/W3C_SVG_12_TinyTestSuite_beta/png/interact-pevents-02-t.png new file mode 100755 index 00000000..bdc11dc0 Binary files /dev/null and b/test/W3C_SVG_12_TinyTestSuite_beta/png/interact-pevents-02-t.png differ diff --git a/test/W3C_SVG_12_TinyTestSuite_beta/png/interact-pevents-05-t.png b/test/W3C_SVG_12_TinyTestSuite_beta/png/interact-pevents-05-t.png new file mode 100755 index 00000000..3e4b2392 Binary files /dev/null and b/test/W3C_SVG_12_TinyTestSuite_beta/png/interact-pevents-05-t.png differ diff --git a/test/W3C_SVG_12_TinyTestSuite_beta/png/interact-pevents-06-t.png b/test/W3C_SVG_12_TinyTestSuite_beta/png/interact-pevents-06-t.png new file mode 100755 index 00000000..e34479e7 Binary files /dev/null and b/test/W3C_SVG_12_TinyTestSuite_beta/png/interact-pevents-06-t.png differ diff --git a/test/W3C_SVG_12_TinyTestSuite_beta/png/interact-pevents-07-t.png b/test/W3C_SVG_12_TinyTestSuite_beta/png/interact-pevents-07-t.png new file mode 100755 index 00000000..3761f633 Binary files /dev/null and b/test/W3C_SVG_12_TinyTestSuite_beta/png/interact-pevents-07-t.png differ diff --git a/test/W3C_SVG_12_TinyTestSuite_beta/png/interact-pevents-08-t.png b/test/W3C_SVG_12_TinyTestSuite_beta/png/interact-pevents-08-t.png new file mode 100755 index 00000000..83f21f0a Binary files /dev/null and b/test/W3C_SVG_12_TinyTestSuite_beta/png/interact-pevents-08-t.png differ diff --git a/test/W3C_SVG_12_TinyTestSuite_beta/png/interact-zoom-01-t.png b/test/W3C_SVG_12_TinyTestSuite_beta/png/interact-zoom-01-t.png new file mode 100755 index 00000000..9bebc0f9 Binary files /dev/null and b/test/W3C_SVG_12_TinyTestSuite_beta/png/interact-zoom-01-t.png differ diff --git a/test/W3C_SVG_12_TinyTestSuite_beta/png/interact-zoom-02-t.png b/test/W3C_SVG_12_TinyTestSuite_beta/png/interact-zoom-02-t.png new file mode 100755 index 00000000..fa8f76d6 Binary files /dev/null and b/test/W3C_SVG_12_TinyTestSuite_beta/png/interact-zoom-02-t.png differ diff --git a/test/W3C_SVG_12_TinyTestSuite_beta/png/interact-zoom-03-t.png b/test/W3C_SVG_12_TinyTestSuite_beta/png/interact-zoom-03-t.png new file mode 100755 index 00000000..237d06dc Binary files /dev/null and b/test/W3C_SVG_12_TinyTestSuite_beta/png/interact-zoom-03-t.png differ diff --git a/test/W3C_SVG_12_TinyTestSuite_beta/png/intro-compat-201-t.png b/test/W3C_SVG_12_TinyTestSuite_beta/png/intro-compat-201-t.png new file mode 100755 index 00000000..ae915605 Binary files /dev/null and b/test/W3C_SVG_12_TinyTestSuite_beta/png/intro-compat-201-t.png differ diff --git a/test/W3C_SVG_12_TinyTestSuite_beta/png/jpeg-required-201-t.png b/test/W3C_SVG_12_TinyTestSuite_beta/png/jpeg-required-201-t.png new file mode 100755 index 00000000..e2fbd038 Binary files /dev/null and b/test/W3C_SVG_12_TinyTestSuite_beta/png/jpeg-required-201-t.png differ diff --git a/test/W3C_SVG_12_TinyTestSuite_beta/png/jpeg-required-202-t.png b/test/W3C_SVG_12_TinyTestSuite_beta/png/jpeg-required-202-t.png new file mode 100755 index 00000000..6d818bed Binary files /dev/null and b/test/W3C_SVG_12_TinyTestSuite_beta/png/jpeg-required-202-t.png differ diff --git a/test/W3C_SVG_12_TinyTestSuite_beta/png/jpeg-required-203-t.png b/test/W3C_SVG_12_TinyTestSuite_beta/png/jpeg-required-203-t.png new file mode 100755 index 00000000..7b7d7d05 Binary files /dev/null and b/test/W3C_SVG_12_TinyTestSuite_beta/png/jpeg-required-203-t.png differ diff --git a/test/W3C_SVG_12_TinyTestSuite_beta/png/jpeg-required-204-t.png b/test/W3C_SVG_12_TinyTestSuite_beta/png/jpeg-required-204-t.png new file mode 100755 index 00000000..af74f971 Binary files /dev/null and b/test/W3C_SVG_12_TinyTestSuite_beta/png/jpeg-required-204-t.png differ diff --git a/test/W3C_SVG_12_TinyTestSuite_beta/png/jpeg-required-205-t.png b/test/W3C_SVG_12_TinyTestSuite_beta/png/jpeg-required-205-t.png new file mode 100755 index 00000000..9779a85b Binary files /dev/null and b/test/W3C_SVG_12_TinyTestSuite_beta/png/jpeg-required-205-t.png differ diff --git a/test/W3C_SVG_12_TinyTestSuite_beta/png/jpeg-required-206-t.png b/test/W3C_SVG_12_TinyTestSuite_beta/png/jpeg-required-206-t.png new file mode 100755 index 00000000..ff9a3a1e Binary files /dev/null and b/test/W3C_SVG_12_TinyTestSuite_beta/png/jpeg-required-206-t.png differ diff --git a/test/W3C_SVG_12_TinyTestSuite_beta/png/jpeg-required-207-t.png b/test/W3C_SVG_12_TinyTestSuite_beta/png/jpeg-required-207-t.png new file mode 100755 index 00000000..4b687aee Binary files /dev/null and b/test/W3C_SVG_12_TinyTestSuite_beta/png/jpeg-required-207-t.png differ diff --git a/test/W3C_SVG_12_TinyTestSuite_beta/png/jpeg-required-208-t.png b/test/W3C_SVG_12_TinyTestSuite_beta/png/jpeg-required-208-t.png new file mode 100755 index 00000000..ca3baf95 Binary files /dev/null and b/test/W3C_SVG_12_TinyTestSuite_beta/png/jpeg-required-208-t.png differ diff --git a/test/W3C_SVG_12_TinyTestSuite_beta/png/jpeg-required-209-t.png b/test/W3C_SVG_12_TinyTestSuite_beta/png/jpeg-required-209-t.png new file mode 100755 index 00000000..cfe1531a Binary files /dev/null and b/test/W3C_SVG_12_TinyTestSuite_beta/png/jpeg-required-209-t.png differ diff --git a/test/W3C_SVG_12_TinyTestSuite_beta/png/linking-a-03-t.png b/test/W3C_SVG_12_TinyTestSuite_beta/png/linking-a-03-t.png new file mode 100755 index 00000000..261fec3d Binary files /dev/null and b/test/W3C_SVG_12_TinyTestSuite_beta/png/linking-a-03-t.png differ diff --git a/test/W3C_SVG_12_TinyTestSuite_beta/png/linking-a-08-t.png b/test/W3C_SVG_12_TinyTestSuite_beta/png/linking-a-08-t.png new file mode 100755 index 00000000..1ae55606 Binary files /dev/null and b/test/W3C_SVG_12_TinyTestSuite_beta/png/linking-a-08-t.png differ diff --git a/test/W3C_SVG_12_TinyTestSuite_beta/png/linking-a-201-t.png b/test/W3C_SVG_12_TinyTestSuite_beta/png/linking-a-201-t.png new file mode 100755 index 00000000..0c32cd0b Binary files /dev/null and b/test/W3C_SVG_12_TinyTestSuite_beta/png/linking-a-201-t.png differ diff --git a/test/W3C_SVG_12_TinyTestSuite_beta/png/linking-frag-201-t.png b/test/W3C_SVG_12_TinyTestSuite_beta/png/linking-frag-201-t.png new file mode 100755 index 00000000..1ae55606 Binary files /dev/null and b/test/W3C_SVG_12_TinyTestSuite_beta/png/linking-frag-201-t.png differ diff --git a/test/W3C_SVG_12_TinyTestSuite_beta/png/linking-frag-202-t.png b/test/W3C_SVG_12_TinyTestSuite_beta/png/linking-frag-202-t.png new file mode 100755 index 00000000..347f2909 Binary files /dev/null and b/test/W3C_SVG_12_TinyTestSuite_beta/png/linking-frag-202-t.png differ diff --git a/test/W3C_SVG_12_TinyTestSuite_beta/png/linking-frag-203-t.png b/test/W3C_SVG_12_TinyTestSuite_beta/png/linking-frag-203-t.png new file mode 100755 index 00000000..b4af39e5 Binary files /dev/null and b/test/W3C_SVG_12_TinyTestSuite_beta/png/linking-frag-203-t.png differ diff --git a/test/W3C_SVG_12_TinyTestSuite_beta/png/linking-frag-204-t.png b/test/W3C_SVG_12_TinyTestSuite_beta/png/linking-frag-204-t.png new file mode 100755 index 00000000..f0bb96b0 Binary files /dev/null and b/test/W3C_SVG_12_TinyTestSuite_beta/png/linking-frag-204-t.png differ diff --git a/test/W3C_SVG_12_TinyTestSuite_beta/png/linking-refs-201-t.png b/test/W3C_SVG_12_TinyTestSuite_beta/png/linking-refs-201-t.png new file mode 100755 index 00000000..a0c54a4a Binary files /dev/null and b/test/W3C_SVG_12_TinyTestSuite_beta/png/linking-refs-201-t.png differ diff --git a/test/W3C_SVG_12_TinyTestSuite_beta/png/linking-refs-202-t.png b/test/W3C_SVG_12_TinyTestSuite_beta/png/linking-refs-202-t.png new file mode 100755 index 00000000..9fdd11e3 Binary files /dev/null and b/test/W3C_SVG_12_TinyTestSuite_beta/png/linking-refs-202-t.png differ diff --git a/test/W3C_SVG_12_TinyTestSuite_beta/png/linking-refs-203-t.png b/test/W3C_SVG_12_TinyTestSuite_beta/png/linking-refs-203-t.png new file mode 100755 index 00000000..cae515ff Binary files /dev/null and b/test/W3C_SVG_12_TinyTestSuite_beta/png/linking-refs-203-t.png differ diff --git a/test/W3C_SVG_12_TinyTestSuite_beta/png/linking-refs-204-t.png b/test/W3C_SVG_12_TinyTestSuite_beta/png/linking-refs-204-t.png new file mode 100755 index 00000000..e235cc00 Binary files /dev/null and b/test/W3C_SVG_12_TinyTestSuite_beta/png/linking-refs-204-t.png differ diff --git a/test/W3C_SVG_12_TinyTestSuite_beta/png/linking-refs-205-t.png b/test/W3C_SVG_12_TinyTestSuite_beta/png/linking-refs-205-t.png new file mode 100755 index 00000000..7e1e6625 Binary files /dev/null and b/test/W3C_SVG_12_TinyTestSuite_beta/png/linking-refs-205-t.png differ diff --git a/test/W3C_SVG_12_TinyTestSuite_beta/png/linking-refs-206-t.png b/test/W3C_SVG_12_TinyTestSuite_beta/png/linking-refs-206-t.png new file mode 100755 index 00000000..f48cf76d Binary files /dev/null and b/test/W3C_SVG_12_TinyTestSuite_beta/png/linking-refs-206-t.png differ diff --git a/test/W3C_SVG_12_TinyTestSuite_beta/png/linking-uri-03-t.png b/test/W3C_SVG_12_TinyTestSuite_beta/png/linking-uri-03-t.png new file mode 100755 index 00000000..1ae55606 Binary files /dev/null and b/test/W3C_SVG_12_TinyTestSuite_beta/png/linking-uri-03-t.png differ diff --git a/test/W3C_SVG_12_TinyTestSuite_beta/png/media-alevel-201-t.png b/test/W3C_SVG_12_TinyTestSuite_beta/png/media-alevel-201-t.png new file mode 100755 index 00000000..87f86aef Binary files /dev/null and b/test/W3C_SVG_12_TinyTestSuite_beta/png/media-alevel-201-t.png differ diff --git a/test/W3C_SVG_12_TinyTestSuite_beta/png/media-alevel-202-t.png b/test/W3C_SVG_12_TinyTestSuite_beta/png/media-alevel-202-t.png new file mode 100755 index 00000000..5f0c01a8 Binary files /dev/null and b/test/W3C_SVG_12_TinyTestSuite_beta/png/media-alevel-202-t.png differ diff --git a/test/W3C_SVG_12_TinyTestSuite_beta/png/media-alevel-203-t.png b/test/W3C_SVG_12_TinyTestSuite_beta/png/media-alevel-203-t.png new file mode 100755 index 00000000..a6e0552c Binary files /dev/null and b/test/W3C_SVG_12_TinyTestSuite_beta/png/media-alevel-203-t.png differ diff --git a/test/W3C_SVG_12_TinyTestSuite_beta/png/media-alevel-204-t.png b/test/W3C_SVG_12_TinyTestSuite_beta/png/media-alevel-204-t.png new file mode 100755 index 00000000..a7e98584 Binary files /dev/null and b/test/W3C_SVG_12_TinyTestSuite_beta/png/media-alevel-204-t.png differ diff --git a/test/W3C_SVG_12_TinyTestSuite_beta/png/media-alevel-205-t.png b/test/W3C_SVG_12_TinyTestSuite_beta/png/media-alevel-205-t.png new file mode 100755 index 00000000..8205be9e Binary files /dev/null and b/test/W3C_SVG_12_TinyTestSuite_beta/png/media-alevel-205-t.png differ diff --git a/test/W3C_SVG_12_TinyTestSuite_beta/png/media-alevel-206-t.png b/test/W3C_SVG_12_TinyTestSuite_beta/png/media-alevel-206-t.png new file mode 100755 index 00000000..f9456ee6 Binary files /dev/null and b/test/W3C_SVG_12_TinyTestSuite_beta/png/media-alevel-206-t.png differ diff --git a/test/W3C_SVG_12_TinyTestSuite_beta/png/media-alevel-207-t.png b/test/W3C_SVG_12_TinyTestSuite_beta/png/media-alevel-207-t.png new file mode 100755 index 00000000..034eb93a Binary files /dev/null and b/test/W3C_SVG_12_TinyTestSuite_beta/png/media-alevel-207-t.png differ diff --git a/test/W3C_SVG_12_TinyTestSuite_beta/png/media-alevel-208-t.png b/test/W3C_SVG_12_TinyTestSuite_beta/png/media-alevel-208-t.png new file mode 100755 index 00000000..9519bfa5 Binary files /dev/null and b/test/W3C_SVG_12_TinyTestSuite_beta/png/media-alevel-208-t.png differ diff --git a/test/W3C_SVG_12_TinyTestSuite_beta/png/media-anim-201-t.png b/test/W3C_SVG_12_TinyTestSuite_beta/png/media-anim-201-t.png new file mode 100755 index 00000000..5d58595d Binary files /dev/null and b/test/W3C_SVG_12_TinyTestSuite_beta/png/media-anim-201-t.png differ diff --git a/test/W3C_SVG_12_TinyTestSuite_beta/png/media-anim-202-t.png b/test/W3C_SVG_12_TinyTestSuite_beta/png/media-anim-202-t.png new file mode 100755 index 00000000..6115d015 Binary files /dev/null and b/test/W3C_SVG_12_TinyTestSuite_beta/png/media-anim-202-t.png differ diff --git a/test/W3C_SVG_12_TinyTestSuite_beta/png/media-anim-203-t.png b/test/W3C_SVG_12_TinyTestSuite_beta/png/media-anim-203-t.png new file mode 100755 index 00000000..c9d55ea6 Binary files /dev/null and b/test/W3C_SVG_12_TinyTestSuite_beta/png/media-anim-203-t.png differ diff --git a/test/W3C_SVG_12_TinyTestSuite_beta/png/media-anim-204-t.png b/test/W3C_SVG_12_TinyTestSuite_beta/png/media-anim-204-t.png new file mode 100755 index 00000000..4140ff94 Binary files /dev/null and b/test/W3C_SVG_12_TinyTestSuite_beta/png/media-anim-204-t.png differ diff --git a/test/W3C_SVG_12_TinyTestSuite_beta/png/media-anim-205-t.png b/test/W3C_SVG_12_TinyTestSuite_beta/png/media-anim-205-t.png new file mode 100755 index 00000000..b97743d0 Binary files /dev/null and b/test/W3C_SVG_12_TinyTestSuite_beta/png/media-anim-205-t.png differ diff --git a/test/W3C_SVG_12_TinyTestSuite_beta/png/media-anim-206-t.png b/test/W3C_SVG_12_TinyTestSuite_beta/png/media-anim-206-t.png new file mode 100755 index 00000000..8ab05a0e Binary files /dev/null and b/test/W3C_SVG_12_TinyTestSuite_beta/png/media-anim-206-t.png differ diff --git a/test/W3C_SVG_12_TinyTestSuite_beta/png/media-anim-207-t.png b/test/W3C_SVG_12_TinyTestSuite_beta/png/media-anim-207-t.png new file mode 100755 index 00000000..a8cc40fd Binary files /dev/null and b/test/W3C_SVG_12_TinyTestSuite_beta/png/media-anim-207-t.png differ diff --git a/test/W3C_SVG_12_TinyTestSuite_beta/png/media-anim-208-t.png b/test/W3C_SVG_12_TinyTestSuite_beta/png/media-anim-208-t.png new file mode 100755 index 00000000..b619a247 Binary files /dev/null and b/test/W3C_SVG_12_TinyTestSuite_beta/png/media-anim-208-t.png differ diff --git a/test/W3C_SVG_12_TinyTestSuite_beta/png/media-anim-209-t.png b/test/W3C_SVG_12_TinyTestSuite_beta/png/media-anim-209-t.png new file mode 100755 index 00000000..5869748f Binary files /dev/null and b/test/W3C_SVG_12_TinyTestSuite_beta/png/media-anim-209-t.png differ diff --git a/test/W3C_SVG_12_TinyTestSuite_beta/png/media-anim-210-t.png b/test/W3C_SVG_12_TinyTestSuite_beta/png/media-anim-210-t.png new file mode 100755 index 00000000..36d1b015 Binary files /dev/null and b/test/W3C_SVG_12_TinyTestSuite_beta/png/media-anim-210-t.png differ diff --git a/test/W3C_SVG_12_TinyTestSuite_beta/png/media-anim-211-t.png b/test/W3C_SVG_12_TinyTestSuite_beta/png/media-anim-211-t.png new file mode 100755 index 00000000..abeb5ab4 Binary files /dev/null and b/test/W3C_SVG_12_TinyTestSuite_beta/png/media-anim-211-t.png differ diff --git a/test/W3C_SVG_12_TinyTestSuite_beta/png/media-anim-212-t.png b/test/W3C_SVG_12_TinyTestSuite_beta/png/media-anim-212-t.png new file mode 100755 index 00000000..7a01dca4 Binary files /dev/null and b/test/W3C_SVG_12_TinyTestSuite_beta/png/media-anim-212-t.png differ diff --git a/test/W3C_SVG_12_TinyTestSuite_beta/png/media-anim-213-t.png b/test/W3C_SVG_12_TinyTestSuite_beta/png/media-anim-213-t.png new file mode 100755 index 00000000..b8036fbb Binary files /dev/null and b/test/W3C_SVG_12_TinyTestSuite_beta/png/media-anim-213-t.png differ diff --git a/test/W3C_SVG_12_TinyTestSuite_beta/png/media-audio-201-t.png b/test/W3C_SVG_12_TinyTestSuite_beta/png/media-audio-201-t.png new file mode 100755 index 00000000..d2d49d8f Binary files /dev/null and b/test/W3C_SVG_12_TinyTestSuite_beta/png/media-audio-201-t.png differ diff --git a/test/W3C_SVG_12_TinyTestSuite_beta/png/media-audio-202-t.png b/test/W3C_SVG_12_TinyTestSuite_beta/png/media-audio-202-t.png new file mode 100755 index 00000000..2f351a43 Binary files /dev/null and b/test/W3C_SVG_12_TinyTestSuite_beta/png/media-audio-202-t.png differ diff --git a/test/W3C_SVG_12_TinyTestSuite_beta/png/media-audio-203-t.png b/test/W3C_SVG_12_TinyTestSuite_beta/png/media-audio-203-t.png new file mode 100755 index 00000000..acb99b47 Binary files /dev/null and b/test/W3C_SVG_12_TinyTestSuite_beta/png/media-audio-203-t.png differ diff --git a/test/W3C_SVG_12_TinyTestSuite_beta/png/media-audio-204-t.png b/test/W3C_SVG_12_TinyTestSuite_beta/png/media-audio-204-t.png new file mode 100755 index 00000000..0a35e401 Binary files /dev/null and b/test/W3C_SVG_12_TinyTestSuite_beta/png/media-audio-204-t.png differ diff --git a/test/W3C_SVG_12_TinyTestSuite_beta/png/media-audio-205-t.png b/test/W3C_SVG_12_TinyTestSuite_beta/png/media-audio-205-t.png new file mode 100755 index 00000000..0f37e5c8 Binary files /dev/null and b/test/W3C_SVG_12_TinyTestSuite_beta/png/media-audio-205-t.png differ diff --git a/test/W3C_SVG_12_TinyTestSuite_beta/png/media-audio-206-t.png b/test/W3C_SVG_12_TinyTestSuite_beta/png/media-audio-206-t.png new file mode 100755 index 00000000..090e12ea Binary files /dev/null and b/test/W3C_SVG_12_TinyTestSuite_beta/png/media-audio-206-t.png differ diff --git a/test/W3C_SVG_12_TinyTestSuite_beta/png/media-audio-207-t.png b/test/W3C_SVG_12_TinyTestSuite_beta/png/media-audio-207-t.png new file mode 100755 index 00000000..655636fe Binary files /dev/null and b/test/W3C_SVG_12_TinyTestSuite_beta/png/media-audio-207-t.png differ diff --git a/test/W3C_SVG_12_TinyTestSuite_beta/png/media-audio-208-t.png b/test/W3C_SVG_12_TinyTestSuite_beta/png/media-audio-208-t.png new file mode 100755 index 00000000..b659c66c Binary files /dev/null and b/test/W3C_SVG_12_TinyTestSuite_beta/png/media-audio-208-t.png differ diff --git a/test/W3C_SVG_12_TinyTestSuite_beta/png/media-audio-209-t.png b/test/W3C_SVG_12_TinyTestSuite_beta/png/media-audio-209-t.png new file mode 100755 index 00000000..fd1682b7 Binary files /dev/null and b/test/W3C_SVG_12_TinyTestSuite_beta/png/media-audio-209-t.png differ diff --git a/test/W3C_SVG_12_TinyTestSuite_beta/png/media-audio-210-t.png b/test/W3C_SVG_12_TinyTestSuite_beta/png/media-audio-210-t.png new file mode 100755 index 00000000..e36dd576 Binary files /dev/null and b/test/W3C_SVG_12_TinyTestSuite_beta/png/media-audio-210-t.png differ diff --git a/test/W3C_SVG_12_TinyTestSuite_beta/png/media-audio-211-t.png b/test/W3C_SVG_12_TinyTestSuite_beta/png/media-audio-211-t.png new file mode 100755 index 00000000..203e2653 Binary files /dev/null and b/test/W3C_SVG_12_TinyTestSuite_beta/png/media-audio-211-t.png differ diff --git a/test/W3C_SVG_12_TinyTestSuite_beta/png/media-audio-212-t.png b/test/W3C_SVG_12_TinyTestSuite_beta/png/media-audio-212-t.png new file mode 100755 index 00000000..ec37d1ce Binary files /dev/null and b/test/W3C_SVG_12_TinyTestSuite_beta/png/media-audio-212-t.png differ diff --git a/test/W3C_SVG_12_TinyTestSuite_beta/png/media-audio-213-t.png b/test/W3C_SVG_12_TinyTestSuite_beta/png/media-audio-213-t.png new file mode 100755 index 00000000..f81ec524 Binary files /dev/null and b/test/W3C_SVG_12_TinyTestSuite_beta/png/media-audio-213-t.png differ diff --git a/test/W3C_SVG_12_TinyTestSuite_beta/png/media-audio-214-t.png b/test/W3C_SVG_12_TinyTestSuite_beta/png/media-audio-214-t.png new file mode 100755 index 00000000..228713d8 Binary files /dev/null and b/test/W3C_SVG_12_TinyTestSuite_beta/png/media-audio-214-t.png differ diff --git a/test/W3C_SVG_12_TinyTestSuite_beta/png/media-audio-215-t.png b/test/W3C_SVG_12_TinyTestSuite_beta/png/media-audio-215-t.png new file mode 100755 index 00000000..d1b7494e Binary files /dev/null and b/test/W3C_SVG_12_TinyTestSuite_beta/png/media-audio-215-t.png differ diff --git a/test/W3C_SVG_12_TinyTestSuite_beta/png/media-video-201-t.png b/test/W3C_SVG_12_TinyTestSuite_beta/png/media-video-201-t.png new file mode 100755 index 00000000..f44781ac Binary files /dev/null and b/test/W3C_SVG_12_TinyTestSuite_beta/png/media-video-201-t.png differ diff --git a/test/W3C_SVG_12_TinyTestSuite_beta/png/media-video-202-t.png b/test/W3C_SVG_12_TinyTestSuite_beta/png/media-video-202-t.png new file mode 100755 index 00000000..d53b7261 Binary files /dev/null and b/test/W3C_SVG_12_TinyTestSuite_beta/png/media-video-202-t.png differ diff --git a/test/W3C_SVG_12_TinyTestSuite_beta/png/media-video-203-t.png b/test/W3C_SVG_12_TinyTestSuite_beta/png/media-video-203-t.png new file mode 100755 index 00000000..96c5d0bf Binary files /dev/null and b/test/W3C_SVG_12_TinyTestSuite_beta/png/media-video-203-t.png differ diff --git a/test/W3C_SVG_12_TinyTestSuite_beta/png/media-video-204-t.png b/test/W3C_SVG_12_TinyTestSuite_beta/png/media-video-204-t.png new file mode 100755 index 00000000..6a630f99 Binary files /dev/null and b/test/W3C_SVG_12_TinyTestSuite_beta/png/media-video-204-t.png differ diff --git a/test/W3C_SVG_12_TinyTestSuite_beta/png/media-video-205-t.png b/test/W3C_SVG_12_TinyTestSuite_beta/png/media-video-205-t.png new file mode 100755 index 00000000..5c2193ea Binary files /dev/null and b/test/W3C_SVG_12_TinyTestSuite_beta/png/media-video-205-t.png differ diff --git a/test/W3C_SVG_12_TinyTestSuite_beta/png/media-video-206-t.png b/test/W3C_SVG_12_TinyTestSuite_beta/png/media-video-206-t.png new file mode 100755 index 00000000..22bd54af Binary files /dev/null and b/test/W3C_SVG_12_TinyTestSuite_beta/png/media-video-206-t.png differ diff --git a/test/W3C_SVG_12_TinyTestSuite_beta/png/media-video-207-t.png b/test/W3C_SVG_12_TinyTestSuite_beta/png/media-video-207-t.png new file mode 100755 index 00000000..a8d616e7 Binary files /dev/null and b/test/W3C_SVG_12_TinyTestSuite_beta/png/media-video-207-t.png differ diff --git a/test/W3C_SVG_12_TinyTestSuite_beta/png/media-video-208-t.png b/test/W3C_SVG_12_TinyTestSuite_beta/png/media-video-208-t.png new file mode 100755 index 00000000..8e733f72 Binary files /dev/null and b/test/W3C_SVG_12_TinyTestSuite_beta/png/media-video-208-t.png differ diff --git a/test/W3C_SVG_12_TinyTestSuite_beta/png/media-video-209-t.png b/test/W3C_SVG_12_TinyTestSuite_beta/png/media-video-209-t.png new file mode 100755 index 00000000..47398e21 Binary files /dev/null and b/test/W3C_SVG_12_TinyTestSuite_beta/png/media-video-209-t.png differ diff --git a/test/W3C_SVG_12_TinyTestSuite_beta/png/media-video-210-t.png b/test/W3C_SVG_12_TinyTestSuite_beta/png/media-video-210-t.png new file mode 100755 index 00000000..f76f96f7 Binary files /dev/null and b/test/W3C_SVG_12_TinyTestSuite_beta/png/media-video-210-t.png differ diff --git a/test/W3C_SVG_12_TinyTestSuite_beta/png/media-video-211-t.png b/test/W3C_SVG_12_TinyTestSuite_beta/png/media-video-211-t.png new file mode 100755 index 00000000..4646f944 Binary files /dev/null and b/test/W3C_SVG_12_TinyTestSuite_beta/png/media-video-211-t.png differ diff --git a/test/W3C_SVG_12_TinyTestSuite_beta/png/media-video-212-t.png b/test/W3C_SVG_12_TinyTestSuite_beta/png/media-video-212-t.png new file mode 100755 index 00000000..0e2cbe50 Binary files /dev/null and b/test/W3C_SVG_12_TinyTestSuite_beta/png/media-video-212-t.png differ diff --git a/test/W3C_SVG_12_TinyTestSuite_beta/png/media-video-213-t.png b/test/W3C_SVG_12_TinyTestSuite_beta/png/media-video-213-t.png new file mode 100755 index 00000000..e6c2cb09 Binary files /dev/null and b/test/W3C_SVG_12_TinyTestSuite_beta/png/media-video-213-t.png differ diff --git a/test/W3C_SVG_12_TinyTestSuite_beta/png/media-video-214-t.png b/test/W3C_SVG_12_TinyTestSuite_beta/png/media-video-214-t.png new file mode 100755 index 00000000..02921f70 Binary files /dev/null and b/test/W3C_SVG_12_TinyTestSuite_beta/png/media-video-214-t.png differ diff --git a/test/W3C_SVG_12_TinyTestSuite_beta/png/media-video-215-t.png b/test/W3C_SVG_12_TinyTestSuite_beta/png/media-video-215-t.png new file mode 100755 index 00000000..ea848082 Binary files /dev/null and b/test/W3C_SVG_12_TinyTestSuite_beta/png/media-video-215-t.png differ diff --git a/test/W3C_SVG_12_TinyTestSuite_beta/png/media-video-216-t.png b/test/W3C_SVG_12_TinyTestSuite_beta/png/media-video-216-t.png new file mode 100755 index 00000000..5b3bfe6a Binary files /dev/null and b/test/W3C_SVG_12_TinyTestSuite_beta/png/media-video-216-t.png differ diff --git a/test/W3C_SVG_12_TinyTestSuite_beta/png/media-video-218-t.png b/test/W3C_SVG_12_TinyTestSuite_beta/png/media-video-218-t.png new file mode 100755 index 00000000..2310885b Binary files /dev/null and b/test/W3C_SVG_12_TinyTestSuite_beta/png/media-video-218-t.png differ diff --git a/test/W3C_SVG_12_TinyTestSuite_beta/png/media-video-219-t.png b/test/W3C_SVG_12_TinyTestSuite_beta/png/media-video-219-t.png new file mode 100755 index 00000000..dd0af1b8 Binary files /dev/null and b/test/W3C_SVG_12_TinyTestSuite_beta/png/media-video-219-t.png differ diff --git a/test/W3C_SVG_12_TinyTestSuite_beta/png/media-video-220-t.png b/test/W3C_SVG_12_TinyTestSuite_beta/png/media-video-220-t.png new file mode 100755 index 00000000..0af47342 Binary files /dev/null and b/test/W3C_SVG_12_TinyTestSuite_beta/png/media-video-220-t.png differ diff --git a/test/W3C_SVG_12_TinyTestSuite_beta/png/media-video-221-t.png b/test/W3C_SVG_12_TinyTestSuite_beta/png/media-video-221-t.png new file mode 100755 index 00000000..6be4eeb0 Binary files /dev/null and b/test/W3C_SVG_12_TinyTestSuite_beta/png/media-video-221-t.png differ diff --git a/test/W3C_SVG_12_TinyTestSuite_beta/png/media-video-222-t.png b/test/W3C_SVG_12_TinyTestSuite_beta/png/media-video-222-t.png new file mode 100755 index 00000000..6ce29e27 Binary files /dev/null and b/test/W3C_SVG_12_TinyTestSuite_beta/png/media-video-222-t.png differ diff --git a/test/W3C_SVG_12_TinyTestSuite_beta/png/metadata-example-01-t.png b/test/W3C_SVG_12_TinyTestSuite_beta/png/metadata-example-01-t.png new file mode 100755 index 00000000..82cc9370 Binary files /dev/null and b/test/W3C_SVG_12_TinyTestSuite_beta/png/metadata-example-01-t.png differ diff --git a/test/W3C_SVG_12_TinyTestSuite_beta/png/paint-color-01-t.png b/test/W3C_SVG_12_TinyTestSuite_beta/png/paint-color-01-t.png new file mode 100755 index 00000000..dd803f22 Binary files /dev/null and b/test/W3C_SVG_12_TinyTestSuite_beta/png/paint-color-01-t.png differ diff --git a/test/W3C_SVG_12_TinyTestSuite_beta/png/paint-color-03-t.png b/test/W3C_SVG_12_TinyTestSuite_beta/png/paint-color-03-t.png new file mode 100755 index 00000000..4042f7ed Binary files /dev/null and b/test/W3C_SVG_12_TinyTestSuite_beta/png/paint-color-03-t.png differ diff --git a/test/W3C_SVG_12_TinyTestSuite_beta/png/paint-color-04-t.png b/test/W3C_SVG_12_TinyTestSuite_beta/png/paint-color-04-t.png new file mode 100755 index 00000000..e0909487 Binary files /dev/null and b/test/W3C_SVG_12_TinyTestSuite_beta/png/paint-color-04-t.png differ diff --git a/test/W3C_SVG_12_TinyTestSuite_beta/png/paint-color-05-t.png b/test/W3C_SVG_12_TinyTestSuite_beta/png/paint-color-05-t.png new file mode 100755 index 00000000..e3a5d241 Binary files /dev/null and b/test/W3C_SVG_12_TinyTestSuite_beta/png/paint-color-05-t.png differ diff --git a/test/W3C_SVG_12_TinyTestSuite_beta/png/paint-color-201-t.png b/test/W3C_SVG_12_TinyTestSuite_beta/png/paint-color-201-t.png new file mode 100755 index 00000000..fb1166d2 Binary files /dev/null and b/test/W3C_SVG_12_TinyTestSuite_beta/png/paint-color-201-t.png differ diff --git a/test/W3C_SVG_12_TinyTestSuite_beta/png/paint-fill-01-t.png b/test/W3C_SVG_12_TinyTestSuite_beta/png/paint-fill-01-t.png new file mode 100755 index 00000000..98295535 Binary files /dev/null and b/test/W3C_SVG_12_TinyTestSuite_beta/png/paint-fill-01-t.png differ diff --git a/test/W3C_SVG_12_TinyTestSuite_beta/png/paint-fill-02-t.png b/test/W3C_SVG_12_TinyTestSuite_beta/png/paint-fill-02-t.png new file mode 100755 index 00000000..48da1fe1 Binary files /dev/null and b/test/W3C_SVG_12_TinyTestSuite_beta/png/paint-fill-02-t.png differ diff --git a/test/W3C_SVG_12_TinyTestSuite_beta/png/paint-fill-03-t.png b/test/W3C_SVG_12_TinyTestSuite_beta/png/paint-fill-03-t.png new file mode 100755 index 00000000..8052d9ea Binary files /dev/null and b/test/W3C_SVG_12_TinyTestSuite_beta/png/paint-fill-03-t.png differ diff --git a/test/W3C_SVG_12_TinyTestSuite_beta/png/paint-fill-04-t.png b/test/W3C_SVG_12_TinyTestSuite_beta/png/paint-fill-04-t.png new file mode 100755 index 00000000..f5ae8fa0 Binary files /dev/null and b/test/W3C_SVG_12_TinyTestSuite_beta/png/paint-fill-04-t.png differ diff --git a/test/W3C_SVG_12_TinyTestSuite_beta/png/paint-fill-05-t.png b/test/W3C_SVG_12_TinyTestSuite_beta/png/paint-fill-05-t.png new file mode 100755 index 00000000..c3c57244 Binary files /dev/null and b/test/W3C_SVG_12_TinyTestSuite_beta/png/paint-fill-05-t.png differ diff --git a/test/W3C_SVG_12_TinyTestSuite_beta/png/paint-grad-04-t.png b/test/W3C_SVG_12_TinyTestSuite_beta/png/paint-grad-04-t.png new file mode 100755 index 00000000..55043fec Binary files /dev/null and b/test/W3C_SVG_12_TinyTestSuite_beta/png/paint-grad-04-t.png differ diff --git a/test/W3C_SVG_12_TinyTestSuite_beta/png/paint-grad-05-t.png b/test/W3C_SVG_12_TinyTestSuite_beta/png/paint-grad-05-t.png new file mode 100755 index 00000000..e52f0a7c Binary files /dev/null and b/test/W3C_SVG_12_TinyTestSuite_beta/png/paint-grad-05-t.png differ diff --git a/test/W3C_SVG_12_TinyTestSuite_beta/png/paint-grad-07-t.png b/test/W3C_SVG_12_TinyTestSuite_beta/png/paint-grad-07-t.png new file mode 100755 index 00000000..a5d4893a Binary files /dev/null and b/test/W3C_SVG_12_TinyTestSuite_beta/png/paint-grad-07-t.png differ diff --git a/test/W3C_SVG_12_TinyTestSuite_beta/png/paint-grad-08-t.png b/test/W3C_SVG_12_TinyTestSuite_beta/png/paint-grad-08-t.png new file mode 100755 index 00000000..c9c1a54d Binary files /dev/null and b/test/W3C_SVG_12_TinyTestSuite_beta/png/paint-grad-08-t.png differ diff --git a/test/W3C_SVG_12_TinyTestSuite_beta/png/paint-grad-09-t.png b/test/W3C_SVG_12_TinyTestSuite_beta/png/paint-grad-09-t.png new file mode 100755 index 00000000..412cab65 Binary files /dev/null and b/test/W3C_SVG_12_TinyTestSuite_beta/png/paint-grad-09-t.png differ diff --git a/test/W3C_SVG_12_TinyTestSuite_beta/png/paint-grad-11-t.png b/test/W3C_SVG_12_TinyTestSuite_beta/png/paint-grad-11-t.png new file mode 100755 index 00000000..d47f9e8c Binary files /dev/null and b/test/W3C_SVG_12_TinyTestSuite_beta/png/paint-grad-11-t.png differ diff --git a/test/W3C_SVG_12_TinyTestSuite_beta/png/paint-grad-12-t.png b/test/W3C_SVG_12_TinyTestSuite_beta/png/paint-grad-12-t.png new file mode 100755 index 00000000..b1b7032f Binary files /dev/null and b/test/W3C_SVG_12_TinyTestSuite_beta/png/paint-grad-12-t.png differ diff --git a/test/W3C_SVG_12_TinyTestSuite_beta/png/paint-grad-15-t.png b/test/W3C_SVG_12_TinyTestSuite_beta/png/paint-grad-15-t.png new file mode 100755 index 00000000..31091162 Binary files /dev/null and b/test/W3C_SVG_12_TinyTestSuite_beta/png/paint-grad-15-t.png differ diff --git a/test/W3C_SVG_12_TinyTestSuite_beta/png/paint-grad-16-t.png b/test/W3C_SVG_12_TinyTestSuite_beta/png/paint-grad-16-t.png new file mode 100755 index 00000000..2febd9c3 Binary files /dev/null and b/test/W3C_SVG_12_TinyTestSuite_beta/png/paint-grad-16-t.png differ diff --git a/test/W3C_SVG_12_TinyTestSuite_beta/png/paint-grad-17-t.png b/test/W3C_SVG_12_TinyTestSuite_beta/png/paint-grad-17-t.png new file mode 100755 index 00000000..12153649 Binary files /dev/null and b/test/W3C_SVG_12_TinyTestSuite_beta/png/paint-grad-17-t.png differ diff --git a/test/W3C_SVG_12_TinyTestSuite_beta/png/paint-grad-18-t.png b/test/W3C_SVG_12_TinyTestSuite_beta/png/paint-grad-18-t.png new file mode 100755 index 00000000..068dbc7c Binary files /dev/null and b/test/W3C_SVG_12_TinyTestSuite_beta/png/paint-grad-18-t.png differ diff --git a/test/W3C_SVG_12_TinyTestSuite_beta/png/paint-grad-19-t.png b/test/W3C_SVG_12_TinyTestSuite_beta/png/paint-grad-19-t.png new file mode 100755 index 00000000..428e2447 Binary files /dev/null and b/test/W3C_SVG_12_TinyTestSuite_beta/png/paint-grad-19-t.png differ diff --git a/test/W3C_SVG_12_TinyTestSuite_beta/png/paint-grad-201-t.png b/test/W3C_SVG_12_TinyTestSuite_beta/png/paint-grad-201-t.png new file mode 100755 index 00000000..e5cfc6d2 Binary files /dev/null and b/test/W3C_SVG_12_TinyTestSuite_beta/png/paint-grad-201-t.png differ diff --git a/test/W3C_SVG_12_TinyTestSuite_beta/png/paint-grad-202-t.png b/test/W3C_SVG_12_TinyTestSuite_beta/png/paint-grad-202-t.png new file mode 100755 index 00000000..69521572 Binary files /dev/null and b/test/W3C_SVG_12_TinyTestSuite_beta/png/paint-grad-202-t.png differ diff --git a/test/W3C_SVG_12_TinyTestSuite_beta/png/paint-grad-203-t.png b/test/W3C_SVG_12_TinyTestSuite_beta/png/paint-grad-203-t.png new file mode 100755 index 00000000..c0e0e360 Binary files /dev/null and b/test/W3C_SVG_12_TinyTestSuite_beta/png/paint-grad-203-t.png differ diff --git a/test/W3C_SVG_12_TinyTestSuite_beta/png/paint-grad-204-t.png b/test/W3C_SVG_12_TinyTestSuite_beta/png/paint-grad-204-t.png new file mode 100755 index 00000000..c4e27d8b Binary files /dev/null and b/test/W3C_SVG_12_TinyTestSuite_beta/png/paint-grad-204-t.png differ diff --git a/test/W3C_SVG_12_TinyTestSuite_beta/png/paint-grad-205-t.png b/test/W3C_SVG_12_TinyTestSuite_beta/png/paint-grad-205-t.png new file mode 100755 index 00000000..834c91dd Binary files /dev/null and b/test/W3C_SVG_12_TinyTestSuite_beta/png/paint-grad-205-t.png differ diff --git a/test/W3C_SVG_12_TinyTestSuite_beta/png/paint-nsstroke-201-t.png b/test/W3C_SVG_12_TinyTestSuite_beta/png/paint-nsstroke-201-t.png new file mode 100755 index 00000000..b1ec6785 Binary files /dev/null and b/test/W3C_SVG_12_TinyTestSuite_beta/png/paint-nsstroke-201-t.png differ diff --git a/test/W3C_SVG_12_TinyTestSuite_beta/png/paint-nsstroke-203-t.png b/test/W3C_SVG_12_TinyTestSuite_beta/png/paint-nsstroke-203-t.png new file mode 100755 index 00000000..caed69f8 Binary files /dev/null and b/test/W3C_SVG_12_TinyTestSuite_beta/png/paint-nsstroke-203-t.png differ diff --git a/test/W3C_SVG_12_TinyTestSuite_beta/png/paint-other-201-t.png b/test/W3C_SVG_12_TinyTestSuite_beta/png/paint-other-201-t.png new file mode 100755 index 00000000..a5b89e55 Binary files /dev/null and b/test/W3C_SVG_12_TinyTestSuite_beta/png/paint-other-201-t.png differ diff --git a/test/W3C_SVG_12_TinyTestSuite_beta/png/paint-other-203-t.png b/test/W3C_SVG_12_TinyTestSuite_beta/png/paint-other-203-t.png new file mode 100755 index 00000000..eb2fe856 Binary files /dev/null and b/test/W3C_SVG_12_TinyTestSuite_beta/png/paint-other-203-t.png differ diff --git a/test/W3C_SVG_12_TinyTestSuite_beta/png/paint-stroke-01-t.png b/test/W3C_SVG_12_TinyTestSuite_beta/png/paint-stroke-01-t.png new file mode 100755 index 00000000..2faa9616 Binary files /dev/null and b/test/W3C_SVG_12_TinyTestSuite_beta/png/paint-stroke-01-t.png differ diff --git a/test/W3C_SVG_12_TinyTestSuite_beta/png/paint-stroke-02-t.png b/test/W3C_SVG_12_TinyTestSuite_beta/png/paint-stroke-02-t.png new file mode 100755 index 00000000..015aa84f Binary files /dev/null and b/test/W3C_SVG_12_TinyTestSuite_beta/png/paint-stroke-02-t.png differ diff --git a/test/W3C_SVG_12_TinyTestSuite_beta/png/paint-stroke-03-t.png b/test/W3C_SVG_12_TinyTestSuite_beta/png/paint-stroke-03-t.png new file mode 100755 index 00000000..c82fbe47 Binary files /dev/null and b/test/W3C_SVG_12_TinyTestSuite_beta/png/paint-stroke-03-t.png differ diff --git a/test/W3C_SVG_12_TinyTestSuite_beta/png/paint-stroke-04-t.png b/test/W3C_SVG_12_TinyTestSuite_beta/png/paint-stroke-04-t.png new file mode 100755 index 00000000..c9983ee1 Binary files /dev/null and b/test/W3C_SVG_12_TinyTestSuite_beta/png/paint-stroke-04-t.png differ diff --git a/test/W3C_SVG_12_TinyTestSuite_beta/png/paint-stroke-05-t.png b/test/W3C_SVG_12_TinyTestSuite_beta/png/paint-stroke-05-t.png new file mode 100755 index 00000000..8e41cb86 Binary files /dev/null and b/test/W3C_SVG_12_TinyTestSuite_beta/png/paint-stroke-05-t.png differ diff --git a/test/W3C_SVG_12_TinyTestSuite_beta/png/paint-stroke-06-t.png b/test/W3C_SVG_12_TinyTestSuite_beta/png/paint-stroke-06-t.png new file mode 100755 index 00000000..623064cc Binary files /dev/null and b/test/W3C_SVG_12_TinyTestSuite_beta/png/paint-stroke-06-t.png differ diff --git a/test/W3C_SVG_12_TinyTestSuite_beta/png/paint-stroke-07-t.png b/test/W3C_SVG_12_TinyTestSuite_beta/png/paint-stroke-07-t.png new file mode 100755 index 00000000..62a53eed Binary files /dev/null and b/test/W3C_SVG_12_TinyTestSuite_beta/png/paint-stroke-07-t.png differ diff --git a/test/W3C_SVG_12_TinyTestSuite_beta/png/paint-stroke-08-t.png b/test/W3C_SVG_12_TinyTestSuite_beta/png/paint-stroke-08-t.png new file mode 100755 index 00000000..dc194c50 Binary files /dev/null and b/test/W3C_SVG_12_TinyTestSuite_beta/png/paint-stroke-08-t.png differ diff --git a/test/W3C_SVG_12_TinyTestSuite_beta/png/paint-stroke-201-t.png b/test/W3C_SVG_12_TinyTestSuite_beta/png/paint-stroke-201-t.png new file mode 100755 index 00000000..0da4a4d9 Binary files /dev/null and b/test/W3C_SVG_12_TinyTestSuite_beta/png/paint-stroke-201-t.png differ diff --git a/test/W3C_SVG_12_TinyTestSuite_beta/png/paint-stroke-202-t.png b/test/W3C_SVG_12_TinyTestSuite_beta/png/paint-stroke-202-t.png new file mode 100755 index 00000000..b304236a Binary files /dev/null and b/test/W3C_SVG_12_TinyTestSuite_beta/png/paint-stroke-202-t.png differ diff --git a/test/W3C_SVG_12_TinyTestSuite_beta/png/paint-stroke-204-t.png b/test/W3C_SVG_12_TinyTestSuite_beta/png/paint-stroke-204-t.png new file mode 100755 index 00000000..f03d9f27 Binary files /dev/null and b/test/W3C_SVG_12_TinyTestSuite_beta/png/paint-stroke-204-t.png differ diff --git a/test/W3C_SVG_12_TinyTestSuite_beta/png/paint-stroke-205-t.png b/test/W3C_SVG_12_TinyTestSuite_beta/png/paint-stroke-205-t.png new file mode 100755 index 00000000..30859291 Binary files /dev/null and b/test/W3C_SVG_12_TinyTestSuite_beta/png/paint-stroke-205-t.png differ diff --git a/test/W3C_SVG_12_TinyTestSuite_beta/png/paint-stroke-207-t.png b/test/W3C_SVG_12_TinyTestSuite_beta/png/paint-stroke-207-t.png new file mode 100755 index 00000000..5c1386f9 Binary files /dev/null and b/test/W3C_SVG_12_TinyTestSuite_beta/png/paint-stroke-207-t.png differ diff --git a/test/W3C_SVG_12_TinyTestSuite_beta/png/paint-vfill-201-t.png b/test/W3C_SVG_12_TinyTestSuite_beta/png/paint-vfill-201-t.png new file mode 100755 index 00000000..8532a1d0 Binary files /dev/null and b/test/W3C_SVG_12_TinyTestSuite_beta/png/paint-vfill-201-t.png differ diff --git a/test/W3C_SVG_12_TinyTestSuite_beta/png/paint-vfill-202-t.png b/test/W3C_SVG_12_TinyTestSuite_beta/png/paint-vfill-202-t.png new file mode 100755 index 00000000..6c4e1877 Binary files /dev/null and b/test/W3C_SVG_12_TinyTestSuite_beta/png/paint-vfill-202-t.png differ diff --git a/test/W3C_SVG_12_TinyTestSuite_beta/png/paint-vfill-203-t.png b/test/W3C_SVG_12_TinyTestSuite_beta/png/paint-vfill-203-t.png new file mode 100755 index 00000000..67bd3fc3 Binary files /dev/null and b/test/W3C_SVG_12_TinyTestSuite_beta/png/paint-vfill-203-t.png differ diff --git a/test/W3C_SVG_12_TinyTestSuite_beta/png/paint-vfill-204-t.png b/test/W3C_SVG_12_TinyTestSuite_beta/png/paint-vfill-204-t.png new file mode 100755 index 00000000..05c62371 Binary files /dev/null and b/test/W3C_SVG_12_TinyTestSuite_beta/png/paint-vfill-204-t.png differ diff --git a/test/W3C_SVG_12_TinyTestSuite_beta/png/paint-vfill-205-t.png b/test/W3C_SVG_12_TinyTestSuite_beta/png/paint-vfill-205-t.png new file mode 100755 index 00000000..4de96945 Binary files /dev/null and b/test/W3C_SVG_12_TinyTestSuite_beta/png/paint-vfill-205-t.png differ diff --git a/test/W3C_SVG_12_TinyTestSuite_beta/png/paint-vfill-206-t.png b/test/W3C_SVG_12_TinyTestSuite_beta/png/paint-vfill-206-t.png new file mode 100755 index 00000000..4831b262 Binary files /dev/null and b/test/W3C_SVG_12_TinyTestSuite_beta/png/paint-vfill-206-t.png differ diff --git a/test/W3C_SVG_12_TinyTestSuite_beta/png/paths-data-01-t.png b/test/W3C_SVG_12_TinyTestSuite_beta/png/paths-data-01-t.png new file mode 100755 index 00000000..0763b115 Binary files /dev/null and b/test/W3C_SVG_12_TinyTestSuite_beta/png/paths-data-01-t.png differ diff --git a/test/W3C_SVG_12_TinyTestSuite_beta/png/paths-data-02-t.png b/test/W3C_SVG_12_TinyTestSuite_beta/png/paths-data-02-t.png new file mode 100755 index 00000000..e71ac990 Binary files /dev/null and b/test/W3C_SVG_12_TinyTestSuite_beta/png/paths-data-02-t.png differ diff --git a/test/W3C_SVG_12_TinyTestSuite_beta/png/paths-data-04-t.png b/test/W3C_SVG_12_TinyTestSuite_beta/png/paths-data-04-t.png new file mode 100755 index 00000000..308d9a22 Binary files /dev/null and b/test/W3C_SVG_12_TinyTestSuite_beta/png/paths-data-04-t.png differ diff --git a/test/W3C_SVG_12_TinyTestSuite_beta/png/paths-data-05-t.png b/test/W3C_SVG_12_TinyTestSuite_beta/png/paths-data-05-t.png new file mode 100755 index 00000000..eaacddff Binary files /dev/null and b/test/W3C_SVG_12_TinyTestSuite_beta/png/paths-data-05-t.png differ diff --git a/test/W3C_SVG_12_TinyTestSuite_beta/png/paths-data-06-t.png b/test/W3C_SVG_12_TinyTestSuite_beta/png/paths-data-06-t.png new file mode 100755 index 00000000..1264a2ae Binary files /dev/null and b/test/W3C_SVG_12_TinyTestSuite_beta/png/paths-data-06-t.png differ diff --git a/test/W3C_SVG_12_TinyTestSuite_beta/png/paths-data-07-t.png b/test/W3C_SVG_12_TinyTestSuite_beta/png/paths-data-07-t.png new file mode 100755 index 00000000..98bed0e8 Binary files /dev/null and b/test/W3C_SVG_12_TinyTestSuite_beta/png/paths-data-07-t.png differ diff --git a/test/W3C_SVG_12_TinyTestSuite_beta/png/paths-data-08-t.png b/test/W3C_SVG_12_TinyTestSuite_beta/png/paths-data-08-t.png new file mode 100755 index 00000000..a7cc2650 Binary files /dev/null and b/test/W3C_SVG_12_TinyTestSuite_beta/png/paths-data-08-t.png differ diff --git a/test/W3C_SVG_12_TinyTestSuite_beta/png/paths-data-09-t.png b/test/W3C_SVG_12_TinyTestSuite_beta/png/paths-data-09-t.png new file mode 100755 index 00000000..d42f8368 Binary files /dev/null and b/test/W3C_SVG_12_TinyTestSuite_beta/png/paths-data-09-t.png differ diff --git a/test/W3C_SVG_12_TinyTestSuite_beta/png/paths-data-10-t.png b/test/W3C_SVG_12_TinyTestSuite_beta/png/paths-data-10-t.png new file mode 100755 index 00000000..aeaa7457 Binary files /dev/null and b/test/W3C_SVG_12_TinyTestSuite_beta/png/paths-data-10-t.png differ diff --git a/test/W3C_SVG_12_TinyTestSuite_beta/png/paths-data-12-t.png b/test/W3C_SVG_12_TinyTestSuite_beta/png/paths-data-12-t.png new file mode 100755 index 00000000..04bbf33f Binary files /dev/null and b/test/W3C_SVG_12_TinyTestSuite_beta/png/paths-data-12-t.png differ diff --git a/test/W3C_SVG_12_TinyTestSuite_beta/png/paths-data-13-t.png b/test/W3C_SVG_12_TinyTestSuite_beta/png/paths-data-13-t.png new file mode 100755 index 00000000..7d163065 Binary files /dev/null and b/test/W3C_SVG_12_TinyTestSuite_beta/png/paths-data-13-t.png differ diff --git a/test/W3C_SVG_12_TinyTestSuite_beta/png/paths-data-14-t.png b/test/W3C_SVG_12_TinyTestSuite_beta/png/paths-data-14-t.png new file mode 100755 index 00000000..e643351e Binary files /dev/null and b/test/W3C_SVG_12_TinyTestSuite_beta/png/paths-data-14-t.png differ diff --git a/test/W3C_SVG_12_TinyTestSuite_beta/png/paths-data-15-t.png b/test/W3C_SVG_12_TinyTestSuite_beta/png/paths-data-15-t.png new file mode 100755 index 00000000..7743c18f Binary files /dev/null and b/test/W3C_SVG_12_TinyTestSuite_beta/png/paths-data-15-t.png differ diff --git a/test/W3C_SVG_12_TinyTestSuite_beta/png/render-elems-01-t.png b/test/W3C_SVG_12_TinyTestSuite_beta/png/render-elems-01-t.png new file mode 100755 index 00000000..f96a57b3 Binary files /dev/null and b/test/W3C_SVG_12_TinyTestSuite_beta/png/render-elems-01-t.png differ diff --git a/test/W3C_SVG_12_TinyTestSuite_beta/png/render-elems-02-t.png b/test/W3C_SVG_12_TinyTestSuite_beta/png/render-elems-02-t.png new file mode 100755 index 00000000..9bfc6c49 Binary files /dev/null and b/test/W3C_SVG_12_TinyTestSuite_beta/png/render-elems-02-t.png differ diff --git a/test/W3C_SVG_12_TinyTestSuite_beta/png/render-elems-03-t.png b/test/W3C_SVG_12_TinyTestSuite_beta/png/render-elems-03-t.png new file mode 100755 index 00000000..6e0021fe Binary files /dev/null and b/test/W3C_SVG_12_TinyTestSuite_beta/png/render-elems-03-t.png differ diff --git a/test/W3C_SVG_12_TinyTestSuite_beta/png/render-elems-06-t.png b/test/W3C_SVG_12_TinyTestSuite_beta/png/render-elems-06-t.png new file mode 100755 index 00000000..ad601eb0 Binary files /dev/null and b/test/W3C_SVG_12_TinyTestSuite_beta/png/render-elems-06-t.png differ diff --git a/test/W3C_SVG_12_TinyTestSuite_beta/png/render-elems-07-t.png b/test/W3C_SVG_12_TinyTestSuite_beta/png/render-elems-07-t.png new file mode 100755 index 00000000..b15148ad Binary files /dev/null and b/test/W3C_SVG_12_TinyTestSuite_beta/png/render-elems-07-t.png differ diff --git a/test/W3C_SVG_12_TinyTestSuite_beta/png/render-elems-08-t.png b/test/W3C_SVG_12_TinyTestSuite_beta/png/render-elems-08-t.png new file mode 100755 index 00000000..87a4fcee Binary files /dev/null and b/test/W3C_SVG_12_TinyTestSuite_beta/png/render-elems-08-t.png differ diff --git a/test/W3C_SVG_12_TinyTestSuite_beta/png/render-groups-01-t.png b/test/W3C_SVG_12_TinyTestSuite_beta/png/render-groups-01-t.png new file mode 100755 index 00000000..65dd2eaf Binary files /dev/null and b/test/W3C_SVG_12_TinyTestSuite_beta/png/render-groups-01-t.png differ diff --git a/test/W3C_SVG_12_TinyTestSuite_beta/png/render-groups-03-t.png b/test/W3C_SVG_12_TinyTestSuite_beta/png/render-groups-03-t.png new file mode 100755 index 00000000..872ec6e0 Binary files /dev/null and b/test/W3C_SVG_12_TinyTestSuite_beta/png/render-groups-03-t.png differ diff --git a/test/W3C_SVG_12_TinyTestSuite_beta/png/script-element-201-t.png b/test/W3C_SVG_12_TinyTestSuite_beta/png/script-element-201-t.png new file mode 100755 index 00000000..1211836d Binary files /dev/null and b/test/W3C_SVG_12_TinyTestSuite_beta/png/script-element-201-t.png differ diff --git a/test/W3C_SVG_12_TinyTestSuite_beta/png/script-element-202-t.png b/test/W3C_SVG_12_TinyTestSuite_beta/png/script-element-202-t.png new file mode 100755 index 00000000..c3d84eb7 Binary files /dev/null and b/test/W3C_SVG_12_TinyTestSuite_beta/png/script-element-202-t.png differ diff --git a/test/W3C_SVG_12_TinyTestSuite_beta/png/script-element-203-t.png b/test/W3C_SVG_12_TinyTestSuite_beta/png/script-element-203-t.png new file mode 100755 index 00000000..6aaa9971 Binary files /dev/null and b/test/W3C_SVG_12_TinyTestSuite_beta/png/script-element-203-t.png differ diff --git a/test/W3C_SVG_12_TinyTestSuite_beta/png/script-handle-05-t.png b/test/W3C_SVG_12_TinyTestSuite_beta/png/script-handle-05-t.png new file mode 100755 index 00000000..24f4169f Binary files /dev/null and b/test/W3C_SVG_12_TinyTestSuite_beta/png/script-handle-05-t.png differ diff --git a/test/W3C_SVG_12_TinyTestSuite_beta/png/script-handle-06-t.png b/test/W3C_SVG_12_TinyTestSuite_beta/png/script-handle-06-t.png new file mode 100755 index 00000000..d01a19fb Binary files /dev/null and b/test/W3C_SVG_12_TinyTestSuite_beta/png/script-handle-06-t.png differ diff --git a/test/W3C_SVG_12_TinyTestSuite_beta/png/script-handle-07-t.png b/test/W3C_SVG_12_TinyTestSuite_beta/png/script-handle-07-t.png new file mode 100755 index 00000000..b5691c4c Binary files /dev/null and b/test/W3C_SVG_12_TinyTestSuite_beta/png/script-handle-07-t.png differ diff --git a/test/W3C_SVG_12_TinyTestSuite_beta/png/script-handle-08-t.png b/test/W3C_SVG_12_TinyTestSuite_beta/png/script-handle-08-t.png new file mode 100755 index 00000000..7f01cc62 Binary files /dev/null and b/test/W3C_SVG_12_TinyTestSuite_beta/png/script-handle-08-t.png differ diff --git a/test/W3C_SVG_12_TinyTestSuite_beta/png/script-handle-201-t.png b/test/W3C_SVG_12_TinyTestSuite_beta/png/script-handle-201-t.png new file mode 100755 index 00000000..7c957366 Binary files /dev/null and b/test/W3C_SVG_12_TinyTestSuite_beta/png/script-handle-201-t.png differ diff --git a/test/W3C_SVG_12_TinyTestSuite_beta/png/script-handle-202-t.png b/test/W3C_SVG_12_TinyTestSuite_beta/png/script-handle-202-t.png new file mode 100755 index 00000000..bffb79b3 Binary files /dev/null and b/test/W3C_SVG_12_TinyTestSuite_beta/png/script-handle-202-t.png differ diff --git a/test/W3C_SVG_12_TinyTestSuite_beta/png/script-listener-201-t.png b/test/W3C_SVG_12_TinyTestSuite_beta/png/script-listener-201-t.png new file mode 100755 index 00000000..f6d35345 Binary files /dev/null and b/test/W3C_SVG_12_TinyTestSuite_beta/png/script-listener-201-t.png differ diff --git a/test/W3C_SVG_12_TinyTestSuite_beta/png/script-listener-202-t.png b/test/W3C_SVG_12_TinyTestSuite_beta/png/script-listener-202-t.png new file mode 100755 index 00000000..e21d7a67 Binary files /dev/null and b/test/W3C_SVG_12_TinyTestSuite_beta/png/script-listener-202-t.png differ diff --git a/test/W3C_SVG_12_TinyTestSuite_beta/png/script-listener-203-t.png b/test/W3C_SVG_12_TinyTestSuite_beta/png/script-listener-203-t.png new file mode 100755 index 00000000..421dd420 Binary files /dev/null and b/test/W3C_SVG_12_TinyTestSuite_beta/png/script-listener-203-t.png differ diff --git a/test/W3C_SVG_12_TinyTestSuite_beta/png/script-listener-204-t.png b/test/W3C_SVG_12_TinyTestSuite_beta/png/script-listener-204-t.png new file mode 100755 index 00000000..77106829 Binary files /dev/null and b/test/W3C_SVG_12_TinyTestSuite_beta/png/script-listener-204-t.png differ diff --git a/test/W3C_SVG_12_TinyTestSuite_beta/png/shapes-circle-01-t.png b/test/W3C_SVG_12_TinyTestSuite_beta/png/shapes-circle-01-t.png new file mode 100755 index 00000000..fc736c18 Binary files /dev/null and b/test/W3C_SVG_12_TinyTestSuite_beta/png/shapes-circle-01-t.png differ diff --git a/test/W3C_SVG_12_TinyTestSuite_beta/png/shapes-circle-02-t.png b/test/W3C_SVG_12_TinyTestSuite_beta/png/shapes-circle-02-t.png new file mode 100755 index 00000000..5e8821da Binary files /dev/null and b/test/W3C_SVG_12_TinyTestSuite_beta/png/shapes-circle-02-t.png differ diff --git a/test/W3C_SVG_12_TinyTestSuite_beta/png/shapes-circle-03-t.png b/test/W3C_SVG_12_TinyTestSuite_beta/png/shapes-circle-03-t.png new file mode 100755 index 00000000..89274c19 Binary files /dev/null and b/test/W3C_SVG_12_TinyTestSuite_beta/png/shapes-circle-03-t.png differ diff --git a/test/W3C_SVG_12_TinyTestSuite_beta/png/shapes-ellipse-01-t.png b/test/W3C_SVG_12_TinyTestSuite_beta/png/shapes-ellipse-01-t.png new file mode 100755 index 00000000..d61784ce Binary files /dev/null and b/test/W3C_SVG_12_TinyTestSuite_beta/png/shapes-ellipse-01-t.png differ diff --git a/test/W3C_SVG_12_TinyTestSuite_beta/png/shapes-ellipse-02-t.png b/test/W3C_SVG_12_TinyTestSuite_beta/png/shapes-ellipse-02-t.png new file mode 100755 index 00000000..678a10ca Binary files /dev/null and b/test/W3C_SVG_12_TinyTestSuite_beta/png/shapes-ellipse-02-t.png differ diff --git a/test/W3C_SVG_12_TinyTestSuite_beta/png/shapes-ellipse-03-t.png b/test/W3C_SVG_12_TinyTestSuite_beta/png/shapes-ellipse-03-t.png new file mode 100755 index 00000000..ca1d2690 Binary files /dev/null and b/test/W3C_SVG_12_TinyTestSuite_beta/png/shapes-ellipse-03-t.png differ diff --git a/test/W3C_SVG_12_TinyTestSuite_beta/png/shapes-intro-01-t.png b/test/W3C_SVG_12_TinyTestSuite_beta/png/shapes-intro-01-t.png new file mode 100755 index 00000000..1f26cfae Binary files /dev/null and b/test/W3C_SVG_12_TinyTestSuite_beta/png/shapes-intro-01-t.png differ diff --git a/test/W3C_SVG_12_TinyTestSuite_beta/png/shapes-line-01-t.png b/test/W3C_SVG_12_TinyTestSuite_beta/png/shapes-line-01-t.png new file mode 100755 index 00000000..2d67bdc6 Binary files /dev/null and b/test/W3C_SVG_12_TinyTestSuite_beta/png/shapes-line-01-t.png differ diff --git a/test/W3C_SVG_12_TinyTestSuite_beta/png/shapes-line-02-t.png b/test/W3C_SVG_12_TinyTestSuite_beta/png/shapes-line-02-t.png new file mode 100755 index 00000000..7805e20d Binary files /dev/null and b/test/W3C_SVG_12_TinyTestSuite_beta/png/shapes-line-02-t.png differ diff --git a/test/W3C_SVG_12_TinyTestSuite_beta/png/shapes-polygon-01-t.png b/test/W3C_SVG_12_TinyTestSuite_beta/png/shapes-polygon-01-t.png new file mode 100755 index 00000000..a40d1e0d Binary files /dev/null and b/test/W3C_SVG_12_TinyTestSuite_beta/png/shapes-polygon-01-t.png differ diff --git a/test/W3C_SVG_12_TinyTestSuite_beta/png/shapes-polygon-02-t.png b/test/W3C_SVG_12_TinyTestSuite_beta/png/shapes-polygon-02-t.png new file mode 100755 index 00000000..55589a9e Binary files /dev/null and b/test/W3C_SVG_12_TinyTestSuite_beta/png/shapes-polygon-02-t.png differ diff --git a/test/W3C_SVG_12_TinyTestSuite_beta/png/shapes-polyline-01-t.png b/test/W3C_SVG_12_TinyTestSuite_beta/png/shapes-polyline-01-t.png new file mode 100755 index 00000000..5809ec3f Binary files /dev/null and b/test/W3C_SVG_12_TinyTestSuite_beta/png/shapes-polyline-01-t.png differ diff --git a/test/W3C_SVG_12_TinyTestSuite_beta/png/shapes-polyline-02-t.png b/test/W3C_SVG_12_TinyTestSuite_beta/png/shapes-polyline-02-t.png new file mode 100755 index 00000000..780b549b Binary files /dev/null and b/test/W3C_SVG_12_TinyTestSuite_beta/png/shapes-polyline-02-t.png differ diff --git a/test/W3C_SVG_12_TinyTestSuite_beta/png/shapes-rect-01-t.png b/test/W3C_SVG_12_TinyTestSuite_beta/png/shapes-rect-01-t.png new file mode 100755 index 00000000..97332cba Binary files /dev/null and b/test/W3C_SVG_12_TinyTestSuite_beta/png/shapes-rect-01-t.png differ diff --git a/test/W3C_SVG_12_TinyTestSuite_beta/png/shapes-rect-02-t.png b/test/W3C_SVG_12_TinyTestSuite_beta/png/shapes-rect-02-t.png new file mode 100755 index 00000000..97ff79e4 Binary files /dev/null and b/test/W3C_SVG_12_TinyTestSuite_beta/png/shapes-rect-02-t.png differ diff --git a/test/W3C_SVG_12_TinyTestSuite_beta/png/shapes-rect-03-t.png b/test/W3C_SVG_12_TinyTestSuite_beta/png/shapes-rect-03-t.png new file mode 100755 index 00000000..3ee8a450 Binary files /dev/null and b/test/W3C_SVG_12_TinyTestSuite_beta/png/shapes-rect-03-t.png differ diff --git a/test/W3C_SVG_12_TinyTestSuite_beta/png/struct-class-201-t.png b/test/W3C_SVG_12_TinyTestSuite_beta/png/struct-class-201-t.png new file mode 100755 index 00000000..aa396188 Binary files /dev/null and b/test/W3C_SVG_12_TinyTestSuite_beta/png/struct-class-201-t.png differ diff --git a/test/W3C_SVG_12_TinyTestSuite_beta/png/struct-common-201-t.png b/test/W3C_SVG_12_TinyTestSuite_beta/png/struct-common-201-t.png new file mode 100755 index 00000000..2b76df40 Binary files /dev/null and b/test/W3C_SVG_12_TinyTestSuite_beta/png/struct-common-201-t.png differ diff --git a/test/W3C_SVG_12_TinyTestSuite_beta/png/struct-cond-01-t.png b/test/W3C_SVG_12_TinyTestSuite_beta/png/struct-cond-01-t.png new file mode 100755 index 00000000..013bfcd8 Binary files /dev/null and b/test/W3C_SVG_12_TinyTestSuite_beta/png/struct-cond-01-t.png differ diff --git a/test/W3C_SVG_12_TinyTestSuite_beta/png/struct-cond-02-t.png b/test/W3C_SVG_12_TinyTestSuite_beta/png/struct-cond-02-t.png new file mode 100755 index 00000000..129d396e Binary files /dev/null and b/test/W3C_SVG_12_TinyTestSuite_beta/png/struct-cond-02-t.png differ diff --git a/test/W3C_SVG_12_TinyTestSuite_beta/png/struct-cond-03-t.png b/test/W3C_SVG_12_TinyTestSuite_beta/png/struct-cond-03-t.png new file mode 100755 index 00000000..365c5c47 Binary files /dev/null and b/test/W3C_SVG_12_TinyTestSuite_beta/png/struct-cond-03-t.png differ diff --git a/test/W3C_SVG_12_TinyTestSuite_beta/png/struct-cond-204-t.png b/test/W3C_SVG_12_TinyTestSuite_beta/png/struct-cond-204-t.png new file mode 100755 index 00000000..b0b45471 Binary files /dev/null and b/test/W3C_SVG_12_TinyTestSuite_beta/png/struct-cond-204-t.png differ diff --git a/test/W3C_SVG_12_TinyTestSuite_beta/png/struct-cond-205-t.png b/test/W3C_SVG_12_TinyTestSuite_beta/png/struct-cond-205-t.png new file mode 100755 index 00000000..8b870624 Binary files /dev/null and b/test/W3C_SVG_12_TinyTestSuite_beta/png/struct-cond-205-t.png differ diff --git a/test/W3C_SVG_12_TinyTestSuite_beta/png/struct-cond-209-t.png b/test/W3C_SVG_12_TinyTestSuite_beta/png/struct-cond-209-t.png new file mode 100755 index 00000000..59336c55 Binary files /dev/null and b/test/W3C_SVG_12_TinyTestSuite_beta/png/struct-cond-209-t.png differ diff --git a/test/W3C_SVG_12_TinyTestSuite_beta/png/struct-cond-210-t.png b/test/W3C_SVG_12_TinyTestSuite_beta/png/struct-cond-210-t.png new file mode 100755 index 00000000..e1827f50 Binary files /dev/null and b/test/W3C_SVG_12_TinyTestSuite_beta/png/struct-cond-210-t.png differ diff --git a/test/W3C_SVG_12_TinyTestSuite_beta/png/struct-defs-01-t.png b/test/W3C_SVG_12_TinyTestSuite_beta/png/struct-defs-01-t.png new file mode 100755 index 00000000..78289bb9 Binary files /dev/null and b/test/W3C_SVG_12_TinyTestSuite_beta/png/struct-defs-01-t.png differ diff --git a/test/W3C_SVG_12_TinyTestSuite_beta/png/struct-defs-201-t.png b/test/W3C_SVG_12_TinyTestSuite_beta/png/struct-defs-201-t.png new file mode 100755 index 00000000..58d6a62f Binary files /dev/null and b/test/W3C_SVG_12_TinyTestSuite_beta/png/struct-defs-201-t.png differ diff --git a/test/W3C_SVG_12_TinyTestSuite_beta/png/struct-discard-201-t.png b/test/W3C_SVG_12_TinyTestSuite_beta/png/struct-discard-201-t.png new file mode 100755 index 00000000..ca4098dc Binary files /dev/null and b/test/W3C_SVG_12_TinyTestSuite_beta/png/struct-discard-201-t.png differ diff --git a/test/W3C_SVG_12_TinyTestSuite_beta/png/struct-discard-204-t.png b/test/W3C_SVG_12_TinyTestSuite_beta/png/struct-discard-204-t.png new file mode 100755 index 00000000..5f0f66ef Binary files /dev/null and b/test/W3C_SVG_12_TinyTestSuite_beta/png/struct-discard-204-t.png differ diff --git a/test/W3C_SVG_12_TinyTestSuite_beta/png/struct-discard-205-t.png b/test/W3C_SVG_12_TinyTestSuite_beta/png/struct-discard-205-t.png new file mode 100755 index 00000000..1ef7306d Binary files /dev/null and b/test/W3C_SVG_12_TinyTestSuite_beta/png/struct-discard-205-t.png differ diff --git a/test/W3C_SVG_12_TinyTestSuite_beta/png/struct-discard-206-t.png b/test/W3C_SVG_12_TinyTestSuite_beta/png/struct-discard-206-t.png new file mode 100755 index 00000000..fe001cab Binary files /dev/null and b/test/W3C_SVG_12_TinyTestSuite_beta/png/struct-discard-206-t.png differ diff --git a/test/W3C_SVG_12_TinyTestSuite_beta/png/struct-discard-207-t.png b/test/W3C_SVG_12_TinyTestSuite_beta/png/struct-discard-207-t.png new file mode 100755 index 00000000..dd3e77ee Binary files /dev/null and b/test/W3C_SVG_12_TinyTestSuite_beta/png/struct-discard-207-t.png differ diff --git a/test/W3C_SVG_12_TinyTestSuite_beta/png/struct-frag-02-t.png b/test/W3C_SVG_12_TinyTestSuite_beta/png/struct-frag-02-t.png new file mode 100755 index 00000000..f664dccf Binary files /dev/null and b/test/W3C_SVG_12_TinyTestSuite_beta/png/struct-frag-02-t.png differ diff --git a/test/W3C_SVG_12_TinyTestSuite_beta/png/struct-frag-03-t.png b/test/W3C_SVG_12_TinyTestSuite_beta/png/struct-frag-03-t.png new file mode 100755 index 00000000..f664dccf Binary files /dev/null and b/test/W3C_SVG_12_TinyTestSuite_beta/png/struct-frag-03-t.png differ diff --git a/test/W3C_SVG_12_TinyTestSuite_beta/png/struct-frag-04-t.png b/test/W3C_SVG_12_TinyTestSuite_beta/png/struct-frag-04-t.png new file mode 100755 index 00000000..f664dccf Binary files /dev/null and b/test/W3C_SVG_12_TinyTestSuite_beta/png/struct-frag-04-t.png differ diff --git a/test/W3C_SVG_12_TinyTestSuite_beta/png/struct-frag-05-t.png b/test/W3C_SVG_12_TinyTestSuite_beta/png/struct-frag-05-t.png new file mode 100755 index 00000000..4a67b668 Binary files /dev/null and b/test/W3C_SVG_12_TinyTestSuite_beta/png/struct-frag-05-t.png differ diff --git a/test/W3C_SVG_12_TinyTestSuite_beta/png/struct-frag-06-t.png b/test/W3C_SVG_12_TinyTestSuite_beta/png/struct-frag-06-t.png new file mode 100755 index 00000000..a2536157 Binary files /dev/null and b/test/W3C_SVG_12_TinyTestSuite_beta/png/struct-frag-06-t.png differ diff --git a/test/W3C_SVG_12_TinyTestSuite_beta/png/struct-group-01-t.png b/test/W3C_SVG_12_TinyTestSuite_beta/png/struct-group-01-t.png new file mode 100755 index 00000000..b6ed68a1 Binary files /dev/null and b/test/W3C_SVG_12_TinyTestSuite_beta/png/struct-group-01-t.png differ diff --git a/test/W3C_SVG_12_TinyTestSuite_beta/png/struct-group-03-t.png b/test/W3C_SVG_12_TinyTestSuite_beta/png/struct-group-03-t.png new file mode 100755 index 00000000..33af2e4b Binary files /dev/null and b/test/W3C_SVG_12_TinyTestSuite_beta/png/struct-group-03-t.png differ diff --git a/test/W3C_SVG_12_TinyTestSuite_beta/png/struct-image-01-t.png b/test/W3C_SVG_12_TinyTestSuite_beta/png/struct-image-01-t.png new file mode 100755 index 00000000..fe72ad91 Binary files /dev/null and b/test/W3C_SVG_12_TinyTestSuite_beta/png/struct-image-01-t.png differ diff --git a/test/W3C_SVG_12_TinyTestSuite_beta/png/struct-image-03-t.png b/test/W3C_SVG_12_TinyTestSuite_beta/png/struct-image-03-t.png new file mode 100755 index 00000000..851e0621 Binary files /dev/null and b/test/W3C_SVG_12_TinyTestSuite_beta/png/struct-image-03-t.png differ diff --git a/test/W3C_SVG_12_TinyTestSuite_beta/png/struct-image-04-t.png b/test/W3C_SVG_12_TinyTestSuite_beta/png/struct-image-04-t.png new file mode 100755 index 00000000..14db00cb Binary files /dev/null and b/test/W3C_SVG_12_TinyTestSuite_beta/png/struct-image-04-t.png differ diff --git a/test/W3C_SVG_12_TinyTestSuite_beta/png/struct-image-06-t.png b/test/W3C_SVG_12_TinyTestSuite_beta/png/struct-image-06-t.png new file mode 100755 index 00000000..1dcc496e Binary files /dev/null and b/test/W3C_SVG_12_TinyTestSuite_beta/png/struct-image-06-t.png differ diff --git a/test/W3C_SVG_12_TinyTestSuite_beta/png/struct-image-07-t.png b/test/W3C_SVG_12_TinyTestSuite_beta/png/struct-image-07-t.png new file mode 100755 index 00000000..fc03c92d Binary files /dev/null and b/test/W3C_SVG_12_TinyTestSuite_beta/png/struct-image-07-t.png differ diff --git a/test/W3C_SVG_12_TinyTestSuite_beta/png/struct-image-08-t.png b/test/W3C_SVG_12_TinyTestSuite_beta/png/struct-image-08-t.png new file mode 100755 index 00000000..a45e4383 Binary files /dev/null and b/test/W3C_SVG_12_TinyTestSuite_beta/png/struct-image-08-t.png differ diff --git a/test/W3C_SVG_12_TinyTestSuite_beta/png/struct-image-09-t.png b/test/W3C_SVG_12_TinyTestSuite_beta/png/struct-image-09-t.png new file mode 100755 index 00000000..4dd9d24e Binary files /dev/null and b/test/W3C_SVG_12_TinyTestSuite_beta/png/struct-image-09-t.png differ diff --git a/test/W3C_SVG_12_TinyTestSuite_beta/png/struct-image-10-t.png b/test/W3C_SVG_12_TinyTestSuite_beta/png/struct-image-10-t.png new file mode 100755 index 00000000..26565842 Binary files /dev/null and b/test/W3C_SVG_12_TinyTestSuite_beta/png/struct-image-10-t.png differ diff --git a/test/W3C_SVG_12_TinyTestSuite_beta/png/struct-progressive-201-t.png b/test/W3C_SVG_12_TinyTestSuite_beta/png/struct-progressive-201-t.png new file mode 100755 index 00000000..2eda2641 Binary files /dev/null and b/test/W3C_SVG_12_TinyTestSuite_beta/png/struct-progressive-201-t.png differ diff --git a/test/W3C_SVG_12_TinyTestSuite_beta/png/struct-progressive-202-t.png b/test/W3C_SVG_12_TinyTestSuite_beta/png/struct-progressive-202-t.png new file mode 100755 index 00000000..98344163 Binary files /dev/null and b/test/W3C_SVG_12_TinyTestSuite_beta/png/struct-progressive-202-t.png differ diff --git a/test/W3C_SVG_12_TinyTestSuite_beta/png/struct-progressive-203-t.png b/test/W3C_SVG_12_TinyTestSuite_beta/png/struct-progressive-203-t.png new file mode 100755 index 00000000..85bf2e2c Binary files /dev/null and b/test/W3C_SVG_12_TinyTestSuite_beta/png/struct-progressive-203-t.png differ diff --git a/test/W3C_SVG_12_TinyTestSuite_beta/png/struct-progressive-204-t.png b/test/W3C_SVG_12_TinyTestSuite_beta/png/struct-progressive-204-t.png new file mode 100755 index 00000000..ce5bee7d Binary files /dev/null and b/test/W3C_SVG_12_TinyTestSuite_beta/png/struct-progressive-204-t.png differ diff --git a/test/W3C_SVG_12_TinyTestSuite_beta/png/struct-svg-201-t.png b/test/W3C_SVG_12_TinyTestSuite_beta/png/struct-svg-201-t.png new file mode 100755 index 00000000..26c2c487 Binary files /dev/null and b/test/W3C_SVG_12_TinyTestSuite_beta/png/struct-svg-201-t.png differ diff --git a/test/W3C_SVG_12_TinyTestSuite_beta/png/struct-svg-202-t.png b/test/W3C_SVG_12_TinyTestSuite_beta/png/struct-svg-202-t.png new file mode 100755 index 00000000..d3af90c6 Binary files /dev/null and b/test/W3C_SVG_12_TinyTestSuite_beta/png/struct-svg-202-t.png differ diff --git a/test/W3C_SVG_12_TinyTestSuite_beta/png/struct-svg-203-t.png b/test/W3C_SVG_12_TinyTestSuite_beta/png/struct-svg-203-t.png new file mode 100755 index 00000000..0d30b65a Binary files /dev/null and b/test/W3C_SVG_12_TinyTestSuite_beta/png/struct-svg-203-t.png differ diff --git a/test/W3C_SVG_12_TinyTestSuite_beta/png/struct-svg-204-t.png b/test/W3C_SVG_12_TinyTestSuite_beta/png/struct-svg-204-t.png new file mode 100755 index 00000000..5163766f Binary files /dev/null and b/test/W3C_SVG_12_TinyTestSuite_beta/png/struct-svg-204-t.png differ diff --git a/test/W3C_SVG_12_TinyTestSuite_beta/png/struct-use-01-t.png b/test/W3C_SVG_12_TinyTestSuite_beta/png/struct-use-01-t.png new file mode 100755 index 00000000..2d0b0d49 Binary files /dev/null and b/test/W3C_SVG_12_TinyTestSuite_beta/png/struct-use-01-t.png differ diff --git a/test/W3C_SVG_12_TinyTestSuite_beta/png/struct-use-03-t.png b/test/W3C_SVG_12_TinyTestSuite_beta/png/struct-use-03-t.png new file mode 100755 index 00000000..7b279d81 Binary files /dev/null and b/test/W3C_SVG_12_TinyTestSuite_beta/png/struct-use-03-t.png differ diff --git a/test/W3C_SVG_12_TinyTestSuite_beta/png/struct-use-09-t.png b/test/W3C_SVG_12_TinyTestSuite_beta/png/struct-use-09-t.png new file mode 100755 index 00000000..da362eec Binary files /dev/null and b/test/W3C_SVG_12_TinyTestSuite_beta/png/struct-use-09-t.png differ diff --git a/test/W3C_SVG_12_TinyTestSuite_beta/png/struct-use-201-t.png b/test/W3C_SVG_12_TinyTestSuite_beta/png/struct-use-201-t.png new file mode 100755 index 00000000..bb6d4fbd Binary files /dev/null and b/test/W3C_SVG_12_TinyTestSuite_beta/png/struct-use-201-t.png differ diff --git a/test/W3C_SVG_12_TinyTestSuite_beta/png/struct-use-202-t.png b/test/W3C_SVG_12_TinyTestSuite_beta/png/struct-use-202-t.png new file mode 100755 index 00000000..a6922007 Binary files /dev/null and b/test/W3C_SVG_12_TinyTestSuite_beta/png/struct-use-202-t.png differ diff --git a/test/W3C_SVG_12_TinyTestSuite_beta/png/struct-use-203-t.png b/test/W3C_SVG_12_TinyTestSuite_beta/png/struct-use-203-t.png new file mode 100755 index 00000000..edbe10d4 Binary files /dev/null and b/test/W3C_SVG_12_TinyTestSuite_beta/png/struct-use-203-t.png differ diff --git a/test/W3C_SVG_12_TinyTestSuite_beta/png/struct-use-204-t.png b/test/W3C_SVG_12_TinyTestSuite_beta/png/struct-use-204-t.png new file mode 100755 index 00000000..edbe10d4 Binary files /dev/null and b/test/W3C_SVG_12_TinyTestSuite_beta/png/struct-use-204-t.png differ diff --git a/test/W3C_SVG_12_TinyTestSuite_beta/png/struct-use-205-t.png b/test/W3C_SVG_12_TinyTestSuite_beta/png/struct-use-205-t.png new file mode 100755 index 00000000..fcfb6ca2 Binary files /dev/null and b/test/W3C_SVG_12_TinyTestSuite_beta/png/struct-use-205-t.png differ diff --git a/test/W3C_SVG_12_TinyTestSuite_beta/png/struct-use-206-t.png b/test/W3C_SVG_12_TinyTestSuite_beta/png/struct-use-206-t.png new file mode 100755 index 00000000..cf87b28b Binary files /dev/null and b/test/W3C_SVG_12_TinyTestSuite_beta/png/struct-use-206-t.png differ diff --git a/test/W3C_SVG_12_TinyTestSuite_beta/png/struct-use-207-t.png b/test/W3C_SVG_12_TinyTestSuite_beta/png/struct-use-207-t.png new file mode 100755 index 00000000..38616b14 Binary files /dev/null and b/test/W3C_SVG_12_TinyTestSuite_beta/png/struct-use-207-t.png differ diff --git a/test/W3C_SVG_12_TinyTestSuite_beta/png/struct-use-208-t.png b/test/W3C_SVG_12_TinyTestSuite_beta/png/struct-use-208-t.png new file mode 100755 index 00000000..88a9cae6 Binary files /dev/null and b/test/W3C_SVG_12_TinyTestSuite_beta/png/struct-use-208-t.png differ diff --git a/test/W3C_SVG_12_TinyTestSuite_beta/png/struct-use-209-t.png b/test/W3C_SVG_12_TinyTestSuite_beta/png/struct-use-209-t.png new file mode 100755 index 00000000..8631317d Binary files /dev/null and b/test/W3C_SVG_12_TinyTestSuite_beta/png/struct-use-209-t.png differ diff --git a/test/W3C_SVG_12_TinyTestSuite_beta/png/struct-use-recursion-01-t.png b/test/W3C_SVG_12_TinyTestSuite_beta/png/struct-use-recursion-01-t.png new file mode 100755 index 00000000..a855e41b Binary files /dev/null and b/test/W3C_SVG_12_TinyTestSuite_beta/png/struct-use-recursion-01-t.png differ diff --git a/test/W3C_SVG_12_TinyTestSuite_beta/png/struct-use-recursion-02-t.png b/test/W3C_SVG_12_TinyTestSuite_beta/png/struct-use-recursion-02-t.png new file mode 100755 index 00000000..656f6587 Binary files /dev/null and b/test/W3C_SVG_12_TinyTestSuite_beta/png/struct-use-recursion-02-t.png differ diff --git a/test/W3C_SVG_12_TinyTestSuite_beta/png/struct-use-recursion-03-t.png b/test/W3C_SVG_12_TinyTestSuite_beta/png/struct-use-recursion-03-t.png new file mode 100755 index 00000000..7b5419f1 Binary files /dev/null and b/test/W3C_SVG_12_TinyTestSuite_beta/png/struct-use-recursion-03-t.png differ diff --git a/test/W3C_SVG_12_TinyTestSuite_beta/png/styling-inherit-01-t.png b/test/W3C_SVG_12_TinyTestSuite_beta/png/styling-inherit-01-t.png new file mode 100755 index 00000000..a200f371 Binary files /dev/null and b/test/W3C_SVG_12_TinyTestSuite_beta/png/styling-inherit-01-t.png differ diff --git a/test/W3C_SVG_12_TinyTestSuite_beta/png/styling-inherit-02-t.png b/test/W3C_SVG_12_TinyTestSuite_beta/png/styling-inherit-02-t.png new file mode 100755 index 00000000..231433bd Binary files /dev/null and b/test/W3C_SVG_12_TinyTestSuite_beta/png/styling-inherit-02-t.png differ diff --git a/test/W3C_SVG_12_TinyTestSuite_beta/png/styling-inherit-03-t.png b/test/W3C_SVG_12_TinyTestSuite_beta/png/styling-inherit-03-t.png new file mode 100755 index 00000000..8ccffe9a Binary files /dev/null and b/test/W3C_SVG_12_TinyTestSuite_beta/png/styling-inherit-03-t.png differ diff --git a/test/W3C_SVG_12_TinyTestSuite_beta/png/styling-pres-01-t.png b/test/W3C_SVG_12_TinyTestSuite_beta/png/styling-pres-01-t.png new file mode 100755 index 00000000..388090e1 Binary files /dev/null and b/test/W3C_SVG_12_TinyTestSuite_beta/png/styling-pres-01-t.png differ diff --git a/test/W3C_SVG_12_TinyTestSuite_beta/png/text-align-01-t.png b/test/W3C_SVG_12_TinyTestSuite_beta/png/text-align-01-t.png new file mode 100755 index 00000000..defff52d Binary files /dev/null and b/test/W3C_SVG_12_TinyTestSuite_beta/png/text-align-01-t.png differ diff --git a/test/W3C_SVG_12_TinyTestSuite_beta/png/text-align-07-t.png b/test/W3C_SVG_12_TinyTestSuite_beta/png/text-align-07-t.png new file mode 100755 index 00000000..2b9dbe3d Binary files /dev/null and b/test/W3C_SVG_12_TinyTestSuite_beta/png/text-align-07-t.png differ diff --git a/test/W3C_SVG_12_TinyTestSuite_beta/png/text-align-08-t.png b/test/W3C_SVG_12_TinyTestSuite_beta/png/text-align-08-t.png new file mode 100755 index 00000000..6d4eca3c Binary files /dev/null and b/test/W3C_SVG_12_TinyTestSuite_beta/png/text-align-08-t.png differ diff --git a/test/W3C_SVG_12_TinyTestSuite_beta/png/text-align-201-t.png b/test/W3C_SVG_12_TinyTestSuite_beta/png/text-align-201-t.png new file mode 100755 index 00000000..d01c521d Binary files /dev/null and b/test/W3C_SVG_12_TinyTestSuite_beta/png/text-align-201-t.png differ diff --git a/test/W3C_SVG_12_TinyTestSuite_beta/png/text-align-202-t.png b/test/W3C_SVG_12_TinyTestSuite_beta/png/text-align-202-t.png new file mode 100755 index 00000000..83a2f6f7 Binary files /dev/null and b/test/W3C_SVG_12_TinyTestSuite_beta/png/text-align-202-t.png differ diff --git a/test/W3C_SVG_12_TinyTestSuite_beta/png/text-area-201-t.png b/test/W3C_SVG_12_TinyTestSuite_beta/png/text-area-201-t.png new file mode 100755 index 00000000..67d2fa20 Binary files /dev/null and b/test/W3C_SVG_12_TinyTestSuite_beta/png/text-area-201-t.png differ diff --git a/test/W3C_SVG_12_TinyTestSuite_beta/png/text-area-202-t.png b/test/W3C_SVG_12_TinyTestSuite_beta/png/text-area-202-t.png new file mode 100755 index 00000000..7b2392fb Binary files /dev/null and b/test/W3C_SVG_12_TinyTestSuite_beta/png/text-area-202-t.png differ diff --git a/test/W3C_SVG_12_TinyTestSuite_beta/png/text-area-203-t.png b/test/W3C_SVG_12_TinyTestSuite_beta/png/text-area-203-t.png new file mode 100755 index 00000000..86ce9ed6 Binary files /dev/null and b/test/W3C_SVG_12_TinyTestSuite_beta/png/text-area-203-t.png differ diff --git a/test/W3C_SVG_12_TinyTestSuite_beta/png/text-area-204-t.png b/test/W3C_SVG_12_TinyTestSuite_beta/png/text-area-204-t.png new file mode 100755 index 00000000..6f1602b5 Binary files /dev/null and b/test/W3C_SVG_12_TinyTestSuite_beta/png/text-area-204-t.png differ diff --git a/test/W3C_SVG_12_TinyTestSuite_beta/png/text-area-205-t.png b/test/W3C_SVG_12_TinyTestSuite_beta/png/text-area-205-t.png new file mode 100755 index 00000000..c07e8f4d Binary files /dev/null and b/test/W3C_SVG_12_TinyTestSuite_beta/png/text-area-205-t.png differ diff --git a/test/W3C_SVG_12_TinyTestSuite_beta/png/text-area-206-t.png b/test/W3C_SVG_12_TinyTestSuite_beta/png/text-area-206-t.png new file mode 100755 index 00000000..db87c484 Binary files /dev/null and b/test/W3C_SVG_12_TinyTestSuite_beta/png/text-area-206-t.png differ diff --git a/test/W3C_SVG_12_TinyTestSuite_beta/png/text-area-207-t.png b/test/W3C_SVG_12_TinyTestSuite_beta/png/text-area-207-t.png new file mode 100755 index 00000000..833a976d Binary files /dev/null and b/test/W3C_SVG_12_TinyTestSuite_beta/png/text-area-207-t.png differ diff --git a/test/W3C_SVG_12_TinyTestSuite_beta/png/text-area-208-t.png b/test/W3C_SVG_12_TinyTestSuite_beta/png/text-area-208-t.png new file mode 100755 index 00000000..d672a2b8 Binary files /dev/null and b/test/W3C_SVG_12_TinyTestSuite_beta/png/text-area-208-t.png differ diff --git a/test/W3C_SVG_12_TinyTestSuite_beta/png/text-area-209-t.png b/test/W3C_SVG_12_TinyTestSuite_beta/png/text-area-209-t.png new file mode 100755 index 00000000..e36e24ef Binary files /dev/null and b/test/W3C_SVG_12_TinyTestSuite_beta/png/text-area-209-t.png differ diff --git a/test/W3C_SVG_12_TinyTestSuite_beta/png/text-area-210-t.png b/test/W3C_SVG_12_TinyTestSuite_beta/png/text-area-210-t.png new file mode 100755 index 00000000..a1708c9f Binary files /dev/null and b/test/W3C_SVG_12_TinyTestSuite_beta/png/text-area-210-t.png differ diff --git a/test/W3C_SVG_12_TinyTestSuite_beta/png/text-area-211-t.png b/test/W3C_SVG_12_TinyTestSuite_beta/png/text-area-211-t.png new file mode 100755 index 00000000..01a5a342 Binary files /dev/null and b/test/W3C_SVG_12_TinyTestSuite_beta/png/text-area-211-t.png differ diff --git a/test/W3C_SVG_12_TinyTestSuite_beta/png/text-area-213-t.png b/test/W3C_SVG_12_TinyTestSuite_beta/png/text-area-213-t.png new file mode 100755 index 00000000..4075ce66 Binary files /dev/null and b/test/W3C_SVG_12_TinyTestSuite_beta/png/text-area-213-t.png differ diff --git a/test/W3C_SVG_12_TinyTestSuite_beta/png/text-area-220-t.png b/test/W3C_SVG_12_TinyTestSuite_beta/png/text-area-220-t.png new file mode 100755 index 00000000..e5553e4c Binary files /dev/null and b/test/W3C_SVG_12_TinyTestSuite_beta/png/text-area-220-t.png differ diff --git a/test/W3C_SVG_12_TinyTestSuite_beta/png/text-area-221-t.png b/test/W3C_SVG_12_TinyTestSuite_beta/png/text-area-221-t.png new file mode 100755 index 00000000..34f9ef96 Binary files /dev/null and b/test/W3C_SVG_12_TinyTestSuite_beta/png/text-area-221-t.png differ diff --git a/test/W3C_SVG_12_TinyTestSuite_beta/png/text-area-222-t.png b/test/W3C_SVG_12_TinyTestSuite_beta/png/text-area-222-t.png new file mode 100755 index 00000000..26e2f5d1 Binary files /dev/null and b/test/W3C_SVG_12_TinyTestSuite_beta/png/text-area-222-t.png differ diff --git a/test/W3C_SVG_12_TinyTestSuite_beta/png/text-edit-201-t.png b/test/W3C_SVG_12_TinyTestSuite_beta/png/text-edit-201-t.png new file mode 100755 index 00000000..ea486df7 Binary files /dev/null and b/test/W3C_SVG_12_TinyTestSuite_beta/png/text-edit-201-t.png differ diff --git a/test/W3C_SVG_12_TinyTestSuite_beta/png/text-fonts-01-t.png b/test/W3C_SVG_12_TinyTestSuite_beta/png/text-fonts-01-t.png new file mode 100755 index 00000000..100fac66 Binary files /dev/null and b/test/W3C_SVG_12_TinyTestSuite_beta/png/text-fonts-01-t.png differ diff --git a/test/W3C_SVG_12_TinyTestSuite_beta/png/text-fonts-02-t.png b/test/W3C_SVG_12_TinyTestSuite_beta/png/text-fonts-02-t.png new file mode 100755 index 00000000..eaa35c9c Binary files /dev/null and b/test/W3C_SVG_12_TinyTestSuite_beta/png/text-fonts-02-t.png differ diff --git a/test/W3C_SVG_12_TinyTestSuite_beta/png/text-fonts-03-t.png b/test/W3C_SVG_12_TinyTestSuite_beta/png/text-fonts-03-t.png new file mode 100755 index 00000000..53af40fe Binary files /dev/null and b/test/W3C_SVG_12_TinyTestSuite_beta/png/text-fonts-03-t.png differ diff --git a/test/W3C_SVG_12_TinyTestSuite_beta/png/text-fonts-04-t.png b/test/W3C_SVG_12_TinyTestSuite_beta/png/text-fonts-04-t.png new file mode 100755 index 00000000..3ff82d99 Binary files /dev/null and b/test/W3C_SVG_12_TinyTestSuite_beta/png/text-fonts-04-t.png differ diff --git a/test/W3C_SVG_12_TinyTestSuite_beta/png/text-fonts-202-t.png b/test/W3C_SVG_12_TinyTestSuite_beta/png/text-fonts-202-t.png new file mode 100755 index 00000000..a5700b3b Binary files /dev/null and b/test/W3C_SVG_12_TinyTestSuite_beta/png/text-fonts-202-t.png differ diff --git a/test/W3C_SVG_12_TinyTestSuite_beta/png/text-intro-01-t.png b/test/W3C_SVG_12_TinyTestSuite_beta/png/text-intro-01-t.png new file mode 100755 index 00000000..acc22b65 Binary files /dev/null and b/test/W3C_SVG_12_TinyTestSuite_beta/png/text-intro-01-t.png differ diff --git a/test/W3C_SVG_12_TinyTestSuite_beta/png/text-intro-04-t.png b/test/W3C_SVG_12_TinyTestSuite_beta/png/text-intro-04-t.png new file mode 100755 index 00000000..6e66dd7c Binary files /dev/null and b/test/W3C_SVG_12_TinyTestSuite_beta/png/text-intro-04-t.png differ diff --git a/test/W3C_SVG_12_TinyTestSuite_beta/png/text-intro-05-t.png b/test/W3C_SVG_12_TinyTestSuite_beta/png/text-intro-05-t.png new file mode 100755 index 00000000..1e2e7844 Binary files /dev/null and b/test/W3C_SVG_12_TinyTestSuite_beta/png/text-intro-05-t.png differ diff --git a/test/W3C_SVG_12_TinyTestSuite_beta/png/text-intro-06-t.png b/test/W3C_SVG_12_TinyTestSuite_beta/png/text-intro-06-t.png new file mode 100755 index 00000000..73fe921a Binary files /dev/null and b/test/W3C_SVG_12_TinyTestSuite_beta/png/text-intro-06-t.png differ diff --git a/test/W3C_SVG_12_TinyTestSuite_beta/png/text-intro-201-t.png b/test/W3C_SVG_12_TinyTestSuite_beta/png/text-intro-201-t.png new file mode 100755 index 00000000..9698ab07 Binary files /dev/null and b/test/W3C_SVG_12_TinyTestSuite_beta/png/text-intro-201-t.png differ diff --git a/test/W3C_SVG_12_TinyTestSuite_beta/png/text-text-04-t.png b/test/W3C_SVG_12_TinyTestSuite_beta/png/text-text-04-t.png new file mode 100755 index 00000000..7e42e78a Binary files /dev/null and b/test/W3C_SVG_12_TinyTestSuite_beta/png/text-text-04-t.png differ diff --git a/test/W3C_SVG_12_TinyTestSuite_beta/png/text-text-06-t.png b/test/W3C_SVG_12_TinyTestSuite_beta/png/text-text-06-t.png new file mode 100755 index 00000000..5527e310 Binary files /dev/null and b/test/W3C_SVG_12_TinyTestSuite_beta/png/text-text-06-t.png differ diff --git a/test/W3C_SVG_12_TinyTestSuite_beta/png/text-text-07-t.png b/test/W3C_SVG_12_TinyTestSuite_beta/png/text-text-07-t.png new file mode 100755 index 00000000..52f846f1 Binary files /dev/null and b/test/W3C_SVG_12_TinyTestSuite_beta/png/text-text-07-t.png differ diff --git a/test/W3C_SVG_12_TinyTestSuite_beta/png/text-text-08-t.png b/test/W3C_SVG_12_TinyTestSuite_beta/png/text-text-08-t.png new file mode 100755 index 00000000..4bdfda2c Binary files /dev/null and b/test/W3C_SVG_12_TinyTestSuite_beta/png/text-text-08-t.png differ diff --git a/test/W3C_SVG_12_TinyTestSuite_beta/png/text-text-09-t.png b/test/W3C_SVG_12_TinyTestSuite_beta/png/text-text-09-t.png new file mode 100755 index 00000000..7c4ce3aa Binary files /dev/null and b/test/W3C_SVG_12_TinyTestSuite_beta/png/text-text-09-t.png differ diff --git a/test/W3C_SVG_12_TinyTestSuite_beta/png/text-tselect-03-t.png b/test/W3C_SVG_12_TinyTestSuite_beta/png/text-tselect-03-t.png new file mode 100755 index 00000000..53ef3160 Binary files /dev/null and b/test/W3C_SVG_12_TinyTestSuite_beta/png/text-tselect-03-t.png differ diff --git a/test/W3C_SVG_12_TinyTestSuite_beta/png/text-ws-01-t.png b/test/W3C_SVG_12_TinyTestSuite_beta/png/text-ws-01-t.png new file mode 100755 index 00000000..6cb19868 Binary files /dev/null and b/test/W3C_SVG_12_TinyTestSuite_beta/png/text-ws-01-t.png differ diff --git a/test/W3C_SVG_12_TinyTestSuite_beta/png/text-ws-02-t.png b/test/W3C_SVG_12_TinyTestSuite_beta/png/text-ws-02-t.png new file mode 100755 index 00000000..4ba9c1a7 Binary files /dev/null and b/test/W3C_SVG_12_TinyTestSuite_beta/png/text-ws-02-t.png differ diff --git a/test/W3C_SVG_12_TinyTestSuite_beta/png/udom-conform-201-t.png b/test/W3C_SVG_12_TinyTestSuite_beta/png/udom-conform-201-t.png new file mode 100755 index 00000000..c1824fc6 Binary files /dev/null and b/test/W3C_SVG_12_TinyTestSuite_beta/png/udom-conform-201-t.png differ diff --git a/test/W3C_SVG_12_TinyTestSuite_beta/png/udom-dom-201-t.png b/test/W3C_SVG_12_TinyTestSuite_beta/png/udom-dom-201-t.png new file mode 100755 index 00000000..779e82b4 Binary files /dev/null and b/test/W3C_SVG_12_TinyTestSuite_beta/png/udom-dom-201-t.png differ diff --git a/test/W3C_SVG_12_TinyTestSuite_beta/png/udom-dom-202-t.png b/test/W3C_SVG_12_TinyTestSuite_beta/png/udom-dom-202-t.png new file mode 100755 index 00000000..1b4b8360 Binary files /dev/null and b/test/W3C_SVG_12_TinyTestSuite_beta/png/udom-dom-202-t.png differ diff --git a/test/W3C_SVG_12_TinyTestSuite_beta/png/udom-dom-203-t.png b/test/W3C_SVG_12_TinyTestSuite_beta/png/udom-dom-203-t.png new file mode 100755 index 00000000..ca850099 Binary files /dev/null and b/test/W3C_SVG_12_TinyTestSuite_beta/png/udom-dom-203-t.png differ diff --git a/test/W3C_SVG_12_TinyTestSuite_beta/png/udom-dom-204-t.png b/test/W3C_SVG_12_TinyTestSuite_beta/png/udom-dom-204-t.png new file mode 100755 index 00000000..868f2797 Binary files /dev/null and b/test/W3C_SVG_12_TinyTestSuite_beta/png/udom-dom-204-t.png differ diff --git a/test/W3C_SVG_12_TinyTestSuite_beta/png/udom-dom-206-t.png b/test/W3C_SVG_12_TinyTestSuite_beta/png/udom-dom-206-t.png new file mode 100755 index 00000000..9a713444 Binary files /dev/null and b/test/W3C_SVG_12_TinyTestSuite_beta/png/udom-dom-206-t.png differ diff --git a/test/W3C_SVG_12_TinyTestSuite_beta/png/udom-dom-207-t.png b/test/W3C_SVG_12_TinyTestSuite_beta/png/udom-dom-207-t.png new file mode 100755 index 00000000..51c76caa Binary files /dev/null and b/test/W3C_SVG_12_TinyTestSuite_beta/png/udom-dom-207-t.png differ diff --git a/test/W3C_SVG_12_TinyTestSuite_beta/png/udom-dom-209-t.png b/test/W3C_SVG_12_TinyTestSuite_beta/png/udom-dom-209-t.png new file mode 100755 index 00000000..bfe2d4e6 Binary files /dev/null and b/test/W3C_SVG_12_TinyTestSuite_beta/png/udom-dom-209-t.png differ diff --git a/test/W3C_SVG_12_TinyTestSuite_beta/png/udom-dom-210-t.png b/test/W3C_SVG_12_TinyTestSuite_beta/png/udom-dom-210-t.png new file mode 100755 index 00000000..cface29c Binary files /dev/null and b/test/W3C_SVG_12_TinyTestSuite_beta/png/udom-dom-210-t.png differ diff --git a/test/W3C_SVG_12_TinyTestSuite_beta/png/udom-dom-211-t.png b/test/W3C_SVG_12_TinyTestSuite_beta/png/udom-dom-211-t.png new file mode 100755 index 00000000..0d3ec84b Binary files /dev/null and b/test/W3C_SVG_12_TinyTestSuite_beta/png/udom-dom-211-t.png differ diff --git a/test/W3C_SVG_12_TinyTestSuite_beta/png/udom-dom-213-t.png b/test/W3C_SVG_12_TinyTestSuite_beta/png/udom-dom-213-t.png new file mode 100755 index 00000000..51b42a69 Binary files /dev/null and b/test/W3C_SVG_12_TinyTestSuite_beta/png/udom-dom-213-t.png differ diff --git a/test/W3C_SVG_12_TinyTestSuite_beta/png/udom-event-201-t.png b/test/W3C_SVG_12_TinyTestSuite_beta/png/udom-event-201-t.png new file mode 100755 index 00000000..05c1755e Binary files /dev/null and b/test/W3C_SVG_12_TinyTestSuite_beta/png/udom-event-201-t.png differ diff --git a/test/W3C_SVG_12_TinyTestSuite_beta/png/udom-event-202-t.png b/test/W3C_SVG_12_TinyTestSuite_beta/png/udom-event-202-t.png new file mode 100755 index 00000000..3d4b7635 Binary files /dev/null and b/test/W3C_SVG_12_TinyTestSuite_beta/png/udom-event-202-t.png differ diff --git a/test/W3C_SVG_12_TinyTestSuite_beta/png/udom-event-203-t.png b/test/W3C_SVG_12_TinyTestSuite_beta/png/udom-event-203-t.png new file mode 100755 index 00000000..ed01767e Binary files /dev/null and b/test/W3C_SVG_12_TinyTestSuite_beta/png/udom-event-203-t.png differ diff --git a/test/W3C_SVG_12_TinyTestSuite_beta/png/udom-event-204-t.png b/test/W3C_SVG_12_TinyTestSuite_beta/png/udom-event-204-t.png new file mode 100755 index 00000000..10aeee5e Binary files /dev/null and b/test/W3C_SVG_12_TinyTestSuite_beta/png/udom-event-204-t.png differ diff --git a/test/W3C_SVG_12_TinyTestSuite_beta/png/udom-event-205-t.png b/test/W3C_SVG_12_TinyTestSuite_beta/png/udom-event-205-t.png new file mode 100755 index 00000000..975bbfa0 Binary files /dev/null and b/test/W3C_SVG_12_TinyTestSuite_beta/png/udom-event-205-t.png differ diff --git a/test/W3C_SVG_12_TinyTestSuite_beta/png/udom-event-207-t.png b/test/W3C_SVG_12_TinyTestSuite_beta/png/udom-event-207-t.png new file mode 100755 index 00000000..414cb766 Binary files /dev/null and b/test/W3C_SVG_12_TinyTestSuite_beta/png/udom-event-207-t.png differ diff --git a/test/W3C_SVG_12_TinyTestSuite_beta/png/udom-event-208-t.png b/test/W3C_SVG_12_TinyTestSuite_beta/png/udom-event-208-t.png new file mode 100755 index 00000000..6805d364 Binary files /dev/null and b/test/W3C_SVG_12_TinyTestSuite_beta/png/udom-event-208-t.png differ diff --git a/test/W3C_SVG_12_TinyTestSuite_beta/png/udom-event-209-t.png b/test/W3C_SVG_12_TinyTestSuite_beta/png/udom-event-209-t.png new file mode 100755 index 00000000..3d4b7635 Binary files /dev/null and b/test/W3C_SVG_12_TinyTestSuite_beta/png/udom-event-209-t.png differ diff --git a/test/W3C_SVG_12_TinyTestSuite_beta/png/udom-event-210-t.png b/test/W3C_SVG_12_TinyTestSuite_beta/png/udom-event-210-t.png new file mode 100755 index 00000000..c627a909 Binary files /dev/null and b/test/W3C_SVG_12_TinyTestSuite_beta/png/udom-event-210-t.png differ diff --git a/test/W3C_SVG_12_TinyTestSuite_beta/png/udom-glob-201-t.png b/test/W3C_SVG_12_TinyTestSuite_beta/png/udom-glob-201-t.png new file mode 100755 index 00000000..02b16ec7 Binary files /dev/null and b/test/W3C_SVG_12_TinyTestSuite_beta/png/udom-glob-201-t.png differ diff --git a/test/W3C_SVG_12_TinyTestSuite_beta/png/udom-glob-202-t.png b/test/W3C_SVG_12_TinyTestSuite_beta/png/udom-glob-202-t.png new file mode 100755 index 00000000..1d7e8baf Binary files /dev/null and b/test/W3C_SVG_12_TinyTestSuite_beta/png/udom-glob-202-t.png differ diff --git a/test/W3C_SVG_12_TinyTestSuite_beta/png/udom-glob-203-t.png b/test/W3C_SVG_12_TinyTestSuite_beta/png/udom-glob-203-t.png new file mode 100755 index 00000000..227b950a Binary files /dev/null and b/test/W3C_SVG_12_TinyTestSuite_beta/png/udom-glob-203-t.png differ diff --git a/test/W3C_SVG_12_TinyTestSuite_beta/png/udom-glob-204-t.png b/test/W3C_SVG_12_TinyTestSuite_beta/png/udom-glob-204-t.png new file mode 100755 index 00000000..e14cc46a Binary files /dev/null and b/test/W3C_SVG_12_TinyTestSuite_beta/png/udom-glob-204-t.png differ diff --git a/test/W3C_SVG_12_TinyTestSuite_beta/png/udom-node-201-t.png b/test/W3C_SVG_12_TinyTestSuite_beta/png/udom-node-201-t.png new file mode 100755 index 00000000..84d0b5bc Binary files /dev/null and b/test/W3C_SVG_12_TinyTestSuite_beta/png/udom-node-201-t.png differ diff --git a/test/W3C_SVG_12_TinyTestSuite_beta/png/udom-node-202-t.png b/test/W3C_SVG_12_TinyTestSuite_beta/png/udom-node-202-t.png new file mode 100755 index 00000000..e4921eae Binary files /dev/null and b/test/W3C_SVG_12_TinyTestSuite_beta/png/udom-node-202-t.png differ diff --git a/test/W3C_SVG_12_TinyTestSuite_beta/png/udom-node-204-t.png b/test/W3C_SVG_12_TinyTestSuite_beta/png/udom-node-204-t.png new file mode 100755 index 00000000..d71ae48d Binary files /dev/null and b/test/W3C_SVG_12_TinyTestSuite_beta/png/udom-node-204-t.png differ diff --git a/test/W3C_SVG_12_TinyTestSuite_beta/png/udom-over-01-t.png b/test/W3C_SVG_12_TinyTestSuite_beta/png/udom-over-01-t.png new file mode 100755 index 00000000..efba2e8d Binary files /dev/null and b/test/W3C_SVG_12_TinyTestSuite_beta/png/udom-over-01-t.png differ diff --git a/test/W3C_SVG_12_TinyTestSuite_beta/png/udom-smil-201-t.png b/test/W3C_SVG_12_TinyTestSuite_beta/png/udom-smil-201-t.png new file mode 100755 index 00000000..d0cf6572 Binary files /dev/null and b/test/W3C_SVG_12_TinyTestSuite_beta/png/udom-smil-201-t.png differ diff --git a/test/W3C_SVG_12_TinyTestSuite_beta/png/udom-smil-202-t.png b/test/W3C_SVG_12_TinyTestSuite_beta/png/udom-smil-202-t.png new file mode 100755 index 00000000..1eab626e Binary files /dev/null and b/test/W3C_SVG_12_TinyTestSuite_beta/png/udom-smil-202-t.png differ diff --git a/test/W3C_SVG_12_TinyTestSuite_beta/png/udom-smil-203-t.png b/test/W3C_SVG_12_TinyTestSuite_beta/png/udom-smil-203-t.png new file mode 100755 index 00000000..92985b0d Binary files /dev/null and b/test/W3C_SVG_12_TinyTestSuite_beta/png/udom-smil-203-t.png differ diff --git a/test/W3C_SVG_12_TinyTestSuite_beta/png/udom-svg-201-t.png b/test/W3C_SVG_12_TinyTestSuite_beta/png/udom-svg-201-t.png new file mode 100755 index 00000000..506bc119 Binary files /dev/null and b/test/W3C_SVG_12_TinyTestSuite_beta/png/udom-svg-201-t.png differ diff --git a/test/W3C_SVG_12_TinyTestSuite_beta/png/udom-svg-202-t.png b/test/W3C_SVG_12_TinyTestSuite_beta/png/udom-svg-202-t.png new file mode 100755 index 00000000..a4b22324 Binary files /dev/null and b/test/W3C_SVG_12_TinyTestSuite_beta/png/udom-svg-202-t.png differ diff --git a/test/W3C_SVG_12_TinyTestSuite_beta/png/udom-svg-204-t.png b/test/W3C_SVG_12_TinyTestSuite_beta/png/udom-svg-204-t.png new file mode 100755 index 00000000..1cf7ad5f Binary files /dev/null and b/test/W3C_SVG_12_TinyTestSuite_beta/png/udom-svg-204-t.png differ diff --git a/test/W3C_SVG_12_TinyTestSuite_beta/png/udom-svg-205-t.png b/test/W3C_SVG_12_TinyTestSuite_beta/png/udom-svg-205-t.png new file mode 100755 index 00000000..093f6c0b Binary files /dev/null and b/test/W3C_SVG_12_TinyTestSuite_beta/png/udom-svg-205-t.png differ diff --git a/test/W3C_SVG_12_TinyTestSuite_beta/png/udom-svg-206-t.png b/test/W3C_SVG_12_TinyTestSuite_beta/png/udom-svg-206-t.png new file mode 100755 index 00000000..2250f7a9 Binary files /dev/null and b/test/W3C_SVG_12_TinyTestSuite_beta/png/udom-svg-206-t.png differ diff --git a/test/W3C_SVG_12_TinyTestSuite_beta/png/udom-svg-208-t.png b/test/W3C_SVG_12_TinyTestSuite_beta/png/udom-svg-208-t.png new file mode 100755 index 00000000..e4bcd487 Binary files /dev/null and b/test/W3C_SVG_12_TinyTestSuite_beta/png/udom-svg-208-t.png differ diff --git a/test/W3C_SVG_12_TinyTestSuite_beta/png/udom-svg-209-t.png b/test/W3C_SVG_12_TinyTestSuite_beta/png/udom-svg-209-t.png new file mode 100755 index 00000000..2ea6e49d Binary files /dev/null and b/test/W3C_SVG_12_TinyTestSuite_beta/png/udom-svg-209-t.png differ diff --git a/test/W3C_SVG_12_TinyTestSuite_beta/png/udom-svg-210-t.png b/test/W3C_SVG_12_TinyTestSuite_beta/png/udom-svg-210-t.png new file mode 100755 index 00000000..ca263ac8 Binary files /dev/null and b/test/W3C_SVG_12_TinyTestSuite_beta/png/udom-svg-210-t.png differ diff --git a/test/W3C_SVG_12_TinyTestSuite_beta/png/udom-svg-211-t.png b/test/W3C_SVG_12_TinyTestSuite_beta/png/udom-svg-211-t.png new file mode 100755 index 00000000..28e2ebff Binary files /dev/null and b/test/W3C_SVG_12_TinyTestSuite_beta/png/udom-svg-211-t.png differ diff --git a/test/W3C_SVG_12_TinyTestSuite_beta/png/udom-svg-213-t.png b/test/W3C_SVG_12_TinyTestSuite_beta/png/udom-svg-213-t.png new file mode 100755 index 00000000..dd2de5ef Binary files /dev/null and b/test/W3C_SVG_12_TinyTestSuite_beta/png/udom-svg-213-t.png differ diff --git a/test/W3C_SVG_12_TinyTestSuite_beta/png/udom-svg-216-t.png b/test/W3C_SVG_12_TinyTestSuite_beta/png/udom-svg-216-t.png new file mode 100755 index 00000000..3aea2390 Binary files /dev/null and b/test/W3C_SVG_12_TinyTestSuite_beta/png/udom-svg-216-t.png differ diff --git a/test/W3C_SVG_12_TinyTestSuite_beta/png/udom-svg-218-t.png b/test/W3C_SVG_12_TinyTestSuite_beta/png/udom-svg-218-t.png new file mode 100755 index 00000000..0873092a Binary files /dev/null and b/test/W3C_SVG_12_TinyTestSuite_beta/png/udom-svg-218-t.png differ diff --git a/test/W3C_SVG_12_TinyTestSuite_beta/png/udom-svg-220-t.png b/test/W3C_SVG_12_TinyTestSuite_beta/png/udom-svg-220-t.png new file mode 100755 index 00000000..ec9a5787 Binary files /dev/null and b/test/W3C_SVG_12_TinyTestSuite_beta/png/udom-svg-220-t.png differ diff --git a/test/W3C_SVG_12_TinyTestSuite_beta/png/udom-svg-224-t.png b/test/W3C_SVG_12_TinyTestSuite_beta/png/udom-svg-224-t.png new file mode 100755 index 00000000..d72c198c Binary files /dev/null and b/test/W3C_SVG_12_TinyTestSuite_beta/png/udom-svg-224-t.png differ diff --git a/test/W3C_SVG_12_TinyTestSuite_beta/png/udom-svg-225-t.png b/test/W3C_SVG_12_TinyTestSuite_beta/png/udom-svg-225-t.png new file mode 100755 index 00000000..415822b2 Binary files /dev/null and b/test/W3C_SVG_12_TinyTestSuite_beta/png/udom-svg-225-t.png differ diff --git a/test/W3C_SVG_12_TinyTestSuite_beta/png/udom-svg-226-t.png b/test/W3C_SVG_12_TinyTestSuite_beta/png/udom-svg-226-t.png new file mode 100755 index 00000000..e98c779a Binary files /dev/null and b/test/W3C_SVG_12_TinyTestSuite_beta/png/udom-svg-226-t.png differ diff --git a/test/W3C_SVG_12_TinyTestSuite_beta/png/udom-svg-227-t.png b/test/W3C_SVG_12_TinyTestSuite_beta/png/udom-svg-227-t.png new file mode 100755 index 00000000..c7726b89 Binary files /dev/null and b/test/W3C_SVG_12_TinyTestSuite_beta/png/udom-svg-227-t.png differ diff --git a/test/W3C_SVG_12_TinyTestSuite_beta/png/udom-svg-228-t.png b/test/W3C_SVG_12_TinyTestSuite_beta/png/udom-svg-228-t.png new file mode 100755 index 00000000..918162ff Binary files /dev/null and b/test/W3C_SVG_12_TinyTestSuite_beta/png/udom-svg-228-t.png differ diff --git a/test/W3C_SVG_12_TinyTestSuite_beta/png/udom-svg-231-t.png b/test/W3C_SVG_12_TinyTestSuite_beta/png/udom-svg-231-t.png new file mode 100755 index 00000000..e1c18076 Binary files /dev/null and b/test/W3C_SVG_12_TinyTestSuite_beta/png/udom-svg-231-t.png differ diff --git a/test/W3C_SVG_12_TinyTestSuite_beta/png/udom-svg-232-t.png b/test/W3C_SVG_12_TinyTestSuite_beta/png/udom-svg-232-t.png new file mode 100755 index 00000000..0f13a00a Binary files /dev/null and b/test/W3C_SVG_12_TinyTestSuite_beta/png/udom-svg-232-t.png differ diff --git a/test/W3C_SVG_12_TinyTestSuite_beta/png/udom-svg-233-t.png b/test/W3C_SVG_12_TinyTestSuite_beta/png/udom-svg-233-t.png new file mode 100755 index 00000000..d0e453d9 Binary files /dev/null and b/test/W3C_SVG_12_TinyTestSuite_beta/png/udom-svg-233-t.png differ diff --git a/test/W3C_SVG_12_TinyTestSuite_beta/png/udom-svg-236-t.png b/test/W3C_SVG_12_TinyTestSuite_beta/png/udom-svg-236-t.png new file mode 100755 index 00000000..9f6b6b1b Binary files /dev/null and b/test/W3C_SVG_12_TinyTestSuite_beta/png/udom-svg-236-t.png differ diff --git a/test/W3C_SVG_12_TinyTestSuite_beta/png/udom-svg-237-t.png b/test/W3C_SVG_12_TinyTestSuite_beta/png/udom-svg-237-t.png new file mode 100755 index 00000000..661bdfec Binary files /dev/null and b/test/W3C_SVG_12_TinyTestSuite_beta/png/udom-svg-237-t.png differ diff --git a/test/W3C_SVG_12_TinyTestSuite_beta/png/udom-svgcolor-201-t.png b/test/W3C_SVG_12_TinyTestSuite_beta/png/udom-svgcolor-201-t.png new file mode 100755 index 00000000..fe2d4d6a Binary files /dev/null and b/test/W3C_SVG_12_TinyTestSuite_beta/png/udom-svgcolor-201-t.png differ diff --git a/test/W3C_SVG_12_TinyTestSuite_beta/png/udom-svglocatable-201-t.png b/test/W3C_SVG_12_TinyTestSuite_beta/png/udom-svglocatable-201-t.png new file mode 100755 index 00000000..c2650293 Binary files /dev/null and b/test/W3C_SVG_12_TinyTestSuite_beta/png/udom-svglocatable-201-t.png differ diff --git a/test/W3C_SVG_12_TinyTestSuite_beta/png/udom-svglocatable-202-t.png b/test/W3C_SVG_12_TinyTestSuite_beta/png/udom-svglocatable-202-t.png new file mode 100755 index 00000000..f3e78818 Binary files /dev/null and b/test/W3C_SVG_12_TinyTestSuite_beta/png/udom-svglocatable-202-t.png differ diff --git a/test/W3C_SVG_12_TinyTestSuite_beta/png/udom-svglocatable-203-t.png b/test/W3C_SVG_12_TinyTestSuite_beta/png/udom-svglocatable-203-t.png new file mode 100755 index 00000000..2d6ce11a Binary files /dev/null and b/test/W3C_SVG_12_TinyTestSuite_beta/png/udom-svglocatable-203-t.png differ diff --git a/test/W3C_SVG_12_TinyTestSuite_beta/png/udom-svgmatrix-201-t.png b/test/W3C_SVG_12_TinyTestSuite_beta/png/udom-svgmatrix-201-t.png new file mode 100755 index 00000000..b5eb7b7b Binary files /dev/null and b/test/W3C_SVG_12_TinyTestSuite_beta/png/udom-svgmatrix-201-t.png differ diff --git a/test/W3C_SVG_12_TinyTestSuite_beta/png/udom-svgmatrix-202-t.png b/test/W3C_SVG_12_TinyTestSuite_beta/png/udom-svgmatrix-202-t.png new file mode 100755 index 00000000..bfdb1729 Binary files /dev/null and b/test/W3C_SVG_12_TinyTestSuite_beta/png/udom-svgmatrix-202-t.png differ diff --git a/test/W3C_SVG_12_TinyTestSuite_beta/png/udom-svgmatrix-203-t.png b/test/W3C_SVG_12_TinyTestSuite_beta/png/udom-svgmatrix-203-t.png new file mode 100755 index 00000000..b8e006d9 Binary files /dev/null and b/test/W3C_SVG_12_TinyTestSuite_beta/png/udom-svgmatrix-203-t.png differ diff --git a/test/W3C_SVG_12_TinyTestSuite_beta/png/udom-svgmatrix-204-t.png b/test/W3C_SVG_12_TinyTestSuite_beta/png/udom-svgmatrix-204-t.png new file mode 100755 index 00000000..5e5ed2e9 Binary files /dev/null and b/test/W3C_SVG_12_TinyTestSuite_beta/png/udom-svgmatrix-204-t.png differ diff --git a/test/W3C_SVG_12_TinyTestSuite_beta/png/udom-svgmatrix-205-t.png b/test/W3C_SVG_12_TinyTestSuite_beta/png/udom-svgmatrix-205-t.png new file mode 100755 index 00000000..e4eed813 Binary files /dev/null and b/test/W3C_SVG_12_TinyTestSuite_beta/png/udom-svgmatrix-205-t.png differ diff --git a/test/W3C_SVG_12_TinyTestSuite_beta/png/udom-svgmatrix-206-t.png b/test/W3C_SVG_12_TinyTestSuite_beta/png/udom-svgmatrix-206-t.png new file mode 100755 index 00000000..46982fba Binary files /dev/null and b/test/W3C_SVG_12_TinyTestSuite_beta/png/udom-svgmatrix-206-t.png differ diff --git a/test/W3C_SVG_12_TinyTestSuite_beta/png/udom-svgpath-201-t.png b/test/W3C_SVG_12_TinyTestSuite_beta/png/udom-svgpath-201-t.png new file mode 100755 index 00000000..92dfbcc1 Binary files /dev/null and b/test/W3C_SVG_12_TinyTestSuite_beta/png/udom-svgpath-201-t.png differ diff --git a/test/W3C_SVG_12_TinyTestSuite_beta/png/udom-svgpath-202-t.png b/test/W3C_SVG_12_TinyTestSuite_beta/png/udom-svgpath-202-t.png new file mode 100755 index 00000000..a061ecda Binary files /dev/null and b/test/W3C_SVG_12_TinyTestSuite_beta/png/udom-svgpath-202-t.png differ diff --git a/test/W3C_SVG_12_TinyTestSuite_beta/png/udom-svgpoint-201-t.png b/test/W3C_SVG_12_TinyTestSuite_beta/png/udom-svgpoint-201-t.png new file mode 100755 index 00000000..3cefc99d Binary files /dev/null and b/test/W3C_SVG_12_TinyTestSuite_beta/png/udom-svgpoint-201-t.png differ diff --git a/test/W3C_SVG_12_TinyTestSuite_beta/png/udom-svgrect-201-t.png b/test/W3C_SVG_12_TinyTestSuite_beta/png/udom-svgrect-201-t.png new file mode 100755 index 00000000..a4c72ff5 Binary files /dev/null and b/test/W3C_SVG_12_TinyTestSuite_beta/png/udom-svgrect-201-t.png differ diff --git a/test/W3C_SVG_12_TinyTestSuite_beta/png/udom-textcontent-201-t.png b/test/W3C_SVG_12_TinyTestSuite_beta/png/udom-textcontent-201-t.png new file mode 100755 index 00000000..be16c665 Binary files /dev/null and b/test/W3C_SVG_12_TinyTestSuite_beta/png/udom-textcontent-201-t.png differ diff --git a/test/W3C_SVG_12_TinyTestSuite_beta/png/udom-textcontent-202-t.png b/test/W3C_SVG_12_TinyTestSuite_beta/png/udom-textcontent-202-t.png new file mode 100755 index 00000000..79e848bb Binary files /dev/null and b/test/W3C_SVG_12_TinyTestSuite_beta/png/udom-textcontent-202-t.png differ diff --git a/test/W3C_SVG_12_TinyTestSuite_beta/png/udom-traitaccess-201-t.png b/test/W3C_SVG_12_TinyTestSuite_beta/png/udom-traitaccess-201-t.png new file mode 100755 index 00000000..020a2591 Binary files /dev/null and b/test/W3C_SVG_12_TinyTestSuite_beta/png/udom-traitaccess-201-t.png differ diff --git a/test/W3C_SVG_12_TinyTestSuite_beta/png/udom-traitaccess-202-t.png b/test/W3C_SVG_12_TinyTestSuite_beta/png/udom-traitaccess-202-t.png new file mode 100755 index 00000000..837b4908 Binary files /dev/null and b/test/W3C_SVG_12_TinyTestSuite_beta/png/udom-traitaccess-202-t.png differ diff --git a/test/W3C_SVG_12_TinyTestSuite_beta/png/udom-traitaccess-203-t.png b/test/W3C_SVG_12_TinyTestSuite_beta/png/udom-traitaccess-203-t.png new file mode 100755 index 00000000..fffd8e2d Binary files /dev/null and b/test/W3C_SVG_12_TinyTestSuite_beta/png/udom-traitaccess-203-t.png differ diff --git a/test/W3C_SVG_12_TinyTestSuite_beta/png/udom-traitaccess-204-t.png b/test/W3C_SVG_12_TinyTestSuite_beta/png/udom-traitaccess-204-t.png new file mode 100755 index 00000000..290d97b6 Binary files /dev/null and b/test/W3C_SVG_12_TinyTestSuite_beta/png/udom-traitaccess-204-t.png differ diff --git a/test/W3C_SVG_12_TinyTestSuite_beta/png/udom-traitaccess-205-t.png b/test/W3C_SVG_12_TinyTestSuite_beta/png/udom-traitaccess-205-t.png new file mode 100755 index 00000000..79c04bf2 Binary files /dev/null and b/test/W3C_SVG_12_TinyTestSuite_beta/png/udom-traitaccess-205-t.png differ diff --git a/test/W3C_SVG_12_TinyTestSuite_beta/png/udom-traitaccess-206-t.png b/test/W3C_SVG_12_TinyTestSuite_beta/png/udom-traitaccess-206-t.png new file mode 100755 index 00000000..ddc9ac47 Binary files /dev/null and b/test/W3C_SVG_12_TinyTestSuite_beta/png/udom-traitaccess-206-t.png differ diff --git a/test/W3C_SVG_12_TinyTestSuite_beta/png/udom-traitaccess-207-t.png b/test/W3C_SVG_12_TinyTestSuite_beta/png/udom-traitaccess-207-t.png new file mode 100755 index 00000000..cc71e091 Binary files /dev/null and b/test/W3C_SVG_12_TinyTestSuite_beta/png/udom-traitaccess-207-t.png differ diff --git a/test/W3C_SVG_12_TinyTestSuite_beta/resources/http_php.txt b/test/W3C_SVG_12_TinyTestSuite_beta/resources/http_php.txt new file mode 100755 index 00000000..1d2a7197 --- /dev/null +++ b/test/W3C_SVG_12_TinyTestSuite_beta/resources/http_php.txt @@ -0,0 +1,53 @@ + "OK", + 201 => "Created", + 202 => "Accepted", + 203 => "Non-Authoritative Information", + 204 => "No Content", + 205 => "Reset Content", + 206 => "Partial Content", + 300 => "Multiple Choices", + 301 => "Moved Permanently", + 302 => "Found", + 303 => "See Other", + 304 => "Not Modified", + 305 => "Use Proxy", + 307 => "Temporary Redirect", + 400 => "Bad Request", + 401 => "Unauthorized", + 402 => "Payment Required", + 403 => "Forbidden", + 404 => "Not Found", + 405 => "Method Not Allowed", + 406 => "Not Acceptable", + 407 => "Proxy Authentication Required", + 408 => "Request timeout", + 409 => "Conflict", + 410 => "Gone", + 411 => "Length Required", + 412 => "Precondition failed", + 413 => "Request entityt too large", + 414 => "Request-URI too long", + 415 => "Unsupported Media Type", + 416 => "Requested Range Not Satisfiable", + 417 => "Expectation Failed", + 500 => "500 Internal Server Error", + 501 => "Not Implemented", + 502 => "Bad Gateway", + 503 => "Service Unavailable", + 504 => "Gateway Timeout", + 505 => "HTTP Version not Supported"); + if (array_key_exists($_REQUEST["rc"],$allowedCodes)) { + header("HTTP/1.1 ".$_REQUEST["rc"]." ".$allowedCodes[$_REQUEST["rc"]]); + } + if (array_key_exists("redirect",$_REQUEST) && array_key_exists($_REQUEST["redirect"],$allowedCodes)) { + header("Location: http://www.w3.org/2008/04/http?rc=".$_REQUEST["redirect"]); + } +} +if (array_key_exists("content",$_REQUEST)) { + header("Content-Type: text/plain"); + echo "ABCDEFGHI"; +} +?> diff --git a/test/W3C_SVG_12_TinyTestSuite_beta/svg/animate-elem-02-t.svg b/test/W3C_SVG_12_TinyTestSuite_beta/svg/animate-elem-02-t.svg new file mode 100755 index 00000000..ea4d4593 --- /dev/null +++ b/test/W3C_SVG_12_TinyTestSuite_beta/svg/animate-elem-02-t.svg @@ -0,0 +1,83 @@ + + + + + + + + + + + +

Test 'additive' and 'accumulate' attributes.

+

+ The four pictures show the effect with the four possible combinations of 'additive' (either 'replace' or 'sum') and + 'accumulate' (either 'none' or 'sum'). Because two animations are animating the height, the effects of 'additive' and + 'accumulate' are sometimes different than when there is only a single animation. +

+ + + $RCSfile: animate-elem-02-t.svg,v $ + + + + + + + + + + + + + + + + + anim.5 + + + + + + + + + anim.6 + + + + + + + + + anim.7 + + + + + + + + + anim.8 + + + + + $Revision: 1.10 $ + + + + + diff --git a/test/W3C_SVG_12_TinyTestSuite_beta/svg/animate-elem-03-t.svg b/test/W3C_SVG_12_TinyTestSuite_beta/svg/animate-elem-03-t.svg new file mode 100755 index 00000000..b02d77d5 --- /dev/null +++ b/test/W3C_SVG_12_TinyTestSuite_beta/svg/animate-elem-03-t.svg @@ -0,0 +1,75 @@ + + + + + + + + + + + +

Test inheritance of animated properties.

+

+ Three colored text strings appear. All three are inside of the same 'g' element. The 'g' element has its 'font-size' + animated from 30 to 40, and its 'fill' from #00f (blue) to #070 (green). +

+

+ The first colored 'text' element has the font-size set, so the animation of the parent 'g' only affects the fill color. + The second has the fill set and font-size set, so no inherited values are used. The font-size and fill color stay + constant. The third colored 'text' element has neither of these properties specified and thus inherits both animated + values - the fill color changes and the text grows in size. +

+ + + $RCSfile: animate-elem-03-t.svg,v $ + + + + + + + + + + + + + + + + + + + + + + + + + + + Sample 123 + Sample 123 + Sample 123 + + + + + + + $Revision: 1.9 $ + + + + + diff --git a/test/W3C_SVG_12_TinyTestSuite_beta/svg/animate-elem-04-t.svg b/test/W3C_SVG_12_TinyTestSuite_beta/svg/animate-elem-04-t.svg new file mode 100755 index 00000000..435c5417 --- /dev/null +++ b/test/W3C_SVG_12_TinyTestSuite_beta/svg/animate-elem-04-t.svg @@ -0,0 +1,57 @@ + + + + + + + + + + + +

Test different ways of defining a motion path.

+

+ An animation moves a triangle along a path. Reference rectangles, lines and text are provided to help show what the + correct behavior is. The red text shows the way that the motion path is specified. +

+

This animation uses the 'from' and 'to' attributes to define the motion path.

+ + + $RCSfile: animate-elem-04-t.svg,v $ + + + + + + + + + + Test a motion path + 'from'/'to' attribute. + + + 0 sec. + + 3+ sec. + + + + + + + $Revision: 1.9 $ + + + + + diff --git a/test/W3C_SVG_12_TinyTestSuite_beta/svg/animate-elem-05-t.svg b/test/W3C_SVG_12_TinyTestSuite_beta/svg/animate-elem-05-t.svg new file mode 100755 index 00000000..a1ad6af4 --- /dev/null +++ b/test/W3C_SVG_12_TinyTestSuite_beta/svg/animate-elem-05-t.svg @@ -0,0 +1,59 @@ + + + + + + + + + + + +

Test different ways of defining a motion path.

+

+ An animation moves a triangle along a path. Reference rectangles, lines and text are provided to help show what + the correct behavior is. The red text shows the way that the motion path is specified. +

+

This animation uses the 'values' attribute to define the motion path, with a linear calcMode.

+ + + $RCSfile: animate-elem-05-t.svg,v $ + + + + + + + + + + Test a motion path + 'values' attribute. + + + 0 sec. + + 3+ + + 6+ + + + + + + + $Revision: 1.9 $ + + + + + diff --git a/test/W3C_SVG_12_TinyTestSuite_beta/svg/animate-elem-06-t.svg b/test/W3C_SVG_12_TinyTestSuite_beta/svg/animate-elem-06-t.svg new file mode 100755 index 00000000..e577a021 --- /dev/null +++ b/test/W3C_SVG_12_TinyTestSuite_beta/svg/animate-elem-06-t.svg @@ -0,0 +1,57 @@ + + + + + + + + + + + +

Test different ways of defining a motion path.

+

+ An animation moves a triangle along a path. Reference rectangles, lines and text are provided to help show what + the correct behavior is. The red text shows the way that the motion path is specified. +

+

This animation uses the 'path' attribute to define the motion path.

+ + + $RCSfile: animate-elem-06-t.svg,v $ + + + + + + + + + + Test a motion path + 'path' attribute. + + + 0 sec. + + 6+ sec. + + + + + + + $Revision: 1.9 $ + + + + + diff --git a/test/W3C_SVG_12_TinyTestSuite_beta/svg/animate-elem-07-t.svg b/test/W3C_SVG_12_TinyTestSuite_beta/svg/animate-elem-07-t.svg new file mode 100755 index 00000000..178f6736 --- /dev/null +++ b/test/W3C_SVG_12_TinyTestSuite_beta/svg/animate-elem-07-t.svg @@ -0,0 +1,59 @@ + + + + + + + + + + + +

Test different ways of defining a motion path.

+

+ An animation moves a triangle along a path. Reference rectangles, lines and text are provided to help show what the + correct behavior is. The red text shows the way that the motion path is specified. +

+

This animation uses the 'mpath' sub-element to define the motion path.

+ + + $RCSfile: animate-elem-07-t.svg,v $ + + + + + + + + + + Test a motion path + 'mpath' element. + + + 0 sec. + + 6+ sec. + + + + + + + + + $Revision: 1.9 $ + + + + + diff --git a/test/W3C_SVG_12_TinyTestSuite_beta/svg/animate-elem-08-t.svg b/test/W3C_SVG_12_TinyTestSuite_beta/svg/animate-elem-08-t.svg new file mode 100755 index 00000000..380b8568 --- /dev/null +++ b/test/W3C_SVG_12_TinyTestSuite_beta/svg/animate-elem-08-t.svg @@ -0,0 +1,66 @@ + + + + + + + + + + + +

Test rotate='auto' and rotate='auto-reverse'.

+

+ Two animations have been defined that move a triangle along a path. The first animation specifies rotate='auto', + which causes the object to be rotated along the curve of the path. The second animation specifies rotate='auto-reverse', + which causes the object to be flipped and then rotated along the curve of the path. +

+ + + $RCSfile: animate-elem-08-t.svg,v $ + + + + + + + + + Test rotate='auto' and rotate='auto-reverse' + + + + 0 sec. + + 6+ sec. + + + + rotate='auto' + + + 0 sec. + + 6+ sec. + + + + rotate='auto-reverse' + + + + $Revision: 1.9 $ + + + + + diff --git a/test/W3C_SVG_12_TinyTestSuite_beta/svg/animate-elem-09-t.svg b/test/W3C_SVG_12_TinyTestSuite_beta/svg/animate-elem-09-t.svg new file mode 100755 index 00000000..2c1d295a --- /dev/null +++ b/test/W3C_SVG_12_TinyTestSuite_beta/svg/animate-elem-09-t.svg @@ -0,0 +1,85 @@ + + + + + + + + + + + +

Test possible values for 'calcMode="discrete"'

+

+ Two animations have been defined. For each animation, ruler lines and text are provided to help show what the + correct behavior is. The black text and ruler lines help show the sizes and movement of the rectangles over time. +

+

+ The discrete animations should show stair-stepping animations, with quantum-level jumps every two seconds in + these tests. The linear animations change constantly with each keyframe to keyframe section, with the result + that the change is faster when there is a larger change within a given amount of time. The paced animations + change constantly over the entire animation, regardless of the values at particular keyframes. For + calcMode='spline' in this test case, the initial rate of change is defined to be the same as linear, but the + last jump has an ease-in/ease-out effect where the change is slower at the start and end but faster in the + middle. +

+ + + $RCSfile: animate-elem-09-t.svg,v $ + + + + + + + + + + + 0-2 sec. + 2-4 sec. + 4-6 sec. + 6+ sec. + + + + + + + + + + + + 0-2 sec. + 2-4 sec. + 4-6 sec. + 6+ sec. + + + + + + + + + + + + + + $Revision: 1.9 $ + + + + + diff --git a/test/W3C_SVG_12_TinyTestSuite_beta/svg/animate-elem-10-t.svg b/test/W3C_SVG_12_TinyTestSuite_beta/svg/animate-elem-10-t.svg new file mode 100755 index 00000000..498cacf5 --- /dev/null +++ b/test/W3C_SVG_12_TinyTestSuite_beta/svg/animate-elem-10-t.svg @@ -0,0 +1,81 @@ + + + + + + + + + + + +

Test possible values for 'calcMode="linear"'

+

+ Two animations have been defined. For each animation, ruler lines and text are provided to help show what the + correct behavior is. The black text and ruler lines help show the sizes and movement of the rectangles over time. +

+

+ The linear animations change constantly with each keyframe to keyframe section, with the result that the change + is faster when there is a larger change within a given amount of time. +

+ + + $RCSfile: animate-elem-10-t.svg,v $ + + + + + + + + + + + at 0 sec. + at 3 sec. + at 6 sec. + 9+ sec. + + + + + + + + + + + + + at 0 sec. + at 3 sec. + at 6 sec. + 9+ sec. + + + + + + + + + + + + + + $Revision: 1.9 $ + + + + + diff --git a/test/W3C_SVG_12_TinyTestSuite_beta/svg/animate-elem-11-t.svg b/test/W3C_SVG_12_TinyTestSuite_beta/svg/animate-elem-11-t.svg new file mode 100755 index 00000000..cc96d1b0 --- /dev/null +++ b/test/W3C_SVG_12_TinyTestSuite_beta/svg/animate-elem-11-t.svg @@ -0,0 +1,77 @@ + + + + + + + + + + + +

Test possible values for 'calcMode="paced"'

+

+ Two animations have been defined. For each animation, ruler lines and text are provided to help show what the + correct behavior is. The black text and ruler lines help show the sizes and movement of the rectangles over time. +

+

The paced animations change constantly over the entire animation, regardless of the values at particular keyframes.

+ + + $RCSfile: animate-elem-11-t.svg,v $ + + + + + + + + + + + at 0 sec. + at 3 sec. + at 6 sec. + 9+ sec. + + + + + + + + + + + + at 0 sec. + at 3 sec. + at 6 sec. + 9+ sec. + + + + + + + + + + + + + + $Revision: 1.8 $ + + + + + diff --git a/test/W3C_SVG_12_TinyTestSuite_beta/svg/animate-elem-12-t.svg b/test/W3C_SVG_12_TinyTestSuite_beta/svg/animate-elem-12-t.svg new file mode 100755 index 00000000..87bcec12 --- /dev/null +++ b/test/W3C_SVG_12_TinyTestSuite_beta/svg/animate-elem-12-t.svg @@ -0,0 +1,80 @@ + + + + + + + + + + + +

Test possible values for 'calcMode="spline"'

+

+ Two animations have been defined. For each animation, ruler lines and text are provided to help show what the correct + behavior is. The black text and ruler lines help show the sizes and movement of the rectangles over time. +

+

+ For calcMode='spline' in this test case, the initial rate of change is defined to be the same as linear, but the last + jump has an ease-in/ease-out effect where the change is slower at the start and end but faster in the middle. +

+ + + $RCSfile: animate-elem-12-t.svg,v $ + + + + + + + + + + + at 0 sec. + at 3 sec. + at 6 sec. + 9+ sec. + + + + + + + + + + + + at 0 sec. + at 3 sec. + at 6 sec. + 9+ sec. + + + + + + + + + + + + + + $Revision: 1.8 $ + + + + + diff --git a/test/W3C_SVG_12_TinyTestSuite_beta/svg/animate-elem-13-t.svg b/test/W3C_SVG_12_TinyTestSuite_beta/svg/animate-elem-13-t.svg new file mode 100755 index 00000000..c8e696cf --- /dev/null +++ b/test/W3C_SVG_12_TinyTestSuite_beta/svg/animate-elem-13-t.svg @@ -0,0 +1,88 @@ + + + + + + + + + + + +

Test 'from', 'by', 'to' and 'values'

+

+ Six animations have been defined. All six animations define the same simultaneous behavior, but use different + combinations of attributes 'from', 'by', 'to' and 'values'. In all cases, from time 2 seconds to time 5 seconds, + the rectangle should change from a width of 30 to a width of 300. +

+

The red text shows the attributes that were used for that particular animation.

+ + + $RCSfile: animate-elem-13-t.svg,v $ + + + + + + + + + + + + 0-2 sec. + 5+ sec. + + + + + from to + + + + + + from by + + + + + + by + + + + + + to + + + + + + values + + + + + + values + + + + + $Revision: 1.8 $ + + + + + diff --git a/test/W3C_SVG_12_TinyTestSuite_beta/svg/animate-elem-14-t.svg b/test/W3C_SVG_12_TinyTestSuite_beta/svg/animate-elem-14-t.svg new file mode 100755 index 00000000..0629685a --- /dev/null +++ b/test/W3C_SVG_12_TinyTestSuite_beta/svg/animate-elem-14-t.svg @@ -0,0 +1,60 @@ + + + + + + + + + + + +

Test 'calcMode'=discrete

+

One animation has been defined to animate the height of a rectangle. Ruler lines and text are provided to help show what the correct behavior is. The red text shows the values for the 'calcMode' and 'keyTimes' attributes. The black text and ruler lines help show the size and movement of the rectangle over time.

+

This test shows an animation with calcMode="discrete" (i.e., a jumping animation).

+ + + $RCSfile: animate-elem-14-t.svg,v $ + + + + + + + + + calcMode="discrete" + keyTimes="0;.2;.4;.6" + + + Time (s): + 0 + + 2 + + 4 + + 6 + + + + + + + + + $Revision: 1.8 $ + + + + + diff --git a/test/W3C_SVG_12_TinyTestSuite_beta/svg/animate-elem-15-t.svg b/test/W3C_SVG_12_TinyTestSuite_beta/svg/animate-elem-15-t.svg new file mode 100755 index 00000000..5893aa39 --- /dev/null +++ b/test/W3C_SVG_12_TinyTestSuite_beta/svg/animate-elem-15-t.svg @@ -0,0 +1,67 @@ + + + + + + + + + + + +

Test 'calcMode'=paced

+

+ One animation has been defined to animate the height of a rectangle. Ruler lines and text are provided to help show + what the correct behavior is. The red text shows the values for the 'calcMode' and 'keyTimes' attributes. The black + text and ruler lines help show the size and movement of the rectangle over time. +

+

+ This test shows calcMode="paced" for an animation that has constant velocity, thus showing how 'values' and + 'keyTimes' are ignored. +

+ + + $RCSfile: animate-elem-15-t.svg,v $ + + + + + + + + + calcMode="paced" + keyTimes="0;.25;.5;1" + + + Time (s): + 0 + + 1.5 + + 4 + + 9 + + + + + + + + + $Revision: 1.8 $ + + + + + diff --git a/test/W3C_SVG_12_TinyTestSuite_beta/svg/animate-elem-17-t.svg b/test/W3C_SVG_12_TinyTestSuite_beta/svg/animate-elem-17-t.svg new file mode 100755 index 00000000..c339215c --- /dev/null +++ b/test/W3C_SVG_12_TinyTestSuite_beta/svg/animate-elem-17-t.svg @@ -0,0 +1,68 @@ + + + + + + + + + + + +

Test 'calcMode'=spline

+

+ One animation has been defined to animate the height of a rectangle. Ruler lines and text are provided to help + show what the correct behavior is. The red text shows the values for the 'calcMode' and 'keyTimes' attributes. + The black text and ruler lines help show the size and movement of the rectangle over time. +

+

+ This animation shows calcMode="spline". Between time 4 seconds and 8 seconds, the animation displays an + ease-in/ease-out approach instead of a constant linear approach which would have been the case if calcMode had + been linear instead. +

+ + + $RCSfile: animate-elem-17-t.svg,v $ + + + + + + + + + calcMode="spline" + keyTimes="0;.25;.5;1" + + + Time (s): + 0 + + 2 + + 4 + + 8 + + + + + + + + + $Revision: 1.8 $ + + + + + diff --git a/test/W3C_SVG_12_TinyTestSuite_beta/svg/animate-elem-19-t.svg b/test/W3C_SVG_12_TinyTestSuite_beta/svg/animate-elem-19-t.svg new file mode 100755 index 00000000..8b9b47c4 --- /dev/null +++ b/test/W3C_SVG_12_TinyTestSuite_beta/svg/animate-elem-19-t.svg @@ -0,0 +1,64 @@ + + + + + + + + + + + +

Test 'calcMode'=linear

+

+ One animation has been defined to animate the width of a rectangle. Ruler lines and text are provided to help show + what the correct behavior is. The red text shows the values for the 'calcMode' and 'keyTimes' attributes. The black + text and ruler lines help show the size and movement of the rectangle over time. +

+

This test shows an animation with calcMode="linear".

+ + + $RCSfile: animate-elem-19-t.svg,v $ + + + + + + + + + calcMode="linear" + keyTimes="0;.5;.75;1" + + + Time (s): + 0 + + 4 + + 6 + + 8 + + + + + + + + + $Revision: 1.8 $ + + + + + diff --git a/test/W3C_SVG_12_TinyTestSuite_beta/svg/animate-elem-20-t.svg b/test/W3C_SVG_12_TinyTestSuite_beta/svg/animate-elem-20-t.svg new file mode 100755 index 00000000..2907393e --- /dev/null +++ b/test/W3C_SVG_12_TinyTestSuite_beta/svg/animate-elem-20-t.svg @@ -0,0 +1,74 @@ + + + + + + + + + + + +

A quick animation test.

+

+ The assumption is that you will first click on "fade in" and then click on "fade out", each exactly once. The + first time you select the link 'fade in', you should see a red square appearing, gradually and smoothly fading + from white to red over the course of three seconds. +

+

+ The rendered picture should match the reference image, (except for possible variations in the labeling text + (per CSS2 rules)) after activating the link on the fade-in button the first time and waiting three seconds for the + animation to compete. The picture should remain looking the same way indefinitely, until another link is activated. +

+

+ With the second click on "fade in", however, the behavior might be different. In the case of having a first click + on "fade in", waiting three seconds, and then immediately perform a first click on "fade out", waiting three seconds, + and then immediately perform a second click on "fade in", you should see the following. After the first click on + "fade in", the red square goes from white to red. After the first click on "fade out", the red square goes from red + to white. After the second click on "fade in", however, the red square goes from white to red, and then goes back + from red to white. This is because of the hyperlinking rules as they relate to resolved start times in the SMIL + 2.1 specification. +

+ + + $RCSfile: animate-elem-20-t.svg,v $ + + + + + + + + + + + + + + + + + Fade in + + + + Fade out + + + + + $Revision: 1.9 $ + + + + + diff --git a/test/W3C_SVG_12_TinyTestSuite_beta/svg/animate-elem-201-t.svg b/test/W3C_SVG_12_TinyTestSuite_beta/svg/animate-elem-201-t.svg new file mode 100755 index 00000000..a78284bd --- /dev/null +++ b/test/W3C_SVG_12_TinyTestSuite_beta/svg/animate-elem-201-t.svg @@ -0,0 +1,134 @@ + + + + + + + + + + + +

+ Five orange rectangles have one animation each. When an + animation is active it moves its orange rectangle from its + left marker to its right marker. The active intervals + are [1-2], [4-6] and [8-10]. +

+ + + $RCSfile: animate-elem-201-t.svg,v $ + + + + + + + + + + animate-elements active intervals + + 0-1s + 2-4s + 6-8s + >10s + + 1-2s + 4-6s + 8-10s + + + + + + + + + + + + + + + Begin-value without matching end-value + + + + + + + + Two begin-values share one end-value + + + + + + + + Second interval will start late + + + + + + + + + + Several sync-dependencies to one sync-base + + + + + + + + + + Intervals are ended by an event-value + + + + + + + + + + + $Revision: 1.5 $ + + + + + diff --git a/test/W3C_SVG_12_TinyTestSuite_beta/svg/animate-elem-202-t.svg b/test/W3C_SVG_12_TinyTestSuite_beta/svg/animate-elem-202-t.svg new file mode 100755 index 00000000..d96824d2 --- /dev/null +++ b/test/W3C_SVG_12_TinyTestSuite_beta/svg/animate-elem-202-t.svg @@ -0,0 +1,126 @@ + + + + + + + + + + + +

+ Precision test for accumulative animateMotion. +

+

+ The main indication for a failed test is the appearence of something + red and that circles are not centered below the paths given in gray. +

+

+ Circles are moved along squares given with the path attribute, + repeatDur and accumulate with a repeatDur of 30s and repetition. + Different values for the rotate attribute are given too, this has no visible effect, + because centered circles are moved. +

+ + + $RCSfile: animate-elem-202-t.svg,v $ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + animateMotion + accumulate + red = wrong + circle not centered + below path = wrong + + + + + + $Revision: 1.4 $ + + + + + diff --git a/test/W3C_SVG_12_TinyTestSuite_beta/svg/animate-elem-203-t.svg b/test/W3C_SVG_12_TinyTestSuite_beta/svg/animate-elem-203-t.svg new file mode 100755 index 00000000..05d5f9f1 --- /dev/null +++ b/test/W3C_SVG_12_TinyTestSuite_beta/svg/animate-elem-203-t.svg @@ -0,0 +1,133 @@ + + + + + + + + + + + +

+ Precision test for additive animateMotion using, + mpath element, path attribute, values, from-to. +

+

+ The main indication for a failed test is the appearence of the red fill + of the circle. A switch of the stroke of the circle from blue to gray indicates + the end of the test at 30s. +

+

+ A circles is moved along some paths + (two of them indicated in gray) with + a duration of 30s using additive animateMotion. + The superposition is no motion. + The circle is positioned always at the bottom right. + The colour of the circle switches from blue to gray after + the animation is finished. + If the red center of the circle becomes visible, an error is + occured. +

+ + + $RCSfile: animate-elem-203-t.svg,v $ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + animateMotion + additive + red = wrong + motion = wrong + circle not centered + below marker = wrong + timing = circle gray stroked: end of test at 30s + + + + + + $Revision: 1.4 $ + + + + + diff --git a/test/W3C_SVG_12_TinyTestSuite_beta/svg/animate-elem-205-t.svg b/test/W3C_SVG_12_TinyTestSuite_beta/svg/animate-elem-205-t.svg new file mode 100755 index 00000000..1ec04bfe --- /dev/null +++ b/test/W3C_SVG_12_TinyTestSuite_beta/svg/animate-elem-205-t.svg @@ -0,0 +1,348 @@ + + + + + + + + + + + +

+ Precision test for linear animateMotion with separated path fragments, + mpath element, rotate auto. +

+

+ The main indication for a failed test is the appearence of the red fill + of the test circle. The circle has to follow exactly the paths given + in gray. +

+

+ A linear animateMotion of a blue stroked square with a centered + circle is compared with four animateMotion of a red square + with a centered circle. + The motion of the red square is following the + combination of four animateMotion following on + each other and is the same as the motion of the blue + square, because the timing is choosen in such a way. + Therefore the blue square covers always the red one + completely. +

+

+ The path is given in gray. The red fill of the circle + is always covered with the gray path. + Eight gray stroked markers are lightened, when the circle + is exactly above the marker. The red fill of the marker + is exactly covered by the blue stroked circle. + If something red gets visible, an error is occured + and the animateMotion is not linear. +

+

+ The exact timing is calculated using an analytical + integration of the path length of the sub paths + (this is available for quadratic or linear curves). + With this method the path position and the + time can be determined as functions of the usual + parametrisation of the used Bézier curves. +

+ + + $RCSfile: animate-elem-205-t.svg,v $ + + + + + + + + + + + + + + + + + + + + + + + + + + + + marker + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + red: four times animateMotion using mpath + + + + + + + + + + + + + + + + + + blue: animateMotion calcMode linear using mpath + + + + + + + + + + + + animateMotion + calcMode linear + red = wrong + no animation = wrong + circle not centered + below paths = wrong + timing = lightened markers + + + + + $Revision: 1.4 $ + + + + + diff --git a/test/W3C_SVG_12_TinyTestSuite_beta/svg/animate-elem-206-t.svg b/test/W3C_SVG_12_TinyTestSuite_beta/svg/animate-elem-206-t.svg new file mode 100755 index 00000000..2e36f3bb --- /dev/null +++ b/test/W3C_SVG_12_TinyTestSuite_beta/svg/animate-elem-206-t.svg @@ -0,0 +1,151 @@ + + + + + + + + + + + +

+ Precision tests for animateMotion with animated mpath. +

+

+ The main indication for a failed test is the appearence of something + red and that circles are not centered below the paths given in gray. +

+

+ Blue rectangles and a red circles are moved along + light blue paths with a duration of 30s. The paths itself are animated. + This results in motions along the gray paths. The rectangles + are aligned along the animated light blue paths. + The circle is always covered by the path given in gray. + If something red gets visible, an error is occured. +

+ + + $RCSfile: animate-elem-206-t.svg,v $ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + first test + + + + + + + + + + second test + + + + + + + + + + + + animateMotion + with animated mpath + red = wrong + no animation = wrong + circle and rectangle not + centered below path = wrong + + + + $Revision: 1.4 $ + + + + + diff --git a/test/W3C_SVG_12_TinyTestSuite_beta/svg/animate-elem-207-t.svg b/test/W3C_SVG_12_TinyTestSuite_beta/svg/animate-elem-207-t.svg new file mode 100755 index 00000000..03db855d --- /dev/null +++ b/test/W3C_SVG_12_TinyTestSuite_beta/svg/animate-elem-207-t.svg @@ -0,0 +1,319 @@ + + + + + + + + + + + +

+ Precision test for paced animateMotion with separated path fragments, + mpath element, rotate auto. +

+

+ The main indication for a failed test is the appearence of the red fill + of the test circle. The circle has to follow exactly the paths given + in gray. +

+

+ A paced animateMotion of a blue stroked square with a centered + circle is compared with four animateMotion of a red square + with a centered circle. + The motion of the red square is following the + combination of four animateMotion following on + each other and is the same as the motion of the blue + square, because the timing is choosen in such a way. + Therefore the blue square covers always the red one + completely. +

+

+ The path is given in gray. The red fill of the circle + is always covered with the gray path. + Eight gray stroked markers are lightened, when the circle + is exactly above the marker. The red fill of the marker + is exactly covered by the blue stroked circle. + If something red gets visible, an error is occured + and the animateMotion is not paced. +

+

+ The exact timing is calculated using an analytical + integration of the path length of the sub paths + (this is available for quadratic or linear curves). + With this method the path position and the + time can be determined as functions of the usual + parametrization of the used Bézier curves. +

+ + + $RCSfile: animate-elem-207-t.svg,v $ + + + + + + + + + + + + + + + + + + + + + + + + + + marker + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + red: three times animateMotion using mpath, final position with values + + + + + + + + + + + + + + + + blue: animateMotion calcMode paced using mpath + + + + + + + + + + animateMotion + calcMode paced + red = wrong + no animation = wrong + circle not centered + below paths = wrong + timing = lightened markers + + + + + $Revision: 1.6 $ + + + + + diff --git a/test/W3C_SVG_12_TinyTestSuite_beta/svg/animate-elem-209-t.svg b/test/W3C_SVG_12_TinyTestSuite_beta/svg/animate-elem-209-t.svg new file mode 100755 index 00000000..0f7b4f61 --- /dev/null +++ b/test/W3C_SVG_12_TinyTestSuite_beta/svg/animate-elem-209-t.svg @@ -0,0 +1,295 @@ + + + + + + + + + + + +

Compare from-to, from-by and by animate with values animate.

+

+ The main indication for a failed test is the appearance of red. +

+

+ SMIL 2 specifies, how from-to, from-by and by animations have to be converted into + values animation. Therefore they have to be the same as the related values animation. + Additionally set animations can be replaced by values animations too. + The conversion is as follows: +

+ + + + + + + + + + + + + + + + + + + + + +
usedconverted
from="a" to="b"values="a;b"
from="a" by="b"values="a;a+b"
by="a"values="0;a" additive="sum"
set to="a"values="a" additive="replace" accumulate="none"
+

+ (by and from-by animations have only a meaning, if values can be added somehow. + '0' is used as a general symbol for the neutral element of addition for the related attribute, + this means 0 + a = a + 0 = a. And '0' is not equal to the symbol '1' as the basic unit of the + related attribute, '0' is a predecessor of '1' in the related attribute space.) +

+

+ The from-to, from-by and by animations applied to the attributes x, y, width, height + of blue rectangles are compared with the related values animations including additive and + cumulative hehaviour for underlying red rectangles. Additionally underlying dark red + rectangles simulate the same behaviour using always the defaults additive replace and + accumulate replace. The blue rectangles cover all red rectangles. Therefore if something + red gets visible, an error is occured. Because fill is always not set and therefore remove, + the final value is only that of the set animation, not very interesting for the test. +

+ + + $RCSfile: animate-elem-209-t.svg,v $ + + + + + + + + + + + + + + + + dark red values comparsion for from-to animations - if visible fail + + + + + + + + + + + + + + + + + + + + + + + + red values comparsion for from-to animations - if visible fail + + + + + + + + + + + + + + blue from-to animations + + + + + + + + + + + + + + + + + + + dark red values comparsion for from-by animations - if visible fail + + + + + + + + + + + + + + + + + + + + + + + + + red values comparsion for from-by animations - if visible fail + + + + + + + + + + + + + + blue from-by animations + + + + + + + + + + + + + + + + + + + dark red values comparsion for by animations - if visible fail + + + + + + + + + + + + + + + + + + + + + + + + red values comparsion for by animations - if visible fail + + + + + + + + + + + + + + blue by animations + + + + + + + + + + + + + + + + + compare by, from-by, from-to + with values animations + red=wrong + + + + + $Revision: 1.5 $ + + + + + \ No newline at end of file diff --git a/test/W3C_SVG_12_TinyTestSuite_beta/svg/animate-elem-21-t.svg b/test/W3C_SVG_12_TinyTestSuite_beta/svg/animate-elem-21-t.svg new file mode 100755 index 00000000..5467c090 --- /dev/null +++ b/test/W3C_SVG_12_TinyTestSuite_beta/svg/animate-elem-21-t.svg @@ -0,0 +1,84 @@ + + + + + + + + + + + +

Test for chained animations

+

+ The assumption is that you will first click on "fade in" and then click on "fade out", each exactly once. The + first time you select the link 'fade in', you should see a red square appearing, gradually and smoothly fading + from white to red over the course of three seconds. This square is in front of and thus obscures the lower left + circle, but is behind the upper right circle. The fill color of these circles is also animated, from white to grey. + The animations are triggered by the start of the corresponding animation of the red square. +

+

+ The rendered picture should match the reference image, (except for possible variations in the labeling text + (per CSS2 rules)) after activating the link on the fade-in button the first time and waiting three seconds for the + animation to compete. The picture should remain looking the same way indefinitely, until another link is activated. +

+

+ With the second click on "fade in", however, the behavior might be different. In the case of having a first click + on "fade in", waiting three seconds, and then immediately perform a first click on "fade out", waiting three seconds, + and then immediately perform a second click on "fade in", you should see the following. After the first click on + "fade in", the red square goes from zero to 100% opacity. After the first click on "fade out", the red square goes + from red to white. After the second click on "fade in", however, the red square goes from white to red, and then + goes back from red to white. This is because of the hyperlinking rules as they relate to resolved start times in + the SMIL 2.1 specification. +

+ + + $RCSfile: animate-elem-21-t.svg,v $ + + + + + + + + + + + + + + + + + + + + + + + + + Fade in + + + + Fade out + + + + + $Revision: 1.9 $ + + + + + diff --git a/test/W3C_SVG_12_TinyTestSuite_beta/svg/animate-elem-210-t.svg b/test/W3C_SVG_12_TinyTestSuite_beta/svg/animate-elem-210-t.svg new file mode 100755 index 00000000..617e820c --- /dev/null +++ b/test/W3C_SVG_12_TinyTestSuite_beta/svg/animate-elem-210-t.svg @@ -0,0 +1,337 @@ + + + + + + + + + + + +

Compare from-to, from-by and by animateColor with values animateColor and animate.

+

+ The main indication for a failed test is the appearance of red. +

+

+ SMIL 2 specifies, how from-to, from-by and by animations have to be converted into + values animations. Therefore they have to be the same as the related values animation. + Additionally set animations can be replaced by values animations too. + The conversion is as follows: +

+ + + + + + + + + + + + + + + + + + + + + +
usedconverted
from="a" to="b"values="a;b"
from="a" by="b"values="a;a+b"
by="a"values="0;a" additive="sum"
set to="a"values="a" additive="replace" accumulate="none"
+

+ (by and from-by animations have only a meaning, if values can be added somehow. + '0' is used as a general symbol for the neutral element of addition for the related attribute, + this means 0 + a = a + 0 = a. And '0' is not equal to the symbol '1' as the basic unit of the + related attribute, '0' is a predecessor of '1' in the related attribute space. In the color space + 0 is represented by black, #000, #000000, rgb(0,0,0) etc. Addition is performed for each + of the three components of the color vector separately.) +

+

+ The from-to, from-by and by animations applied to fill properties + of circles are compared with the related values animations including additive and + cumulative hehaviour for the stroke of the same circles. Additionally underlying + filled larger circles simulate the same behaviour using always the defaults additive replace and + accumulate replace. The fill of the background circle and stroke and fill of the smaller + test circle centered in it are always exactly the same. Therefore if + rings in each centered circle system with different color get visible, an error is occured. + But each separated circle system representing one of 12 subtests can have another color. + Because the fill attribute for animation is always not set and therefore remove, + the final value is only that of the set animation, not very interesting for the test. +

+ + + $RCSfile: animate-elem-210-t.svg,v $ + + + + + + + + + + + + from-to animation for fill compared with values for stroke + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + from-by animation for fill compared with values for stroke + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + by animation for fill compared with values for stroke + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + compare from-to, from-by, by + with values animate, animateColor + different colored rings in circle=wrong + + attributes noted: + attributes noted: + + cumulative + additive + + cumulative + not additive + + not cumulative + additive + + not cumulative + not additive + + cumulative + additive + + cumulative + not additive + + not cumulative + additive + + not cumulative + not additive + + + + + $Revision: 1.5 $ + + + + + \ No newline at end of file diff --git a/test/W3C_SVG_12_TinyTestSuite_beta/svg/animate-elem-211-t.svg b/test/W3C_SVG_12_TinyTestSuite_beta/svg/animate-elem-211-t.svg new file mode 100755 index 00000000..0f2c31b5 --- /dev/null +++ b/test/W3C_SVG_12_TinyTestSuite_beta/svg/animate-elem-211-t.svg @@ -0,0 +1,287 @@ + + + + + + + + + + + +

Compare from-to, from-by and by animateMotion with values animateMotion.

+

+ The main indication for a failed test is the appearance of red. +

+

+ SMIL 2 specifies, how from-to, from-by and by animations have to be converted into + values animation. Therefore they have to be the same as the related values animation. + The conversion is as follows: +

+ +

+ (by and from-by animations have only a meaning, if values can be added somehow. + '0' is used as a general symbol for the neutral element of addition for the related attribute, + this means 0 + a = a + 0 = a. And '0' is not equal to the symbol '1' as the basic unit of the + related attribute, '0' is a predecessor of '1' in the related attribute space. For animateMotion + the '0' is no motion or is related to a translation given in coordinates: 0,0.) +

+

+ The from-to, from-by and by are applied to animateMotion of different blue stroked + paths and are compared with the related values animations including additive and + cumulative hehaviour for underlying red paths. Additionally underlying dark red + paths simulate the same behaviour using always the defaults additive replace and + accumulate replace. The blue paths cover all red paths. Therefore if something + red gets visible, an error is occured. Because fill is always not set and therefore remove, + the final value is the value at 2s given with a simple values animateMotion, not very + interesting for the test. +

+ + + $RCSfile: animate-elem-211-t.svg,v $ + + + + + + + + + + + + + + + + + + + + + + + + + from-to animateMotion + + dark red values comparsion for from-to animations - if visible fail + + + + + + + + + + + + + + + + + + + + + + red values comparsion for from-to animations - if visible fail + + + + + + + + + + blue from-to animations + + + + + + + + + + + + + + + + from-by animateMotion + + dark red values comparsion for from-by animations - if visible fail + + + + + + + + + + + + + + + + + + + + + + red values comparsion for from-by animations - if visible fail + + + + + + + + + + blue from-by animations + + + + + + + + + + + + + + + by animateMotion + + dark red values comparsion for by animations - if visible fail + + + + + + + + + + + + + + + + + + + + + + red values comparsion for by animations - if visible fail + + + + + + + + + + blue by animations + + + + + + + + + + + + + + + + + compare from-to, from-by, by + with values animateMotion + red=wrong, no animation: wrong + attributes noted: + + cumulative/additive; + cumulative/not additive; + + + not cumulative/additive; + not cumulative/not additive + + + + + + $Revision: 1.5 $ + + + + + \ No newline at end of file diff --git a/test/W3C_SVG_12_TinyTestSuite_beta/svg/animate-elem-212-t.svg b/test/W3C_SVG_12_TinyTestSuite_beta/svg/animate-elem-212-t.svg new file mode 100755 index 00000000..eba6f7cd --- /dev/null +++ b/test/W3C_SVG_12_TinyTestSuite_beta/svg/animate-elem-212-t.svg @@ -0,0 +1,307 @@ + + + + + + + + + + + +

Compare from-to, from-by and by animateTransform rotate (around zero) with values animateTransform.

+

+ The main indication for a failed test is the appearance of red. +

+

+ SMIL 2 specifies, how from-to, from-by and by animations have to be converted into + values animation. Therefore they have to be the same as the related values animation. + The conversion is as follows: +

+ + + + + + + + + + + + + + + + + +
usedconverted
from="a" to="b"values="a;b"
from="a" by="b"values="a;a+b"
by="a" + values="0;a" additive="sum" +
+

+ (by and from-by animations have only a meaning, if values can be added somehow. + '0' is used as a general symbol for the neutral element of addition for the related attribute, + this means 0 + a = a + 0 = a. And '0' is not equal to the symbol '1' as the basic unit of the + related attribute, '0' is a predecessor of '1' in the related attribute space. For animateTransform + the '0' is the same as the zero matrix, not the unity or identity matrix. + For the rotate type this is a skew with an angle of 0. + Deviating from SMIL 2 in SVG it is specified, that for animateTranform the animation + effect has to be postmultiplied to the underlying value, if the animation is additive. Note + that for two additive rotate angles a, b the resulting angle is not a+b but atan(tan(a)+tan(b)). +

+

+ The from-to, from-by and by are applied to animateTransform of the rotate type + of different blue stroked + paths and are compared with the related values animations including additive and + cumulative hehaviour for underlying red paths. Additionally underlying dark red + paths simulate the same behaviour using always the defaults additive replace and + accumulate replace with animateMotion. The blue paths cover all red paths. + Therefore if something red gets visible, an error is occured. + Because fill is always not set and therefore remove, + the final value is the value at 2s given with a simple values animateTransform, not very + interesting for the test. +

+ + + $RCSfile: animate-elem-212-t.svg,v $ + + + + + + + + + + + + + + + + + + + + + + + + + from-to animateTransform rotate + + + + + + + + + + + + + + + + + + + + + + dark red values comparsion for from-to animations - if visible fail + + + + + + red values comparsion for from-to animations - if visible fail + + + + + + + + + + blue from-to animations + + + + + + + + + + + + + + + + from-by animateTransform rotate + + + + + + + + + + + + + + + + + + + + + + dark red values comparsion for from-by animations - if visible fail + + + + + + red values comparsion for from-by animations - if visible fail + + + + + + + + + + blue from-by animations + + + + + + + + + + + + + + + by animateTransform rotate + + + + dark red values comparsion for by animations - if visible fail + + + + + + + + + + + + + + + + + + + + + red values comparsion for by animations - if visible fail + + + + + + + + + + blue by animations + + + + + + + + + + + + + + + + animateTransform rotate + compare from-to, from-by, by + with values + red=wrong, no animation: wrong + attributes noted: + + cumulative/additive; + cumulative/not additive; + + + not cumulative/additive; + not cumulative/not additive + + + + + + $Revision: 1.5 $ + + + + + \ No newline at end of file diff --git a/test/W3C_SVG_12_TinyTestSuite_beta/svg/animate-elem-213-t.svg b/test/W3C_SVG_12_TinyTestSuite_beta/svg/animate-elem-213-t.svg new file mode 100755 index 00000000..ea842724 --- /dev/null +++ b/test/W3C_SVG_12_TinyTestSuite_beta/svg/animate-elem-213-t.svg @@ -0,0 +1,309 @@ + + + + + + + + + + + +

Compare from-to, from-by and by animateTransform rotate with values animateTransform.

+

+ The main indication for a failed test is the appearance of red. +

+

+ SMIL 2 specifies, how from-to, from-by and by animations have to be converted into + values animation. Therefore they have to be the same as the related values animation. + The conversion is as follows: +

+ + + + + + + + + + + + + + + + + +
usedconverted
from="a" to="b"values="a;b"
from="a" by="b"values="a;a+b"
by="a" + values="0;a" additive="sum" +
+

+ (by and from-by animations have only a meaning, if values can be added somehow. + '0' is used as a general symbol for the neutral element of addition for the related attribute, + this means 0 + a = a + 0 = a. And '0' is not equal to the symbol '1' as the basic unit of the + related attribute, '0' is a predecessor of '1' in the related attribute space. For animateTransform + the '0' is the same as the zero matrix, not the unity or identity matrix. + For the rotate type this is a skew with an angle of 0. + Deviating from SMIL 2 in SVG it is specified, that for animateTranform the animation + effect has to be postmultiplied to the underlying value, if the animation is additive. Note + that for two additive rotate angles a, b the resulting angle is not a+b but atan(tan(a)+tan(b)). +

+

+ The from-to, from-by and by are applied to animateTransform of the rotate type + of different blue stroked + paths and are compared with the related values animations including additive and + cumulative hehaviour for underlying red paths. Additionally underlying dark red + paths simulate the same behaviour using always the defaults additive replace and + accumulate replace with animateMotion. The blue paths cover all red paths. + Therefore if something red gets visible, an error is occured. + Because fill is always not set and therefore remove, + the final value is the value at 2s given with a simple values animateTransform, not very + interesting for the test. +

+ + + $RCSfile: animate-elem-213-t.svg,v $ + + + + + + + + + + + + + + + + + + + + + + + + + from-to animateTransform rotate + + + + + + + + + + + + + + + + + + + + + + dark red values comparsion for from-to animations - if visible fail + + + + + + red values comparsion for from-to animations - if visible fail + + + + + + + + + + blue from-to animations + + + + + + + + + + + + + + + + from-by animateTransform rotate + + + + + + + + + + + + + + + + + + + + + + dark red values comparsion for from-by animations - if visible fail + + + + + red values comparsion for from-by animations - if visible fail + + + + + + + + + + blue from-by animations + + + + + + + + + + + + + + + by animateTransform rotate + + + + + + + + + + + + + + + + + + + + + + dark red values comparsion for by animations - if visible fail + + + + + + + red values comparsion for by animations - if visible fail + + + + + + + + + blue by animations + + + + + + + + + + + + + + + + animateTransform rotate + compare from-to, from-by, by + with values + red=wrong, no animation: wrong + attributes noted: + + cumulative/additive; + cumulative/not additive; + + + not cumulative/additive; + not cumulative/not additive + + + + + + $Revision: 1.5 $ + + + + + \ No newline at end of file diff --git a/test/W3C_SVG_12_TinyTestSuite_beta/svg/animate-elem-214-t.svg b/test/W3C_SVG_12_TinyTestSuite_beta/svg/animate-elem-214-t.svg new file mode 100755 index 00000000..1c0764bb --- /dev/null +++ b/test/W3C_SVG_12_TinyTestSuite_beta/svg/animate-elem-214-t.svg @@ -0,0 +1,306 @@ + + + + + + + + + + + +

Compare from-to, from-by and by animateTransform scale with values animateTransform.

+

+ The main indication for a failed test is the appearance of red. +

+

+ SMIL 2 specifies, how from-to, from-by and by animations have to be converted into + values animation. Therefore they have to be the same as the related values animation. + The conversion is as follows: +

+ + + + + + + + + + + + + + + + + +
usedconverted
from="a" to="b"values="a;b"
from="a" by="b"values="a;a+b"
by="a" + values="0;a" additive="sum" +
+

+ (by and from-by animations have only a meaning, if values can be added somehow. + '0' is used as a general symbol for the neutral element of addition for the related attribute, + this means 0 + a = a + 0 = a. And '0' is not equal to the symbol '1' as the basic unit of the + related attribute, '0' is a predecessor of '1' in the related attribute space. For animateTransform + the '0' is the same as the zero matrix, not the unity or identity matrix. + For the scale type this is a scaling with 0,0, this means no display if not added to another + value. Deviating from SMIL 2 in SVG it is specified, that for animateTranform the animation + effect has to be postmultiplied to the underlying value, if the animation is additive.) +

+

+ The from-to, from-by and by are applied to animateTransform of the scale type + of different blue stroked + paths and are compared with the related values animations including additive and + cumulative hehaviour for underlying red paths. Additionally underlying dark red + paths simulate the same behaviour using always the defaults additive replace and + accumulate replace with animateMotion. The blue paths cover all red paths. + Therefore if something red gets visible, an error is occured. + Because fill is always not set and therefore remove, + the final value is the value at 2s given with a simple values animateTransform, not very + interesting for the test. +

+ + + $RCSfile: animate-elem-214-t.svg,v $ + + + + + + + + + + + + + + + + + + + + + + + + + from-to animateTransform scale + + + + + + + + + + + + + + + + + + + + + + dark red values comparsion for from-to animations - if visible fail + + + + + red values comparsion for from-to animations - if visible fail + + + + + + + + + + blue from-to animations + + + + + + + + + + + + + + + + from-by animateTransform scale + + + + + + + + + + + + + + + + + + + + + + dark red values comparsion for from-by animations - if visible fail + + + + + + red values comparsion for from-by animations - if visible fail + + + + + + + + + + blue from-by animations + + + + + + + + + + + + + + + by animateTransform scale + + + + + + + + + + + + + + + + + + + + dark red values comparsion for by animations - if visible fail + + + + + red values comparsion for by animations - if visible fail + + + + + + + + + + blue by animations + + + + + + + + + + + + + + + + + animateTransform scale + compare from-to, from-by, by + with values + red=wrong, no animation: wrong + attributes noted: + + cumulative/additive; + cumulative/not additive; + + + not cumulative/additive; + not cumulative/not additive + + + + + + $Revision: 1.5 $ + + + + + \ No newline at end of file diff --git a/test/W3C_SVG_12_TinyTestSuite_beta/svg/animate-elem-215-t.svg b/test/W3C_SVG_12_TinyTestSuite_beta/svg/animate-elem-215-t.svg new file mode 100755 index 00000000..2c77056e --- /dev/null +++ b/test/W3C_SVG_12_TinyTestSuite_beta/svg/animate-elem-215-t.svg @@ -0,0 +1,299 @@ + + + + + + + + + + + +

+ Compare from-to, from-by and by animateTransform translate with values + animateTransform and animateMotion. +

+

+ The main indication for a failed test is the appearance of red. +

+

+ SMIL 2 specifies, how from-to, from-by and by animations have to be converted into + values animation. Therefore they have to be the same as the related values animation. + The conversion is as follows: +

+ + + + + + + + + + + + + + + + + +
usedconverted
from="a" to="b"values="a;b"
from="a" by="b"values="a;a+b"
by="a" + values="0;a" additive="sum" +
+

+ (by and from-by animations have only a meaning, if values can be added somehow. + '0' is used as a general symbol for the neutral element of addition for the related attribute, + this means 0 + a = a + 0 = a. And '0' is not equal to the symbol '1' as the basic unit of the + related attribute, '0' is a predecessor of '1' in the related attribute space. For animateTransform + the '0' is the same as the zero matrix, not the unity or identity matrix. + For the translate type this is a translation given in coordinates: 0,0.) +

+

+ The from-to, from-by and by are applied to animateTransform of the translate type + of different blue stroked + paths and are compared with the related values animations including additive and + cumulative hehaviour for underlying red paths. Additionally underlying dark red + paths simulate the same behaviour using always the defaults additive replace and + accumulate replace with animateMotion. The blue paths cover all red paths. + Therefore if something red gets visible, an error is occured. + Because fill is always not set and therefore remove, + the final value is the value at 2s given with a simple values animateTransform, not very + interesting for the test. +

+ + + $RCSfile: animate-elem-215-t.svg,v $ + + + + + + + + + + + + + + + + + + + + + + + + + from-to animateTransform translate + + dark red values comparsion for from-to animations - if visible fail + + + + + + + + + + + + + + + + + + + + + + red values comparsion for from-to animations - if visible fail + + + + + + + + + + blue from-to animations + + + + + + + + + + + + + + + + from-by animateTransform translate + + dark red values comparsion for from-by animations - if visible fail + + + + + + + + + + + + + + + + + + + + + + red values comparsion for from-by animations - if visible fail + + + + + + + + + + blue from-by animations + + + + + + + + + + + + + + + by animateTransform translate + + dark red values comparsion for by animations - if visible fail + + + + + + + + + + + + + + + + + + + + + + red values comparsion for by animations - if visible fail + + + + + + + + + + blue by animations + + + + + + + + + + + + + + + + + animateTransform translate + compare from-to, from-by, by + with values and animateMotion + red=wrong, no animation: wrong + attributes noted: + + cumulative/additive; + cumulative/not additive; + + + not cumulative/additive; + not cumulative/not additive + + + + + + $Revision: 1.5 $ + + + + + \ No newline at end of file diff --git a/test/W3C_SVG_12_TinyTestSuite_beta/svg/animate-elem-216-t.svg b/test/W3C_SVG_12_TinyTestSuite_beta/svg/animate-elem-216-t.svg new file mode 100755 index 00000000..996cf594 --- /dev/null +++ b/test/W3C_SVG_12_TinyTestSuite_beta/svg/animate-elem-216-t.svg @@ -0,0 +1,318 @@ + + + + + + + + + + + +

Compare from-to, from-by and by animateTransform skewX with values animateTransform.

+

+ The main indication for a failed test is the appearance of red. +

+

+ SMIL 2 specifies, how from-to, from-by and by animations have to be converted into + values animation. Therefore they have to be the same as the related values animation. + The conversion is as follows: +

+ + + + + + + + + + + + + + + + + +
usedconverted
from="a" to="b"values="a;b"
from="a" by="b"values="a;a+b"
by="a" + values="0;a" additive="sum" +
+

+ (by and from-by animations have only a meaning, if values can be added somehow. + '0' is used as a general symbol for the neutral element of addition for the related attribute, + this means 0 + a = a + 0 = a. And '0' is not equal to the symbol '1' as the basic unit of the + related attribute, '0' is a predecessor of '1' in the related attribute space. For animateTransform + the '0' is the same as the zero matrix, not the unity or identity matrix. + For the skewX type this is a skew with an angle of 0. + Deviating from SMIL 2 in SVG it is specified, that for animateTranform the animation + effect has to be postmultiplied to the underlying value, if the animation is additive. Note + that for two additive skewX angles a, b the resulting angle is not a+b but atan(tan(a)+tan(b)). +

+

+ The from-to, from-by and by are applied to animateTransform of the skewX type + of different blue stroked + paths and are compared with the related values animations including additive and + cumulative hehaviour for underlying red paths. Additionally underlying dark red + paths simulate the same behaviour using always the defaults additive replace and + accumulate replace with animateMotion. The blue paths cover all red paths. + Therefore if something red gets visible, an error is occured. + Because fill is always not set and therefore remove, + the final value is the value at 2s given with a simple values animateTransform, not very + interesting for the test. +

+ + + $RCSfile: animate-elem-216-t.svg,v $ + + + + + + + + + + + + + + + + + + + + + + + + + from-to animateTransform skewX + + + + + + + + + + + + + + + + + + + + + + + + + dark red values comparsion for from-to animations - if visible fail + + + + + + red values comparsion for from-to animations - if visible fail + + + + + + + + + + blue from-to animations + + + + + + + + + + + + + + + + from-by animateTransform skewX + + + + + + + + + + + + + + + + + + + + + + + + + dark red values comparsion for from-by animations - if visible fail + + + + + + red values comparsion for from-by animations - if visible fail + + + + + + + + + + blue from-by animations + + + + + + + + + + + + + + + by animateTransform skewX + + + + + + + + + + + + + + + + + + + + + + + + dark red values comparsion for by animations - if visible fail + + + + + red values comparsion for by animations - if visible fail + + + + + + + + + + blue by animations + + + + + + + + + + + + + + + + + animateTransform skewX + compare from-to, from-by, by + with values + red=wrong, no animation: wrong + attributes noted: + + cumulative/additive; + cumulative/not additive; + + + not cumulative/additive; + not cumulative/not additive + + + + + + $Revision: 1.5 $ + + + + + \ No newline at end of file diff --git a/test/W3C_SVG_12_TinyTestSuite_beta/svg/animate-elem-217-t.svg b/test/W3C_SVG_12_TinyTestSuite_beta/svg/animate-elem-217-t.svg new file mode 100755 index 00000000..f7e0e169 --- /dev/null +++ b/test/W3C_SVG_12_TinyTestSuite_beta/svg/animate-elem-217-t.svg @@ -0,0 +1,318 @@ + + + + + + + + + + + +

Compare from-to, from-by and by animateTransform skewY with values animateTransform.

+

+ The main indication for a failed test is the appearance of red. +

+

+ SMIL 2 specifies, how from-to, from-by and by animations have to be converted into + values animation. Therefore they have to be the same as the related values animation. + The conversion is as follows: +

+ + + + + + + + + + + + + + + + + +
usedconverted
from="a" to="b"values="a;b"
from="a" by="b"values="a;a+b"
by="a" + values="0;a" additive="sum" +
+

+ (by and from-by animations have only a meaning, if values can be added somehow. + '0' is used as a general symbol for the neutral element of addition for the related attribute, + this means 0 + a = a + 0 = a. And '0' is not equal to the symbol '1' as the basic unit of the + related attribute, '0' is a predecessor of '1' in the related attribute space. For animateTransform + the '0' is the same as the zero matrix, not the unity or identity matrix. + For the skewY type this is a skew with an angle of 0. + Deviating from SMIL 2 in SVG it is specified, that for animateTranform the animation + effect has to be postmultiplied to the underlying value, if the animation is additive. Note + that for two additive skewY angles a, b the resulting angle is not a+b but atan(tan(a)+tan(b)). +

+

+ The from-to, from-by and by are applied to animateTransform of the skewY type + of different blue stroked + paths and are compared with the related values animations including additive and + cumulative hehaviour for underlying red paths. Additionally underlying dark red + paths simulate the same behaviour using always the defaults additive replace and + accumulate replace with animateMotion. The blue paths cover all red paths. + Therefore if something red gets visible, an error is occured. + Because fill is always not set and therefore remove, + the final value is the value at 2s given with a simple values animateTransform, not very + interesting for the test. +

+ + + $RCSfile: animate-elem-217-t.svg,v $ + + + + + + + + + + + + + + + + + + + + + + + + + from-to animateTransform skewY + + + + + + + + + + + + + + + + + + + + + + + + + dark red values comparsion for from-to animations - if visible fail + + + + + + red values comparsion for from-to animations - if visible fail + + + + + + + + + + blue from-to animations + + + + + + + + + + + + + + + + from-by animateTransform skewY + + + + + + + + + + + + + + + + + + + + + + + + + dark red values comparsion for from-by animations - if visible fail + + + + + red values comparsion for from-by animations - if visible fail + + + + + + + + + + blue from-by animations + + + + + + + + + + + + + + + by animateTransform skewY + + + + + + + + + + + + + + + + + + + + + + + + dark red values comparsion for by animations - if visible fail + + + + + + red values comparsion for by animations - if visible fail + + + + + + + + + + blue by animations + + + + + + + + + + + + + + + + + animateTransform skewY + compare from-to, from-by, by + with values + red=wrong, no animation: wrong + attributes noted: + + cumulative/additive; + cumulative/not additive; + + + not cumulative/additive; + not cumulative/not additive + + + + + + $Revision: 1.5 $ + + + + + \ No newline at end of file diff --git a/test/W3C_SVG_12_TinyTestSuite_beta/svg/animate-elem-218-t.svg b/test/W3C_SVG_12_TinyTestSuite_beta/svg/animate-elem-218-t.svg new file mode 100755 index 00000000..3b3e0afd --- /dev/null +++ b/test/W3C_SVG_12_TinyTestSuite_beta/svg/animate-elem-218-t.svg @@ -0,0 +1,113 @@ + + + + + + + + + + + +

+ xml:id or id? Identification of the element, that is target of an animation. + For authors it is recommended not to use different for id and xml:id for the same + element and not the same value for id in one element and the same value for + xml:id in another element. This is done in this document only as a (stupid) test, + not as an application. +

+

+ The main indication for a failed test is the appearance of red or no animation after 2s. +

+

+ Because for historical reasons, SVG tiny 1.2 has two fragment identifiers. + It is recommended, that xml:id is used and not only id. As a consequence + it is possible to have two different identifier values for one element. + In such a case, id is skipped and only xml:id has to be choosen. + + In this test the height of the blue rectangle is set to another value. This is compared + with a set animation of another red rectangle, having the same value for xml:id and + id. The blue rectangle has to cover always the red one. If something red is visible, + an error is occured. +

+ + + $RCSfile: animate-elem-218-t.svg,v $ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + xml:id or id? + identifiy the animated element + red=wrong + timing: set at 2s + + + + + $Revision: 1.5 $ + + + + + \ No newline at end of file diff --git a/test/W3C_SVG_12_TinyTestSuite_beta/svg/animate-elem-219-t.svg b/test/W3C_SVG_12_TinyTestSuite_beta/svg/animate-elem-219-t.svg new file mode 100755 index 00000000..62a30eff --- /dev/null +++ b/test/W3C_SVG_12_TinyTestSuite_beta/svg/animate-elem-219-t.svg @@ -0,0 +1,170 @@ + + + + + + + + + + + +

+ Identify the attributeType and the priority of an animation. +

+

+ The main indication for a failed test is the appearance of red. +

+

+ With the top triangle is tested, that the points attribute of a + polygon is animated using attributeType auto or XML and + is not animated if CSS is used, because there is no CSS property + points applicable for the polygon element. +

+

+ The bottom triangles test the priority for an animation with + attributeType CSS or auto over an XML animation, all for the + stroke attribute. Even if the attributeType is completely ignored, + the priority should still work for the bottom right triangle, + because the priority is set here with a later begin. +

+

+ In all cases the coloring or positioning of elements is choosen in + such a way, that normally not visible lower priority or not + applicable animations are indicated with a red stroke, + higher priority or applicable animations with a blue stroke + or an animation in the blue range. +

+ + + $RCSfile: animate-elem-219-t.svg,v $ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + attributeType and priority + red=wrong + + + + + $Revision: 1.7 $ + + + + + \ No newline at end of file diff --git a/test/W3C_SVG_12_TinyTestSuite_beta/svg/animate-elem-22-t.svg b/test/W3C_SVG_12_TinyTestSuite_beta/svg/animate-elem-22-t.svg new file mode 100755 index 00000000..84624525 --- /dev/null +++ b/test/W3C_SVG_12_TinyTestSuite_beta/svg/animate-elem-22-t.svg @@ -0,0 +1,61 @@ + + + + + + + + + + + +

Test which verifies that the basic facilities of declarative animation are working.

+

This test uses the following element : 'animate'

+

The test is a nine second animation with no repeats. It shows a rectangle growing from small to big.

+

+ The file includes various guides that can be used to verify the correctness of the animation. Outlines exist for + the rectangle size and location at times 0s, 3s and 9s. +

+ + + $RCSfile: animate-elem-22-t.svg,v $ + + + + + + + + + + + Yellow rect at time 0s + + Yellow rect at time 3s + + Yellow rect at time 9s + + + + + + + + + + + $Revision: 1.11 $ + + + + + diff --git a/test/W3C_SVG_12_TinyTestSuite_beta/svg/animate-elem-221-t.svg b/test/W3C_SVG_12_TinyTestSuite_beta/svg/animate-elem-221-t.svg new file mode 100755 index 00000000..181c07cc --- /dev/null +++ b/test/W3C_SVG_12_TinyTestSuite_beta/svg/animate-elem-221-t.svg @@ -0,0 +1,98 @@ + + + + + + + + + + + +

+ Correct timing with begin, end, dur, fill, max. +

+

+ The main indication for a failed test is the appearance of red. +

+

+ Simple from to animations for cx and cy of a blue stroked + circle are stopped with max attributes. + The gray path gives the correct trajectory. + If the red center of the circle becomes visible, an error is + occured. +

+ + + $RCSfile: animate-elem-221-t.svg,v $ + + + + + + + + + + + + + + + + + + + + + + begin, end, dur, max + red=wrong + circle not centered + below gray path=wrong + no animation=wrong + + + + + + $Revision: 1.6 $ + + + + + diff --git a/test/W3C_SVG_12_TinyTestSuite_beta/svg/animate-elem-222-t.svg b/test/W3C_SVG_12_TinyTestSuite_beta/svg/animate-elem-222-t.svg new file mode 100755 index 00000000..79386431 --- /dev/null +++ b/test/W3C_SVG_12_TinyTestSuite_beta/svg/animate-elem-222-t.svg @@ -0,0 +1,140 @@ + + + + + + + + + + + +

+ Correct timing with begin, end, dur, fill, min. +

+

+ The main indication for a failed test is the appearance of red. +

+

+ Simple from to animations for cx and cy of a blue stroked + circle are used with begin, dur, end, fill and min attributes and + correlated with syncbase values. + This is compared with simple animateMotion with the + same trajectory and timing. + The related red circle is always + covered by the blue stroke circle. + The gray path gives the correct trajectory. +

+

+ The test is passed if the blue circle follows the defined path. + If part of the red circle becomes visible, the test is failed. +

+ + + $RCSfile: animate-elem-222-t.svg,v $ + + + + + + + + + + + + + red comparison using animateMotion + + + + + + + + + + + + + blue test using from-to animate with begin, end, dur, min, fill + + + + + + + + + + + + + begin, end, dur, min + red=wrong + + + + + + $Revision: 1.6 $ + + + + + \ No newline at end of file diff --git a/test/W3C_SVG_12_TinyTestSuite_beta/svg/animate-elem-225-t.svg b/test/W3C_SVG_12_TinyTestSuite_beta/svg/animate-elem-225-t.svg new file mode 100755 index 00000000..e18811b7 --- /dev/null +++ b/test/W3C_SVG_12_TinyTestSuite_beta/svg/animate-elem-225-t.svg @@ -0,0 +1,64 @@ + + + + + + + + + + + +

+ This test verifies that error handling for the begin attribute is working. + An error in the begin-value-list means that the attribute as a whole is in error, and + that is the same as if the value was set to 'indefinite'. +

+

+ There should be three green rects visible. If any of them turns red the test has failed. +

+ + + $RCSfile: animate-elem-225-t.svg,v $ + + + + + + + + + + + + + + + + + + + + + + + + + $Revision: 1.5 $ + + + + + diff --git a/test/W3C_SVG_12_TinyTestSuite_beta/svg/animate-elem-226-t.svg b/test/W3C_SVG_12_TinyTestSuite_beta/svg/animate-elem-226-t.svg new file mode 100755 index 00000000..fc6e581a --- /dev/null +++ b/test/W3C_SVG_12_TinyTestSuite_beta/svg/animate-elem-226-t.svg @@ -0,0 +1,116 @@ + + + + + + + + + + + +

+ The test is passed if you see a large swirly blue image, outlined in green. Below, + two smaller copies also outlined in green. Below that, a thick red outline that does + not have an image inside it. All three blue images with green outlines animate over + ten seconds, alternating between a blue and a pink image. + The animations all finish at the same time and display the pink image thereafter. +

+

+ This tests the resolving of QNames in the attributeName attribute value. The + attribute tested is href, in the XLink namespace. +

+

+ If an image is displayed on top of the red rectangle, or if the large image is not shown, or a + purple image with 'FAIL' is shown rather than blue, the implementation is using magic prefixes + and is only looking for the string 'xlink:href' rather than following the Namespaces in + XML specification. +

+

+ If the right-most of the two small images animates but the left-most does not, + the implementation is only handling animation elements that are a direct child of + the element to be animated, and does not implement animation specified by an + XLink href. In that case, the large image will not animate either, but this does + not necessarily mean that namespace resolution is incorrect. (It does mean that + the test is failed, however). +

+

+ If the two small images animate correctly but the large one does not, then + resolution of QNames in the 'attributeName' attribute is not following the + Namespaces in XML specification as required by the SVG specification. +

+ + + $RCSfile: animate-elem-226-t.svg,v $ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + QName in attributeName + + + + $Revision: 1.4 $ + + + + + \ No newline at end of file diff --git a/test/W3C_SVG_12_TinyTestSuite_beta/svg/animate-elem-227-t.svg b/test/W3C_SVG_12_TinyTestSuite_beta/svg/animate-elem-227-t.svg new file mode 100755 index 00000000..ef0b9f32 --- /dev/null +++ b/test/W3C_SVG_12_TinyTestSuite_beta/svg/animate-elem-227-t.svg @@ -0,0 +1,87 @@ + + + + + + + + + + + +

+ Tests animateColor with the values currentColor, inherit and none. The test is + passed if: +

+
    +
  • +

    the four circles at the left animate smoothly from yellow to green

    +
  • +
  • +

    + the circle at the top right appears at 2.5 seconds + (discrete animation), with a green fill +

    +
  • +
  • +

    + the circle at the bottom right (with a green fill) + disappears at 2.5 seconds (discrete animation) +

    +
  • +
+ + + $RCSfile: animate-elem-227-t.svg,v $ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + $Revision: 1.4 $ + + + + + diff --git a/test/W3C_SVG_12_TinyTestSuite_beta/svg/animate-elem-23-t.svg b/test/W3C_SVG_12_TinyTestSuite_beta/svg/animate-elem-23-t.svg new file mode 100755 index 00000000..67b31be3 --- /dev/null +++ b/test/W3C_SVG_12_TinyTestSuite_beta/svg/animate-elem-23-t.svg @@ -0,0 +1,66 @@ + + + + + + + + + + + +

Test which verifies that the basic facilities of declarative animation are working.

+

This test uses the following elements : 'set', and 'animateColor

+

The test is a nine second animation with no repeats. It shows a circle changing color from 3s to 9s.

+

+ The file includes various guides that can be used to verify the correctness of the animation. Boxes on the left + show the correct circle color values at times 3s, 6s and 9s. +

+ + + $RCSfile: animate-elem-23-t.svg,v $ + + + + + + + + + + + Color at 3s + + + Color at 6s + + + Color at 9s + + + + + + + + + + + + + + $Revision: 1.9 $ + + + + + diff --git a/test/W3C_SVG_12_TinyTestSuite_beta/svg/animate-elem-24-t.svg b/test/W3C_SVG_12_TinyTestSuite_beta/svg/animate-elem-24-t.svg new file mode 100755 index 00000000..5c30de9c --- /dev/null +++ b/test/W3C_SVG_12_TinyTestSuite_beta/svg/animate-elem-24-t.svg @@ -0,0 +1,86 @@ + + + + + + + + + + + +

Test which verifies that the basic facilities of declarative animation are working.

+

This test uses the following elements : 'animateMotion' and 'animateTransform'

+

+ The test is a nine second animation with no repeats. It shows the text string "It's alive" moving, rotating and + growing from time 3s to 9s. +

+

+ The file includes various guides that can be used to verify the correctness of the animation. Pale blue guides + exist for the text size, location and orientation at times 3s, 6s and 9s. +

+ + + $RCSfile: animate-elem-24-t.svg,v $ + + + + + + + + + + + + + + + + + + + + + + + + + + + Text from 0s to 3s + Text at 6s + Text at 9s + + + + It's alive! + It's alive! + It's alive! + + + + + It's alive! + + + + + + + + $Revision: 1.8 $ + + + + + diff --git a/test/W3C_SVG_12_TinyTestSuite_beta/svg/animate-elem-25-t.svg b/test/W3C_SVG_12_TinyTestSuite_beta/svg/animate-elem-25-t.svg new file mode 100755 index 00000000..0c7bc072 --- /dev/null +++ b/test/W3C_SVG_12_TinyTestSuite_beta/svg/animate-elem-25-t.svg @@ -0,0 +1,65 @@ + + + + + + + + + + + +

Test animation options for specifying the target attribute/property.

+

+ The left-hand rectangle animates an XML attribute without specifying a value for 'attributeType'. The right-hand rectangle + animates an XML attribute and does set 'attributeType' to 'XML'. +

+

+ The left rectangle animates its height from 100 to 50, starting at time 3 seconds and ending at 6 seconds. The right + rectangle animates its height from 100 to 50, starting at time 6 seconds and ending at 9 seconds. +

+ + + $RCSfile: animate-elem-25-t.svg,v $ + + + + + + + + + Test animation options for specifying the target attribute/property. + + 0-3 sec. + + at 6 sec. + + + + + 0-6 sec. + + at 9 sec. + + + + + + + + $Revision: 1.9 $ + + + + + diff --git a/test/W3C_SVG_12_TinyTestSuite_beta/svg/animate-elem-26-t.svg b/test/W3C_SVG_12_TinyTestSuite_beta/svg/animate-elem-26-t.svg new file mode 100755 index 00000000..ebbd598c --- /dev/null +++ b/test/W3C_SVG_12_TinyTestSuite_beta/svg/animate-elem-26-t.svg @@ -0,0 +1,63 @@ + + + + + + + + + + + +

Test animation options for specifying the target attribute/property.

+

+ On the left, a circle animates the stroke-width property without specifying a value for 'attributeType'. On the right + a circle animates the stroke-width property and does set 'attributeType' to 'CSS'. +

+

For each circle, guides shows what the stroke-width looks like initially and what it looks like at the end of the animation.

+ + + $RCSfile: animate-elem-26-t.svg,v $ + + + + + + + + + + + + + + + + anim. 1 + + + + + + + + + anim. 2 + + + + $Revision: 1.9 $ + + + + + diff --git a/test/W3C_SVG_12_TinyTestSuite_beta/svg/animate-elem-27-t.svg b/test/W3C_SVG_12_TinyTestSuite_beta/svg/animate-elem-27-t.svg new file mode 100755 index 00000000..42b8a68f --- /dev/null +++ b/test/W3C_SVG_12_TinyTestSuite_beta/svg/animate-elem-27-t.svg @@ -0,0 +1,67 @@ + + + + + + + + + + + +

Test animation options for specifying the target element.

+

+ The leftmost rectangle verifies the use of the 'xlink:href' attribute to indicate the target element to be + animated. The rightmost rectangle verifies animating the parent of the 'animate' element (in this case, a 'rect' + element) (i.e., the implicit parent of the 'animate' element). +

+

+ At time 0, two rectangles filled with red and stroked with blue appear, each with width=100 and height=200. + Starting at time 3 seconds and ending at time 6 seconds, the height of the leftmost rectangle decreases from 200 + to 50. Starting at time 6 seconds and ending at time 9 seconds, the rightmost rectangle decreases from 200 to 50. + Annotations on the picture show the correct positions at particular times. +

+ + + $RCSfile: animate-elem-27-t.svg,v $ + + + + + + + + + Test animation options for specifying the target element. + + 0 to 3 sec. + + at 6 sec. + + + + 0 to 6 sec. + + at 9 sec. + + + + + + + + $Revision: 1.8 $ + + + + + diff --git a/test/W3C_SVG_12_TinyTestSuite_beta/svg/animate-elem-28-t.svg b/test/W3C_SVG_12_TinyTestSuite_beta/svg/animate-elem-28-t.svg new file mode 100755 index 00000000..fc41580e --- /dev/null +++ b/test/W3C_SVG_12_TinyTestSuite_beta/svg/animate-elem-28-t.svg @@ -0,0 +1,54 @@ + + + + + + + + + + + +

Test inheritance of animated properties.

+

+ A yellow happy face should be displayed. The stroke for the smile and yellow circle are both animated, the stroke + goes from "#F1E900" to "#FF0000". +

+ + + $RCSfile: animate-elem-28-t.svg,v $ + + + + + + + + + + + + + + + + + + + + + $Revision: 1.9 $ + + + + + diff --git a/test/W3C_SVG_12_TinyTestSuite_beta/svg/animate-elem-29-t.svg b/test/W3C_SVG_12_TinyTestSuite_beta/svg/animate-elem-29-t.svg new file mode 100755 index 00000000..8d3a244f --- /dev/null +++ b/test/W3C_SVG_12_TinyTestSuite_beta/svg/animate-elem-29-t.svg @@ -0,0 +1,79 @@ + + + + + + + + + + + +

Test compositing of animated fill opacity.

+

+ The assumption is that you will first click on "fade in" and then click on "fade out", each exactly once. The + first time you select the link 'fade in', you should see a red square appearing, gradually and smoothly fading + from zero to 100% opacity over the course of three seconds. This square is in front of and thus obscures the + lower left circle, but is behind the upper right circle which is thus is composited on top of the animated red + square. Then, when you click on "fade out", the red square will gradually disappear, smoothly fading from 100% + to zero opacity over the course of three seconds. +

+

+ The rendered picture should match the reference image, (except for possible variations in the labelling text + (per CSS2 rules)) after activating the link on the fade-in button the first time and waiting three seconds for + the animation to compete. The picture should remain looking the same way indefinitely, until another link is + activated. +

+

+ With the second click on "fade in", however, the behavior might be different. In the case of having a first + click on "fade in", waiting three seconds, and then immediately perform a first click on "fade out", waiting + three seconds, and then immediately perform a second click on "fade in", you should see the following. After + the first click on "fade in", the red square goes from zero to 100% opacity. After the first click on "fade out", + the red square goes from 100% to zero opacity. After the second click on "fade in", however, the red square goes + from zero to 100% opacity, and then goes back from 100% to zero opacity. This is because of the hyperlinking rules + as they relate to resolved start times in the SMIL 2.1 specification. +

+ + + $RCSfile: animate-elem-29-t.svg,v $ + + + + + + + + + + + + + + + + + + Fade in + + + + Fade out + + + + + $Revision: 1.8 $ + + + + + diff --git a/test/W3C_SVG_12_TinyTestSuite_beta/svg/animate-elem-30-t.svg b/test/W3C_SVG_12_TinyTestSuite_beta/svg/animate-elem-30-t.svg new file mode 100755 index 00000000..da4125a1 --- /dev/null +++ b/test/W3C_SVG_12_TinyTestSuite_beta/svg/animate-elem-30-t.svg @@ -0,0 +1,132 @@ + + + + + + + + + + + +

The purpose of this test is to test animated <use> where the referenced <defs> also is animated.

+

+ The test shows 6 different elements, each element defined in a <defs> and referenced with a <use>. + All the elements are animated between 0-3 seconds. The expected animation transform is indicated with a gray + silhouette showing the border values (0 and 3 seconds) and an arrow indicating the movement in between. For the + two elements with a color animation, the colors goes from white to blue (the same blue color used for all + elements). +

+ + + $RCSfile: animate-elem-30-t.svg,v $ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + $Revision: 1.7 $ + + + + + diff --git a/test/W3C_SVG_12_TinyTestSuite_beta/svg/animate-elem-31-t.svg b/test/W3C_SVG_12_TinyTestSuite_beta/svg/animate-elem-31-t.svg new file mode 100755 index 00000000..35cb03f9 --- /dev/null +++ b/test/W3C_SVG_12_TinyTestSuite_beta/svg/animate-elem-31-t.svg @@ -0,0 +1,114 @@ + + + + + + + + + + + +

The purpose of this test is to test animation of the display attribute.

+

+ The test shows two gray rectangles which are filled with colored circles during the length of the animation + (8 sec). The circles in the top rectangle are displayed/hidden by animating the display attribute.The circles in + the bottom rectangle are serving as the reference and are displayed/hidden by animating the visibility attribute. + A correct implementation should display/hide circles with the same color from the top and bottom rectangle at the + same time. +

+

+ In total there are 6 different circles (purple, green, red, blue, yellow, cyan) in 5 positions (blue and yellow + share position) that should be displayed during the test. +

+ + + $RCSfile: animate-elem-31-t.svg,v $ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + display + visibility + Test of display attribute animation. + Circles with same color should be visible at same time. + + + $Revision: 1.7 $ + + + + + diff --git a/test/W3C_SVG_12_TinyTestSuite_beta/svg/animate-elem-32-t.svg b/test/W3C_SVG_12_TinyTestSuite_beta/svg/animate-elem-32-t.svg new file mode 100755 index 00000000..f25308e2 --- /dev/null +++ b/test/W3C_SVG_12_TinyTestSuite_beta/svg/animate-elem-32-t.svg @@ -0,0 +1,134 @@ + + + + + + + + + + + +

Tests the animation to and from the degenerate cases of the basic shapes. The shapes are drawn within the black rectangles.

+

+ The rendered picture should match the reference image at the end of the animation, except for possible variations in the + labelling text (per CSS2 rules). +

+ + + $RCSfile: animate-elem-32-t.svg,v $ + + + + + + + + + + + + + Stroked + Unstroked + Zero width rect + Zero height rect + Zero radius circle + Zero x radius ellipse + Zero y radius ellipse + Zero length line + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + $Revision: 1.7 $ + + + + + diff --git a/test/W3C_SVG_12_TinyTestSuite_beta/svg/animate-elem-33-t.svg b/test/W3C_SVG_12_TinyTestSuite_beta/svg/animate-elem-33-t.svg new file mode 100755 index 00000000..f2d263f7 --- /dev/null +++ b/test/W3C_SVG_12_TinyTestSuite_beta/svg/animate-elem-33-t.svg @@ -0,0 +1,134 @@ + + + + + + + + + + + +

The purpose of this test is to test animateMotion with keyPoints and keyTimes.

+

+ The test consists of 4 sub-tests. Each test has a purple circle which moves along a path. The path is indicated + with a dashed line and sample points where the circle should pass a certain position on the path is indicated with + gray circles. On top of each gray circle is a number which indicates the passing time in seconds. In the cases + where the purple circle should pass the gray circle two times the first passing time is written above the gray + circle and the second passing time is written below. +

+

+ Section 16.2.13 in the spec. states that a motion path is defined by the path attribute or by values or from/to + attributes. So in the animateMotion case, values is just used for defining the motionPath and the number of values + do not have to relate to the number of keyTimes. +

+ + + $RCSfile: animate-elem-33-t.svg,v $ + + + + + + + + + + + 0 + 0.8-3.2 + 4 + + + + + + + + + + + + + + + 0 + 2 + 2 + 4 + + + + + + + + + + + + + + + + + + 3 + 2.6 + 0 + 1 + 4 + 1.4 + + + + + + + + + + + + + + + + 3 + 2.6 + 0 + 1 + 4 + 1.4 + + + + + + + + + + + + + + Test of keyPoints and keyTimes. + Number indicates the circle's passing time in seconds. + + + $Revision: 1.8 $ + + + + + diff --git a/test/W3C_SVG_12_TinyTestSuite_beta/svg/animate-elem-34-t.svg b/test/W3C_SVG_12_TinyTestSuite_beta/svg/animate-elem-34-t.svg new file mode 100755 index 00000000..acc1f0ec --- /dev/null +++ b/test/W3C_SVG_12_TinyTestSuite_beta/svg/animate-elem-34-t.svg @@ -0,0 +1,93 @@ + + + + + + + + + + + +

The purpose of this test is to test animation of attributes points and fill-rule.

+

+ The test consists of 2 sub-tests. The first test is a polygon shaped as a digit. The polygon has an animation on + its vertex points which morphs the polygon between the numbers 1, 2, 3 and 4. The gray outlines indicates the + expected position of the polygon at 1, 2, 3 and 4s. The second test is 4 paths in a u-shape. They have animated + fill-rules. Their initial fill-rules are, from left to right, nonzero, evenodd, nonzero (by default value, no + fill-rule attribute set) and nonzero (by default value, no fill-rule attribute set). This means, that the second + path is initially u-shaped, and all other paths are initially rect-shaped. All four animations are set to evenodd + as a last stage. The further expected result is that one path at a time is filled. The other three paths are not + filled but have the u-shape. The fourth animation from evenodd to nonzero happens by going back to the initial + state, because the fill attribute is not set to freeze. Which path that should be filled at which time is indicated + by the number above it (indicating time in seconds). To enhance the difference between the filled path and the rest, + the filled path should always have the same color as the morphing polygon. This is achieved by a discrete color + animation. +

+ + + $RCSfile: animate-elem-34-t.svg,v $ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + Animation on: 'points' and 'fill-rule'. + Digit should match outline at indicated time. + Filled square should follow morphing digit discretely. + + + $Revision: 1.7 $ + + + + + diff --git a/test/W3C_SVG_12_TinyTestSuite_beta/svg/animate-elem-35-t.svg b/test/W3C_SVG_12_TinyTestSuite_beta/svg/animate-elem-35-t.svg new file mode 100755 index 00000000..8fe790ca --- /dev/null +++ b/test/W3C_SVG_12_TinyTestSuite_beta/svg/animate-elem-35-t.svg @@ -0,0 +1,142 @@ + + + + + + + + + + + +

+ The purpose of this test is to test animation of attributes stroke-dasharray, + stroke-dashoffset, stroke-miterlimit, stroke-linecap and stroke-linjoin. +

+

+ This file contains four tests, testing animation of five attributes. + The first test animates the stroke-dashoffset. There are seven reference polylines, all with + the same stroke-dasharray but with different values on their stroke-dashoffset. A red polyline + with the same stroke-dash array has an animation on its stroke-dasharray. The red polyline is + animated so that it stops by the reference polyline that has the right stroke-dashoffset at + that perticular time. + The second test animates stroke-linecap and stroke-linejoin. There are three reference + polylines. Comparsion is done in the same manner as in the previous test. + The third test animates the stroke-miterlimit. There are two sets offilled reference paths + (black) and two outlined paths (red) with animated stroke-miterlimit. The paths are shaped like + a capital A. In the upper test the animated path is drawn on top of the reference polygons and + in the lower test the reference path is drawn on top of the animated path. As the + stroke-miterlimit is animated to different values, different reference paths are used. To pass + the test, there should never be any part of the underlying geometry visible (black in the upper + or red in the lower). + The fourth test animates the stroke-dasharray. The initial stroke-dasharray gives a + short-dashed line. This pattern is animated into a pattern that on this short path gives a + solid line at 2 seconds. +

+ + + $RCSfile: animate-elem-35-t.svg,v $ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + Animation on: 'stroke-dasharray', 'stroke-dashoffset', + 'stroke-miterlimit', 'stroke-linecap' and 'stroke-linejoin'. + + + $Revision: 1.5 $ + + + + + diff --git a/test/W3C_SVG_12_TinyTestSuite_beta/svg/animate-elem-36-t.svg b/test/W3C_SVG_12_TinyTestSuite_beta/svg/animate-elem-36-t.svg new file mode 100755 index 00000000..a77be679 --- /dev/null +++ b/test/W3C_SVG_12_TinyTestSuite_beta/svg/animate-elem-36-t.svg @@ -0,0 +1,118 @@ + + + + + + + + + + + +

This test validates the animation of the transform attribute on structure elements, hyperlinks and text elements.

+

+ The test applies an <animateTransform> on various element types: <g>, <use>, <image>, + <switch>, <a> and <text>. In all cases, the type is a rotation and all the elements should rotate + together about their centers, for 3s, starting at the document's load time.

+

The static reference image shows the final state of the animation.

+ + + $RCSfile: animate-elem-36-t.svg,v $ + + + + + + + + + + + + + + + + + + <animateTransform> on structure, + hyperlinking and text elements + + + + + + + + + + + <g> + + + + + + + + + <use> + + + + + + <image> + + + + + + + + + + + + + + + + <switch> + + + + + + + + + + + + + <a> + + + 123 + + <text> + + + + + $Revision: 1.7 $ + + + + + diff --git a/test/W3C_SVG_12_TinyTestSuite_beta/svg/animate-elem-37-t.svg b/test/W3C_SVG_12_TinyTestSuite_beta/svg/animate-elem-37-t.svg new file mode 100755 index 00000000..08d9f763 --- /dev/null +++ b/test/W3C_SVG_12_TinyTestSuite_beta/svg/animate-elem-37-t.svg @@ -0,0 +1,84 @@ + + + + + + + + + + + +

This test validates the animation of the transform attribute shape elements.

+

+ The test applies an <animateTransform> on various element types: <g>, <use>, <image>, + <switch>, <a> and <text>. In all cases the animation should run for 3s, starting at the + document's load time. The <circle> has a scale animation, and all the rest of the elements should rotate + together about their centers. The static reference image shows the final state of the animation. +

+ + + $RCSfile: animate-elem-37-t.svg,v $ + + + + + + + + + <animateTransform> shape elements + + + + + <path> + + + + + <rect> + + + + + <circle> + + + + + <ellipse> + + + + + <line> + + + + + <polyline> + + + + + <polygon> + + + + + $Revision: 1.7 $ + + + + + diff --git a/test/W3C_SVG_12_TinyTestSuite_beta/svg/animate-elem-38-t.svg b/test/W3C_SVG_12_TinyTestSuite_beta/svg/animate-elem-38-t.svg new file mode 100755 index 00000000..3dc4176e --- /dev/null +++ b/test/W3C_SVG_12_TinyTestSuite_beta/svg/animate-elem-38-t.svg @@ -0,0 +1,81 @@ + + + + + + + + + + + +

The purpose of this test is to test animation of the viewBox attribute.

+

+ This file tests animation of the viewBow attribute. The viewBox changes position and size several times. At each + new setting, a green indicator frame will flash a couple of times. This frame must only appear at the edges of + the SVG element. +

+ + + $RCSfile: animate-elem-38-t.svg,v $ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + Animation on: 'viewBox'. Flashing frame should + only appear at the edges of the SVG element. + + + $Revision: 1.9 $ + + + + + diff --git a/test/W3C_SVG_12_TinyTestSuite_beta/svg/animate-elem-39-t.svg b/test/W3C_SVG_12_TinyTestSuite_beta/svg/animate-elem-39-t.svg new file mode 100755 index 00000000..de22d814 --- /dev/null +++ b/test/W3C_SVG_12_TinyTestSuite_beta/svg/animate-elem-39-t.svg @@ -0,0 +1,120 @@ + + + + + + + + + + + +

+ This test validates that the xlink:href attribute can be animated on the <a>, <image> and <use> + elements, using the <animate> or <set> animation elements. +

+

+ For the <a> animation, showing on the left-most column, the number indicates the number of the animation + test currently linked by the xlink:href attribute. For example, when the xlink:href animated value is + "animate-elem-38-t.svg", the text displays "38". When the user clicks on the displayed number, the user agent + should open the corresponding link. For example, if the user clicks on 38, then the "animate-elem-38-t.svg" URI + should be followed. If the user clicks on 02, then the "animate-elem-02-t.svg" URI should be followed. +

+

+ For the <image> animations, the image xlink:href attribute cycles through two values showing a sun set and + a picture of the sydney opera. The image should change every second and the images shown by the <set> and + <animate> animations should always match. +

+

+ For the <use> animations, the use xlink:href attribute cycles through values "#useA" and "#useB" which + reference text elements displaying values "Use A" and "Use B". The change should happen every second and the text + shown for the two animations (<set> and <animation>) should always match. +

+ + + $RCSfile: animate-elem-39-t.svg,v $ + + + + + + + + + + Use A + Use B + Use C + + <animate> on xlink:href + + + <set> + + + + + 38 + 02 + + + + + <a> + + + + + + <image> + + + + + + <use> + + + <animate> + + + + + 09 + 03 + + + + + <a> + + + + + + <image> + + + + + + <use> + + + + + $Revision: 1.7 $ + + + + + diff --git a/test/W3C_SVG_12_TinyTestSuite_beta/svg/animate-elem-40-t.svg b/test/W3C_SVG_12_TinyTestSuite_beta/svg/animate-elem-40-t.svg new file mode 100755 index 00000000..d1882a99 --- /dev/null +++ b/test/W3C_SVG_12_TinyTestSuite_beta/svg/animate-elem-40-t.svg @@ -0,0 +1,175 @@ + + + + + + + + + + + +

+ This test validates that the x and y attributes can be animated on <use>, <image>, <rect> and + <text> elements. The test also validates that the width and height attributes can be animated on <image> + and <rect> +

+

+ For x and y animation, each test shows the reference positions at specific points in the animation. These markers + are highlighted at the time the target element's x/y position should match that of the marker. For the <text> + element, there are two tests. The first one tests animating a single value on the text's x and y attributes. The + second one tests animating x, y values where there are values for each of the text's characters. For that test + (bottom left), there is a set of reference markers for each of the characters ('1' and '2'). +

+

+ For width and height animation (the two tests on the bottom right), the outline showing the expected width and + height at given points in the animation is highlighted at the time the marker's width and height should match that + of the target element. +

+ + + $RCSfile: animate-elem-40-t.svg,v $ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + <animate> of x/y/width/height + + + + + + + + x/y on <use> + + + + + + + + x/y on <image> + + + + + + + + x/y on <rect> + + + + + + + + x/y on <rect> + + + 123 + + + + x/y on <text> + + + 12 + + + + + x/y on <text>(2) + + + + + + + + + + + + + + + + width/height + on <image> + + + + + + + + + + + + + + + + width/height + on <rect> + + + + + $Revision: 1.8 $ + + + + + diff --git a/test/W3C_SVG_12_TinyTestSuite_beta/svg/animate-elem-41-t.svg b/test/W3C_SVG_12_TinyTestSuite_beta/svg/animate-elem-41-t.svg new file mode 100755 index 00000000..d79b1291 --- /dev/null +++ b/test/W3C_SVG_12_TinyTestSuite_beta/svg/animate-elem-41-t.svg @@ -0,0 +1,360 @@ + + + + + + + + + + + +

+ This test validates the operation of the animate element on the various graphics properties. This test is very + similar to animate-elem-78-t which uses the set element instead of the animate element to modify graphics properties. +

+

+ For each of the graphics properties, there are three tests. One animates the graphics property directly on an + element (such as a rect or a line) which uses the property. The other two tests apply the animation on a container + element (g and a), and validate that the animated property is inherited by elements which are child of the container. +

+

+ For each animation test, the element on which the animation is applied is also translated by an animation so that + the various states of the animation can be checked more easily. In most tests, there is a gray reference marker + which shows the expected animation state at the begining of the animation, mid-way, or at the end of the animation. +

+

+ The following animations should show continuous changes: fill, stroke, stroke-width, stroke-miterlimit, + stroke-dashoffset and color. Note that visually, stroke-miterlimit shows a sharp transition, but that is because + the miter is cut off when the animated miter limit reaches the test sharp angle's miter value. The stroke-miterlimit + value is changed continously but that is not visible in this test. +

+

The following animations have a discrete behavior: fill-rule, stroke-linecap, stroke-linejoin, display and visibility.

+ + + $RCSfile: animate-elem-41-t.svg,v $ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + graphics + + + fill + fill-rule + stroke + stroke-width + stroke-linecap + stroke-linejoin + stroke-miterlimit + stroke-dashoffset + display + visibility + color + + + element + <g> + <a> + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + $Revision: 1.7 $ + + + + + diff --git a/test/W3C_SVG_12_TinyTestSuite_beta/svg/animate-elem-44-t.svg b/test/W3C_SVG_12_TinyTestSuite_beta/svg/animate-elem-44-t.svg new file mode 100755 index 00000000..22a696b7 --- /dev/null +++ b/test/W3C_SVG_12_TinyTestSuite_beta/svg/animate-elem-44-t.svg @@ -0,0 +1,68 @@ + + + + + + + + + + + +

The purpose of this test is to test animation of the d attribute of the path element.

+

+ This test consists of a path, specified as a series of lineto commands, whose d attribute is animated. The path + morphs between the numbers 1, 2, 3, and 4. The gray outlines indicates the expected position of the polygon at + 1, 2, 3 and 4s. The test contains an animated circle that indicates where the path should be at a given time. +

+ + + $RCSfile: animate-elem-44-t.svg,v $ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + Animation on the 'd' attribute of path. + Digit should match outline at indicated time. + Filled circle should follow morphing digit discretely. + + + $Revision: 1.7 $ + + + + + diff --git a/test/W3C_SVG_12_TinyTestSuite_beta/svg/animate-elem-46-t.svg b/test/W3C_SVG_12_TinyTestSuite_beta/svg/animate-elem-46-t.svg new file mode 100755 index 00000000..4a4063a9 --- /dev/null +++ b/test/W3C_SVG_12_TinyTestSuite_beta/svg/animate-elem-46-t.svg @@ -0,0 +1,203 @@ + + + + + + + + + + + +

+ This test validates the operation of the animate element on the various text and font properties. This test is + very similar to animate-elem-77-t.svg which uses the set element instead of the animate element to modify graphics + properties. +

+

+ For each text or font properties, there are three tests. One animates the text or font property directly on a + text element which uses the property. The other two tests apply the animation on a container element (g and a), + and validate that the animated property is inherited by children text elements. +

+

+ For each animation test, the element on which the animation is applied is also translated by an animation so that + the various states of the animation can be checked more easily. There is a gray reference marker which shows the + expected animation state at the begining of the animation, mid-way, or at the end of the animation. +

+

Only the animation of font-size should show a continuous change of the font size.

+

The following animations have a discrete behavior: text-anchor, font-family, font-style, font-weight.

+ + + $RCSfile: animate-elem-46-t.svg,v $ + + + + + + + + + + + A + + A + + A + + + + + + + + + A + A + A + + + + + A + A + A + + + + + A + A + A + + + + + A + A + A + + + + + text-anchor + font-size + font-family + font-style + font-weight + + + <text> + <g> + <a> + + + + + + + A + + + + + + A + + + + + A + + + + + + + A + + + + + + A + + + + + A + + + + + + + A + + + + + + A + + + + + A + + + + + + + A + + + + + + A + + + + + A + + + + + + + A + + + + + + A + + + + + A + + + + + + + $Revision: 1.7 $ + + + + + diff --git a/test/W3C_SVG_12_TinyTestSuite_beta/svg/animate-elem-52-t.svg b/test/W3C_SVG_12_TinyTestSuite_beta/svg/animate-elem-52-t.svg new file mode 100755 index 00000000..edf26afa --- /dev/null +++ b/test/W3C_SVG_12_TinyTestSuite_beta/svg/animate-elem-52-t.svg @@ -0,0 +1,103 @@ + + + + + + + + + + + +

The purpose of this test is to test eventbase targets.

+

+ The test consists of 4 rectangles named A, B, C, D. The D rectangle contains three animations changing the color + of the animation target. Each animation applies to one of the other rectangles by using xlink:href="". Clicking on + rect A should change it's color immediately, clicking B changes its color after 2 seconds, clicking C changes its + color after 4 seconds and clicking D shows no visible change (although D contains the animations the event target + for each animation is the referenced rectangle, this rectangle is also the animation target.) +

+

+ The following sections in SMIL 2.1 are relevant as + confirmation of this test: +

+
+
    +
  • + + 10.4.1 + subsection "Event values" + states: "If the Eventbase-element + term is missing, the event-base element defaults to the element on + which the eventbase timing is specified (the current element)." +
  • +
  • + + 3.5.1 + subsection "The target element" + says that the animation target may + be defined explicitly through the targetElement="" IDREF or href="" + URI, according to the host language. SVG Tiny 1.2 uses the + xlink:href="" attribute to specify the target element, so in this + test, the animation target is defined through xlink:href="" and the + event base per definition is then also this referenced element. +
  • +
+
+ + + $RCSfile: animate-elem-52-t.svg,v $ + + + + + + + + + A + B + C + D + + + + click A + + + + click B+2 + + + + click C+4 + + + + never + + + + + + Test of Eventbase targets. + Note that clicking rect D should give no result. + Clicking a rectangle should change its color at the + time for the click + delay as indicated in each rect. + + + $Revision: 1.10 $ + + + + + diff --git a/test/W3C_SVG_12_TinyTestSuite_beta/svg/animate-elem-53-t.svg b/test/W3C_SVG_12_TinyTestSuite_beta/svg/animate-elem-53-t.svg new file mode 100755 index 00000000..b00a2452 --- /dev/null +++ b/test/W3C_SVG_12_TinyTestSuite_beta/svg/animate-elem-53-t.svg @@ -0,0 +1,127 @@ + + + + + + + + + + + +

+ The purpose of this test is to test animation of points and calcMode. +

+

+ 1. The green squares should animate together side by side. This applies + to the red ones as well. + 2. The time values indicate when the squares should reach the + corresponding reference square. + 3. The total distance is 0+40+80+24.14=144.14 + a. The "green animation" is 9 sec and linear so each interval + should get 3 sec. + b. The "red animation" is 8 sec and paced so the intervals + should get 2.22, 4.44 and 1.34 sec each. +

+

+ Here comes a more detailed description of the animation. + + The left green square (LG) is animated by animating the points with + a value array, consisting of 4 lists of points. This is an animation + with calcMode="linear" so an equal amount of time should be spent on + all 4 intervals. The right green square (RG) is animated by a simple + linear motion followed by a scale to follow LG. + The last scale by 1.9428 correspond to a movement of the lover right + corner of the square by sqrt((30*0.9428)^2 + (30*0.9428)^2) which is + approximately 40 distance units. This is the same distance as the first + interval in the values array (and half the second interval). + The length (in terms of distance) is not really important for the + green squares but for the red squares which are animated with + calcMode="paced" the length is used to calculate the time for each + interval. + Since the first and last interval are of the same length which + totals to the length of the middle interval, the interval should + be given time according to [27.75%(2.22sec);55.5%(4.44sec);16.75%(1.34sec)]. + + So the left red square (LR) is animated just as the LG square but + with calcMode="paced". The same applies to the right red square (RR) + that has default calcMode ("paced" for animateMotion) compared to the + RG square that has calcMode="linear". + The calcMode for the scale of RR (and RG) is not important since + it's not a value list type of animation. +

+ + + $RCSfile: animate-elem-53-t.svg,v $ + + + + + + + + + + + + + + 0s + + 3s + + 6s + + 9s + + + + + + + + + + + + + 0s + + 2.22s + + 6.66s + + 8s + + + + + + + + + + + Animation on: 'points' with 'calc-mode'. + Colored and black squares should match at indicated time. + Same colored squares (green and red) should match at all times + + + $Revision: 1.8 $ + + + + + diff --git a/test/W3C_SVG_12_TinyTestSuite_beta/svg/animate-elem-61-t.svg b/test/W3C_SVG_12_TinyTestSuite_beta/svg/animate-elem-61-t.svg new file mode 100755 index 00000000..3d196447 --- /dev/null +++ b/test/W3C_SVG_12_TinyTestSuite_beta/svg/animate-elem-61-t.svg @@ -0,0 +1,140 @@ + + + + + + + + + + + +

+ This tests validates multiple begin conditions in the begin attribute, assuming support for the <set> + element and setting the fill attribute on a <rect> element. +

+

+ The test validates the various possibilities for the begin attribute value: multiple offset values, multiple + event base values, multiple sync base values, multiple repeat values, and multiple accessKey values. Finally, + the test validates that begin values of different kinds can be mixed. +

+

The test shows 6 rows where a red rectangle' s x attribute is animated with <set> elements.

+

+ On the first three rows, the red rectangles should show on the left from 0 to 1s. From 1 to 2s, the rectangles + should show on the right. Then the rectangles should show on the left from 2 to 4s, then on the right again from + 4 to 5s and come back to the left position and stay there after 5s. +

+

+ On the fourth row, the rectangle's begin condition is event based and requires a user click. After the user clicks + on the rectangle, the rectangle should move to the right position for 1s, then move back to the left position for + 3 seconds, move again to the right position for 1 second before going back to the left position. +

+

+ On the fifth row, the rectangle's begin condition is accessKey based and requires a user to press the 'a' key. + After the user presses that key the rectangle should move to the right position for 1s, then move back to the left + position for 3 seconds, move again to the right position for 1 second before going back to the left position. +

+

+ The last row's rectangle has a begin condition with two offset values (1s;4s) and should behave like the rectangles + of the first three rows for the first 5 seconds of the document's timeline. In addition, the begin condition has a + click event base and thus, the rectangle should move to the right position for one second every time the user clicks + on it. Finally, the begin condition also has an accessKey condition for the 'b' character. Thus, the rectangle + should move to the right position every time the user presses the 'b' key. +

+ + + $RCSfile: animate-elem-61-t.svg,v $ + + + + + + + + + + + + multiple begin + + + 2 offsets + 2 sync bases + 2 repeat + 2 event base + 2 accessKeys + misc + + + 0-1s + 2s-4s + > 5s + + 1-2s + 4-5s + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + $Revision: 1.9 $ + + + + + diff --git a/test/W3C_SVG_12_TinyTestSuite_beta/svg/animate-elem-64-t.svg b/test/W3C_SVG_12_TinyTestSuite_beta/svg/animate-elem-64-t.svg new file mode 100755 index 00000000..79ae74ed --- /dev/null +++ b/test/W3C_SVG_12_TinyTestSuite_beta/svg/animate-elem-64-t.svg @@ -0,0 +1,102 @@ + + + + + + + + + + + +

This tests performs basic tests on the dur attribute.

+

+ 'The first row shows a red rectangle subject to a <set> animation with no begin attribute, no end attribute + and a dur attribute set to '2s'. Therefore, the animation should be active from 0 to 2 seconds and then terminate. + Consequently, the rectangle should show on the right for the first two seconds, and then move to the left position. +

+

+ The second row shows a red rectangle subject to a <set> animation with no begin attribute, no end attribute + and a dur attribute set to 'indefinite'. Therefore, the animation should stay active indefinitely and the rectangle + should always be on the right position, never on the left position. +

+

+ Finally, the third row shows red rectangle subject to a <set> animation with no begin attribute, no end + attribute and a dur attribute set to 'media'. In the context of SVG 1.1, this is equivalent to an 'indefinite' + value. Therefore, the animation should stay active indefinitely and the rectangle should always be on the right + position, never on the left position. +

+ + + $RCSfile: animate-elem-64-t.svg,v $ + + + + + + + + + + + + dur + + + clock value + indefinite + media + + + > 2s + 0s-2s + + never + > 0s + + + never + > 0s + + + + + + + + + + + + + + + + + + + + + + + + + + + + + $Revision: 1.7 $ + + + + + diff --git a/test/W3C_SVG_12_TinyTestSuite_beta/svg/animate-elem-65-t.svg b/test/W3C_SVG_12_TinyTestSuite_beta/svg/animate-elem-65-t.svg new file mode 100755 index 00000000..c02390dc --- /dev/null +++ b/test/W3C_SVG_12_TinyTestSuite_beta/svg/animate-elem-65-t.svg @@ -0,0 +1,174 @@ + + + + + + + + + + + +

+ This tests performs basic tests on the min attribute. The test is based on the SMIL specification at: + http://www.w3.org/TR/smil20/smil-timing.html#Timing-MinMax. +

+

+ Each row in the test shows different rectangles subject to <set> animations with different configurations + with regards to the min attribute. For each row but the last one, the animation should be active during the first + 5 seconds of the animations where the red rectangle should show in the right column. At five seconds into the + animation, all the rectangles should move to their left position. +

+

+ On the first row, the first <set> animation (left rectangle) has an end value of 5s, and no min attribute. + The active duration resulting from the end attribute is 5s. The first row shows a second rectangle with a + <set> animation with the same configuration except that the min attribute value is set to 'media'. Because + the <set> element does not define a media, the behavior should be as if the attribute was not specified. + The active duration (5s) of the second <set> animation is therefore not constrained. +

+

+ On the second row, the <set> animation has an end value of 5s, and a -6s min attribute. The active duration + resulting from the end attribute is 5s. The negative min value is invalid and, as per the specification, the + behavior should be as if the attribute was not specified. The active duration (5s) is therefore not constrained. +

+

+ On the third row, the <set> animation has an end value of 5s, and a 3s min attribute. The active duration + resulting from the end attribute is 5s. The min value is less than the active duration, so the min attribute does + not actually constrain the active duration. +

+

+ On the fourth row, the <set> animation has a dur value of indefinite, an end value of 2s, and a 5s min + attribute. The active duration resulting from the end attribute would be 2s. Because this is less than the min + value (2s < 5s) the (min constrained) active duration has to be corrected to 5s, despite a simple duration + (indefinite) that is greater than the min value. +

+

+ On the fifth row, the <set> animation has a dur value of 1s, an end value of 2s, a repeatCount of 7 and + a 5s min attribute. The active duration resulting from dur, end and repeatCount would be 2s. Because this is + less than the min value (2s < 5s) the (min constrained) active duration has to be corrected to 5s. +

+

+ On the sixth row, the <set> animation has a dur value of 1s, an end value of 2s, a repeatCount of 5 and + a 8s min attribute value. The active duration resulting from dur, end and repeatCount would be 2s, because this + is less than the min value (2s < 8s) the active duration has to be corrected to 8s. As the fill attribute is + set to 'remove' on the <set> animation, this remove is applied at 5s, the end of the repeatCount. Note, + that if the end of active duration would have been used as a syncbase-value for another animation, the corrected + end event at (begin + min) = 8s has to be used. +

+

+ On the seventh row, the <set> animation has a dur value of 1s, an end value of 2s, a repeatCount of 5 and + a 8s min attribute value. The active duration resulting from dur, end and repeatCount would be 2s, because this + is less than the min value (2s < 8s) the active duration has to be corrected to 8s. As the fill attribute is + set to 'freeze' on the <set> animation, the animation is frozen at 5s, the end of the repeatCount, the + <set> applies indefinitely. Note, that if the end of active duration would have been used as a syncbase-value + for another animation, the corrected end event at (begin + min) = 8s has to be used. +

+ + + $RCSfile: animate-elem-65-t.svg,v $ + + + + + + + + + + + + min + + + no min / media + invalid min + min < active dur + min > active dur + min < repeat dur + min > repeat dur, remove + min > repeat dur, freeze + + + > 5s + 0s-5s + + never + > 0s + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + $Revision: 1.7 $ + + + + + diff --git a/test/W3C_SVG_12_TinyTestSuite_beta/svg/animate-elem-66-t.svg b/test/W3C_SVG_12_TinyTestSuite_beta/svg/animate-elem-66-t.svg new file mode 100755 index 00000000..94c7da7c --- /dev/null +++ b/test/W3C_SVG_12_TinyTestSuite_beta/svg/animate-elem-66-t.svg @@ -0,0 +1,170 @@ + + + + + + + + + + + +

+ This tests performs basic tests on the max attribute and on combinations of the min and max attributes. The test + is based on the SMIL specification at: http://www.w3.org/TR/smil20/smil-timing.html#Timing-MinMax. +

+

+ Each row in the test shows different rectangles subject to <set> animations with different configurations + with regards to the max and min attributes. For each row, the animation should be active during the first 5 + seconds of the animations where the red rectangle should show in the right column. At five seconds into the + animation, all the rectangles should move to their left position. +

+

+ On the first row, the <set> animation has a (0s <= t < 5s) active duration and no max attribute so + the actual active duration is (0s <= t < 5s). The first row shows a second rectangle with a <set> + animation with the same configuration except that the max attribute value is set to 'media'. Because the <set> + element does not define a media, the behavior should be as if the attribute was not specified. +

+

+ On the second row, the <set> animation has a (0s <= t < 5s) active duration and a min attribute set + to '-6s' for the first rectangle and to 'foo' for the second one. These values are invalid for max and, as per the + specification, the behavior should be as if the attribute was not specified. Consequently, the behavior is as for + the previous row and the actual active duration is (0s <= t < 5s). +

+

+ On the third row, the <set> animation has a (0s <= t < 8s) initial active duration and a max attribute + set to '5s'. The max value is less than the active duration, so the max attribute constrains the active duration to + (0s <= t < 5s). +

+

+ On the fourth row, the <set> animation has a (0s <= t < 5s) initial active duration, an indefinite + simple duration (dur is set to indefinite) and a max attribute set to '8s'. Because the initial active duration is + less than the max attribute the active duration is not constrained and is unchanged at (0s <= t < 5s). +

+

+ On the fifth row, the <set> animation has a (0s <= t < indefinite) initial active duration, a min of 2s + and a max of 5s. Because the min value is less than the max value, both apply and the computed active duration is + (0s <= t < 5s). +

+

+ On the sixth row, the <set> animation has a (0s <= t < indefinite) initial active duration, a min of 5s + and a max of 5s. Because the min value is equal to the max value, both apply and the computed active duration is + (0s <= t < 5s). +

+

+ On the seventh row, the <set> animation has a [0s, 5s[[ initial active duration, a min of 8s and a max of 2s. + Because the min value is greater than the max value, both are ignored and the computed active duration is [0s, 5s[. +

+ + + $RCSfile: animate-elem-66-t.svg,v $ + + + + + + + + + + + + max + min & max + + + no max / media + invalid max values + max < active dur + max > active dur + min < max + min = max + min > max (both ignored) + + + > 5s + 0s-5s + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + $Revision: 1.7 $ + + + + + diff --git a/test/W3C_SVG_12_TinyTestSuite_beta/svg/animate-elem-67-t.svg b/test/W3C_SVG_12_TinyTestSuite_beta/svg/animate-elem-67-t.svg new file mode 100755 index 00000000..3eeda464 --- /dev/null +++ b/test/W3C_SVG_12_TinyTestSuite_beta/svg/animate-elem-67-t.svg @@ -0,0 +1,137 @@ + + + + + + + + + + + +

This tests performs basic tests on restart attribute

+

+ Each row in the test shows different rectangles subject to <set> animations with different configurations + with regards to the restart attribute. For each row, the animation should be active during the first 5 seconds of + the animations where the red rectangle should show in the right column. At five seconds into the animation, all + the rectangles should move to their left position. +

+

+ On the first row, the <set> animation has a begin attribute set to '0s;1s' and a dur attribute set to 4s. + This should result in a first interval of (0s <= t < 4s) which should be superceeded, at 1s, by a new + interval of (1s <= t < 5s) because the default restart behavior is 'always'. Consequently, the rectangle + should be in the right position during the (0s <= t < 5s) interval and move to the left position at 5s. +

+

+ On the second row, the <set> animation has a begin attribute set to '0s;1s', a dur attribute set to 4s and + a restart attribute set to always. The behavior should be the same as for the first row. +

+

+ On the third row, the first (left most) rectangle's <set> animation has a begin attribute set to '0s;1s', + a dur set to 5s and a restart attribute set to whenNotActive. Because of the rules for computing intervals, the + animation's interval is (0s <= t < 5s) and is not superseded by a (1s <= t < 6s) interval because of + the restart value. The second (right most) red rectangle's <set> animation has a begin attribute set to + '0s;2.5s' and a dur attribute set to 2.5s. This results in a first interval (0s <= t < 2.5s) which is + followed by a (2.5s <= t < 5s) interval. Consequently, the rectangle stays on its right position for the + first five seconds before it definitively moves to the left position. +

+

+ On the fourth row, the <set> animation has a begin attribute set to '0s;5s' and a dur attribute set to 5s. + This results in a first interval of (0s <= t < 5s). Because the restart attribute is set to 'never', the + following possible interval, (5s <= t < 10s) does not apply and the animation is only active for the first + 5 seconds. +

+

+ The fifth row shows a simple animated red rectangle which lasts for 5 seconds. It shows a reference of how the + other animations should behave visually: all red rectangles should have the same horizontal position as the one + on the reference row, at any time during the animation. +

+ + + $RCSfile: animate-elem-67-t.svg,v $ + + + + + + + + + + + + restart + + + no restart (defaults to always) + restart="always" + restart="whenNotActive" + restart="never" + reference + + + > 5s + 0s-5s + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + $Revision: 1.7 $ + + + + + diff --git a/test/W3C_SVG_12_TinyTestSuite_beta/svg/animate-elem-68-t.svg b/test/W3C_SVG_12_TinyTestSuite_beta/svg/animate-elem-68-t.svg new file mode 100755 index 00000000..e7e10d79 --- /dev/null +++ b/test/W3C_SVG_12_TinyTestSuite_beta/svg/animate-elem-68-t.svg @@ -0,0 +1,110 @@ + + + + + + + + + + + +

This tests the repeatCount attribute

+

+ Each row in the test shows different rectangles subject to <set> animations with different configurations + with regards to the repeatCount attribute. For each row, the animation should be active during the first 5 seconds + of the animations where the red rectangle should show in the right column. At five seconds into the animation, all + the rectangles should move to their left position. +

+

+ On the first row, the <set> animation has its dur attribute set to '5s' and its repeatCount unspecified. + Consequently, its only interval is (0s <= t < 5s). +

+

+ On the second row, the <set> animation has its dur attribute set to 1s and its repeatCount set to 5. + Consequently, its only interval is (0s <= t < 5s (1s*5)). +

+

+ On the third row, the <set> animation has its dur attribute set to 10s and its repeatCount set to 0.5. + Consequently, its only interval is (0s <= t < 5s (10s*0.5)). +

+

+ On the fourth row, the <set> animation has its dur attribute set to 1s and its repeatCount set to + indefinite. It also has an end attribute set to 5s. Consequently, the repeat duration is indefinite, but the + active duration is limited by the end attribute and the active interval is (0s <= t < 5s). +

+ + + $RCSfile: animate-elem-68-t.svg,v $ + + + + + + + + + + + + repeatCount + + + dur=5s repeatCount unspecified + dur=1s repeatCount=5 + dur=10s repeatCount=0.5 + dur=1s repeatCount=indefinite + end=5s + + + > 5s + 0s-5s + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + $Revision: 1.8 $ + + + + + diff --git a/test/W3C_SVG_12_TinyTestSuite_beta/svg/animate-elem-69-t.svg b/test/W3C_SVG_12_TinyTestSuite_beta/svg/animate-elem-69-t.svg new file mode 100755 index 00000000..9c95937e --- /dev/null +++ b/test/W3C_SVG_12_TinyTestSuite_beta/svg/animate-elem-69-t.svg @@ -0,0 +1,124 @@ + + + + + + + + + + + +

This tests the repeatDur attribute

+

+ Each row in the test shows different rectangles subject to <set> animations with different configurations + with regards to the repeatDur attribute. For each row, the animation should be active during the first 5 seconds + of the animations where the red rectangle should show in the right column. At five seconds into the animation, + all the rectangles should move to their left position. +

+

+ On the first row, the <set> animation has its dur attribute set to '5s' and its repeatDur unspecified. + Consequently, its only interval is (0s <= t < 5s). +

+

+ On the second row, the <set> animation has its dur attribute set to 1s and its repeatDur set to 5s. + Consequently, its only interval is (0s <= t < 5s). +

+

+ On the third row, the <set> animation has its dur attribute set to 0.5s and its repeatDur set to 5s. + Consequently, its only interval is (0s <= t < 5s). +

+

+ On the fourth row, the <set> animation has its dur attribute set to 1s and its repeatDur set to indefinite. + It also has an end attribute set to 5s. Consequently, the repeat duration is indefinite, but the active duration + is limited by the end attribute and the active interval is (0s <= t < 5s). +

+

+ On the fifth row, the <set> animation has its dur attribute set to 0.7s and its repeatDur set to 5s. + Consequently, its only interval is (0s <= t < 5s). The difference with the 3rd row is that there is a + fractional number of simple durations in the active duration (7.1428) where there is a whole number of simple + durations in the third row (10). +

+ + + $RCSfile: animate-elem-69-t.svg,v $ + + + + + + + + + + + + repeatDur + + + dur=5s repeatDur unspecified + dur=1s repeatDur=5s + dur=0.5s repeatDur=5s + dur=1s repeatDur=indefinite + end=5s + dur=0.7s repeatDur=5s + + + > 5s + 0s-5s + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + $Revision: 1.8 $ + + + + + diff --git a/test/W3C_SVG_12_TinyTestSuite_beta/svg/animate-elem-70-t.svg b/test/W3C_SVG_12_TinyTestSuite_beta/svg/animate-elem-70-t.svg new file mode 100755 index 00000000..72ed2dab --- /dev/null +++ b/test/W3C_SVG_12_TinyTestSuite_beta/svg/animate-elem-70-t.svg @@ -0,0 +1,127 @@ + + + + + + + + + + + +

+ This tests the animation's SMIL 'fill' attribute. +

+

+ On the first row, the <set> animation has its dur + attribute set to '1s' and its begin attribute set to '0s; + firstSet.end + 1s'. The fill attribute is unspecified, so + the effect is as if it was set to 'remove', because 'remove' is + the default value for fill. + + Consequently, the first interval is (0s <= t < 1s), the second is + (2s <= t < 3s), the third, (4s <= t < 5s) etc.. The red rectangle starts on the + right position, moves to the left position for one second, moves + to the right for 1 second, and so on. +

+

+ On the second row, the <set> animation + with the identifier 'firstSet' has its dur attribute + set to 1s and its begin attribute set to '0s; firstSet.end'. The fill attribute + is set to 'remove'. The behavior should be exactly the same as for the previous + row, and the rectangle moves from the right position to the left position + every second. +

+

+ On the third row, the <set> animation has its dur attribute set to + 1s and its begin attribute set to '0s; firstSet.end'. The fill attribute + is set to 'freeze'. The first interval should be (0s <= t < 1s), the second (2s <= t < 3s), + the third, (4s <= t < 5s), etc. Between interval, the fill behavior should be applied, + so the red rectangle should stay on the right position and never go to the + left position. +

+

+ On the fourth row, the <set> animation has its dur attribute set to + 1s and its begin attribute set to '0s'. The fill attribute + is set to 'freeze'. The first interval should be (0s <= t < 1s) and there is no + following interval. Because of the fill behavior, the <set> should + apply the last (and only) animation value after 1s. Consequently, the + red rectangle should stay on the right position and never go to the + left position. +

+ + + $RCSfile: animate-elem-70-t.svg,v $ + + + + + + + + + + + + fill + + + fill unspecified (remove) + fill=remove + fill=freeze (with restart) + fill=freeze (no restart) + + + never + here + always + here + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + $Revision: 1.9 $ + + + + + diff --git a/test/W3C_SVG_12_TinyTestSuite_beta/svg/animate-elem-77-t.svg b/test/W3C_SVG_12_TinyTestSuite_beta/svg/animate-elem-77-t.svg new file mode 100755 index 00000000..7a9a6134 --- /dev/null +++ b/test/W3C_SVG_12_TinyTestSuite_beta/svg/animate-elem-77-t.svg @@ -0,0 +1,256 @@ + + + + + + + + + + + +

+ This test demonstrates how <set> elements change text properties on a <text> element. For each of the + text properties being tested, 3 <set> elements are set. The first <set> element acts directly on the + <text> element. The second <set> element acts on a <g> containing children. The third + <set> element acts on an <a> containing children. In each case the test validates that the animated + value set on the <g> and <a> elements is inherited by the <text> element. All the <set> + elements have a begin attribute set to 0s with an offset of 1s after end. So, the animation will apply 1s after + the document is loaded and will repeat every 1s after the animation ends. +

+

+ The first <set> validates the transform property. When applied to the <text> element, the letter A + will be translated to the right every 1s, in the <text> column. When applied to the <g> element, the + letter A inherits the transform value and is translated to the right every 1s, as seen in the <g> column. + When applied to the <a> element, the letter A inherits the transform value and is translated to the right + every 1s, as seen in <a> column. +

+

+ The second <set> validates the text-anchor attribute. When applied to the <text> element, the anchor + position of letter A is moved from start to end. When applied to the <g> and <a> element, the property + is inherited and hence the anchor position of letter A is moved from start to end in the second row. +

+

+ The third <set> validates the font-size attribute. The font size of letter A is changed from 20 to 30. When + applied to <g> and <a> elements, the letter A inherits the font-size and hence in row 3, letter A has + a font-size of 30 in all 3 right columns of row 3. +

+

+ The fourth <set> validates the font-family attribute. The font-family is changed from default to serif. When + applied to <g> and <a> elements, the letter A inherits the font-family attribute and hence in row 4, + letter A has serif font-family in all 3 columns. +

+

+ The fifth <set> validates the font-style attribute. The font-style is changed from normal to italic. When + applied to <g> and <a> elements, the letter A inherits the font-style attribute and hence in row 5, + letter A is animated to italic in all 3 columns. +

+

+ The sixth <set> validates the font-weight attribute. The font-weight is changed from normal to bold. When + applied to <g> and <a> elements, the letter A inherits the font-weight attribute and hence in row 6, + letter A is changed to bold on the right. +

+ + + $RCSfile: animate-elem-77-t.svg,v $ + + + + + + + + + + + A + A + + + + + A + A + + + + + A + A + + + + + A + A + + + + + A + A + + + + + A + A + + + text + + + transform + text-anchor + font-size + font-family + font-style + font-weight + + + <text> + <g> + <a> + + + A + + + + + A + + + + + A + + + + A + + + + + + + A + + + + + + A + + + + + + A + + + + + + + + + A + + + + + + A + + + + + + A + + + + + + + + + A + + + + + + A + + + + + + A + + + + + + + + + A + + + + + + A + + + + + + A + + + + + + + + + A + + + + + + A + + + + + + A + + + + + + + + + $Revision: 1.7 $ + + + + + diff --git a/test/W3C_SVG_12_TinyTestSuite_beta/svg/animate-elem-78-t.svg b/test/W3C_SVG_12_TinyTestSuite_beta/svg/animate-elem-78-t.svg new file mode 100755 index 00000000..392220d2 --- /dev/null +++ b/test/W3C_SVG_12_TinyTestSuite_beta/svg/animate-elem-78-t.svg @@ -0,0 +1,427 @@ + + + + + + + + + + + +

+ This test demonstrates how <set> elements change graphics properties on elements from the 'Basic Shapes' + chapter. For each of the graphics properties being tested, 3 <set> animations are applied. The first <set> + element acts directly on 'Basic Shape' elements. The second <set> element acts on a <g> containing + children. The third <set> element acts on an <a> containing children. In each case the test validates + that the animated value set on the <g> and <a> elements is inherited by the 'Basic Shape' element. All + the <set> elements have a begin attribute set to 0s with an offset of 1s after the end. So, the animation will + apply 1s after the document is loaded and will repeat every 1s after the animation ends. +

+

+ The first <set> validates the fill property, with fill set to orange. When applied directly to the 'Basic + Shape' element, the <rect> fill value will change to orange when it is translated to the right every 1s. + When applied to the <g> and <a> elements, the <rect> inherits the fill value and is orange. +

+

+ The second <set> validates the fill-style property, with fill-style set to evenodd. When applied to the + 'Basic Shape' element, the <polyline> fill-style is changed from nonzero to evenodd. When applied to the + <g> and <a> elements, the <polyline> inherits the evenodd fill-style. +

+

+ The third <set> validates the stroke property. In this case fill is set to none. When stroke is applied + to the 'Basic Shape' element, the <rect> on the right appears with the stroke color. When applied to the + <g> and <a> elements, the <rect> inherits the stroke property. +

+

+ The fourth <set> validates the stroke-width property, with stroke-width set to 4. When stroke-width is + applied to the 'Basic Shape' element, the <line> on the right has a width of 4. When applied to the + <g> and <a> elements, the <line> inherits the stroke-width. +

+

+ The fifth <set> validates the stroke-linecap property, with stroke-linecap set to round. When + stroke-linecap is applied to the 'Basic Shape' element, the <line> stroke-linecap value switches from + butt to round. When applied to the <g> and <a> elements, the <line> inherits the square + stroke-linecap. +

+

+ The sixth <set> validates the stroke-linejoin property, with stroke-linejoin set to bevel. When + stroke-linejoin is applied to the 'Basic Shape' element, the <line> stroke-linejoin value switches + from miter to bevel. When applied to the <g> and <a> elements, the <line> inherits the + bevel stroke-linejoin. +

+

+ The seventh <set> validates the stroke-miterlimit property, with stroke-miterlimit set to 10. When + stroke-miterlimit is applied to the 'Basic Shape' element, the miter-length to stroke-width ratio exceeds + the miter-limit and the <polyline> switches from bevel to miter.When applied to the <g> and + <a> elements,the <line> inherits the stroke-miterlimit. +

+

+ The eighth <set> validates the stroke-dashoffset property, with stroke-dashoffset set to 5.5. When + stroke-dashoffset is applied to the 'Basic Shape' element, the <line> has a different dashing + pattern. When applied to the <g> and <a> elements, the <line> inherits the property. +

+

+ The ninth <set> validates the display property, with display set to none. When display is applied to + the 'Basic Shape' element, the <rect> does not appear on the right. When applied to the <g> and + <a> elements, the <line> inherits the display property and hence is not seen. +

+

+ The tenth <set> validates the visibility property, with visibility set to hidden. When visibility is + applied to the 'Basic Shape' element, the <rect> is hidden on the right. When applied to the + <g> and <a> elements, the <line> inherits the visibility property and hence is not seen. +

+

+ The eleventh <set> validates the color property, with color set to blue. When color is applied to the + 'Basic Shape' element, the <rect> on the right switches from default color of black to blue. When + applied to the <g> and <a> elements, the <line> inherits the color property. +

+ + + $RCSfile: animate-elem-78-t.svg,v $ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + graphics + + + fill + fill-rule + stroke + stroke-width + stroke-linecap + stroke-linejoin + stroke-miterlimit + stroke-dashoffset + display + visibility + color + + + 'Basic Shape' + <g> + <a> + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + $Revision: 1.8 $ + + + + + diff --git a/test/W3C_SVG_12_TinyTestSuite_beta/svg/animate-elem-80-t.svg b/test/W3C_SVG_12_TinyTestSuite_beta/svg/animate-elem-80-t.svg new file mode 100755 index 00000000..952c8254 --- /dev/null +++ b/test/W3C_SVG_12_TinyTestSuite_beta/svg/animate-elem-80-t.svg @@ -0,0 +1,217 @@ + + + + + + + + + + + +

+ This test demonstrates validates the operation of the animateTransform element and validates the operation of + the different type attribute values. +

+

+ There are 5 possible values for the type attribute and there is one animateTransform for each type and two for + the translate type. +

+

+ For each transform type, the test has a corresponding animateTransform. The test uses references to show what + the expected transform should be at different points in the animation. For example, the top left + animateTransform, for type=rotate, shows circular markers which turn orange at the time of corresponding + transform value should be set by the animateTransform. The marker elements show the expected transform value + on reference markers in the test. +

+ + + $RCSfile: animate-elem-80-t.svg,v $ + + + + + + + + + + + + + + + + <animateTransform> + + + + + + + + + + + + + + + + + + + type=rotate + + + + + + + + + + + + + + + type=skewX + + + + + + + + + + + + + + + + + type=skewY + + + + + + + + + + + + + + + + + + type=scale + (sx and sy) + + + + + + + + + + + + + + + + + + + type=rotate + (with cx/cy) + + + + + + + + + + + + + + + + + + + + + type=translate + (tx only) + + + + + + + + + + + + + + + + + + + + + type=translate + (tx and ty) + + + + + + + + + + + + + + + + + + type=scale + (sx only) + + + + + $Revision: 1.8 $ + + + + + diff --git a/test/W3C_SVG_12_TinyTestSuite_beta/svg/animate-elem-81-t.svg b/test/W3C_SVG_12_TinyTestSuite_beta/svg/animate-elem-81-t.svg new file mode 100755 index 00000000..5abfd89c --- /dev/null +++ b/test/W3C_SVG_12_TinyTestSuite_beta/svg/animate-elem-81-t.svg @@ -0,0 +1,126 @@ + + + + + + + + + + + +

+ This test validates the operation of the animateTransform's additive behavior, as described in the SVG 1.1 + specification (see http://www.w3.org/TR/SVG11/animate.html#AnimateTransformElement). +

+

+ The first two rectangles, on the top row, show the effect of the additive attribute on animateTransform. The + left-most animateTransforms have their additive attribute set to replace, so the effect of the two transform + animation is as if only the highest priority one applied because it replaces the underlying value. The second + animateTransforms (from left to right) have their additive attribute set to sum, which means the transforms they + roduce are concatenated. +

+

+ The last two rectangles, on the top row, show the effect of the accumulate attribute on animateTransform. For the + left one (third on the row, from left to right), the accumulate attribute is set to none. There are two repeats for + the animateTransform. Therefore, the transform goes twice from a scale(1,1) to a scale(2,2). For the right-most + animateTransform, the accumulate attribute is set to sum. There are two repeats and the animation goes from scale(1,1) + to scale(2,2) for the first iteration and then from scale(2,2) to scale(4,4) (because the result of the second + iteration is concatenated to the scale(2,2) result of the previous, first iteration). +

+

+ The rectangles on the bottom row show the combination of additive and cumulative behavior. The left rectangle's + animateTransform accumulate behavior is set to none but its additive behavior is set to sum. Therefore, the + transform's underlying value (skewX(30)) is always pre-concatenated to the animateTransform's result, which goes + from "skewX(30) scale(1,1)" to "skewX(30) scale(2,2)" in each of its two iterations. The right rectangle's + animateTransform accumulate behavior is set to sum and the additive behavior is also set to sum. Therefore, the + transform's underlying value is always pre-concatenated, so is the result of previous animation iterations. + Consequently, the transform goes from "skewX(30) scale(1,1)" to "skewX(30) scale(2,2)" for the first iteration + and then from "skewX(30) scale(2,2) scale(1,1)" to "skewX(30) scale(2,2) scale(2,2)" for the second iteration. +

+ + + $RCSfile: animate-elem-81-t.svg,v $ + + + + + + + + + + + + + + + + <animateTransform> + + + + + + + + additive=replace + + + + + + + + additive=sum + + + + + + + accumulate=none + additive=replace + + + + + + + accumulate=sum + additive=replace + + + + + + + accumulate=none + additive=sum + + + + + + + accumulate=sum + additive=sum + + + + + $Revision: 1.8 $ + + + + + diff --git a/test/W3C_SVG_12_TinyTestSuite_beta/svg/animate-elem-82-t.svg b/test/W3C_SVG_12_TinyTestSuite_beta/svg/animate-elem-82-t.svg new file mode 100755 index 00000000..e36a4d42 --- /dev/null +++ b/test/W3C_SVG_12_TinyTestSuite_beta/svg/animate-elem-82-t.svg @@ -0,0 +1,230 @@ + + + + + + + + + + + +

+ This test demonstrates validates the operation of animateTransform with regards to the rotation center and with + regards to paced animation. +

+

+ The following descriptions describe the various animations, going top bottom, left to right. For each animation, + orange rectangle markers show the expected position for the animated rectangle halfway through the animation. The + markers are drawn with a thick stroke for 0.2s, starting at the time when they reflect the expected position. +

+

+ The first animateTransform has type='rotate' and goes from 45 degrees to 90 degrees over a period of 3s. The + rotation center for the from and to values is 0, 0. At 0 seconds, the expected transform should be rotate(45). At + 1.5 seconds, the expected transform is rotate(0.5 * (90 + 45)) = rotate(67.5). At 3s, the expected transform is + rotate(90). +

+

+ The second animateTransform has type='rotate' but has a rotation center that varies between the from and to + values. The rotation goes from rotate(45,0,0) to rotate(90,-15,-15). At 0s, the expected transform is + rotate(45,0,0). At 1.5s, the expected transform is rotate(67.5, -7.5, -7.5). At 3s, the expected transform is + rotate(90, -15, -15). +

+

+ The third animateTransform has type='translate' and calcMode='paced'. The animation goes from translate(-40,40) + to translate(-20,20) to translate(40,-40). At 0s, the expected transform is translate(-40,40). At 1.5s, the + expected transform is translate(0,0). At 3s, the expected transform is translate(40,-40). +

+

+ The fourth animateTransform has type='translate' and calcMode='linear'. The animation goes from translate(-40,40) + to translate(-20,-20) to translate(40,-40). At 0s, the expected transform is translate(-40,40). At 1.5s, the + expected transform is translate(-20,-20). At 3s, the expected transform is translate(40,-40). +

+

+ The fifth animateTransform has type='scale' and calcMode='paced'. The animation goes from scale(1,2) to scale(3,2) + to scale(1,1). The total length along the sx component is 2 + 2 = 4. The total length along the sy component is + 0 + 1 = 1. At 0s, the expected transform is scale(1,2). At 1.5s, the expected transform is scale(3,1.5) so that a + length of 2 has been run on the sx component and a length of 0.5 has been run on the sy component. At 3s, the + expected transform is scale(3,2). +

+

+ The sixth animateTransform has type='scale' and calcMode='linear'. The animation goes from scale(1,2) to scale(3,2) + to scale(1,1). At 0s, the expected transform is scale(1,2). At 1.5s, the expected transform is scale(3,2). At 3s, + the expected transform is scale(1,1). +

+

+ The seventh animateTransform has type="rotate" and calcMode='paced'. The animation goes from rotate(0,0,0) to + rotate(45,-15,-20) to rotate(180,30,50). The total length along the rotation angle component is + (45 - 0) + (180 - 45) = 180. The total length along the rotation center along the x axis is + (0 - (-15)) + (30 - (-15)) = 45 + 15 = 60. The total length along the rotation center along the y axis is + (0 - (-20)) + (50 - (-20)) = 20 + 70 = 90. At 0s, the expected transform is rotate(45,-15,-20). At 1.5s, the + expected transform is rotate(90,0,5) to achieve constant velocity along the rotation angle component, the x-axis + rotation center component and the y-axis rotation center component. At 1.5s, half the distance has been run on + each component. For the rotation angle, this means that 45 has been reached and that 45 more degrees in the + (45 <= r < 180) interval have been consumed. For the x-axis rotation center, this means that 30 units have + been run: the (0 >= x > -15) interval has been fully consumed (15 units long) and 15 units on the + (-15 <= x < 30) interval have been consumed, which explains the computed 0 value. For the y-axis rotation + center, this means that 45 units have been run: the (0 >= y > -20) interval has been fully consumed and 25 + units have been consumed in the (-20 <= y < 50) interval, which explains the computed 5 value. At 3s, the + expected transform is rotate(180,30,50). +

+ + + $RCSfile: animate-elem-82-t.svg,v $ + + + + + + + + + + + + + + + + <animateTransform> + + + + + + + + + + + + + + + same rotation + center + + + + + + + + + + + + + + + different rotation + centers + + + + + + + + + + + + + + + paced translation + + + + + + + + + + + + + + + linear translation + + + + + + + + + + + + + + + paced scale + + + + + + + + + + + + + + + linear scale + + + + + + + + + + + + + + + paced rotation + + + + + + + + + + + + + + + linear rotation + + + + + $Revision: 1.9 $ + + + + + diff --git a/test/W3C_SVG_12_TinyTestSuite_beta/svg/animate-elem-83-t.svg b/test/W3C_SVG_12_TinyTestSuite_beta/svg/animate-elem-83-t.svg new file mode 100755 index 00000000..661f6729 --- /dev/null +++ b/test/W3C_SVG_12_TinyTestSuite_beta/svg/animate-elem-83-t.svg @@ -0,0 +1,168 @@ + + + + + + + + + + + +

This test validates the operation of the animate element on the <path> element's d attribute.

+

+ The following descriptions references to the tests by number. The first test is the one showing on the top left. + The last, sixth test is the one showing at the bottom right. Test numbers are alocated from left to right and + from top to bottom. For each test, there are reference outline markers which show the expected animated shape at + different times in the animation. At the time of the expected shape, the outline of the expected shape is drawn + with a thick stroke for 0.2s so the test user can visually check that the shapes are matching at the expected + times. +

+

+ The first test validates a simple from-to animation on a path's d attribute made of M, C and Z commands where + both the from and to attributes are specified. The attributes are compatible with the path element's d attribute. +

+

+ The second test validates a simple to-animation on a path's d attribute made of M, C and Z commands where the to + attribute is specified. The attribute is compatible with the path element's d attribute. +

+

+ The third test validates a simple values-animation on a path's d attribute made of M, C and Z commands where the + values attribute is specified and specifies three seperate values. The attribute is compatible with the path + element's d attribute. +

+

+ The fourth, fifth and sixth tests validate that interpolation between compatible path values (i.e., path values + which normalize to the compatible values) is supported. +

+

+ The fourth tests interpolation between a path value containing H, V and L commands (in the from value) and a path + value containing compatible h, v and l commands (in the to value). +

+

+ The fifth tests interpolation between a path value containing C and S commands (in the from value) and a path value + containing compatible c and s commands (in the to value). +

+

+ The sixth tests interpolation between a path value containing Q, T and A commands (in the from value) and a path + value containing compatible q, t and a commands (in the to value). +

+ + + $RCSfile: animate-elem-83-t.svg,v $ + + + + + + + + + + + + + + + + <animate> on <path>'s d attribute + + + + + + + + + + + + #1: from-to animation + + + + + + + + + + + + #2: to animation + + + + + + + + + + + + + + + #3: values animation + + + + + + + + + + + + #4: from-to animation + compatible H/h, V/v, + L/l segments + + + + + + + + + + + + #5: from-to animation + compatible C/c + s/S segments + + + + + + + + + + + + #6: from-to animation + compatible Q/q, T/t + segments + + + + + $Revision: 1.9 $ + + + + + diff --git a/test/W3C_SVG_12_TinyTestSuite_beta/svg/animate-elem-84-t.svg b/test/W3C_SVG_12_TinyTestSuite_beta/svg/animate-elem-84-t.svg new file mode 100755 index 00000000..684d4eb6 --- /dev/null +++ b/test/W3C_SVG_12_TinyTestSuite_beta/svg/animate-elem-84-t.svg @@ -0,0 +1,70 @@ + + + + + + + + + + + +

Test animation of color keywords that resolve to animatable RGB values.

+

+ Five black squares are shown. After two seconds, all five squares should turn red and then smoothly animate the + fill color to green over the next five seconds. +

+ + + $RCSfile: animate-elem-84-t.svg,v $ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + currentColor + green + inherit + + + + + $Revision: 1.7 $ + + + + + diff --git a/test/W3C_SVG_12_TinyTestSuite_beta/svg/animate-elem-85-t.svg b/test/W3C_SVG_12_TinyTestSuite_beta/svg/animate-elem-85-t.svg new file mode 100755 index 00000000..7a025590 --- /dev/null +++ b/test/W3C_SVG_12_TinyTestSuite_beta/svg/animate-elem-85-t.svg @@ -0,0 +1,69 @@ + + + + + + + + + + + +

All four rectangles at the top must smoothly animate from black to green over 5 seconds.

+

+ During this time the bottom two rectangles must be red. Then, the bottom two rectangles must smoothly animate + from green( at five seconds), through khaki (at 7.5 seconds), to yellow (at 10 seconds and above). Colored + circles indicate the appropriate colors at these times. +

+ + + $RCSfile: animate-elem-85-t.svg,v $ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + $Revision: 1.8 $ + + + + + diff --git a/test/W3C_SVG_12_TinyTestSuite_beta/svg/animate-elem-86-t.svg b/test/W3C_SVG_12_TinyTestSuite_beta/svg/animate-elem-86-t.svg new file mode 100755 index 00000000..0e9dcadc --- /dev/null +++ b/test/W3C_SVG_12_TinyTestSuite_beta/svg/animate-elem-86-t.svg @@ -0,0 +1,103 @@ + + + + + + + + + + + +

+ This test tests fill="freeze" for the case where the duration has been constrained by an 'end' attribute + and calcMode="discrete". +

+

+ The correct behaviour is defined by the SMIL time interval model. + Time intervals created by the test case from implicit begin, dur and calcMode discrete: +

+
    +
  • + [0;2s) This means time including 0 seconds until (but not including) time 2 seconds +
  • +
  • + [2s;4s) Time including time 2 seconds until (but not including) time 4 seconds +
  • +
+

+ Time intervals created by implicit begin and end: +

+
    +
  • [0;2s)
  • +
+

+ Therefore the frozen value will be 74, resulting in the purple fill + being in the right rectangle after 0 seconds. +

+

+ The test has passed if the purple fill is on the right rect only after 0 seconds. + Fill must never be set to purple on the left rect, except for before the animation has begun. +

+ + + $RCSfile: animate-elem-86-t.svg,v $ + + + + + + + + + + fill="freeze" with discrete calcMode + + + + + discrete + + + + never + >= 0s + + + + + + + + + + + + + + + + + + + + + $Revision: 1.8 $ + + + + + diff --git a/test/W3C_SVG_12_TinyTestSuite_beta/svg/conf-reader-201-t.svg b/test/W3C_SVG_12_TinyTestSuite_beta/svg/conf-reader-201-t.svg new file mode 100755 index 00000000..1cf19e12 --- /dev/null +++ b/test/W3C_SVG_12_TinyTestSuite_beta/svg/conf-reader-201-t.svg @@ -0,0 +1,153 @@ + + + + + + + + + + + +

+ This test checks that namespace prefixes are handled correctly. +

+

+ First, a random 20-character string is generated. The string only contains characters that are valid NCName letters. + This string is then used as a custom prefix for an 'href' attribute in the XLink namespace. + An 'image' element is created and two image references are added, one is in the "http://www.this.is.not.an/xlink" namespace, + and one is in the XLink namespace. Only the attribute with the 20-character prefix is actually in the XLink namespace, + which means that that link should be the one that is used when rendering the 'image' element. This first subtest is + using the setAttributeNS method. +

+

+ The second subtest generates a new prefix string, and makes sure it's not equal to the first prefix string. + Then an svg fragment is generated as a string, to be parsed by a call to the parseXML method. + The 'xlink' prefix is bound to the "http://example.net/bar" namespace, and the generated prefix is bound to the XLink namespace. + Similar to the first subtest, the image has two references but only one attribute is actually in the XLink namespace. + The fragment is parsed and the result is inserted into the document, which should make the 'image' element visible. + If an exception is thrown during the parsing or the insertion of the result output will be shown in the status part of the testcase. +

+

+ The testcase has passed if after the script execution has taken place these conditions are met: +

    +
  • There are two pink images visible.
  • +
  • None of these two images shows the word "Fail"
  • +
  • The status message says "No exceptions"
  • +
+

+ + + $RCSfile: conf-reader-201-t.svg,v $ + + + + + + + + + + + + + Generated prefix 1: ... + + + Generated prefix 2: ... + + + Status: No exceptions. + + + + + + + + test(); + + + + $Revision: 1.5 $ + + + + + \ No newline at end of file diff --git a/test/W3C_SVG_12_TinyTestSuite_beta/svg/coords-constr-201-t.svg b/test/W3C_SVG_12_TinyTestSuite_beta/svg/coords-constr-201-t.svg new file mode 100755 index 00000000..1c744be5 --- /dev/null +++ b/test/W3C_SVG_12_TinyTestSuite_beta/svg/coords-constr-201-t.svg @@ -0,0 +1,69 @@ + + + + + + + + + + + +

+ Test Constrained Transformations + There are three lines of text in this test. + The first is not constrained. + The second is constrained with a x and y offset. + The third is constrained. + The test will pass if, after applying user agent transforms, the circles behave as defined. + The test will pass if the three circles align vertically. + The reference image displays the file after performing a user agent zoom. +

+ + + $RCSfile: coords-constr-201-t.svg,v $ + + + + + + + + + + + + Constrained Transformations + + + + Can be panned, rotated and scaled by the user agent transform. + + + + Cannot be transformed by the user agent transform. + + + + Cannot be transformed by the user agent transform. + + + + $Revision: 1.5 $ + + + + + diff --git a/test/W3C_SVG_12_TinyTestSuite_beta/svg/coords-constr-202-t.svg b/test/W3C_SVG_12_TinyTestSuite_beta/svg/coords-constr-202-t.svg new file mode 100755 index 00000000..0e32e297 --- /dev/null +++ b/test/W3C_SVG_12_TinyTestSuite_beta/svg/coords-constr-202-t.svg @@ -0,0 +1,71 @@ + + + + + + + + + + + +

+ Test Constrained Transformations + There are three lines of text in this test. + The first is not constrained. + The second is constrained with a x and y offset. + The third is constrained. + An animation is applied to the viewBox attribute. + The test will pass if the circles are affected by the viewBox animation and, after applying user agent transforms, the circles behave as defined. + The test will pass if the three circles align vertically. +

+ + + $RCSfile: coords-constr-202-t.svg,v $ + + + + + + + + + + + + Constrained Transformations + Animation of the viewBox. Nothing should be constrained during the animation. + + + + Can be panned, rotated and scaled by the user agent transform. + + + + Cannot be transformed by the user agent transform. + + + + Cannot be transformed by the user agent transform. + + + + + $Revision: 1.5 $ + + + + + diff --git a/test/W3C_SVG_12_TinyTestSuite_beta/svg/coords-constr-203-t.svg b/test/W3C_SVG_12_TinyTestSuite_beta/svg/coords-constr-203-t.svg new file mode 100755 index 00000000..254da470 --- /dev/null +++ b/test/W3C_SVG_12_TinyTestSuite_beta/svg/coords-constr-203-t.svg @@ -0,0 +1,76 @@ + + + + + + + + + + + +

+ Test Constrained Transformations + There are three lines of text in this test. + The first is not constrained. + The second is constrained with a x and y offset. + The third is constrained. + An animation is applied to the content group. + The test will pass if only the first circle is affected by the group animation and, after applying user agent transforms, the circles behave as defined. + The test will pass if the three circles align vertically. +

+ + + $RCSfile: coords-constr-203-t.svg,v $ + + + + + + + + + + + + Constrained Transformations + Animation of the slide's body. Only the first line should be moving during the animation. + + + + Can be panned, rotated and scaled by the user agent transform. + + + + Cannot be transformed by the user agent transform. + + + + Cannot be transformed by the user agent transform. + + + + + + + + + $Revision: 1.5 $ + + + + + + diff --git a/test/W3C_SVG_12_TinyTestSuite_beta/svg/coords-constr-204-t.svg b/test/W3C_SVG_12_TinyTestSuite_beta/svg/coords-constr-204-t.svg new file mode 100755 index 00000000..33afd96b --- /dev/null +++ b/test/W3C_SVG_12_TinyTestSuite_beta/svg/coords-constr-204-t.svg @@ -0,0 +1,56 @@ + + + + + + + + + + + +

+ Animates a rect that has transform="ref" and tests that the animateMotion transform is supplemental. + The rects should follow a path diagonally from top-left to bottom-right. + The test is passed if a single green rectangle is visible across the screen if a red rectangle is seen + the test is failed. +

+ + + $RCSfile: coords-constr-204-t.svg,v $ + + + + + + + + + + + + + + + + + + + $Revision: 1.5 $ + + + + + diff --git a/test/W3C_SVG_12_TinyTestSuite_beta/svg/coords-coord-01-t.svg b/test/W3C_SVG_12_TinyTestSuite_beta/svg/coords-coord-01-t.svg new file mode 100755 index 00000000..72d15dee --- /dev/null +++ b/test/W3C_SVG_12_TinyTestSuite_beta/svg/coords-coord-01-t.svg @@ -0,0 +1,51 @@ + + + + + + + + + + + +

Tests the default initial coordinate system used by renderer. Should be 0,0 if not specified.This is illustrated by comparing red boxes that are missing a coordinate or all coordinates with yellow boxes that have the correct coordinates specified. This test should produce three red boxes, with small yellow boxes rendered on top of them. These boxes should be placed along the origin, and x and y axis.

+ + + $RCSfile: coords-coord-01-t.svg,v $ + + + + + + + + + + + + + + + + + + + + + + + + + + $Revision: 1.6 $ + + + + + diff --git a/test/W3C_SVG_12_TinyTestSuite_beta/svg/coords-pAR-201-t.svg b/test/W3C_SVG_12_TinyTestSuite_beta/svg/coords-pAR-201-t.svg new file mode 100755 index 00000000..cf307885 --- /dev/null +++ b/test/W3C_SVG_12_TinyTestSuite_beta/svg/coords-pAR-201-t.svg @@ -0,0 +1,135 @@ + + + + + + + + "> + "> + "> +]> + + + + + + + + + + +

+ This test verifies the implementation of the viewBox and the preserveAspectRatio attribute on the animation element. + It exercises the various preserveAspectRatio values and uses a general entity definition in order to make reading of the SVG source easier. +

+

+ For the test to pass the following criteria should be met: +

+
    +
  1. the xMin* test image left edge should be on the left edge of the blue viewport rect
  2. +
  3. the xMid* test image should be centered in the blue viewport rect
  4. +
  5. the xMax* test image right edge should be on the right edge of the blue viewport rect
  6. +
  7. the yMin* test image top edge should be on the top edge of the blue viewport rect
  8. +
  9. the yMid* test image should be centered in the blue viewport rect
  10. +
  11. the yMax* test image bottom edge should be on the bottom edge of the blue viewport rect
  12. +
  13. no part of the image may be clipped away
  14. +
+ + + $RCSfile: coords-pAR-201-t.svg,v $ + + + + + + + + + + Example PreserveAspectRatio - demonstrate available options + Test available options of preserveAspectRatio + SVG to fit + &Smile; + Viewport 1 + &Viewport1; + Viewport 2 + &Viewport2; + + ---------- meet -------------------- + + xMin*&Viewport1; + + + + xMid*&Viewport1; + + + + xMax*&Viewport1; + + + + + ---------- meet ------------------------ + + *YMin&Viewport2; + + + + *YMid&Viewport2; + + + + *YMax&Viewport2; + + + + + ---------- defer ------------------------- + + xMin*&Viewport2; + + + + xMid*&Viewport2; + + + + xMax*&Viewport2; + + + + + ---------- defer --------------------- + + *YMin&Viewport1; + + + + *YMid&Viewport1; + + + + *YMax&Viewport1; + + + + + + + $Revision: 1.5 $ + + + + + diff --git a/test/W3C_SVG_12_TinyTestSuite_beta/svg/coords-trans-01-t.svg b/test/W3C_SVG_12_TinyTestSuite_beta/svg/coords-trans-01-t.svg new file mode 100755 index 00000000..e74f5ff1 --- /dev/null +++ b/test/W3C_SVG_12_TinyTestSuite_beta/svg/coords-trans-01-t.svg @@ -0,0 +1,223 @@ + + + + + + + + + + + +

This test verifies the implementation of transforms. It tests elementary transforms and transform nesting. Note that for layout purposes, this test uses nesting of translation with the elementary transforms.

+

The rendered picture should match the reference image exactly except for variations in the labeling text.

+

The test uses the rect element, the fill color (solid primary colors) and transforms.

+ + + $RCSfile: coords-trans-01-t.svg,v $ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + translate (50, 50) + + + + + rotate(-90) + + + + + skew x (45) + + + + + skew y (45) + + + + + scale (2) + + + + + + + + + + + + + + + + + + + + + + + + + + + scale(25, 95) and translate(2, 2) + + + + + scale(25, 95) then translate(2, 2) + + + + + + + + + + + $Revision: 1.10 $ + + + + + diff --git a/test/W3C_SVG_12_TinyTestSuite_beta/svg/coords-trans-02-t.svg b/test/W3C_SVG_12_TinyTestSuite_beta/svg/coords-trans-02-t.svg new file mode 100755 index 00000000..b9eeca6c --- /dev/null +++ b/test/W3C_SVG_12_TinyTestSuite_beta/svg/coords-trans-02-t.svg @@ -0,0 +1,86 @@ + + + + + + + + + + + +

This test verifies the implementation of transforms. It tests elementary transforms and transform nesting. Note that for layout purposes, this test uses nesting of translation with the elementary transforms.

+

The rendered picture should match the reference image exactly except for variations in the labeling text.

+

The test uses the rect element, the fill color (solid primary colors) and transforms.

+ + + $RCSfile: coords-trans-02-t.svg,v $ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + translate (50, 50) + + + + + rotate(-90) + + + + + + + + + + $Revision: 1.10 $ + + + + + diff --git a/test/W3C_SVG_12_TinyTestSuite_beta/svg/coords-trans-03-t.svg b/test/W3C_SVG_12_TinyTestSuite_beta/svg/coords-trans-03-t.svg new file mode 100755 index 00000000..1b563471 --- /dev/null +++ b/test/W3C_SVG_12_TinyTestSuite_beta/svg/coords-trans-03-t.svg @@ -0,0 +1,83 @@ + + + + + + + + + + + +

This test verifies the implementation of transforms. It tests elementary transforms and transform nesting. Note that for layout purposes, this test uses nesting of translation with the elementary transforms.

+

The rendered picture should match the reference image exactly except for variations in the labeling text.

+

The test uses the rect element, the fill color (solid primary colors) and transforms.

+ + + $RCSfile: coords-trans-03-t.svg,v $ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + skew x (45) + + + + + skew y (45) + + + + + + + + + + + $Revision: 1.9 $ + + + + + diff --git a/test/W3C_SVG_12_TinyTestSuite_beta/svg/coords-trans-04-t.svg b/test/W3C_SVG_12_TinyTestSuite_beta/svg/coords-trans-04-t.svg new file mode 100755 index 00000000..b4baad8f --- /dev/null +++ b/test/W3C_SVG_12_TinyTestSuite_beta/svg/coords-trans-04-t.svg @@ -0,0 +1,72 @@ + + + + + + + + + + + +

This test verifies the implementation of transforms. It tests elementary transforms and transform nesting. Note that for layout purposes, this test uses nesting of translation with the elementary transforms.

+

The rendered picture should match the reference image exactly except for variations in the labeling text.

+

The test uses the rect element, the fill color (solid primary colors) and transforms.

+ + + $RCSfile: coords-trans-04-t.svg,v $ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + scale (2) + + + + + + + + + + $Revision: 1.9 $ + + + + + diff --git a/test/W3C_SVG_12_TinyTestSuite_beta/svg/coords-trans-05-t.svg b/test/W3C_SVG_12_TinyTestSuite_beta/svg/coords-trans-05-t.svg new file mode 100755 index 00000000..30d53f8b --- /dev/null +++ b/test/W3C_SVG_12_TinyTestSuite_beta/svg/coords-trans-05-t.svg @@ -0,0 +1,72 @@ + + + + + + + + + + + +

This test verifies the implementation of transforms. It tests elementary transforms and transform nesting. Note that for layout purposes, this test uses nesting of translation with the elementary transforms.

+

The rendered picture should match the reference image exactly except for variations in the labeling text.

+

The test uses the rect element, the fill color (solid primary colors) and transforms.

+ + + $RCSfile: coords-trans-05-t.svg,v $ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + scale(25, 95) - translate(2, 2) + + + + + + + + + + + $Revision: 1.9 $ + + + + + diff --git a/test/W3C_SVG_12_TinyTestSuite_beta/svg/coords-trans-06-t.svg b/test/W3C_SVG_12_TinyTestSuite_beta/svg/coords-trans-06-t.svg new file mode 100755 index 00000000..e5aeffdb --- /dev/null +++ b/test/W3C_SVG_12_TinyTestSuite_beta/svg/coords-trans-06-t.svg @@ -0,0 +1,66 @@ + + + + + + + + + + + +

This test verifies the implementation of transforms. It tests elementary transforms and transform nesting. Note that for layout purposes, this test uses nesting of translation with the elementary transforms.

+

The rendered picture should match the reference image exactly except for variations in the labeling text.

+

The test uses the rect element, the fill color (solid primary colors) and transforms.

+ + + $RCSfile: coords-trans-06-t.svg,v $ + + + + + + + + + + + + + + + + + + + + + + + + + scale(25, 95) then translate(2, 2) + + + + + + + + + + + $Revision: 1.10 $ + + + + + diff --git a/test/W3C_SVG_12_TinyTestSuite_beta/svg/coords-trans-07-t.svg b/test/W3C_SVG_12_TinyTestSuite_beta/svg/coords-trans-07-t.svg new file mode 100755 index 00000000..54fd5b1c --- /dev/null +++ b/test/W3C_SVG_12_TinyTestSuite_beta/svg/coords-trans-07-t.svg @@ -0,0 +1,65 @@ + + + + + + + + + + + +

+ This test verifies the implementation of transforms. It tests elementary transforms + and transform nesting. + Note that for layout purposes, this test uses nesting of translation with the elementary transforms. +

+

+ The rendered picture should match the reference image exactly except for variations in the labeling text. +

+

+ The test uses the rect element, the fill color (solid primary colors) and transforms. +

+ + + $RCSfile: coords-trans-07-t.svg,v $ + + + + + + + + + + + + + + rotate+translate + + + + + + translate+rotate + + + $Revision: 1.4 $ + + + + + diff --git a/test/W3C_SVG_12_TinyTestSuite_beta/svg/coords-trans-08-t.svg b/test/W3C_SVG_12_TinyTestSuite_beta/svg/coords-trans-08-t.svg new file mode 100755 index 00000000..e6fe687e --- /dev/null +++ b/test/W3C_SVG_12_TinyTestSuite_beta/svg/coords-trans-08-t.svg @@ -0,0 +1,70 @@ + + + + + + + + + + + +

+ This test verifies the implementation of transforms. It tests elementary transforms + and transform nesting. + Note that for layout purposes, this test uses nesting of translation with the elementary transforms. +

+

+ The rendered picture should match the reference image exactly except for variations in the labeling text. +

+

+ This test will check if the transfomations performed are carried out in the proper order. The result should differ depending on which transformation comes first. +

+ + + $RCSfile: coords-trans-08-t.svg,v $ + + + + + + + + + + + + + + + + skewX(45)+skewY(45) + + + + + + + + + skewY(45)+skewX(45) + + + $Revision: 1.4 $ + + + + + diff --git a/test/W3C_SVG_12_TinyTestSuite_beta/svg/coords-trans-09-t.svg b/test/W3C_SVG_12_TinyTestSuite_beta/svg/coords-trans-09-t.svg new file mode 100755 index 00000000..3cae39b7 --- /dev/null +++ b/test/W3C_SVG_12_TinyTestSuite_beta/svg/coords-trans-09-t.svg @@ -0,0 +1,96 @@ + + + + + + + + + + + +

+ This test verifies the implementation of transforms. It tests elementary transforms + and transform nesting. + Note that for layout purposes, this test uses nesting of translation with the elementary transforms. +

+

+ The rendered picture should match the reference image exactly except for variations in the labeling text. +

+

+ This test will check if the various matrix operations work +

+ + + $RCSfile: coords-trans-09-t.svg,v $ + + + + + + + + + + + + + + matrix(0 0 0 0 0 0) + + + + + + matrix(1 0 0 1 100 100) + + + + + + matrix(1.5 0 0 1.5 70 60) + + + + + + matrix(1 0 0.5 1 30 170) + + + + + + matrix(1 0.5 0 1 100 200) + + + + + + matrix(0 1 -1 0 450 0) + + + + + + matrix(1 0.8 0.8 1 300 220) + + + + $Revision: 1.4 $ + + + + + diff --git a/test/W3C_SVG_12_TinyTestSuite_beta/svg/coords-units-01-t.svg b/test/W3C_SVG_12_TinyTestSuite_beta/svg/coords-units-01-t.svg new file mode 100755 index 00000000..43a67588 --- /dev/null +++ b/test/W3C_SVG_12_TinyTestSuite_beta/svg/coords-units-01-t.svg @@ -0,0 +1,111 @@ + + + + + + + + + + + +

+ Verify the conversion processing of percentage and fraction values relative to object bounding boxes. + This is used when defining linear and radial gradients. +

+

+ The test validates conversion for coordinates, width, height and length. The first test defines two + corresponding linear gradients, which specify coordinates using fractions for the first and user + coordinates for the second. The second test defines two corresponding radial gradients, which specify + a length (radius) using fractions for the first and user space for the second. +

+

+ The rendered image should match the reference image. +

+

+ The test also assumes that linear and radial gradients are implemented. +

+ + + $RCSfile: coords-units-01-t.svg,v $ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + Bounding box relative coordinates + + + + + + Fraction + User Space + + + + + + + + + + + + + + + + + + + + Bounding box relative length (percentage and fraction) + + + + Fraction + User Space + + + + + $Revision: 1.10 $ + + + + + diff --git a/test/W3C_SVG_12_TinyTestSuite_beta/svg/coords-viewattr-05-t.svg b/test/W3C_SVG_12_TinyTestSuite_beta/svg/coords-viewattr-05-t.svg new file mode 100755 index 00000000..ad99a8ff --- /dev/null +++ b/test/W3C_SVG_12_TinyTestSuite_beta/svg/coords-viewattr-05-t.svg @@ -0,0 +1,90 @@ + +"> + "> +]> + + + + + + + + + + +

+ This test verifies the implementation of the preserveAspectRatio attribute on <image> referencing raster content. + This is a modified version of the sample file included in the SVG specification. It exercises the various preserveAspectRatio + values and uses a general entity definition in order to make reading of the SVG source easier. +

+

The rendered picture should match the reference image exactly except for variations in the labeling text.

+ + + $RCSfile: coords-viewattr-05-t.svg,v $ + + + + + + + + + + Example PreserveAspectRatio - demonstrate available options + Test options of preserveAspectRatio on an image element + Raster to fit + + + + Viewport 1 + &Viewport1; + Viewport 2 + &Viewport2; + + ---------- meet -------------------- + + xMin*&Viewport1; + + + + xMid*&Viewport1; + + + + xMax*&Viewport1; + + + + + ---------- meet ------------------------ + + *YMin&Viewport2; + + + + *YMid&Viewport2; + + + + *YMax&Viewport2; + + + + + + + $Revision: 1.12 $ + + + + + diff --git a/test/W3C_SVG_12_TinyTestSuite_beta/svg/extend-namespace-02-t.svg b/test/W3C_SVG_12_TinyTestSuite_beta/svg/extend-namespace-02-t.svg new file mode 100755 index 00000000..3abe7c88 --- /dev/null +++ b/test/W3C_SVG_12_TinyTestSuite_beta/svg/extend-namespace-02-t.svg @@ -0,0 +1,212 @@ + + + + + + + + + + + +

Test mixing a business data namespace with elements in SVG namespace.

+

+ The test case uses a different namespace to hold fake sales data. Using ECMAScript to make calls to the DOM, + the test case extracts the sales data and then makes calls to the SVG DOM to build up a 'path' element and a + 'text' element for each individual pie slice. +

+

+ The result should show five pie slices. The first pie slice should be exploded, with a pink fill and a blue border. + The other pie slices should have various levels of gray fill and black borders. The name of each region should + appear in black towards the center of the pie slice. +

+ + + $RCSfile: extend-namespace-02-t.svg,v $ + + + + + + + + + + + onLoad(evt); + + + + + + + + + + East + 3 + + + North + 4 + + + West + 5 + + + Central + 3.2 + + + South + 6 + + + Pie chart built from data in a different namespace. + + + Pie chart is built within this 'g' element + + + + $Revision: 1.9 $ + + + + + + DRAFT + + diff --git a/test/W3C_SVG_12_TinyTestSuite_beta/svg/fonts-desc-02-t.svg b/test/W3C_SVG_12_TinyTestSuite_beta/svg/fonts-desc-02-t.svg new file mode 100755 index 00000000..0bbd8678 --- /dev/null +++ b/test/W3C_SVG_12_TinyTestSuite_beta/svg/fonts-desc-02-t.svg @@ -0,0 +1,99 @@ + + + + + + + + + + + +

This tests the behaviour of CSS font matching based on font-variant attribute.

+

The first line of text should be 'square' 'triangle'. The small-caps font should match the second text element.

+

The second line of text should be 'square' 'triangle'. The second line is used to ensure that the order of font specification does not effect the selection of these fonts.

+

The third line of text should be 'square', 'diamond', 'square', 'diamond'. This shows that the correct font is selected when a font in the list does not support the variant required. Note that the fonts provide no x-height so scaling (allowed by CSS) cannot be used to simulate a small cap from a regular font.

+

The last line of test can be 'square', 'a', 'a' (from a fallback font), 'diamond'. The first 'a' can be replaced with a smallcaps 'A', if there is a smallcaps font installed or if synthesis is supported.

+ + + $RCSfile: fonts-desc-02-t.svg,v $ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + a + a + + a + a + + a + a + a + a + + a + a + a + a + + + + $Revision: 1.6 $ + + + + + diff --git a/test/W3C_SVG_12_TinyTestSuite_beta/svg/fonts-elem-01-t.svg b/test/W3C_SVG_12_TinyTestSuite_beta/svg/fonts-elem-01-t.svg new file mode 100755 index 00000000..29fe2a00 --- /dev/null +++ b/test/W3C_SVG_12_TinyTestSuite_beta/svg/fonts-elem-01-t.svg @@ -0,0 +1,94 @@ + + + + + + + + + + + +

This is a basic test for embedded SVG fonts. The font "Comic Sans" (available from Microsoft) has been converted into an SVG font and embedded in the SVG file. The test contains two text areas, each with the character string "AyÖ@ç" drawn at the same font size.

+

The upper area contains the glyphs from the embedded font placed in the SVG file as path elements. Each glyph is placed at the location it would be if rendered using normal text rendering (ie. the horizontal advance between characters has been preserved).

+

The lower area contains the text string rendered using the embedded SVG font. It should appear exactly the same as the upper text area, ie. font size, character baseline and horizontal advance should be the same.

+ + + $RCSfile: fonts-elem-01-t.svg,v $ + + + + + + + + + + + + + + + + + + + + + + + + + + Basic SVG font element + + + + + Placed Glyphs + + + + + + + + + + + + + + + + + + + + + + + + + + SVG Font + + + AyÖ@ç + + + + $Revision: 1.8 $ + + + + + diff --git a/test/W3C_SVG_12_TinyTestSuite_beta/svg/fonts-elem-02-t.svg b/test/W3C_SVG_12_TinyTestSuite_beta/svg/fonts-elem-02-t.svg new file mode 100755 index 00000000..84ae669b --- /dev/null +++ b/test/W3C_SVG_12_TinyTestSuite_beta/svg/fonts-elem-02-t.svg @@ -0,0 +1,102 @@ + + + + + + + + + + + +

This is an accuracy test for embedded SVG fonts. The font "Comic Sans" (available from Microsoft) has been converted into an SVG font and embedded in the SVG file. The test contains two text areas, each with the character string "AyÖ@ç" drawn at the same font size.

+

The upper area has the placed glyphs as path elements filled with white over a solid black background (creating a white cutout). The embedded SVG font text is then drawn over the cutout. An implementation that passes this test should completely fill the cutout, leaving a solid black area (some slight antialiasing effects may remain).

+

The lower area is the reverse of the upper area, with the placed black glyphs filling the cutout created by white SVG font text. An implementation that passes this test should completely fill the cutout, leaving a solid black area (some slight antialiasing effects may remain).

+ + + $RCSfile: fonts-elem-02-t.svg,v $ + + + + + + + + + + + + + + + + + + + + + + + + + + SVG font element accuracy + + SVG over Glyphs + + + + + + + + + + + + + + + + + + + AyÖ@ç + + Glyphs over SVG + + AyÖ@ç + + + + + + + + + + + + + + + + + + + + + $Revision: 1.8 $ + + + + + diff --git a/test/W3C_SVG_12_TinyTestSuite_beta/svg/fonts-elem-03-t.svg b/test/W3C_SVG_12_TinyTestSuite_beta/svg/fonts-elem-03-t.svg new file mode 100755 index 00000000..b535be1c --- /dev/null +++ b/test/W3C_SVG_12_TinyTestSuite_beta/svg/fonts-elem-03-t.svg @@ -0,0 +1,85 @@ + + + + + + + + + + + +

This is a basic test for external SVG fonts. The font "Comic Sans" (available from Microsoft) has been converted into an SVG font and placed in an external SVG file referenced by a font-face-src element. The test contains two text areas, each with the character string "AyÖ@ç" drawn at the same font size.

+

The upper area contains the glyphs from the font placed in the SVG file as path elements. Each glyph is placed at the location it would be if rendered using normal text rendering (ie. the horizontal advance between characters has been preserved).

+

The lower area contains the text string rendered using the external SVG font. It should appear exactly the same as the upper text area, ie. font size, character baseline and horizontal advance should be the same.

+ + + $RCSfile: fonts-elem-03-t.svg,v $ + + + + + + + + + + + + + + + + + External SVG font element (xml) + + + + + Placed Glyphs + + + + + + + + + + + + + + + + + + + + + + + + + + SVG Font + + + AyÖ@ç + + + + $Revision: 1.7 $ + + + + + diff --git a/test/W3C_SVG_12_TinyTestSuite_beta/svg/fonts-elem-06-t.svg b/test/W3C_SVG_12_TinyTestSuite_beta/svg/fonts-elem-06-t.svg new file mode 100755 index 00000000..e19a2288 --- /dev/null +++ b/test/W3C_SVG_12_TinyTestSuite_beta/svg/fonts-elem-06-t.svg @@ -0,0 +1,88 @@ + + + + + + + + + + + +

This test validates that the font element's horiz-adv-x is used as the default glyph's advance when there is no glyph advance specified. All fonts have a units-per-em of 1000.

+

The first row shows a layout with a default adavance of 1000. Glyphs have no advance so the 1000 default should be used.

+

The second row shows a layout with a default adavance of 2000. Glyphs have no advance so the 2000 default should be used.

+

The last row shows a layout with a default adavance of 0. Glyphs have a specified advance so the 0 default should be ignored.

+

Reference blue markers show the expected glyph positions.

+ + + $RCSfile: fonts-elem-06-t.svg,v $ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + <font> horiz-adv-x + + + horiz-adv-x=1000 + + + 12 + + + horiz-adv-x=2000 + + + 12 + + + horiz-adv-x=1000 but ignored + + + 12 + + + + + $Revision: 1.6 $ + + + + + diff --git a/test/W3C_SVG_12_TinyTestSuite_beta/svg/fonts-glyph-02-t.svg b/test/W3C_SVG_12_TinyTestSuite_beta/svg/fonts-glyph-02-t.svg new file mode 100755 index 00000000..c1213b16 --- /dev/null +++ b/test/W3C_SVG_12_TinyTestSuite_beta/svg/fonts-glyph-02-t.svg @@ -0,0 +1,68 @@ + + + + + + + + + + + +

The first subtest tests the arabic-form attribute and should produce a 'downward triangle', a 'space', a 'square', a 'diamond' and then an 'upward triangle' in this order. Remembering that arabic text is right to left.

+

The second subtest is the same, but with glyphs for the letter khah. It should match the reference image.

+ + + $RCSfile: fonts-glyph-02-t.svg,v $ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + ښ ښښښ + + + + خ خخخ + + + + $Revision: 1.6 $ + + + + + diff --git a/test/W3C_SVG_12_TinyTestSuite_beta/svg/fonts-glyph-03-t.svg b/test/W3C_SVG_12_TinyTestSuite_beta/svg/fonts-glyph-03-t.svg new file mode 100755 index 00000000..e97e52f5 --- /dev/null +++ b/test/W3C_SVG_12_TinyTestSuite_beta/svg/fonts-glyph-03-t.svg @@ -0,0 +1,62 @@ + + + + + + + + + + + +

+ This files tests the lang attribute support of the glyph element. The test should produce an upward-triangle for the first (en) test element and a square for the second (fr) and third + (fr-ca) text element. In the third case, a glyph for fr is also suitable for a more specific language text fr-ca. In the fourth case, no suitable language specific or general glyph is + provided by the test so a fallback font for the letter 'a' should be used. A triangle or square must not be displayed in the fourth case. +

+ + + $RCSfile: fonts-glyph-03-t.svg,v $ + + + + + + + + + + + + + + + + + + + + a + + a + + a + + a + + + + $Revision: 1.6 $ + + + + + diff --git a/test/W3C_SVG_12_TinyTestSuite_beta/svg/fonts-glyph-04-t.svg b/test/W3C_SVG_12_TinyTestSuite_beta/svg/fonts-glyph-04-t.svg new file mode 100755 index 00000000..45df4fdb --- /dev/null +++ b/test/W3C_SVG_12_TinyTestSuite_beta/svg/fonts-glyph-04-t.svg @@ -0,0 +1,50 @@ + + + + + + + + + + + +

This tests that glyph selection is done in the order in the definition of the font element. The first line of text should be represented by two triangles and an 'l'. The second line should be represented by a square.

+ + + $RCSfile: fonts-glyph-04-t.svg,v $ + + + + + + + + + + + + + + + + + + + + + ffl + ffl + + + $Revision: 1.6 $ + + + + + diff --git a/test/W3C_SVG_12_TinyTestSuite_beta/svg/fonts-glyph-201-t.svg b/test/W3C_SVG_12_TinyTestSuite_beta/svg/fonts-glyph-201-t.svg new file mode 100755 index 00000000..4be73c31 --- /dev/null +++ b/test/W3C_SVG_12_TinyTestSuite_beta/svg/fonts-glyph-201-t.svg @@ -0,0 +1,174 @@ + + + + + + + + + + + +

+ Test that ligatures are always used, and only used, when they occur before the + glyphs for characters they are ligatures of. The word "fjord" is displayed twice; + the top one must use the fj ligature and the bottom one must not; the top of the letter f overlaps the + dot of the letter i.. +

+

+ Two fonts are defined, almost identical; in one the fj ligature is the + first glyph defined, in the second one it is the last glyph. +

+ + + $RCSfile: fonts-glyph-201-t.svg,v $ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + fjord + fjord + + The Fjord fonts + are derived from + Gladiator + by Bert Bos + and are used + by kind permission. + + + + + + $Revision: 1.5 $ + + + + + \ No newline at end of file diff --git a/test/W3C_SVG_12_TinyTestSuite_beta/svg/fonts-glyph-202-t.svg b/test/W3C_SVG_12_TinyTestSuite_beta/svg/fonts-glyph-202-t.svg new file mode 100755 index 00000000..49562235 --- /dev/null +++ b/test/W3C_SVG_12_TinyTestSuite_beta/svg/fonts-glyph-202-t.svg @@ -0,0 +1,175 @@ + + + + + + + + + + + +

+ Test that ligatures are always used, and only used, when they occur before the + glyphs for characters they are ligatures of. The word "fjord" is displayed twice; + the lower one must use the fj ligature and the upper one must not; the top of the letter f overlaps the + dot of the letter j.. +

+

+ Two fonts are defined, almost identical; in one the fj ligature is + defined after "f" but before "j"; in the second one it is the last glyph. + This tests longest-substring matching. +

+ + + $RCSfile: fonts-glyph-202-t.svg,v $ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + fjord + fjord + + The Fjord fonts + are derived from + Gladiator + by Bert Bos + and are used + by kind permission. + + + + + + $Revision: 1.11 $ + + + + + \ No newline at end of file diff --git a/test/W3C_SVG_12_TinyTestSuite_beta/svg/fonts-glyph-203-t.svg b/test/W3C_SVG_12_TinyTestSuite_beta/svg/fonts-glyph-203-t.svg new file mode 100755 index 00000000..803bfb36 --- /dev/null +++ b/test/W3C_SVG_12_TinyTestSuite_beta/svg/fonts-glyph-203-t.svg @@ -0,0 +1,97 @@ + + + + + + + + + + + +

+ Test that all of the SVG path commands are accepted for defining glyphs. The upper, + black text must be a reflection of the lower, colored glyph shapes. +

+

+ The letter A uses L commands, the letter H uses H and V commands, and + the letter B uses cubic beziers. The letter C uses a mix of quadratic beziers and vertical lines. +

+ + + $RCSfile: fonts-glyph-203-t.svg,v $ + + + + + + + + + + + + + + + + + + + + BACH + + + + + + + + + + + + + + + + + + + + + + + $Revision: 1.3 $ + + + + + diff --git a/test/W3C_SVG_12_TinyTestSuite_beta/svg/fonts-kern-01-t.svg b/test/W3C_SVG_12_TinyTestSuite_beta/svg/fonts-kern-01-t.svg new file mode 100755 index 00000000..bcdd61de --- /dev/null +++ b/test/W3C_SVG_12_TinyTestSuite_beta/svg/fonts-kern-01-t.svg @@ -0,0 +1,238 @@ + + + + + + + + + + + +

This test validates handling of the hkern element.

+

In all instances, a text element matching a font with hkern is displayed along with reference markers showing the expected glyph positioning.

+

The 'fontA' cell shows the string "12" with "fontA" for which there in a kerning pair defined with u1="1" and u2="2".

+

The 'fontB' cell shows the string "12" with "fontB" for which there in a kerning pair defined with g1="gl_1" and g2="gl_2", where "gl_1" has unicode="1" and "gl_2" has unicode="2".

+

The 'fontC' cell shows the string "1234" with "fontC" were the same kerning pair uses u1/u2 to match "12" and g1/g2 to match "34".

+

The 'fontD' cell shows the string "1234" with "fontD" were the same kerning pair uses u1/u2 to match "12" and "34" (u1/u2 are lists of character vales).

+

The 'fontE' cell shows the string "1234" with "fontE" were the same kerning pair uses g1/g2 to match "12" and "34" (g1/g2 are lists of names).

+

The 'fontF' cell shows the string "1234" with "fontF" were the same kerning pair uses u1/u2 to match "12" and "34" (u1/u2 are unicode ranges).

+

The 'fontG' cell shows the string "12" with "fontG" were for which there is a kerning pair with u1 matching "1" and g2 matching "gl_2".

+ + + $RCSfile: fonts-kern-01-t.svg,v $ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + <hkern> + + + + + font A + + + u1="1" u2="2" + + + + + + + + 12 + + + + + + font B + + + g1="gl_1" g2="gl_2" + + + + 12 + + + + + + font C + + + u1="1" u2="2" g1="gl_3" g2="gl_4" + + + + + + + + 1234 + + + + + + font D + + + u1="1,3" u2="2,4" + + + + + + 1234 + + + + + + font E + + + g1="gl_1,gl_3" g2="gl_2,gl_4" + + + + + + 1234 + + + + + + font F + + + u1="U+003?" u2="U+0031-34" + + + + + + + + + 1234 + + + + + + font G + + + u1="1" g2="gl_2" + + + + + + + + 12 + + + + + + + $Revision: 1.7 $ + + + + + diff --git a/test/W3C_SVG_12_TinyTestSuite_beta/svg/fonts-overview-201-t.svg b/test/W3C_SVG_12_TinyTestSuite_beta/svg/fonts-overview-201-t.svg new file mode 100755 index 00000000..2aedb03d --- /dev/null +++ b/test/W3C_SVG_12_TinyTestSuite_beta/svg/fonts-overview-201-t.svg @@ -0,0 +1,114 @@ + + + + + + + + + + + +

+ This tests a range of values for the 'units per em' attribute. The + test is passed if the three letter β are all the same size. +

+

+ The same glyph is defined three times in three fonts, but with different values + for units-per-em - 1,000, 10, and 10,000 - and with the other numerical values + that depend on units-per-em scaled accordingly. Text using these fonts must all be displayed at the same size, + because the same font-size is used throughout. +

+ + + $RCSfile: fonts-overview-201-t.svg,v $ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + β + β + β + + 1,000 + 10 + 10,000 + varying units-per-em values + + + $Revision: 1.6 $ + + + + + \ No newline at end of file diff --git a/test/W3C_SVG_12_TinyTestSuite_beta/svg/interact-dom-02-t.svg b/test/W3C_SVG_12_TinyTestSuite_beta/svg/interact-dom-02-t.svg new file mode 100755 index 00000000..7bf4daf9 --- /dev/null +++ b/test/W3C_SVG_12_TinyTestSuite_beta/svg/interact-dom-02-t.svg @@ -0,0 +1,124 @@ + + + + initTest(evt); + + + + + + + + + + +

+ Verify basic support for DOM event listener registration. The root svg element has an + onload handler where a click event listener is registered on group element 'Start Button'. +

+

+ If UI events listener registration is supported (and UI events), when the user + clicks on the button a text node is inserted reading "Event Listeners supported". +

+

+ At the end of the test, the start test button in changed to pink, + and the click event listener is removed from the the start button. +

+

+ Subsequent clicks on the start button should cause no effect if the event listener has + been removed successfully. If additional lines of text appear in the document that say + "Event Listeners supported", then the implementation has not successfully removed the event listener. +

+

+ After clicking at least once on the button, the rendered image should be + exactly as the reference image, except for differences in text display. +

+

This test requires that the user agent support scripting.

+ + + $RCSfile: interact-dom-02-t.svg,v $ + + + + + + + + + + + + + + + Start Test + + + + $Revision: 1.10 $ + + + + + diff --git a/test/W3C_SVG_12_TinyTestSuite_beta/svg/interact-event-201-t.svg b/test/W3C_SVG_12_TinyTestSuite_beta/svg/interact-event-201-t.svg new file mode 100755 index 00000000..861da264 --- /dev/null +++ b/test/W3C_SVG_12_TinyTestSuite_beta/svg/interact-event-201-t.svg @@ -0,0 +1,68 @@ + + + + + + + + + + + +

+ Test on event bubbling. Moving focus should make a red rect visible/invisible +

+ + + $RCSfile: interact-event-201-t.svg,v $ + + + + + + + + + + + + + + + + + + r1.setTrait("visibility", "visible"); + + + r1.setTrait("visibility", "hidden"); + + + + moving focus should make a red rect visible/invisible + + + $Revision: 1.7 $ + + + + + \ No newline at end of file diff --git a/test/W3C_SVG_12_TinyTestSuite_beta/svg/interact-event-202-t.svg b/test/W3C_SVG_12_TinyTestSuite_beta/svg/interact-event-202-t.svg new file mode 100755 index 00000000..a72ce99e --- /dev/null +++ b/test/W3C_SVG_12_TinyTestSuite_beta/svg/interact-event-202-t.svg @@ -0,0 +1,86 @@ + + + + + + + + + + + +

+ Testing event bubbling through 'use' elemnt. + Moving the mouse over the red rect should make a yellow rect visible underneath it. + Moving the mouse over the green rect should make a purple rect visible underneath it. + Moving the mouse away from the red/green rect should hide the rect underneath it again. +

+ + + $RCSfile: interact-event-202-t.svg,v $ + + + + + + + + + + + + + + g3.setTrait("visibility", "visible"); + + + g3.setTrait("visibility", "hidden"); + + + + + + + g4.setTrait("visibility", "visible"); + + + g4.setTrait("visibility", "hidden"); + + + + + + + + + + + Moving the mouse over the red rect should make a yellow rect visible underneath it. + Moving the mouse over the green rect should make a purple rect visible underneath it. + Moving the mouse away from the red/green rect should hide + the rect underneath it again. + + + $Revision: 1.6 $ + + + + + \ No newline at end of file diff --git a/test/W3C_SVG_12_TinyTestSuite_beta/svg/interact-event-203-t.svg b/test/W3C_SVG_12_TinyTestSuite_beta/svg/interact-event-203-t.svg new file mode 100755 index 00000000..8c9ef963 --- /dev/null +++ b/test/W3C_SVG_12_TinyTestSuite_beta/svg/interact-event-203-t.svg @@ -0,0 +1,104 @@ + + + + + + + + + + + +

Tests 'mouseover' event on SVGElementInstance

+

+ This test contains four cases. The cases must produce the following results for the test to pass. + Case 1: On a mouseover event on the top square, all four squares must turn blue. + Case 2: On a mouseover event on the top middle square, all four squares must turn blue and a black stroke + must appear on the referencing square (element). + Case 3: On a mouseover event on the bottom middle square, all four squares must turn blue and a black + stroke must appear on the referencing square (element). + Case 4: On a mouseover event on the bottom square, all four squares must turn blue, and on a mousedown event + a black stroke must appear on the referencing square (element). +

+

+ What each case tests is as follows. + Case 1: mouseover event on SVGElementInstance. Referenceing an element that contains an event. + Case 2: mouseover event on referencing element. Event bubbling from SVGElementInstance to referencing element. + Case 3: mouseover event on parent of referencing element. Event bubbling from SVGElementInstance to referencing element ancestors. + Case 4: mousedown event on referencing element. SVGElementInstance is not effected by event listener on referencing element. +

+ + + $RCSfile: interact-event-203-t.svg,v $ + + + + + + + + + + + + + Shadow tree event listener chain + + + + Case 1: on mouseover all squares must turn blue + + + + + + + + + Case 2: on mouseover all squares must turn blue + and a black stroke must appear on reference square + + + + + + + + + + + + Case 3: on mouseover all squares must turn blue + and a black stroke must appear on reference square + + + + + + + + + + Case 4: on mouseover all squares must turn blue + and on mousedown a black stroke must appear on reference square + + + + $Revision: 1.5 $ + + + + + diff --git a/test/W3C_SVG_12_TinyTestSuite_beta/svg/interact-focus-201-t.svg b/test/W3C_SVG_12_TinyTestSuite_beta/svg/interact-focus-201-t.svg new file mode 100755 index 00000000..d9b80083 --- /dev/null +++ b/test/W3C_SVG_12_TinyTestSuite_beta/svg/interact-focus-201-t.svg @@ -0,0 +1,79 @@ + + + + + + + + + + + +

Test Focusable Property on Animated Elements.

+

Two rectangles and a text element are targets of animateColor elements which begin on focusin and end on focusout.

+

The top-level SVG has a nav-next attribute referencing the text element.

+

When loading the file, initial focus will go to the text element, which should be red.

+

Moving to the next focus will turn the text black while making the blue rectangle green.

+

Moving to the next focus will return the rectangle to blue and make the red rectangle green.

+

Moving to the next focus will return the rectangle to red and turn the text red.

+

Focus navigation is user agent dependant but typically is navigated with the keyboard keys.

+

TAB or arrow keys move the focus while the ENTER key activates the focused element.

+

+ User agent dependent behavior is accepted with all focus tests. Focus can be given immediately to first element in the focus ring, + or held in the UA until focus is requested - then focus is given to the first element. +

+ + + $RCSfile: interact-focus-201-t.svg,v $ + + + + + + + + + + Test Focusable Property on Animated Elements. + + + + + + + + + + + + + + + + + + + Text has focus by default + + + + + + + $Revision: 1.8 $ + + + + + diff --git a/test/W3C_SVG_12_TinyTestSuite_beta/svg/interact-focus-202-t.svg b/test/W3C_SVG_12_TinyTestSuite_beta/svg/interact-focus-202-t.svg new file mode 100755 index 00000000..745da4a7 --- /dev/null +++ b/test/W3C_SVG_12_TinyTestSuite_beta/svg/interact-focus-202-t.svg @@ -0,0 +1,173 @@ + + + + + + + + + + + +

Test Focusable Property

+

Testing the focusable property : its default value and animatability on text and anchor elements.

+

The 1st text is the target of animateColor which starts on focusin, and also has the focusable attribute set to false.

+

The 2nd text does not have a focusable attribute and is not the target of animations which start by focus events.

+

The 3rd text is the target of animateColor which starts on focusin.

+

The 4th text is the target of animateColor which starts on activate.

+

The 5th text is the child of an a element.

+

The 6th text is the child of an a element and also has the focusable attribute set to false.

+

The 7th text has the editable attribute set to simple.

+

The 8th text is the observer DOMFocusIn and DOMFocusOut handlers.

+

The 9th and 10th text elements are used to modify the focusable attribute of the 11th element.

+

+ The 11th text is the target of animateColor which starts on focusin, and also has the focusable attribute set to false. + The focusable attribute is modified by activate events on the 9th and 10th elements. +

+

The 12th and 13th text elements are used to modify the focusable attribute of the 14th element.

+

+ The 14th text is the child of an a element - the a element also has the focusable attribute set to false. + The focusable attribute is modified by activate events on the 12th and 13th elements. +

+ +

The focus ring will look like the following: 3, 4, 5, 7, 8, 9, 10, 12 and 13.

+

Activating the 9th text element will make the 11th element focusable.

+

Activating the 12th text element will make the 14th element focusable.

+ +

Focus navigation is user agent dependant but typically is navigated with the keyboard keys.

+

TAB or arrow keys move the focus while the ENTER key activates the focused element.

+ + + $RCSfile: interact-focus-202-t.svg,v $ + + + + + + + + + + + + + + + + Unfocusable (explicit) + + + + + + + Unfocusable (implicit) + + + + + Focusable (red on focus) + + + + + + Focusable (red on activate) + + + + + + + Focusable : <a> (silent) + + + + + + + Unfocusable <a> + + + + + + + Focusable : editable text (silent) + + + + + Focusable : listeners (red on focus) + + + + setRed() + setBlack() + + + + activate to make (0) focusable + + + + + + activate to make (0) unfocusable + + + + + + (0) : red on focus + + + + + + + activate to make (1) focusable + + + + + + activate to make (1) unfocusable + + + + + + + (1) : <a> (silent) + + + + + + $Revision: 1.7 $ + + + + + diff --git a/test/W3C_SVG_12_TinyTestSuite_beta/svg/interact-focus-203-t.svg b/test/W3C_SVG_12_TinyTestSuite_beta/svg/interact-focus-203-t.svg new file mode 100755 index 00000000..e0be5494 --- /dev/null +++ b/test/W3C_SVG_12_TinyTestSuite_beta/svg/interact-focus-203-t.svg @@ -0,0 +1,82 @@ + + + + + + + + + + + +

Test Focusable Elements Outside the Viewport

+

+ User interaction should navigate focus starting at 1 and go through 5. + This test applies only to user agents which locate to focus which is outside of the viewport, and + thus the pass criteria for this test is optional. +

+

Focus navigation is user agent dependant but typically is navigated with the keyboard keys.

+

TAB or arrow keys move the focus while the ENTER key activates the focused element.

+ + + $RCSfile: interact-focus-203-t.svg,v $ + + + + + + + + + Test Focusable Elements Outside the Viewport + User interaction should navigate focus starting at 1 and go through 5. + This test applies only to user agents which + locate to focus which is outside of the viewport. + + + + + + + + 1 + + + + + 2 + + + + + 3 + + + + + 4 + + + + + 5 + + + + $Revision: 1.7 $ + + + + + diff --git a/test/W3C_SVG_12_TinyTestSuite_beta/svg/interact-focus-204-t.svg b/test/W3C_SVG_12_TinyTestSuite_beta/svg/interact-focus-204-t.svg new file mode 100755 index 00000000..b7517946 --- /dev/null +++ b/test/W3C_SVG_12_TinyTestSuite_beta/svg/interact-focus-204-t.svg @@ -0,0 +1,127 @@ + + + + + + + + + + + +

Test Focusable Elements - Focus Direction

+

Focused text should be red. The default focus is the number 5.

+

Cardinal focus changes should work as expected, with wrapping.

+

Next/Previous go to next/prev numerical value.

+

Focus navigation is user agent dependant but typically is navigated with the keyboard keys.

+

TAB or arrow keys move the focus while the ENTER key activates the focused element.

+ + + $RCSfile: interact-focus-204-t.svg,v $ + + + + + + + + + + + + Test Focusable Elements - Focus Direction + + + Focused text should be red. The default focus is the number 5. + + + Cardinal focus changes should work as expected, with wrapping. + + + Next/Previous go to next/prev numerical value. + + + + + 7 + + + + + + + 8 + + + + + + + 9 + + + + + + + 4 + + + + + + + 5 + + + + + + + 6 + + + + + + + 1 + + + + + + + 2 + + + + + + + 3 + + + + + + + + + $Revision: 1.7 $ + + + + + diff --git a/test/W3C_SVG_12_TinyTestSuite_beta/svg/interact-focus-205-t.svg b/test/W3C_SVG_12_TinyTestSuite_beta/svg/interact-focus-205-t.svg new file mode 100755 index 00000000..410945c6 --- /dev/null +++ b/test/W3C_SVG_12_TinyTestSuite_beta/svg/interact-focus-205-t.svg @@ -0,0 +1,75 @@ + + + + + + + + + + + +

Test Focusable Elements - Nested Elements

+

The circle should first be focused (red), then each square should stay red, due to bubbling.

+

Focus navigation is user agent dependant but typically is navigated with the keyboard keys.

+

TAB or arrow keys move the focus while the ENTER key activates the focused element.

+ + + $RCSfile: interact-focus-205-t.svg,v $ + + + + + + + + + + Test Focusable Elements - Nested Elements + The circle should first be focused (red), + then each square should stay red, due to bubbling + + + + + + + + + + + + + + + + + + + + + + + + + + + + + $Revision: 1.7 $ + + + + + diff --git a/test/W3C_SVG_12_TinyTestSuite_beta/svg/interact-focus-206-t.svg b/test/W3C_SVG_12_TinyTestSuite_beta/svg/interact-focus-206-t.svg new file mode 100755 index 00000000..4c0d3727 --- /dev/null +++ b/test/W3C_SVG_12_TinyTestSuite_beta/svg/interact-focus-206-t.svg @@ -0,0 +1,75 @@ + + + + + + + + + + + +

Test Focusable Elements - Invisible Items

+

+ Lines 1 to 3 should show up when receiving the focus. + Fill-opacity and visibility attributes are animated accordingly to show text. +

+

Line 4 should never receive the focus.

+ + + $RCSfile: interact-focus-206-t.svg,v $ + + + + + + + + + + Test Focusable Elements - Invisible Items + Lines 1 to 3 should show up when receiving the focus. + Line 4 should never receive the focus. + + 1 + This text is 100% transparent + + + + + 2 + This text is invisible + + + 3 + This text covered by a white rect + + + + + 4 + + This text has display="none" + + + + + + + $Revision: 1.6 $ + + + + + diff --git a/test/W3C_SVG_12_TinyTestSuite_beta/svg/interact-focus-207-t.svg b/test/W3C_SVG_12_TinyTestSuite_beta/svg/interact-focus-207-t.svg new file mode 100755 index 00000000..5abffe95 --- /dev/null +++ b/test/W3C_SVG_12_TinyTestSuite_beta/svg/interact-focus-207-t.svg @@ -0,0 +1,61 @@ + + + + + + + + + + + +

This test tests initial focus within the svg document

+

+ The root SVG element has 'focusable' set to 'true'. + At start up an animation set element is used to change the poem + to red if the root element SVG has focus. +

+

Focus navigation is user agent dependant but typically is navigated with the keyboard keys.

+

TAB or arrow keys move the focus while the ENTER key activates the focused element.

+ + + $RCSfile: interact-focus-207-t.svg,v $ + + + + + + + + + + Test Focusable Elements - Root SVG Element + The poem should be red, + showing that the top-level SVG element has the focus. + + The old pond + A frog jumped in, + Kerplunk! + + + + Frog Haiku by Matsuo Basho (1686), translated by Allen Ginsberg + + + $Revision: 1.6 $ + + + + + diff --git a/test/W3C_SVG_12_TinyTestSuite_beta/svg/interact-focus-208-t.svg b/test/W3C_SVG_12_TinyTestSuite_beta/svg/interact-focus-208-t.svg new file mode 100755 index 00000000..972c9657 --- /dev/null +++ b/test/W3C_SVG_12_TinyTestSuite_beta/svg/interact-focus-208-t.svg @@ -0,0 +1,122 @@ + + + + + + + + + + + +

Test Focusable Elements - tspan Element

+

+ Each tspan has an animation that sets the fill to green upon receiving + focus. The focus should be moved in turn to "Old", "pond", "frogs", + "jumped", "in", "sound", "of" and then "water". +

+

+ For the test to pass: +

+
    +
  • + "Old", "pond", and "sound", "of" and "water" must each turn green + respectively when given focus. +
  • +
  • + "frogs" and "in" must both turn green at the same time when each is + given focus. +
  • +
  • + "jumped" must turn green when given focus and in addition "frogs" and + "in" must turn green at the same time due to focus bubbling. +
  • +
+

+ In the 2nd phrase there are two nested tspan elements: "jumped" is in + the inner tspan, so focus should be received by the outer two words + "frogs", "in" and then by the word "jumped". +

+

+ Focus navigation is user agent dependant but typically is navigated + with the keyboard keys. +

+

+ TAB or arrow keys move the focus while the ENTER key activates the + focused element. +

+ + + $RCSfile: interact-focus-208-t.svg,v $ + + + + + + + + + Test Focusable Elements - tspan Element + + Give focus to each word. + + + + Old + + + + + pond + + + + - + + frogs + + jumped + + + + in + + + + - + + sound + + + + + of + + + + + water + + + + + Frog Haiku by Matsuo Basho (1686), translated by Lafcadio Hearn + + + $Revision: 1.6 $ + + + + + diff --git a/test/W3C_SVG_12_TinyTestSuite_beta/svg/interact-focus-209-t.svg b/test/W3C_SVG_12_TinyTestSuite_beta/svg/interact-focus-209-t.svg new file mode 100755 index 00000000..0d369ad8 --- /dev/null +++ b/test/W3C_SVG_12_TinyTestSuite_beta/svg/interact-focus-209-t.svg @@ -0,0 +1,171 @@ + + + + + + + + + + + +

Test Focusable Elements - tspan in a textArea

+

+ Each tspan has an animation that sets the fill to green upon receiving + focus. The focus should be moved in turn to "A", "lonely", "pond", "in", + "age-old", "stillness", "sleeps", "Apart," + "unstirred by sound or motion", "... till", "Suddenly", + "into", "it", "a", "lithe", "frog" and then "leaps". +

+

+ For the test to pass: +

+
    +
  • + "A", "lonely", "pond", "in", "age-old", "stillness", "sleeps", + "Suddenly", "into", "it", "a", "lithe", "frog" and "leaps" must each + turn green respectively when given focus. +
  • +
  • + "Apart" and "... till" must both turn green at the same time when + each is given focus. +
  • +
  • + "unstirred by sound or motion" must turn green when given focus and + in addition "Apart" and "... till" must turn green at the same time + due to focus bubbling. +
  • +
+

+ In the 2nd line there are two nested tspan elements - "unstirred by + sound or motion" is in the inner tspan, so focus should be received + first by the outer two words "Apart", "till" and then by the inner + phrase. +

+

+ Focus navigation is user agent dependant but typically is navigated with + the keyboard keys. +

+

+ TAB or arrow keys move the focus while the ENTER key activates the + focused element. +

+ + + $RCSfile: interact-focus-209-t.svg,v $ + + + + + + + + + Test Focusable Elements - tspan in a textArea + + Give focus to each word. + + + Frog Haiku by Matsuo Basho (1686), translated by Curtis Hidden Page + + + $Revision: 1.7 $ + + + + + diff --git a/test/W3C_SVG_12_TinyTestSuite_beta/svg/interact-focus-210-t.svg b/test/W3C_SVG_12_TinyTestSuite_beta/svg/interact-focus-210-t.svg new file mode 100755 index 00000000..9f738105 --- /dev/null +++ b/test/W3C_SVG_12_TinyTestSuite_beta/svg/interact-focus-210-t.svg @@ -0,0 +1,107 @@ + + + + + + + + + + + +

Test Focusability with the 'use' Element

+

+ The first four occurrences of "focus next" will highlight all four top rects. + All four bottom rects should be able to receive the focus and be red when they have focus. +

+

Focus navigation is user agent dependant but typically is navigated with the keyboard keys.

+

TAB or arrow keys move the focus while the ENTER key activates the focused element.

+ + + $RCSfile: interact-focus-210-t.svg,v $ + + + + + + + + + + + + + + + Test Focusability with the 'use' Element + + Each rectangle should be able to turn red individually upon receiving focus. + + + The top four test the multiple use of a focusable element + + + The bottom four test 'focusable' property on <use> element + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + $Revision: 1.6 $ + + + + + diff --git a/test/W3C_SVG_12_TinyTestSuite_beta/svg/interact-focus-211-t.svg b/test/W3C_SVG_12_TinyTestSuite_beta/svg/interact-focus-211-t.svg new file mode 100755 index 00000000..e1702271 --- /dev/null +++ b/test/W3C_SVG_12_TinyTestSuite_beta/svg/interact-focus-211-t.svg @@ -0,0 +1,76 @@ + + + + + + + + + + + +

Test Focusability with the 'use' Element

+

+ There are three 'use' copies of the poem arranged diagonally. + As each poem receives focus it should become highlighted. +

+

Focus navigation is user agent dependant but typically is navigated with the keyboard keys.

+

TAB or arrow keys move the focus while the ENTER key activates the focused element.

+ + + $RCSfile: interact-focus-211-t.svg,v $ + + + + + + + + + + Test Focusability with the 'use' Element + + There are three 'use' copies of the poem arranged diagonally. + + + As each poem receives focus it should become highlighted. + + + + + + + + + + + + + + + + + + + + + Frog Haiku by Matsuo Basho (1686), translated by Alfred H. Marks + + + $Revision: 1.8 $ + + + + + diff --git a/test/W3C_SVG_12_TinyTestSuite_beta/svg/interact-focus-212-t.svg b/test/W3C_SVG_12_TinyTestSuite_beta/svg/interact-focus-212-t.svg new file mode 100755 index 00000000..6e1143b5 --- /dev/null +++ b/test/W3C_SVG_12_TinyTestSuite_beta/svg/interact-focus-212-t.svg @@ -0,0 +1,84 @@ + + + + + + + + + + + +

+ Test on focus with a use-element. Focus should move first to the "g" element and then to its children. + When it gets to the use-element focus is first set on the use (right column) and then its children. +

+ + + $RCSfile: interact-focus-212-t.svg,v $ + + + + + + + + + + + + + + + + + + + + + + + text + + + + + + + + use + Test on focus with a use-element. + Focus should move first to the "g" element and + then to its children. When focus is trans- + ferred to the use-element focus is first + set on the use (whole right column) and + then its children. + + + + $Revision: 1.5 $ + + + + + \ No newline at end of file diff --git a/test/W3C_SVG_12_TinyTestSuite_beta/svg/interact-order-04-t.svg b/test/W3C_SVG_12_TinyTestSuite_beta/svg/interact-order-04-t.svg new file mode 100755 index 00000000..ae18bd42 --- /dev/null +++ b/test/W3C_SVG_12_TinyTestSuite_beta/svg/interact-order-04-t.svg @@ -0,0 +1,111 @@ + + + + + + + + + + + +

Test event bubbling of event attributes, part a.

+

+ The two circles test whether event bubbling is occurring to parents of + the target object, and whether the target object is able to prevent + bubbling. The supplemental text next to the circles describes what + should occur. +

+

This test requires that the user agent support scripting.

+ + + $RCSfile: interact-order-04-t.svg,v $ + + + + + + + + + + + + Event bubbling - a + + + + + + + + + bubbleYes(evt, '#F00'); + + + bubbleYes(evt, 'inherit'); + + + + + bubbleYes(evt, '#00F'); + + + bubbleYes(evt, 'inherit'); + + + + + + bubbleNo(evt, '#00F'); + + + bubbleNo(evt, 'inherit'); + + + + + Pointer in circle, + circle turns red + Pointer in circle, + circle turns blue + + + + + $Revision: 1.10 $ + + + + + diff --git a/test/W3C_SVG_12_TinyTestSuite_beta/svg/interact-order-05-t.svg b/test/W3C_SVG_12_TinyTestSuite_beta/svg/interact-order-05-t.svg new file mode 100755 index 00000000..cb5708d3 --- /dev/null +++ b/test/W3C_SVG_12_TinyTestSuite_beta/svg/interact-order-05-t.svg @@ -0,0 +1,99 @@ + + + + + + + + + + + +

Test event bubbling of event attributes, part b.

+

+ The two circles test whether events are handled in the proper order. + Events listeners and event attributes are processed before hyperlink + processing, which is processed before text selection. The supplemental + text next to the circles describes what should occur. +

+

This test requires that the user agent support scripting.

+ + + $RCSfile: interact-order-05-t.svg,v $ + + + + + + + + + + + + Event bubbling - b + + + + + + + + + + + bubbleNo(evt, 'red'); + + + bubbleNo(evt, 'inherit'); + + + + + + bubbleYes(evt, 'blue'); + + + bubbleNo(evt, 'inherit'); + + + + Click on circle, + circle turns red + Click on circle, + hyperlink + + + + $Revision: 1.10 $ + + + + + diff --git a/test/W3C_SVG_12_TinyTestSuite_beta/svg/interact-order-06-t.svg b/test/W3C_SVG_12_TinyTestSuite_beta/svg/interact-order-06-t.svg new file mode 100755 index 00000000..45f9a213 --- /dev/null +++ b/test/W3C_SVG_12_TinyTestSuite_beta/svg/interact-order-06-t.svg @@ -0,0 +1,103 @@ + + + + + + + + + + + +

Test event bubbling of event attributes, part c.

+

+ The three strings tests event handling behavior on text. Text selection + only is available after event listeners and event attributes have been + processed, and after hyperlink processing has occurred. The supplemental + text below the text strings describes what should occur. +

+

This test requires that the user agent support scripting.

+ + + $RCSfile: interact-order-06-t.svg,v $ + + + + + + + + + + + + Event bubbling - c + + + + + + + + + bubbleNo(evt, 'red'); + + + bubbleNo(evt, 'inherit'); + + + String turns red on click + + + + bubbleYes(evt, 'blue'); + + + bubbleYes(evt, 'inherit'); + + String hyperlinks to + interact-order-03-t-targ.svg + + + + bubbleNo(evt, 'inherit'); + + + All strings are selectable. + + + + + + $Revision: 1.9 $ + + + + + diff --git a/test/W3C_SVG_12_TinyTestSuite_beta/svg/interact-pevents-02-t.svg b/test/W3C_SVG_12_TinyTestSuite_beta/svg/interact-pevents-02-t.svg new file mode 100755 index 00000000..5eb7dd77 --- /dev/null +++ b/test/W3C_SVG_12_TinyTestSuite_beta/svg/interact-pevents-02-t.svg @@ -0,0 +1,223 @@ + + + + + + + + + + + +

+ This test tests 'pointer-events' on text. Initially you should see four big rects with black stroke. In the + uppermost rect there should be 10 'O':s with black fill. In the second rect from the top there should be 10 'O':s + with no fill but with black stroke. In the third and fourth rects there should be no visible 'O':s at all. In the + fourth rect there should be two green rects, and in each of the other three rects there should be one green rect. +

+

+ Using the pointer device move the cursor over the rects all the rects from left to right. As the mouseover event + triggers the 'O':s will become visible and marked in either green (a pass) or red (a fail). +

+

+ The test has passed if after moving the cursor over all the rects: 1. all the 'O':s in the green rects have green + fill 2. there are no red 'O':s visible 3. there are 9 green 'O':s in the first and second rect, 4 in the third rect + and 6 in the fourth rect +

+ + + $RCSfile: interact-pevents-02-t.svg,v $ + + + + + + + + + + Test pointer-events on text + + + O + + + O + + + O + + + O + + + O + + + O + + + O + + + O + + + O + + + O + + + + + + + + + O + + + O + + + O + + + O + + + O + + + O + + + O + + + O + + + O + + + O + + + + + + + + + O + + + + O + + + + O + + + + O + + + + O + + + + O + + + + O + + + + O + + + + O + + + + O + + + + + + + + + + O + + + + O + + + + O + + + + O + + + + O + + + + O + + + + O + + + + O + + + + O + + + + O + + + + + + + + + + + + + + $Revision: 1.9 $ + + + + + diff --git a/test/W3C_SVG_12_TinyTestSuite_beta/svg/interact-pevents-05-t.svg b/test/W3C_SVG_12_TinyTestSuite_beta/svg/interact-pevents-05-t.svg new file mode 100755 index 00000000..2dc27c31 --- /dev/null +++ b/test/W3C_SVG_12_TinyTestSuite_beta/svg/interact-pevents-05-t.svg @@ -0,0 +1,211 @@ + + + + + + + + + + + +

Tests the pointer-events attribute with different 'visible' values

+

+ The test is passed if the following conditions are met: + - In the first row of squares, the fill and stroke of squares 1 and 3 only must trigger a pale red rectangle to appear + over the squares on mouseover. + - In the second row of squares, the fill and stroke of squares 1 and 3 only must trigger a pale red rectangle to appear + over the squares on mouseover. + - In the third row of squares, the fill only of squares 1, 2 and 3 must trigger a pale red rectangle to appear + over the squares on mouseover. + - In the fourth row of squares, the stroke only of squares 1, 2 and 3 must trigger a pale red rectangle to appear + over the squares on mouseover. + - In the fifth row of squares, the fill and stroke of squares 1, 2 and 3 must trigger a pale red rectangle to appear + over the squares on mouseover. +

+

+ The 2nd and 3rd columns represent respectively rects with no fill/stroke and transparent fill/stroke. + The 4th column (most right column) has a non activatable pointer event as the visibility of the column + is set to hidden. +

+

+ The first row tests the default value for pointer-event, i.e. visible fill and stroke will trigger an event. + The second row tests pointer-events="visiblePainted", i.e. visible fill and stroke will trigger an event. + The third row tests pointer-events="visibleFill", i.e. visible fill only an event. + The fourth row tests pointer-events="visibleStroke", i.e. visible stroke only an event. + The fifth row tests pointer-events="visible", i.e. visible fill and stroke will trigger an event. +

+ + + $RCSfile: interact-pevents-05-t.svg,v $ + + + + + + + + + + + Testing pointer-events - pale RED rect should appear on mouseover. + + + 2nd and 3rd columns represent respectively rects with no fill/stroke and transparent fill/stroke + + + + + + + + + + + + + + + + + + + + + + + + + default : + fill and stroke of rects 1 and 3 must trigger + + + + + + + + + + + + + + + + + + + + + + + + visiblePainted : + fill and stroke of rects 1 and 3 must trigger + + + + + + + + + + + + + + + + + + + + + + + + + + + visibleFill : + only fill of rects 1 to 3 must trigger + + + + + + + + + + + + + + + + + + + + + + + + + + + visibleStroke : + only stroke of rects 1 to 3 must trigger + + + + + + + + + + + + + + + + + + + + + + + + + + + visible : + fill and stroke of rects 1 to 3 must trigger + + + + + + $Revision: 1.6 $ + + + + + diff --git a/test/W3C_SVG_12_TinyTestSuite_beta/svg/interact-pevents-06-t.svg b/test/W3C_SVG_12_TinyTestSuite_beta/svg/interact-pevents-06-t.svg new file mode 100755 index 00000000..817e8822 --- /dev/null +++ b/test/W3C_SVG_12_TinyTestSuite_beta/svg/interact-pevents-06-t.svg @@ -0,0 +1,200 @@ + + + + + + + + + + + +

Tests the pointer-events attribute with different painting values

+

+ The test is passed if the following conditions are met: + - In the first row of squares, the fill and stroke of squares 1, 3 and 4 only must trigger a pale red rectangle to appear + over the squares on mouseover. + - In the second row of squares, the fill only of all squares must trigger a pale red rectangle to appear + over the squares on mouseover. + - In the third row of squares, the stroke only of all must trigger a pale red rectangle to appear + over the squares on mouseover. + - In the fourth row of squares, the fill and stroke of all squares must trigger a pale red rectangle to appear + over the squares on mouseover. + - In the fifth row of squares, nothing is to trigger on mouseover. +

+

+ The 2nd and 3rd columns represent respectively rects with no fill/stroke and transparent fill/stroke. + The 4th column has visibility set to hidden. +

+

+ The first row tests pointer-events="painted", i.e. event on fill and stroke that are set. + The second row tests pointer-events="fill", i.e. event on a fill that is set. + The third row tests pointer-events="stroke", i.e. even on a stroke that is et. + The fourth row tests pointer-events="all", i.e. event on fill and stroke that are set. + The fifth row tests pointer-events="none", i.e. no event. +

+ + + $RCSfile: interact-pevents-06-t.svg,v $ + + + + + + + + + + + Testing pointer-events - pale RED rect should appear on mouseover. + + + 2nd and 3rd columns represent respectively rects with no fill/stroke and transparent fill/stroke + + + + + + + + + + + + + + + + + + + + + + + + + painted : + fill and stroke of rects 1, 3 and 4 must trigger + + + + + + + + + + + + + + + + + + + + + + + + fill : + fill of rects 1 to 4 must trigger + + + + + + + + + + + + + + + + + + + + + + + + stroke : + stroke of rects 1 to 4 must trigger + + + + + + + + + + + + + + + + + + + + + + + + all : + stroke and fill of rects 1 to 4 must trigger + + + + + + + + + + + + + + + + + + + + + + + + none : + nothing is to trigger + + + + + + $Revision: 1.6 $ + + + + + diff --git a/test/W3C_SVG_12_TinyTestSuite_beta/svg/interact-pevents-07-t.svg b/test/W3C_SVG_12_TinyTestSuite_beta/svg/interact-pevents-07-t.svg new file mode 100755 index 00000000..26b93a20 --- /dev/null +++ b/test/W3C_SVG_12_TinyTestSuite_beta/svg/interact-pevents-07-t.svg @@ -0,0 +1,110 @@ + + + + + + + + + + + +

Testing pointer-events and rendering order

+

+ Rectangles should turn RED on mouseover Ovals should turn RED if Pointer-Events are set to "ALL" +

+ + + $RCSfile: interact-pevents-07-t.svg,v $ + + + + + + + + + + + Testing pointer-events and rendering order + Rectangles should turn RED on mouseover + Ovals should turn RED if Pointer-Events are set to "ALL" + + + + Change "Pointer-Events" of + ovals from "ALL" to "NONE" + + + + + Purple ovals have "Pointer-Events" set to "ALL". + Purple ovals have Pointer-Events set to "NONE". + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + $Revision: 1.6 $ + + + + + diff --git a/test/W3C_SVG_12_TinyTestSuite_beta/svg/interact-pevents-08-t.svg b/test/W3C_SVG_12_TinyTestSuite_beta/svg/interact-pevents-08-t.svg new file mode 100755 index 00000000..0a5d7d90 --- /dev/null +++ b/test/W3C_SVG_12_TinyTestSuite_beta/svg/interact-pevents-08-t.svg @@ -0,0 +1,120 @@ + + + + init(evt); + + + + + + + + + + +

Tests when text is considered hit by pointer-events.

+

+ The test is passed if the following conditions are met: + - Any single character in either of the lines of text has 'mouseover' event and the fill of the + characters' assocated line of text is set to green. + - The fill of the characters' assocated text is set back to black on a 'mouseout' event. +

+

+ The dy of the glyphs vary quite a bit, so it's easy to tell if an implementation uses the text + boundingbox for pointer-events. According to SVG 1.1 pointer-events on text is not supposed to use the text boundingbox, + instead it should use the 'character cells'. +

+ + + $RCSfile: interact-pevents-08-t.svg,v $ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + Test pointer-events on text + + @AyÖç + + mouseover(evt.target); + + + mouseout(evt.target); + + + @AyÖç + + mouseover(evt.target); + + + mouseout(evt.target); + + + + + + + $Revision: 1.9 $ + + + + + diff --git a/test/W3C_SVG_12_TinyTestSuite_beta/svg/interact-zoom-01-t.svg b/test/W3C_SVG_12_TinyTestSuite_beta/svg/interact-zoom-01-t.svg new file mode 100755 index 00000000..348241e9 --- /dev/null +++ b/test/W3C_SVG_12_TinyTestSuite_beta/svg/interact-zoom-01-t.svg @@ -0,0 +1,60 @@ + + + + + + + + + + + +

+ Verify correct handling by Dynamic (interactive) viewers for the "zoomAndPan" attribute on the 'svg' element. This + is the first of three tests, and tests the default value. +

+

The test consists of a set of black circles with a blue stroke.

+

+ After the initial picture is displayed, the user should attempt to use the magnify controls that are required on + conforming Dynamic SVG viewers. The correct behaviour is that magnification and panning works correctly, as required + by a conformant viewer.. +

+

The rendered picture should match the reference image, except for possible variations in the labelling text (per CSS2 rules).

+ + + $RCSfile: interact-zoom-01-t.svg,v $ + + + + + + + + + + Test default value of + zoomAndPan attribute. + + + + + + + + + + + $Revision: 1.9 $ + + + + + diff --git a/test/W3C_SVG_12_TinyTestSuite_beta/svg/interact-zoom-02-t.svg b/test/W3C_SVG_12_TinyTestSuite_beta/svg/interact-zoom-02-t.svg new file mode 100755 index 00000000..8641fd14 --- /dev/null +++ b/test/W3C_SVG_12_TinyTestSuite_beta/svg/interact-zoom-02-t.svg @@ -0,0 +1,60 @@ + + + + + + + + + + + +

+ Verify correct handling by Dynamic (interactive) viewers for the "zoomAndPan" attribute on the 'svg' element. This + is the second of three tests, and tests the value "magnify". +

+

The test consists of a set of black circles with a blue stroke.

+

+ After the initial picture is displayed, the user should attempt to use the magnify controls that are required on + conforming Dynamic SVG viewers. The correct behaviour is that magnification and panning works correctly, as required + by a conformant viewer.. +

+

The rendered picture should match the reference image, except for possible variations in the labelling text (per CSS2 rules).

+ + + $RCSfile: interact-zoom-02-t.svg,v $ + + + + + + + + + + Test "magnify" value of + zoomAndPan attribute. + + + + + + + + + + + $Revision: 1.9 $ + + + + + diff --git a/test/W3C_SVG_12_TinyTestSuite_beta/svg/interact-zoom-03-t.svg b/test/W3C_SVG_12_TinyTestSuite_beta/svg/interact-zoom-03-t.svg new file mode 100755 index 00000000..224a3fde --- /dev/null +++ b/test/W3C_SVG_12_TinyTestSuite_beta/svg/interact-zoom-03-t.svg @@ -0,0 +1,61 @@ + + + + + + + + + + + +

+ Verify correct handling by Dynamic (interactive) viewers for the "zoomAndPan" attribute on the 'svg' element. This + is the third of three tests, and tests the value "disable". +

+

The test consists of a set of black circles with a blue stroke.

+

+ After the initial picture is displayed, the user should attempt to use the magnify controls that are required on + conforming Dynamic SVG viewers. The correct behaviour is that the magnify and pan controls shall have no effect -- the + viewer shall disable them. +

+

The rendered picture should match the reference image, except for possible variations in the labelling text (per CSS2 rules).

+ + + $RCSfile: interact-zoom-03-t.svg,v $ + + + + + + + + + + + Test "disable" value of + zoomAndPan attribute. + + + + + + + + + + + $Revision: 1.10 $ + + + + + diff --git a/test/W3C_SVG_12_TinyTestSuite_beta/svg/intro-compat-201-t.svg b/test/W3C_SVG_12_TinyTestSuite_beta/svg/intro-compat-201-t.svg new file mode 100755 index 00000000..9ebfa42e Binary files /dev/null and b/test/W3C_SVG_12_TinyTestSuite_beta/svg/intro-compat-201-t.svg differ diff --git a/test/W3C_SVG_12_TinyTestSuite_beta/svg/jpeg-required-201-t.svg b/test/W3C_SVG_12_TinyTestSuite_beta/svg/jpeg-required-201-t.svg new file mode 100755 index 00000000..dab547f9 --- /dev/null +++ b/test/W3C_SVG_12_TinyTestSuite_beta/svg/jpeg-required-201-t.svg @@ -0,0 +1,49 @@ + + + + + + + + + + + +

+ Test RGB baseline JPEG with the most common chrominance subsampling, 4:1:1. +

+ + + $RCSfile: jpeg-required-201-t.svg,v $ + + + + + + + + + + + baseline 4:1:1 + sequential + + + $Revision: 1.4 $ + + + + + \ No newline at end of file diff --git a/test/W3C_SVG_12_TinyTestSuite_beta/svg/jpeg-required-202-t.svg b/test/W3C_SVG_12_TinyTestSuite_beta/svg/jpeg-required-202-t.svg new file mode 100755 index 00000000..09da0884 --- /dev/null +++ b/test/W3C_SVG_12_TinyTestSuite_beta/svg/jpeg-required-202-t.svg @@ -0,0 +1,49 @@ + + + + + + + + + + + +

+ Test RGB optimised baseline JPEG with the most common chrominance subsampling, 4:1:1. +

+ + + $RCSfile: jpeg-required-202-t.svg,v $ + + + + + + + + + + + optimized 4:1:1 + sequential + + + $Revision: 1.5 $ + + + + + \ No newline at end of file diff --git a/test/W3C_SVG_12_TinyTestSuite_beta/svg/jpeg-required-203-t.svg b/test/W3C_SVG_12_TinyTestSuite_beta/svg/jpeg-required-203-t.svg new file mode 100755 index 00000000..7fe6ad35 --- /dev/null +++ b/test/W3C_SVG_12_TinyTestSuite_beta/svg/jpeg-required-203-t.svg @@ -0,0 +1,49 @@ + + + + + + + + + + + +

+ Test progressive, RGB optimised JPEG with the most common chrominance subsampling, 4:1:1. +

+ + + $RCSfile: jpeg-required-203-t.svg,v $ + + + + + + + + + + + optimized 4:1:1 + progressive + + + $Revision: 1.5 $ + + + + + \ No newline at end of file diff --git a/test/W3C_SVG_12_TinyTestSuite_beta/svg/jpeg-required-204-t.svg b/test/W3C_SVG_12_TinyTestSuite_beta/svg/jpeg-required-204-t.svg new file mode 100755 index 00000000..ef229168 --- /dev/null +++ b/test/W3C_SVG_12_TinyTestSuite_beta/svg/jpeg-required-204-t.svg @@ -0,0 +1,49 @@ + + + + + + + + + + + +

+ Test greyscale baseline JPEG. +

+ + + $RCSfile: jpeg-required-204-t.svg,v $ + + + + + + + + + + + greyscale + sequential + + + $Revision: 1.5 $ + + + + + \ No newline at end of file diff --git a/test/W3C_SVG_12_TinyTestSuite_beta/svg/jpeg-required-205-t.svg b/test/W3C_SVG_12_TinyTestSuite_beta/svg/jpeg-required-205-t.svg new file mode 100755 index 00000000..8c60be09 --- /dev/null +++ b/test/W3C_SVG_12_TinyTestSuite_beta/svg/jpeg-required-205-t.svg @@ -0,0 +1,50 @@ + + + + + + + + + + + +

+ Test RGB optimised baseline JPEG with the most common chrominance subsampling, 4:1:1 and with multiple APP markers. +

+ + + $RCSfile: jpeg-required-205-t.svg,v $ + + + + + + + + + + + optimised 4:1:1 + sequential + multi APP markers + + + $Revision: 1.5 $ + + + + + \ No newline at end of file diff --git a/test/W3C_SVG_12_TinyTestSuite_beta/svg/jpeg-required-206-t.svg b/test/W3C_SVG_12_TinyTestSuite_beta/svg/jpeg-required-206-t.svg new file mode 100755 index 00000000..4f62afbf --- /dev/null +++ b/test/W3C_SVG_12_TinyTestSuite_beta/svg/jpeg-required-206-t.svg @@ -0,0 +1,50 @@ + + + + + + + + + + + +

+ Test RGB optimised JPEG with the most common chrominance subsampling, 4:1:1 and with a float DCT. +

+ + + $RCSfile: jpeg-required-206-t.svg,v $ + + + + + + + + + + + optimised 4:1:1 + sequential + float DCT + + + $Revision: 1.5 $ + + + + + \ No newline at end of file diff --git a/test/W3C_SVG_12_TinyTestSuite_beta/svg/jpeg-required-207-t.svg b/test/W3C_SVG_12_TinyTestSuite_beta/svg/jpeg-required-207-t.svg new file mode 100755 index 00000000..2f8b1c15 --- /dev/null +++ b/test/W3C_SVG_12_TinyTestSuite_beta/svg/jpeg-required-207-t.svg @@ -0,0 +1,48 @@ + + + + + + + + + + + +

+ Test RGB optimised JPEG with no chrominance subsampling, 4:4:4. +

+ + + $RCSfile: jpeg-required-207-t.svg,v $ + + + + + + + + + + optimised 4:4:4 + sequential + + + $Revision: 1.5 $ + + + + + \ No newline at end of file diff --git a/test/W3C_SVG_12_TinyTestSuite_beta/svg/jpeg-required-208-t.svg b/test/W3C_SVG_12_TinyTestSuite_beta/svg/jpeg-required-208-t.svg new file mode 100755 index 00000000..ddb272e5 --- /dev/null +++ b/test/W3C_SVG_12_TinyTestSuite_beta/svg/jpeg-required-208-t.svg @@ -0,0 +1,52 @@ + + + + + + + + + + + +

+ Test RGB optimised JPEG with very unusual chrominance subsampling: + 2x2, 4x1, 1x2. +

+ + + $RCSfile: jpeg-required-208-t.svg,v $ + + + + + + + + + + + optimised 4:4:2 + sequential + unusual subsampling + 2x2, 4x1, 1x2 + + + $Revision: 1.5 $ + + + + + \ No newline at end of file diff --git a/test/W3C_SVG_12_TinyTestSuite_beta/svg/jpeg-required-209-t.svg b/test/W3C_SVG_12_TinyTestSuite_beta/svg/jpeg-required-209-t.svg new file mode 100755 index 00000000..f9708a53 --- /dev/null +++ b/test/W3C_SVG_12_TinyTestSuite_beta/svg/jpeg-required-209-t.svg @@ -0,0 +1,50 @@ + + + + + + + + + + + +

+ Test RGB baseline JPEG with the most common chrominance subsampling, 4:1:1 and high compression level (low quality). +

+ + + $RCSfile: jpeg-required-209-t.svg,v $ + + + + + + + + + + + optimised 4:1:1 + sequential + high compression + + + $Revision: 1.5 $ + + + + + \ No newline at end of file diff --git a/test/W3C_SVG_12_TinyTestSuite_beta/svg/linking-a-03-t.svg b/test/W3C_SVG_12_TinyTestSuite_beta/svg/linking-a-03-t.svg new file mode 100755 index 00000000..14442371 --- /dev/null +++ b/test/W3C_SVG_12_TinyTestSuite_beta/svg/linking-a-03-t.svg @@ -0,0 +1,48 @@ + + + + + + + + + + + +

+ This verifies the capability to handle links into SVG content, using the svgView fragment identifier form. + The test is passed if traversing this link shows a portion of the target + translated so that the green circle with id "circle-2" is in the top left corner of the viewer + frame. +

+

The initial view of this test contains one green arrow plus labelling text. The arrow is a link - follow the link.

+

+ The arrow links to ./images/linkingCircle-f.svg#svgView(transform(translate(64,227)))". +

+ + + $RCSfile: linking-a-03-t.svg,v $ + + + + + + + + + + + + + + + + $Revision: 1.9 $ + + + diff --git a/test/W3C_SVG_12_TinyTestSuite_beta/svg/linking-a-08-t.svg b/test/W3C_SVG_12_TinyTestSuite_beta/svg/linking-a-08-t.svg new file mode 100755 index 00000000..a64b18e4 --- /dev/null +++ b/test/W3C_SVG_12_TinyTestSuite_beta/svg/linking-a-08-t.svg @@ -0,0 +1,53 @@ + + + + + + + + + + + +

+ This is a simple test for links on text elements. The upper subtest has an 'a' element + inside a 'text' element; the lower subtest has the 'a' outside the 'text'. Both must be working links. +

+ + + $RCSfile: linking-a-08-t.svg,v $ + + + + + + + + + + + Link inside text + + + Link around text + + + + + $Revision: 1.5 $ + + + + + diff --git a/test/W3C_SVG_12_TinyTestSuite_beta/svg/linking-a-201-t.svg b/test/W3C_SVG_12_TinyTestSuite_beta/svg/linking-a-201-t.svg new file mode 100755 index 00000000..83b2f5b5 --- /dev/null +++ b/test/W3C_SVG_12_TinyTestSuite_beta/svg/linking-a-201-t.svg @@ -0,0 +1,66 @@ + + + + + + + + + + + +

+ Verify target attribute has priority over xlink attribute on the 'a' element. The destination expressed by + "xlink:href=" is overridden when 'target' is specified on the 'a' element. +

+

+ For the test to pass; each arrow in the test, when clicked, must show the image of the + linkingToc-t.svg in a new frame. +

+

+ The test uses the 'rect' and 'polygon' elements, as well as basic fill (solid simple colors), stroke + (black and colored wide and 1-pixel lines), font-family (Arial) and font-size properties. +

+

+ This test was modified and renamed from linking-a-07-t.svg. +

+ + + $RCSfile: linking-a-201-t.svg,v $ + + + + + + + + + + + + + + + + + + + + + + + + $Revision: 1.3 $ + + + + + diff --git a/test/W3C_SVG_12_TinyTestSuite_beta/svg/linking-frag-201-t.svg b/test/W3C_SVG_12_TinyTestSuite_beta/svg/linking-frag-201-t.svg new file mode 100755 index 00000000..899d298f --- /dev/null +++ b/test/W3C_SVG_12_TinyTestSuite_beta/svg/linking-frag-201-t.svg @@ -0,0 +1,154 @@ + + + + + + + + + + + +

+ Testing Links to external and internal 'svgView' with Transforms. +

+

+ The first part of the test is passed if the rect links on the top line go to the linking-frag-202-t.svg file and + adjust the resulting view according to their respective text; + - The rect with 'Rotate' must link to the linking-frag-202-t.svg file and rotate resulting view + - The rect with 'Shift' must link to the linking-frag-202-t.svg file and shitf the resulting view + - The rect with 'Scale' must link to the linking-frag-202-t.svg file and scale the resulting view + - The rect with 'skewX' must link to the linking-frag-202-t.svg file and skew the resulting view along the X axis + - The rect with 'skewY' must link to the linking-frag-202-t.svg file and skew the resulting view along the Y axis + - The rect with 'identity' must link to the linking-frag-202-t.svg file and restore the view to an identity transformation. +

+

+ The second part of the test is passed if the rect links on the bottom line link to this file and adjust the + resulting view according to their respective text; + - The rect with 'Rotate' must link to this file and rotate resulting view + - The rect with 'Shift' must link to this file and shitf the resulting view + - The rect with 'Scale' must link to this file and scale the resulting view + - The rect with 'skewX' must link to this file and skew the resulting view along the X axis + - The rect with 'skewY' must link to this file and skew the resulting view along the Y axis + - The rect with 'identity' must link to this file and restore the view to an identity transformation. +

+ + + $RCSfile: linking-frag-201-t.svg,v $ + + + + + + + + + + + + Testing Links to External 'svgView' with Transforms + + First line links to an svgView in an external file (linking-frag-202-t.svg) + + + Second line links to an svgView in the local file + + + + + + + + + + + + Rotate + + + + + + Shift + + + + + + Scale + + + + + + skewX + + + + + + skewY + + + + + + identity + + + + + + + Rotate + + + + + + Shift + + + + + + Scale + + + + + + skewX + + + + + + skewY + + + + + + identity + + + + + $Revision: 1.6 $ + + + + + diff --git a/test/W3C_SVG_12_TinyTestSuite_beta/svg/linking-frag-202-t.svg b/test/W3C_SVG_12_TinyTestSuite_beta/svg/linking-frag-202-t.svg new file mode 100755 index 00000000..6c66c096 --- /dev/null +++ b/test/W3C_SVG_12_TinyTestSuite_beta/svg/linking-frag-202-t.svg @@ -0,0 +1,153 @@ + + + + + + + + + + + +

+ Testing Links to external and internal 'svgView' with Transforms. +

+

+ The first part of the test is passed if the rect links on the top line go to the linking-frag-202-t.svg file and + adjust the resulting view according to their respective text; + - The rect with 'Rotate' must link to the linking-frag-201-t.svg file and rotate resulting view + - The rect with 'Shift' must link to the linking-frag-201-t.svg file and shitf the resulting view + - The rect with 'Scale' must link to the linking-frag-201-t.svg file and scale the resulting view + - The rect with 'skewX' must link to the linking-frag-201-t.svg file and skew the resulting view along the X axis + - The rect with 'skewY' must link to the linking-frag-201-t.svg file and skew the resulting view along the Y axis + - The rect with 'identity' must link to the linking-frag-201-t.svg file and restore the view to an identity transformation. +

+

+ The second part of the test is passed if the rect links on the bottom line link to this file and adjust the + resulting view according to their respective text; + - The rect with 'Rotate' must link to this file and rotate resulting view + - The rect with 'Shift' must link to this file and shitf the resulting view + - The rect with 'Scale' must link to this file and scale the resulting view + - The rect with 'skewX' must link to this file and skew the resulting view along the X axis + - The rect with 'skewY' must link to this file and skew the resulting view along the Y axis + - The rect with 'identity' must link to this file and restore the view to an identity transformation. +

+ + + $RCSfile: linking-frag-202-t.svg,v $ + + + + + + + + + + + + Testing Links to External 'svgView' with Transforms + + First line links to an svgView in an external file (linking-frag-201-t.svg) + + + Second line links to an svgView in the local file + + + + + + + + + + + Rotate + + + + + + Shift + + + + + + Scale + + + + + + skewX + + + + + + skewY + + + + + + identity + + + + + + + Rotate + + + + + + Shift + + + + + + Scale + + + + + + skewX + + + + + + skewY + + + + + + identity + + + + + $Revision: 1.6 $ + + + + + diff --git a/test/W3C_SVG_12_TinyTestSuite_beta/svg/linking-frag-203-t.svg b/test/W3C_SVG_12_TinyTestSuite_beta/svg/linking-frag-203-t.svg new file mode 100755 index 00000000..f720357f --- /dev/null +++ b/test/W3C_SVG_12_TinyTestSuite_beta/svg/linking-frag-203-t.svg @@ -0,0 +1,72 @@ + + + + + + + + + + + +

Tests links to internal fragment identifiers.

+

+ Activating the link on the red circle should pan the viewport to + center the orange circle (which is initially located outside the viewport). +

+

+ Activating the link on the orange circle should pan the viewport to + center the yellow circle, and zoom out to show the entire yellow circle. +

+

+ Activating the link on the yellow circle should pan the viewport to center + the red circle, but remain at the existing zoom level (i.e. not zoom in). +

+

+ Note that the visual effect is only part of the pass criteria, and that the + changes in the viewport should be made using currentTranslate and currentScale, + not the viewBox; this part is currently not tested. +

+ + + $RCSfile: linking-frag-203-t.svg,v $ + + + + + + + + + + + + + + + + + + + + + + + + $Revision: 1.8 $ + + + + + diff --git a/test/W3C_SVG_12_TinyTestSuite_beta/svg/linking-frag-204-t.svg b/test/W3C_SVG_12_TinyTestSuite_beta/svg/linking-frag-204-t.svg new file mode 100755 index 00000000..bc4ee3e7 --- /dev/null +++ b/test/W3C_SVG_12_TinyTestSuite_beta/svg/linking-frag-204-t.svg @@ -0,0 +1,52 @@ + + + + + + + + + + + +

Tests links to external fragment identifiers.

+

+ Activating the link on the green circle should load linking-frag-203-t and pan the viewport to + center the orange circle. +

+ + + $RCSfile: linking-frag-204-t.svg,v $ + + + + + + + + + + + + + + + + $Revision: 1.3 $ + + + + + diff --git a/test/W3C_SVG_12_TinyTestSuite_beta/svg/linking-refs-201-t.svg b/test/W3C_SVG_12_TinyTestSuite_beta/svg/linking-refs-201-t.svg new file mode 100755 index 00000000..0a727b8f --- /dev/null +++ b/test/W3C_SVG_12_TinyTestSuite_beta/svg/linking-refs-201-t.svg @@ -0,0 +1,79 @@ + + + + + + + + + + + +

External Animated Use Elements

+

+ A 'use' elements place various animated fragments. + A local animate element is then applied to further animate the fragment.- +

+

-

+ + + $RCSfile: linking-refs-201-t.svg,v $ + + + + + + + + + External Animated Use Elements + + + Two rotating rectangles, blue and black + with animated opacity + + + + + + + + Two rotating rectangles, oscillating in phase + opposition between yellow and red + + + + + + + + + + + + Animated rotation, translation and color at + different 'use' levels, external and internal + + + + + + + + $Revision: 1.7 $ + + + + + diff --git a/test/W3C_SVG_12_TinyTestSuite_beta/svg/linking-refs-202-t.svg b/test/W3C_SVG_12_TinyTestSuite_beta/svg/linking-refs-202-t.svg new file mode 100755 index 00000000..96b201c3 --- /dev/null +++ b/test/W3C_SVG_12_TinyTestSuite_beta/svg/linking-refs-202-t.svg @@ -0,0 +1,62 @@ + + + + + + + + + + + +

Images with 'use' Element

+

+ The first is an external PNG reference. + The second is an inline base64 image defined in an external file. +

+

+ Both images must be identical for the test to pass. +

+ + + $RCSfile: linking-refs-202-t.svg,v $ + + + + + + + + + + Images with 'use' Element + + The two images must appear identical. + + + + + External PNG image + + + + External base64 image + + + $Revision: 1.7 $ + + + + + diff --git a/test/W3C_SVG_12_TinyTestSuite_beta/svg/linking-refs-203-t.svg b/test/W3C_SVG_12_TinyTestSuite_beta/svg/linking-refs-203-t.svg new file mode 100755 index 00000000..773231e0 --- /dev/null +++ b/test/W3C_SVG_12_TinyTestSuite_beta/svg/linking-refs-203-t.svg @@ -0,0 +1,113 @@ + + + + + + + + + + + +

+ Tests various external fragments with 'use' element: + fill, stroke, text, group, multiple levels, name clash and circular references +

+

+ SVG fragments defined in an external file are invoked with the 'use' element. + The test is passed if the following objects are rendered: + - Right top; square with a horizontal gradient fill from orange to yellow, diagonal gradient stroke from blue to pink + - Right middle top; square with a diagonal gradient fill from blue to pink, horizontal gradient stroke from orange to yellow + - Right middle bottom; the letters ABC in an SVG font + - Right bottom; the English alphabet a to j in the shape of a square + - Left Top; square with horizontal gradient fill from orange to yellow, and 3 circles all with a blue to red gradient fill + running diagonally inside the square + - Left middle top; green square with a yellow circle in the middle + - Left middle bottom; red square + - Left bottom; two identical squares with light blue fill. +

+ + + $RCSfile: linking-refs-203-t.svg,v $ + + + + + + + + + + + + + + + + External Fragments with 'use' Element + + + + Rect using external gradients + for fill and stroke + + + + Rect using external fill gradient + gradient & local stroke gradient + + + + Text using SVG font + + + + Alphabet a to j + + + + + + Group using a rect and + 3 circles using gradients + + + + 2 levels of external <use> A green + rect, yellow circle must appear + + + + Testing id name clash. + Rect must be red + + + + + External circular reference + Two identical rectangles must appear, + proving the circular reference didn't loop + + + + + + + + $Revision: 1.8 $ + + + + + diff --git a/test/W3C_SVG_12_TinyTestSuite_beta/svg/linking-refs-204-t.svg b/test/W3C_SVG_12_TinyTestSuite_beta/svg/linking-refs-204-t.svg new file mode 100755 index 00000000..33ce1c72 --- /dev/null +++ b/test/W3C_SVG_12_TinyTestSuite_beta/svg/linking-refs-204-t.svg @@ -0,0 +1,91 @@ + + + + + + + + + + + +

+ External Fragments with 'use' Element. +

+

+ Tests SVG fragments defined in an external file are invoked with the 'use' element. + The test is passed if the following objects are rendered: + - Right top; square with red fill and blue stroke + - Right middle; square with black fill + - Right bottom; the letters 'A' in blue, 'B' in red, 'C' in blue + - Left top; square with red fill and a circle in the middle with a blue fill + - Left middle; square with green fill + - Left bottom; square with green transparent fill with an overlapping circle with a blue transparent fill. +

+ + + $RCSfile: linking-refs-204-t.svg,v $ + + + + + + + + + + + + + External Fragments with 'use' Element + + + + Red rect, blue stroke + + + + Black rect + + + + Blue-red-blue letters + + + + + + Group, red rect, blue circle + + + + Green rect, + "externally defined in this file" + + + + Test id clash - must show + transparent blue circle & green rect + + + + + + + $Revision: 1.7 $ + + + + + diff --git a/test/W3C_SVG_12_TinyTestSuite_beta/svg/linking-refs-205-t.svg b/test/W3C_SVG_12_TinyTestSuite_beta/svg/linking-refs-205-t.svg new file mode 100755 index 00000000..5c766b52 --- /dev/null +++ b/test/W3C_SVG_12_TinyTestSuite_beta/svg/linking-refs-205-t.svg @@ -0,0 +1,66 @@ + + + + + + + + + + + +

+ Tests a 'use' element referencing an 'image' element and an 'a' element with xml:base. +

+

+ The test is passed if two identical images are displayed. +

+

+ The image on the right is located in the images directory (../images/) while the + image on the left is located in image2 directory (../images/image2). The image on + the right is specified in the svglib3.svg file using an 'image' element. The image + on the left is specified in the svglib3.svg using an 'a' element. The 'a' element + contains a group around it that specifies the image2 directory using 'xml:base'. +

+ + + $RCSfile: linking-refs-205-t.svg,v $ + + + + + + + + + + Images with external 'use' Element + + Testing xml:base. The two images must appear identical. + + + Click to execute link + + + + + + + + $Revision: 1.7 $ + + + + + diff --git a/test/W3C_SVG_12_TinyTestSuite_beta/svg/linking-refs-206-t.svg b/test/W3C_SVG_12_TinyTestSuite_beta/svg/linking-refs-206-t.svg new file mode 100755 index 00000000..98b7fd12 --- /dev/null +++ b/test/W3C_SVG_12_TinyTestSuite_beta/svg/linking-refs-206-t.svg @@ -0,0 +1,91 @@ + + + + + + + + + + + +

+ Tests that values for the xlink role and arcrole attributes are stored in the DOM. + The test is passed if the raster image and the vector image both have dark + green and light green borders, same as the reference image. +

+

+ The values for role and arcrole are based on the RDDL specifications of + well known link natures (role) and well known link purposes (arcrole). Roles uses the namespace URI (for XML content types) or the canonical IANA URI of the media type registration (for non-XML content). +

+

+ A uDOM script reads the values of the xlink role and arcrole attributes, + checks that they are the correct values, and sets the fill colour of some rectangles + from shades of red (meaning incorrect) to shades of green (meaning correct). +

+ + + $RCSfile: linking-refs-206-t.svg,v $ + + + + + + + + + + + + + + + + + + + + + + + $Revision: 1.3 $ + + + + + \ No newline at end of file diff --git a/test/W3C_SVG_12_TinyTestSuite_beta/svg/linking-uri-03-t.svg b/test/W3C_SVG_12_TinyTestSuite_beta/svg/linking-uri-03-t.svg new file mode 100755 index 00000000..eb8ed894 --- /dev/null +++ b/test/W3C_SVG_12_TinyTestSuite_beta/svg/linking-uri-03-t.svg @@ -0,0 +1,78 @@ + + + + + + + + + + + +

+ Verify the handling of the allowable xlink attributes on the 'a' element. The initial view of this test contains a + single green triangle, labelling text, and the usual template legend and frame. +

+

+ There is a link on the triangle, pointing to an external SVG file, which is in the images directory (../images/). + The target file contains SVG 'text' elements which comprise a TOC and brief description of all of the SVG Tiny 1.2 + test files for Linking. Upon clicking the triangle, the image of the linkingToc-t.svg file should replace the + initial view of this test case in the viewer frame. +

+

+ The purpose of the test is to verify that viewers tolerate the presence of xlink attributes on the 'a' element. The + presence of the attributes should not change the behavior of the test in any way. The results of executing the link + should be identical to executing the first (topmost) link of linking-uri-01-t. +

+

+ There are two reference images associated with this test case. The first illustrates the correct "start" or initial + state of the rendered SVG file. The second illustrates the correct image after the link is activated (to the + linkingToc-t.svg file). (Note. This harness does not yet provide access to multiple PNGs; the first, initial-state + PNG is shown.) +

+

+ The test uses the 'rect' element, as well as basic fill (solid simple colors), stroke (black and colored wide and + 1-pixel lines), font-family (Arial) and font-size properties. +

+ + + $RCSfile: linking-uri-03-t.svg,v $ + + + + + + + + + Simple exercise of xlink attributes on the 'a' element. + + + + Click for TOC + Link to local file + linkingToc-t.svg. + + xlink:type="simple" + xlink:show="replace" + xlink:actuate="onRequest" + xlink:href="linkingToc-t.svg" + xlink:role="figure-out-a-role" + xlink:title="TOC of Linking BE tests." + target="_self" + + + $Revision: 1.9 $ + + + + + diff --git a/test/W3C_SVG_12_TinyTestSuite_beta/svg/media-alevel-201-t.svg b/test/W3C_SVG_12_TinyTestSuite_beta/svg/media-alevel-201-t.svg new file mode 100755 index 00000000..ed0fe2d8 --- /dev/null +++ b/test/W3C_SVG_12_TinyTestSuite_beta/svg/media-alevel-201-t.svg @@ -0,0 +1,141 @@ + + + + + + + + + + + +

Testing 'audio' Element with the 'audio-level' Attribute

+

+ The scale at the bottom of the slide uses a 'set' element to modify the 'audio-level' on the sample audio element. + The 'audio' element can be triggered by activating the current focus. +

+

+ If the user agent does not support the 3GP media format, the test is still a pass. +

+ + + $RCSfile: media-alevel-201-t.svg,v $ + + + + + + + + + + + Audio Level + + + The scale at the bottom uses 'set' to modify the 'audio-level' on the sample audio element. + + + The audio element can be triggered by activating the current focus. + + + + + + + + + + + + + + + + + + + + + + + + + + + + 0 + volume + 10 + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + $Revision: 1.10 $ + + + + + diff --git a/test/W3C_SVG_12_TinyTestSuite_beta/svg/media-alevel-202-t.svg b/test/W3C_SVG_12_TinyTestSuite_beta/svg/media-alevel-202-t.svg new file mode 100755 index 00000000..9b8a29f6 --- /dev/null +++ b/test/W3C_SVG_12_TinyTestSuite_beta/svg/media-alevel-202-t.svg @@ -0,0 +1,138 @@ + + + + + + + + + + + +

Testing 'video' Element with the 'audio-level' Attribute

+

+ The scale at the bottom of the slide uses a 'set' element to modify the 'audio-level' on the sample video element. +

+

+ The 'video' element can also be triggered by activating the current focus. +

+

+ If the user agent does not support the 3GP media format, the test is still a pass. +

+ + + $RCSfile: media-alevel-202-t.svg,v $ + + + + + + + + + + + Audio Level + + + The scale at the bottom uses 'set' to modify the 'audio-level' on the sample video element. + + + The video element can be triggered by activating the current focus. + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + 0 + volume + 10 + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + $Revision: 1.10 $ + + + + + diff --git a/test/W3C_SVG_12_TinyTestSuite_beta/svg/media-alevel-203-t.svg b/test/W3C_SVG_12_TinyTestSuite_beta/svg/media-alevel-203-t.svg new file mode 100755 index 00000000..4a02f0a4 --- /dev/null +++ b/test/W3C_SVG_12_TinyTestSuite_beta/svg/media-alevel-203-t.svg @@ -0,0 +1,67 @@ + + + + + + + + + + + +

+ Test on audio level animation. audio-level is animated to many values between 0 and 1. The volume dial graphic animates to show the expected relative volume. +

+

+ If the user agent does not support the WAV media format, the test is still a pass. +

+ + + $RCSfile: media-alevel-203-t.svg,v $ + + + + + + + + + + + + + + + + + + + + + + + + Animated volume. + + + $Revision: 1.7 $ + + + + + diff --git a/test/W3C_SVG_12_TinyTestSuite_beta/svg/media-alevel-204-t.svg b/test/W3C_SVG_12_TinyTestSuite_beta/svg/media-alevel-204-t.svg new file mode 100755 index 00000000..95c88b65 --- /dev/null +++ b/test/W3C_SVG_12_TinyTestSuite_beta/svg/media-alevel-204-t.svg @@ -0,0 +1,89 @@ + + + + + + + + + + + +

+ Test on animated audio-level. Two sound-clips have their audio-level animated to different values over 10 seconds. +

+

+ If the user agent does not support the WAV media format, the test is still a pass. +

+ + + $RCSfile: media-alevel-204-t.svg,v $ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + Animated audio-level + Two sound-clips have their volume animated to different values over 10 seconds. + + + $Revision: 1.6 $ + + + + + diff --git a/test/W3C_SVG_12_TinyTestSuite_beta/svg/media-alevel-205-t.svg b/test/W3C_SVG_12_TinyTestSuite_beta/svg/media-alevel-205-t.svg new file mode 100755 index 00000000..26785d65 --- /dev/null +++ b/test/W3C_SVG_12_TinyTestSuite_beta/svg/media-alevel-205-t.svg @@ -0,0 +1,70 @@ + + + + + + + + + + + +

+ Test on audio volume control by animation. audio-level is animated from 0 to 1 over 10 seconds. +

+

+ If the user agent does not support the WAV media format, the test is still a pass. +

+ + + $RCSfile: media-alevel-205-t.svg,v $ + + + + + + + + + + + + + + + + + + + + + + + + Animated volume + dur="10" + from="0" to="1" + + + + $Revision: 1.6 $ + + + + + diff --git a/test/W3C_SVG_12_TinyTestSuite_beta/svg/media-alevel-206-t.svg b/test/W3C_SVG_12_TinyTestSuite_beta/svg/media-alevel-206-t.svg new file mode 100755 index 00000000..3b215185 --- /dev/null +++ b/test/W3C_SVG_12_TinyTestSuite_beta/svg/media-alevel-206-t.svg @@ -0,0 +1,75 @@ + + + + + + + + + + + +

+ Test on audio-level inheritance in several child elements. audio-level on the first element is 0.5. audio-level on the second sound is halved to 0.25. audio-level on the third and fourth sounds are halved agian to 0.125 and 0.0625 respectively. +

+

+ If the user agent does not support the WAV media format, the test is still a pass. +

+ + + $RCSfile: media-alevel-206-t.svg,v $ + + + + + + + + + + + + + + + Test on audio-level inheritance in child elements. + An audio file is played four times. Each time the audio-level should be cut in half. + The four audio-level values should be: 0.5 , 0.25 , 0.125 , 0.0625 + A very noticeable difference in audio level should be heard! + + + + $Revision: 1.7 $ + + + + + diff --git a/test/W3C_SVG_12_TinyTestSuite_beta/svg/media-alevel-207-t.svg b/test/W3C_SVG_12_TinyTestSuite_beta/svg/media-alevel-207-t.svg new file mode 100755 index 00000000..3a8bb23e --- /dev/null +++ b/test/W3C_SVG_12_TinyTestSuite_beta/svg/media-alevel-207-t.svg @@ -0,0 +1,58 @@ + + + + + + + + + + + +

+ Test on audio. audio-level is set to "0" so no sound should be heard. +

+

+ If the user agent does not support the WAV media format, the test is still a pass. +

+ + + $RCSfile: media-alevel-207-t.svg,v $ + + + + + + + + + + Test on audio-level + audio-level="0" + An audio file is repeated for 10 seconds, + should NOT be audible! + + + + $Revision: 1.6 $ + + + + + diff --git a/test/W3C_SVG_12_TinyTestSuite_beta/svg/media-alevel-208-t.svg b/test/W3C_SVG_12_TinyTestSuite_beta/svg/media-alevel-208-t.svg new file mode 100755 index 00000000..ef405e5a --- /dev/null +++ b/test/W3C_SVG_12_TinyTestSuite_beta/svg/media-alevel-208-t.svg @@ -0,0 +1,58 @@ + + + + + + + + + + + +

+ Test on audio. audio-level is set to "1" so a audio-file being repeated for 10s should be heard. +

+

+ If the user agent does not support the WAV media format, the test is still a pass. +

+ + + $RCSfile: media-alevel-208-t.svg,v $ + + + + + + + + + + Test on audio-level + audio-level="1" + An audio file is repeated for 10 seconds, + should be audible! + + + + $Revision: 1.6 $ + + + + + diff --git a/test/W3C_SVG_12_TinyTestSuite_beta/svg/media-anim-201-t.svg b/test/W3C_SVG_12_TinyTestSuite_beta/svg/media-anim-201-t.svg new file mode 100755 index 00000000..fe704115 --- /dev/null +++ b/test/W3C_SVG_12_TinyTestSuite_beta/svg/media-anim-201-t.svg @@ -0,0 +1,98 @@ + + + + + + + + + + + +

This test validates the Animation element with external references.

+

There are five references. Each one is a separate file.

+

The time scale loops from 0 to 10 seconds - the vertical red line pans from left to right.

+

In the first example the two rectangles are set to rotate 90 degrees alternatively.

+

In the second case the circle has focus. Since this is the only item that has focus it can not loose focus and should remain red even when an attempt is made to change focus.

+

The third example has a circle that is set to change to red on a mouseover event. On mouseout the circle should change back to grey.

+

The forth example invokes the same external file twice - two squares with a gradiant should be rotating in sync continously.

+

The last case calls an animation that should display a blue square with five gradiant circles all rotating continously.

+ + + $RCSfile: media-anim-201-t.svg,v $ + + + + + + + + + + Animation Elements with External References + + + + + + + + + + + Reference Timeline : starts at 0, goes through the scale in 10s. + Squares should rotate indefinetly. + + + 1. + Reference to external dual-chained animation. + Rects should spin alternatively. + + + + + 2. + Reference to focusable circle. Should start as red and + remain red even when an attempt is made to move focus. + + + + 3. + Reference to mouseoverable circle. + Should be grey and turn red on mousover then back to grey. + + + + 4. + Reference to animated rect with gradient fill - twice. + + + + + + 5. + Reference to animated group rect using circles with gradients. + + + + + + + $Revision: 1.11 $ + + + + + diff --git a/test/W3C_SVG_12_TinyTestSuite_beta/svg/media-anim-202-t.svg b/test/W3C_SVG_12_TinyTestSuite_beta/svg/media-anim-202-t.svg new file mode 100755 index 00000000..9a7bf038 --- /dev/null +++ b/test/W3C_SVG_12_TinyTestSuite_beta/svg/media-anim-202-t.svg @@ -0,0 +1,108 @@ + + + + + + + + + + + +

Animation Elements with External References

+

+ This test validates the animation element with external references with emphases on time based animations. + The same external file is used for all seven tests. +

+

+ The 'initialVisibility' attribute is not specified so the default should apply - 'whenStarted'. + In other words the animations should not be visible until they start and then they should disappear as the + fill is not set to 'freeze' so the initial state should be re-instated. +

+ + + $RCSfile: media-anim-202-t.svg,v $ + + + + + + + + + + + Animation Elements with External References + + Testing time-base animation control. Every time a scale shows up, its own time should be 0 + + + + + + + + + + + + Reference Timeline : starts at 0, goes through the scale in 10s + + + + 1. + Full Animation : starts at 0, stops at 10 + + + + 2. + Shorter Animation used : appears at 2, stops at 6 + + + + 3. + Longer Animation (14s) : appears at 0, stops at 10 + + + + 4. + Short repeatCount animation : goes 5 times from 0 to 2, + stops at 10 + + + + 5. + Short repeatDur animation : same as above + + + + 6. + Frozen animation : appears at 4, freezes on 4 at 8 + + + + 7. + Interrupted animation : should stop at 4 because of + "end" attribute + + + + + $Revision: 1.11 $ + + + + + diff --git a/test/W3C_SVG_12_TinyTestSuite_beta/svg/media-anim-203-t.svg b/test/W3C_SVG_12_TinyTestSuite_beta/svg/media-anim-203-t.svg new file mode 100755 index 00000000..87d9d694 --- /dev/null +++ b/test/W3C_SVG_12_TinyTestSuite_beta/svg/media-anim-203-t.svg @@ -0,0 +1,96 @@ + + + + + + + + + + + +

Animation Elements with External References

+

+ This test validates the animation element with external references with emphases on time based animations. + The same external file is used for all seven tests. +

+

+ The 'initialVisibility' attribute is not specified so the default should apply - 'whenStarted'. + In other words the animations should not be visible until they start and then they should disappear as the + fill is not set to 'freeze' so the initial state should be re-instated. +

+ + + $RCSfile: media-anim-203-t.svg,v $ + + + + + + + + + + + Animation Elements with External References + + Testing time-base animation control. Every time a scale shows up, its own time should be 0 + + + + + + + + + + + + Reference Timeline : starts at 0, goes through the scale in 10s, + + + + 1. + Animation events, runs for 2s at time 0 and when (4) ends + + + + 2. + Animation events, runs for 2s when (1) ends + + + + 3. + Animation events, runs for 2s when (2) ends + + + + 4. + Animation events, runs for 2s when (3) ends + + + + 5. + Animation events, starts at 0 and loops every two seconds. + + + + + $Revision: 1.11 $ + + + + + diff --git a/test/W3C_SVG_12_TinyTestSuite_beta/svg/media-anim-204-t.svg b/test/W3C_SVG_12_TinyTestSuite_beta/svg/media-anim-204-t.svg new file mode 100755 index 00000000..22709954 --- /dev/null +++ b/test/W3C_SVG_12_TinyTestSuite_beta/svg/media-anim-204-t.svg @@ -0,0 +1,132 @@ + + + + + + + + + + + +

Animation Elements with External References

+

+ This test validates the animation element with external references with emphases on time based animations. + The same external file is used for all seven tests. +

+ + + $RCSfile: media-anim-204-t.svg,v $ + + + + + + + + + + + Animation Elements with External References + + Testing time-base animation control. Every time a scale shows up, its own time should be 0 + + + + + + + + + + + + Reference Timeline: starts at 0, goes through the scale in 10s, + + + + + 1. + User event driven animation: appears upon + text focusing, stops after 2s or focus lost + + + + + + + + + 2. + User event driven animation: starts upon + text focusing, stops after 2s or focus lost + + + + + + + + + + 3. + User event driven animation: appears upon + mouseover, stops after 2s or mouseout + + + + + + + + + + 4. + User event driven animation: appears upon + mouseover. Stops after 10s + + + + + + + + + 5. + User event/animation event driven: starts and runs + for 2s when animation (3) or (4) begins. + + + + + + 6. + User event/animation event driven: appears and runs + for 2s when animation (1) through (5) ends. + + + + 7. + Animation events: starts at 0 and loops every two seconds. + + + + + $Revision: 1.13 $ + + + + + diff --git a/test/W3C_SVG_12_TinyTestSuite_beta/svg/media-anim-205-t.svg b/test/W3C_SVG_12_TinyTestSuite_beta/svg/media-anim-205-t.svg new file mode 100755 index 00000000..13872bd3 --- /dev/null +++ b/test/W3C_SVG_12_TinyTestSuite_beta/svg/media-anim-205-t.svg @@ -0,0 +1,86 @@ + + + + + + + + + + + +

Animation Elements with External References

+

+ This is one of a series of test slides that exercise all the permitted values for the 'preserveAspectRatio' + attribute values. +

+

+ The external resource referenced by the animation element has a viewport-fill defined with a solid color. + This should be ignored and the local color of blue should be used. +

+

A semi-transparent yellow rectangle should be animating within each viewport.

+ + + $RCSfile: media-anim-205-t.svg,v $ + + + + + + + + + + Animation Elements with External References + Testing 'preserveAspectRatio' attribute values on <animation> + + + + none + + + + + xMidYMid meet + + + + + defer (xMinYMin) + + + + + + + + + + + + + + + + + + + + $Revision: 1.11 $ + + + + + diff --git a/test/W3C_SVG_12_TinyTestSuite_beta/svg/media-anim-206-t.svg b/test/W3C_SVG_12_TinyTestSuite_beta/svg/media-anim-206-t.svg new file mode 100755 index 00000000..210d7df4 --- /dev/null +++ b/test/W3C_SVG_12_TinyTestSuite_beta/svg/media-anim-206-t.svg @@ -0,0 +1,72 @@ + + + + + + + + + + + +

Animation Elements with External References

+

This slide tests the 'viewport-fill' and 'viewport-fill-opacity' attributes defined locally.

+

+ The externally resource referenced by the animation element has a 'viewport-fill' defined with a black to yellow gradient. + This should be ignored and the local definitions should be used - red for the left, blue for the middle and semi-transparent black for the right. +

+

A semi-transparent yellow rectangle should be animating within each viewport.

+ + + $RCSfile: media-anim-206-t.svg,v $ + + + + + + + + + + + + Animation Elements with External References + Testing 'viewport-fill' and 'viewport-fill-opacity' defined locally. + + + red background fill + + + + + blue background fill + + + + + transparent + black background + + + + + + + $Revision: 1.10 $ + + + + + diff --git a/test/W3C_SVG_12_TinyTestSuite_beta/svg/media-anim-207-t.svg b/test/W3C_SVG_12_TinyTestSuite_beta/svg/media-anim-207-t.svg new file mode 100755 index 00000000..e60bf3f2 --- /dev/null +++ b/test/W3C_SVG_12_TinyTestSuite_beta/svg/media-anim-207-t.svg @@ -0,0 +1,83 @@ + + + + + + + + + + + +

Animation Elements with External References

+

This slide applies different transformations to the animation element.

+

+ The externally resource referenced by the animation element has a viewport-fill defined with a black to yellow gradient. + This should be ignored and over ridden by the color aqua. +

+ + + $RCSfile: media-anim-207-t.svg,v $ + $RCSfile: media-anim-207-t.svg,v $ + + + + + + + + + + + Animation Elements with External References + Testing transformations applied to the Animation element. + + + + Skew Y + + + + + + + 10 deg center rotation + + + + + + + Scaled square viewPort + + + + + + + No width/height, + No animation expected + + + + + + + $Revision: 1.8 $ + + + + + diff --git a/test/W3C_SVG_12_TinyTestSuite_beta/svg/media-anim-208-t.svg b/test/W3C_SVG_12_TinyTestSuite_beta/svg/media-anim-208-t.svg new file mode 100755 index 00000000..cb734fb1 --- /dev/null +++ b/test/W3C_SVG_12_TinyTestSuite_beta/svg/media-anim-208-t.svg @@ -0,0 +1,139 @@ + + + + + + + + + + + +

Animation Elements with External References

+

+ This test validates the animation element with external references with emphases on time based animations. + The same external file is used for all seven tests. +

+

+ The 'initialVisibility' attribute is not specified so the default should apply - 'whenStarted'. + In other words the animations should not be visible until they start and then they should disappear as the + fill is not set to 'freeze' so the initial state should be re-instated. +

+ + + $RCSfile: media-anim-208-t.svg,v $ + + + + + + + + + + + Animation Elements testing initialVisibility + + Testing time-base animation control. Every time a scale shows up, its own time should be 0 + + + + + + + + + + + + Reference Timeline: starts at 0, goes through the scale in 10s, + + + + + 1. + User event driven animation: starts upon + text focusing, stops after 2s or focus lost + + + + + + + + + 2. + User event driven animation: starts upon + text focusing, stops after 2s or focus lost + + + + + + + + + + 3. + User event driven animation: starts upon + mouseover, stops after 2s or mouseout + + + + + + + + + + 4. + User event driven animation: starts upon + mouseover. Stops after 10s + + + + + + + + + 5. + User event/animation event driven: runs + for 2s when animation (3) or (4) begins. + + + + + + + + 6. + User event/animation event driven: runs + for 2s when animation (1) through (5) ends. + + + + 7. + Animation events: starts at 0 and loops every two seconds. + + + + + $Revision: 1.12 $ + + + + + diff --git a/test/W3C_SVG_12_TinyTestSuite_beta/svg/media-anim-209-t.svg b/test/W3C_SVG_12_TinyTestSuite_beta/svg/media-anim-209-t.svg new file mode 100755 index 00000000..6634ca5d --- /dev/null +++ b/test/W3C_SVG_12_TinyTestSuite_beta/svg/media-anim-209-t.svg @@ -0,0 +1,73 @@ + + + + + + + + + + + +

Animation Elements with Discard

+

Four animation elements reference struct-discard-201.svg.

+

Each animation element is a target of a discard, at 6, 10, 14 and 18s.

+

To pass each animation element should discard at the specified time.

+

In addition, each referenced file should behave as indicated in the test struct-discard-201.

+ + + $RCSfile: media-anim-209-t.svg,v $ + + + + + + + + + + Animation and discard elements + + + + + Discard @ 6s + + + + Discard @ 10s + + + + Discard @ 14s + + + + Discard @ 18s + + + + + + + + + + $Revision: 1.9 $ + + + + + diff --git a/test/W3C_SVG_12_TinyTestSuite_beta/svg/media-anim-210-t.svg b/test/W3C_SVG_12_TinyTestSuite_beta/svg/media-anim-210-t.svg new file mode 100755 index 00000000..b657d3f1 --- /dev/null +++ b/test/W3C_SVG_12_TinyTestSuite_beta/svg/media-anim-210-t.svg @@ -0,0 +1,67 @@ + + + + + + + + + + + +

Animation Elements with External References

+

+ This slide tests independent primary documents. Each referenced primary document has a separate script context. + This test is only applicable if application/ecmascript is available. +

+

Four animation elements reference a document which has an activate handler on a circle.

+

Focus should start on the top-left circle and move to top-right, bottom-left and bottom-right.

+

Activating the circle will toggle its radius size, but for the currently focused circle only.

+

This is due to the fact that each primary document has a separate script context.

+ + + $RCSfile: media-anim-210-t.svg,v $ + + + + + + + + + + Animation element and primary documents + + + + + + + + + + + + + + + + + $Revision: 1.11 $ + + + + + diff --git a/test/W3C_SVG_12_TinyTestSuite_beta/svg/media-anim-211-t.svg b/test/W3C_SVG_12_TinyTestSuite_beta/svg/media-anim-211-t.svg new file mode 100755 index 00000000..d58038dc --- /dev/null +++ b/test/W3C_SVG_12_TinyTestSuite_beta/svg/media-anim-211-t.svg @@ -0,0 +1,62 @@ + + + + + + + + + + + +

+ Animation Elements with Incorrect xlink:href + This slide tests the animation xlink:href attribute with invalid values +

+

+ The test will pass if the area within the red rectangle remains empty. +

+ + + $RCSfile: media-anim-211-t.svg,v $ + + + + + + + + + + Animation element with invalid xlink:href + + + + + + + + + + + + + + $Revision: 1.5 $ + + + + + diff --git a/test/W3C_SVG_12_TinyTestSuite_beta/svg/media-anim-212-t.svg b/test/W3C_SVG_12_TinyTestSuite_beta/svg/media-anim-212-t.svg new file mode 100755 index 00000000..f3f05007 --- /dev/null +++ b/test/W3C_SVG_12_TinyTestSuite_beta/svg/media-anim-212-t.svg @@ -0,0 +1,70 @@ + + + + + + + + + + + +

+ Animation Element with animating xlink:href + This slide tests animating the xlink:href attribute of animation elements + Every 2.5 seconds the animation will display a circle instead of a timeline. + The circle is focusable and as such should receive the focus and turn red. +

+ + + $RCSfile: media-anim-212-t.svg,v $ + + + + + + + + + + + + Animation Element with animating xlink:href. + This slide tests animating the xlink:href attribute of animation elements. + + + + + + + + Reference Timeline : starts at 0, goes through the scale in 10s. + + + + + + Reference to external animation. + + + + + + $Revision: 1.8 $ + + + + + diff --git a/test/W3C_SVG_12_TinyTestSuite_beta/svg/media-anim-213-t.svg b/test/W3C_SVG_12_TinyTestSuite_beta/svg/media-anim-213-t.svg new file mode 100755 index 00000000..608ed590 --- /dev/null +++ b/test/W3C_SVG_12_TinyTestSuite_beta/svg/media-anim-213-t.svg @@ -0,0 +1,42 @@ + + + + + + + + + + + +

The file is a basic test of animation element.

+

The rendered picture should match the reference image, except for possible variations in the labelling text (per CSS2 rules).

+

The test uses the 'rect' element, as well as basic fill (solid primary colors), stroke (black 1-pixel lines), font-family (Arial) and font-size properties.

+ + + $RCSfile: media-anim-213-t.svg,v $ + + + + + + + + + + + + $Revision: 1.4 $ + + + + + diff --git a/test/W3C_SVG_12_TinyTestSuite_beta/svg/media-audio-201-t.svg b/test/W3C_SVG_12_TinyTestSuite_beta/svg/media-audio-201-t.svg new file mode 100755 index 00000000..d513914e --- /dev/null +++ b/test/W3C_SVG_12_TinyTestSuite_beta/svg/media-audio-201-t.svg @@ -0,0 +1,59 @@ + + + + + + + + + + + +

+ Test on audio. +

+

+ Two audio elements referencing different media files start at 0s. +

+

+ Two distinct media audio file should be heard at the same time. +

+

+ If the user agent does not support the WAV media format, the test is still a pass. +

+ + + $RCSfile: media-audio-201-t.svg,v $ + + + + + + + + + + Two sounds at the same time + + + + $Revision: 1.5 $ + + + + + diff --git a/test/W3C_SVG_12_TinyTestSuite_beta/svg/media-audio-202-t.svg b/test/W3C_SVG_12_TinyTestSuite_beta/svg/media-audio-202-t.svg new file mode 100755 index 00000000..feea4821 --- /dev/null +++ b/test/W3C_SVG_12_TinyTestSuite_beta/svg/media-audio-202-t.svg @@ -0,0 +1,59 @@ + + + + + + + + + + + +

+ Test on audio with repeatCount. +

+

+ An audio element has a repeatCount of 2. +

+

+ The audio media file should play twice. +

+

+ If the user agent does not support the WAV media format, the test is still a pass. +

+ + + $RCSfile: media-audio-202-t.svg,v $ + + + + + + + + + + + $Revision: 1.5 $ + + + + + \ No newline at end of file diff --git a/test/W3C_SVG_12_TinyTestSuite_beta/svg/media-audio-203-t.svg b/test/W3C_SVG_12_TinyTestSuite_beta/svg/media-audio-203-t.svg new file mode 100755 index 00000000..6f0106da --- /dev/null +++ b/test/W3C_SVG_12_TinyTestSuite_beta/svg/media-audio-203-t.svg @@ -0,0 +1,58 @@ + + + + + + + + + + + +

+ Test on audio with repeatCount. +

+

+ An audio element has a repeatCount of indefinite. +

+

+ The audio media file should loop indefinitely. +

+

+ If the user agent does not support the WAV media format, the test is still a pass. +

+ + + $RCSfile: media-audio-203-t.svg,v $ + + + + + + + + + + + $Revision: 1.5 $ + + + + + diff --git a/test/W3C_SVG_12_TinyTestSuite_beta/svg/media-audio-204-t.svg b/test/W3C_SVG_12_TinyTestSuite_beta/svg/media-audio-204-t.svg new file mode 100755 index 00000000..16d457a2 --- /dev/null +++ b/test/W3C_SVG_12_TinyTestSuite_beta/svg/media-audio-204-t.svg @@ -0,0 +1,63 @@ + + + + + + + + + + + +

+ Test on audio with repeatCount. +

+

+ An audio element has a repeatCount of 5 and an end attribute of 3s. +

+

+ To pass the audio media file should play for 3 seconds and NOT repeat 5 times. +

+

+ If the user agent does not support the WAV media format, the test is still a pass. +

+ + + $RCSfile: media-audio-204-t.svg,v $ + + + + + + + + + + + $Revision: 1.5 $ + + + + + diff --git a/test/W3C_SVG_12_TinyTestSuite_beta/svg/media-audio-205-t.svg b/test/W3C_SVG_12_TinyTestSuite_beta/svg/media-audio-205-t.svg new file mode 100755 index 00000000..066a5395 --- /dev/null +++ b/test/W3C_SVG_12_TinyTestSuite_beta/svg/media-audio-205-t.svg @@ -0,0 +1,56 @@ + + + + + + + + + + + +

+ An audio element has a begin attribute of 3 seconds. +

+

+ To pass the audio media file should play 3 seconds after loading the svg file. +

+

+ If the user agent does not support the WAV media format, the test is still a pass. +

+ + + $RCSfile: media-audio-205-t.svg,v $ + + + + + + + + + + begin="3s" + + + + + $Revision: 1.5 $ + + + + + diff --git a/test/W3C_SVG_12_TinyTestSuite_beta/svg/media-audio-206-t.svg b/test/W3C_SVG_12_TinyTestSuite_beta/svg/media-audio-206-t.svg new file mode 100755 index 00000000..05621942 --- /dev/null +++ b/test/W3C_SVG_12_TinyTestSuite_beta/svg/media-audio-206-t.svg @@ -0,0 +1,79 @@ + + + + + + + + + + + +

+ An audio file begins at 2s and 10s, has a dur of 1, and a repeatCount of 2. +

+

+ A text element animates y values with begin at 2s and 10s, a dur of 1, and a repeatCount of 2. +

+

+ At 2s the media audio file should be audible and repeat twice. +

+

+ At 2s the media audio file should be audible and repeat twice. +

+

+ Also at 2s, the text should animate downwards twice. +

+

+ At 10s the media audio file should be audible and repeat twice. +

+

+ At 10s the media audio file should be audible and repeat twice. +

+

+ Also at 10s, the text should animate downwards twice. +

+

+ If the user agent does not support the WAV media format, the test is still a pass. +

+ + + $RCSfile: media-audio-206-t.svg,v $ + + + + + + + + + + + Audio and Animation start and end simultaneously + + + + + + $Revision: 1.5 $ + + + + + \ No newline at end of file diff --git a/test/W3C_SVG_12_TinyTestSuite_beta/svg/media-audio-207-t.svg b/test/W3C_SVG_12_TinyTestSuite_beta/svg/media-audio-207-t.svg new file mode 100755 index 00000000..3dc637b3 --- /dev/null +++ b/test/W3C_SVG_12_TinyTestSuite_beta/svg/media-audio-207-t.svg @@ -0,0 +1,73 @@ + + + + + + + + + + + +

+ An audio file begins at 4s and 11s, ends at 10s, has a dur of 1, repeatCount of 2 and repeatDur of 6. +

+

+ A text element animates y values with begin at 4s and 11s, end at 10s, a dur of 1, repeatCount of 2 and repeatDur of 6. +

+

+ At 4s the media audio file should be audible and repeat twice. +

+

+ At 4s the media audio file should be audible and repeat twice. +

+

+ Also at 4s, the text should animate downwards twice. +

+

+ Nothing should be audible or animate at 11s, since the animations end at 10s. +

+

+ If the user agent does not support the WAV media format, the test is still a pass. +

+ + + $RCSfile: media-audio-207-t.svg,v $ + + + + + + + + + + + Audio and Animation start and end simultaneously + + + + + + $Revision: 1.5 $ + + + + + diff --git a/test/W3C_SVG_12_TinyTestSuite_beta/svg/media-audio-208-t.svg b/test/W3C_SVG_12_TinyTestSuite_beta/svg/media-audio-208-t.svg new file mode 100755 index 00000000..0ba33264 --- /dev/null +++ b/test/W3C_SVG_12_TinyTestSuite_beta/svg/media-audio-208-t.svg @@ -0,0 +1,60 @@ + + + + + + + + + + + +

+ An audio element 'sound1' starts at 0s. +

+

+ A second audio element 'sound2' starts at sound1.end. +

+

+ The audio media file for sound1 will play followed by the media file for sound2. +

+

+ If the user agent does not support the WAV media format, the test is still a pass. +

+ + + $RCSfile: media-audio-208-t.svg,v $ + + + + + + + + + + Second sound will start when first ends + begin="sound1.end" + + + + $Revision: 1.5 $ + + + + + diff --git a/test/W3C_SVG_12_TinyTestSuite_beta/svg/media-audio-209-t.svg b/test/W3C_SVG_12_TinyTestSuite_beta/svg/media-audio-209-t.svg new file mode 100755 index 00000000..2570ee8f --- /dev/null +++ b/test/W3C_SVG_12_TinyTestSuite_beta/svg/media-audio-209-t.svg @@ -0,0 +1,63 @@ + + + + + + + + + + + +

+ A rectangle is animating its width between 0 and 3s. +

+

+ An audio element has its begin and end attributes set to the begin and end attributes of the rect animation. +

+

+ The sound will repeat while the bar is moving. +

+

+ If the user agent does not support the WAV media format, the test is still a pass. +

+ + + $RCSfile: media-audio-209-t.svg,v $ + + + + + + + + + + + + $Revision: 1.5 $ + + + + + diff --git a/test/W3C_SVG_12_TinyTestSuite_beta/svg/media-audio-210-t.svg b/test/W3C_SVG_12_TinyTestSuite_beta/svg/media-audio-210-t.svg new file mode 100755 index 00000000..56f4ac0d --- /dev/null +++ b/test/W3C_SVG_12_TinyTestSuite_beta/svg/media-audio-210-t.svg @@ -0,0 +1,68 @@ + + + + + + + + + + + +

+ An audio element 'mondays' begains at 0s and also at problem.end, with a repeatDur of 3s. +

+

+ An audio element 'problem' begains at mondays.end, with a repeatDur of 3s. +

+

+ The two sounds should take turns and play for 3 seconds each. +

+

+ If the user agent does not support the WAV media format, the test is still a pass. +

+ + + $RCSfile: media-audio-210-t.svg,v $ + + + + + + + + + + + + $Revision: 1.5 $ + + + + + diff --git a/test/W3C_SVG_12_TinyTestSuite_beta/svg/media-audio-211-t.svg b/test/W3C_SVG_12_TinyTestSuite_beta/svg/media-audio-211-t.svg new file mode 100755 index 00000000..70ad1806 --- /dev/null +++ b/test/W3C_SVG_12_TinyTestSuite_beta/svg/media-audio-211-t.svg @@ -0,0 +1,64 @@ + + + + + + + + + + + +

+ An audio element begins at 1s and ends at 3s and is the child of a defs element. +

+

+ The audio media file should be muted. +

+

+ If the user agent does not support the WAV media format, the test is still a pass. +

+ + + $RCSfile: media-audio-211-t.svg,v $ + + + + + + + + + + + + + + Test on audio in a def element + There should be no sound ! + + + $Revision: 1.5 $ + + + + + diff --git a/test/W3C_SVG_12_TinyTestSuite_beta/svg/media-audio-212-t.svg b/test/W3C_SVG_12_TinyTestSuite_beta/svg/media-audio-212-t.svg new file mode 100755 index 00000000..144495b4 --- /dev/null +++ b/test/W3C_SVG_12_TinyTestSuite_beta/svg/media-audio-212-t.svg @@ -0,0 +1,109 @@ + + + + + + + + + + + +

+ Two audio elements reference the same media file, start at 0s, have a dur of 2s and a repeatCount of 5. +

+

+ The 1st audio element has its display attribute set to none between 4 and 6 seconds. +

+

+ The 2nd use element has its visibility attribute set to hidden between 4 and 6 seconds. +

+

+ The 1st audio element should be muted bewteen 4-6 seconds +

+

+ The 2nd audio element should be muted bewteen 4-6 seconds +

+

+ If the user agent does not support the WAV media format, the test is still a pass. +

+ + + $RCSfile: media-audio-212-t.svg,v $ + + + + + + + + + + + + + Animated display and visibility + + Should be muted at R(2) and audible at R(1), R(3) and R(4) + + + + + + 0-2(s) + Begin + + + + + 2-4(s) + R(1) + + + + + 4-6(s) + R(2) + + + + + 6-8(s) + R(3) + + + + + 8-10(s) + R(4) + + 0123456789(s) + + + + + + + $Revision: 1.5 $ + + + + + diff --git a/test/W3C_SVG_12_TinyTestSuite_beta/svg/media-audio-213-t.svg b/test/W3C_SVG_12_TinyTestSuite_beta/svg/media-audio-213-t.svg new file mode 100755 index 00000000..b275ace1 --- /dev/null +++ b/test/W3C_SVG_12_TinyTestSuite_beta/svg/media-audio-213-t.svg @@ -0,0 +1,117 @@ + + + + + + + + + + + +

+ Two audio elements are children of a defs element and reference the same media file, start at 0s, have a dur of 2s and a repeatCount of 5. +

+

+ The audio elements are each referenced by a single use element. +

+

+ The 1st use element has its display attribute set to none between 4 and 6 seconds. +

+

+ The 2nd use element has its visibility attribute set to hidden between 4 and 6 seconds. +

+

+ The 1st audio element should be muted bewteen 4-6 seconds +

+

+ The 2nd audio element should be muted bewteen 4-6 seconds +

+

+ If the user agent does not support the WAV media format, the test is still a pass. +

+ + + $RCSfile: media-audio-213-t.svg,v $ + + + + + + + + + + + + + + + + + + + + Animated display and visibility with Use + + Should be muted at R(2) and audible at R(1), R(3) and R(4) + + + + + + 0-2(s) + Begin + + + + + 2-4(s) + R(1) + + + + + 4-6(s) + R(2) + + + + + 6-8(s) + R(3) + + + + + 8-10(s) + R(4) + + 0123456789(s) + + + + + + + $Revision: 1.6 $ + + + + + diff --git a/test/W3C_SVG_12_TinyTestSuite_beta/svg/media-audio-214-t.svg b/test/W3C_SVG_12_TinyTestSuite_beta/svg/media-audio-214-t.svg new file mode 100755 index 00000000..47a9e7b6 --- /dev/null +++ b/test/W3C_SVG_12_TinyTestSuite_beta/svg/media-audio-214-t.svg @@ -0,0 +1,60 @@ + + + + + + + + + + + +

+ Audio Elements with Incorrect xlink:href. + This slide tests the audio xlink:href attribute with invalid values. +

+

+ The test will pass if no audio can be heard. +

+ + + $RCSfile: media-audio-214-t.svg,v $ + + + + + + + + + + Audio element with invalid xlink:href. + Each audio element has a xlink:href reference to media + other than a supported audio file. + + + + $Revision: 1.5 $ + + + + + diff --git a/test/W3C_SVG_12_TinyTestSuite_beta/svg/media-audio-215-t.svg b/test/W3C_SVG_12_TinyTestSuite_beta/svg/media-audio-215-t.svg new file mode 100755 index 00000000..444a5990 --- /dev/null +++ b/test/W3C_SVG_12_TinyTestSuite_beta/svg/media-audio-215-t.svg @@ -0,0 +1,249 @@ + + + + + + + + + + + +

+ Tests the audio-level property for nested audio elements and clamping + of audio-level. +

+

+ The test consists of 6 subtests. When each audio sub-test is executed a + corresponding rect will turn blue. When each audio sub-test is + finished the corresponding rect will turn gray again. For this test to pass, all subtests must + have a green rectangle next to them. + + The audio must also be heard to pass this test. If the user agent does not support the WAV media format, the test is still a pass. +

+

+ The 1st subtest has an audio-level = 1. To pass this subtest the audio + must be played at the system volume. +

+

+ The 2nd subtest has an audio-level = 2. To pass this subtest the audio + must be played at the system volume. +

+

+ The 3rd subtest has an audio element with an audio-level = 2. Within + the audio element there is a child audio element with an + audio-level = 0.5. The source audio is the child audio element. To pass + this subtest the audio must be played at 1/2 the system volume. +

+

+ The 4th subtest has an audio element with an audio-level = 0.5. Within + the audio element there is a child audio element with an + audio-level = 2. The source audio is the child audio element. To pass + this subtest the audio must be played at 1/2 the system volume. +

+

+ The 5th subtest has three audio elements. The first audio element has + an audio-level = 0.5 and is the parent audio element. The second audio + element has an audio-level = 2 and is a child to the first audio + element. The third audio element has an audio-level = 0.5 and is a + child to the second audio element. The source audio is third audio + element. To pass this subtest the audio must be played at 1/4 the + system volume. +

+

+ The 6th subtest has four audio elements. The first audio element has + an audio-level = to the audio level of the 3rd audio element (0.5). The + second audio element references an audio element from another subtest + with an audio-level of 2. The second audio element is a child of the + first audio element. The third audio element has an audio-level = 0.5 + and is a child of the second audio element. The fourth audio element + has an audio-level of 2 and is a child of the third audio element. The + source audio is the fourth audio element. To pass this subtest the + audio must be played at 1/4 the system volume. +

+ + + $RCSfile: media-audio-215-t.svg,v $ + + + + + + + + + + + + + $Revision: 1.6 $ + + + + + \ No newline at end of file diff --git a/test/W3C_SVG_12_TinyTestSuite_beta/svg/media-video-201-t.svg b/test/W3C_SVG_12_TinyTestSuite_beta/svg/media-video-201-t.svg new file mode 100755 index 00000000..9abf4f47 --- /dev/null +++ b/test/W3C_SVG_12_TinyTestSuite_beta/svg/media-video-201-t.svg @@ -0,0 +1,58 @@ + + + + + + + + + + + +

Video Width and Height

+

+ The frame contains a video with width and height not specified - these should default + to 0 and nothing should be rendered. +

+

+ If the user agent does not support the 3GP media format, the test is still a pass. +

+ + + $RCSfile: media-video-201-t.svg,v $ + + + + + + + + + + + + Video Width and Height + + + The frame contains a video with width and height not specified - these should default + + + to 0 and nothing should be rendered. + + + + + $Revision: 1.9 $ + + + + + + DRAFT + + diff --git a/test/W3C_SVG_12_TinyTestSuite_beta/svg/media-video-202-t.svg b/test/W3C_SVG_12_TinyTestSuite_beta/svg/media-video-202-t.svg new file mode 100755 index 00000000..fe4a131d --- /dev/null +++ b/test/W3C_SVG_12_TinyTestSuite_beta/svg/media-video-202-t.svg @@ -0,0 +1,55 @@ + + + + + + + + + + + +

Video Width and Height

+

The video should play immediately and disappear once complete.

+

+ If the user agent does not support the 3GP media format, the test is still a pass. +

+ + + $RCSfile: media-video-202-t.svg,v $ + + + + + + + + + + + + Video Width and Height + + + The video should play immediately and disappear once complete. + + + + + $Revision: 1.10 $ + + + + + diff --git a/test/W3C_SVG_12_TinyTestSuite_beta/svg/media-video-203-t.svg b/test/W3C_SVG_12_TinyTestSuite_beta/svg/media-video-203-t.svg new file mode 100755 index 00000000..e5c47ffb --- /dev/null +++ b/test/W3C_SVG_12_TinyTestSuite_beta/svg/media-video-203-t.svg @@ -0,0 +1,66 @@ + + + + + + + + + + + +

Video with TransformBehavior Set to Pinned

+

+ This file tests the transformBehavior attribute set to 'pinned'. + The video should always overlap the two crossing lines, even during zoom/pan, proving it + is always rendered at its native resolution, and pinned at its the center (the blue dot). + If the video is rendered inside the small rotated rectangle, it means the transformBehavior + attribute is not applied / supported. +

+

+ If the user agent does not support the 3GP media format, the test is still a pass. +

+ + + $RCSfile: media-video-203-t.svg,v $ + + + + + + + + + + + Video with TransformBehavior Set to Pinned + + The video should exactly overlap the two wide crossing lines, proving it is pinned on the blue dot + + + + + + + + + + $Revision: 1.8 $ + + + + + diff --git a/test/W3C_SVG_12_TinyTestSuite_beta/svg/media-video-204-t.svg b/test/W3C_SVG_12_TinyTestSuite_beta/svg/media-video-204-t.svg new file mode 100755 index 00000000..993a750a --- /dev/null +++ b/test/W3C_SVG_12_TinyTestSuite_beta/svg/media-video-204-t.svg @@ -0,0 +1,68 @@ + + + + + + + + + + + +

Video with PreserveAspectRatio Attribute

+

+ Testing variations of preserveAspectRatio attribute with viewports + having different aspect ratios. More specifically tests the case + of preserveAspectRatio set to 'none' on a video element. The width of + the video element has been made larger than the subsequent + preserveAspectRatio tets. +

+

+ If the user agent does not support the 3GP media format, the test is still a pass. +

+ + + $RCSfile: media-video-204-t.svg,v $ + + + + + + + + + + + + Video with PreserveAspectRatio Attribute + + + Testing variations of preserveAspectRatio attribute + + + with viewports having different aspect ratios + + + + + none + + + $Revision: 1.10 $ + + + + + diff --git a/test/W3C_SVG_12_TinyTestSuite_beta/svg/media-video-205-t.svg b/test/W3C_SVG_12_TinyTestSuite_beta/svg/media-video-205-t.svg new file mode 100755 index 00000000..54fc4116 --- /dev/null +++ b/test/W3C_SVG_12_TinyTestSuite_beta/svg/media-video-205-t.svg @@ -0,0 +1,64 @@ + + + + + + + + + + + +

Video with PreserveAspectRatio Attribute

+

+ Testing variations of preserveAspectRatio attribute with viewports + having different aspect ratios. More specifically tests the case + of preserveAspectRatio set to 'xMinYMin meet' on a video element. +

+

+ If the user agent does not support the 3GP media format, the test is still a pass. +

+ + + $RCSfile: media-video-205-t.svg,v $ + + + + + + + + + + + Video with PreserveAspectRatio Attribute + + + Testing variations of preserveAspectRatio attribute + + + with viewports having different aspect ratios + + + + + xMin* + + + $Revision: 1.9 $ + + + + + diff --git a/test/W3C_SVG_12_TinyTestSuite_beta/svg/media-video-206-t.svg b/test/W3C_SVG_12_TinyTestSuite_beta/svg/media-video-206-t.svg new file mode 100755 index 00000000..3b2f3e03 --- /dev/null +++ b/test/W3C_SVG_12_TinyTestSuite_beta/svg/media-video-206-t.svg @@ -0,0 +1,65 @@ + + + + + + + + + + + +

Video with PreserveAspectRatio Attribute

+

+ Testing variations of preserveAspectRatio attribute with viewports + having different aspect ratios. More specifically tests the case + of preserveAspectRatio set to 'xMidYMid meet' on a video element. +

+

+ If the user agent does not support the 3GP media format, the test is still a pass. +

+ + + $RCSfile: media-video-206-t.svg,v $ + + + + + + + + + + + Video with PreserveAspectRatio Attribute + + + Testing variations of preserveAspectRatio attribute + + + with viewports having different aspect ratios + + + + + + xMid* + + + $Revision: 1.10 $ + + + + + diff --git a/test/W3C_SVG_12_TinyTestSuite_beta/svg/media-video-207-t.svg b/test/W3C_SVG_12_TinyTestSuite_beta/svg/media-video-207-t.svg new file mode 100755 index 00000000..67684b28 --- /dev/null +++ b/test/W3C_SVG_12_TinyTestSuite_beta/svg/media-video-207-t.svg @@ -0,0 +1,64 @@ + + + + + + + + + + + +

Video with PreserveAspectRatio Attribute

+

+ Testing variations of preserveAspectRatio attribute with viewports + having different aspect ratios. More specifically tests the case + of preserveAspectRatio set to 'xMaxYMax meet' on a video element. +

+

+ If the user agent does not support the 3GP media format, the test is still a pass. +

+ + + $RCSfile: media-video-207-t.svg,v $ + + + + + + + + + + + Video with PreserveAspectRatio Attribute + + + Testing variations of preserveAspectRatio attribute + + + with viewports having different aspect ratios + + + + + xMax* + + + $Revision: 1.10 $ + + + + + diff --git a/test/W3C_SVG_12_TinyTestSuite_beta/svg/media-video-208-t.svg b/test/W3C_SVG_12_TinyTestSuite_beta/svg/media-video-208-t.svg new file mode 100755 index 00000000..9598e9d7 --- /dev/null +++ b/test/W3C_SVG_12_TinyTestSuite_beta/svg/media-video-208-t.svg @@ -0,0 +1,65 @@ + + + + + + + + + + + +

Video with PreserveAspectRatio Attribute

+

+ Testing variations of preserveAspectRatio attribute with viewports + having different aspect ratios. More specifically tests the case + of preserveAspectRatio set to 'xMinYMin meet' on a video element. +

+

+ If the user agent does not support the 3GP media format, the test is still a pass. +

+ + + $RCSfile: media-video-208-t.svg,v $ + + + + + + + + + + + Video with PreserveAspectRatio Attribute + + + Testing variations of preserveAspectRatio attribute + + + with viewports having different aspect ratios + + + + + yMin* + + + $Revision: 1.8 $ + + + + + diff --git a/test/W3C_SVG_12_TinyTestSuite_beta/svg/media-video-209-t.svg b/test/W3C_SVG_12_TinyTestSuite_beta/svg/media-video-209-t.svg new file mode 100755 index 00000000..cbc18028 --- /dev/null +++ b/test/W3C_SVG_12_TinyTestSuite_beta/svg/media-video-209-t.svg @@ -0,0 +1,64 @@ + + + + + + + + + + + +

Video with PreserveAspectRatio Attribute

+

+ Testing variations of preserveAspectRatio attribute with viewports + having different aspect ratios. More specifically tests the case + of preserveAspectRatio set to 'xMinYMid meet' on a video element. +

+

+ If the user agent does not support the 3GP media format, the test is still a pass. +

+ + + $RCSfile: media-video-209-t.svg,v $ + + + + + + + + + + + Video with PreserveAspectRatio Attribute + + + Testing variations of preserveAspectRatio attribute + + + with viewports having different aspect ratios + + + + + yMid* + + + $Revision: 1.9 $ + + + + + diff --git a/test/W3C_SVG_12_TinyTestSuite_beta/svg/media-video-210-t.svg b/test/W3C_SVG_12_TinyTestSuite_beta/svg/media-video-210-t.svg new file mode 100755 index 00000000..cfa5e608 --- /dev/null +++ b/test/W3C_SVG_12_TinyTestSuite_beta/svg/media-video-210-t.svg @@ -0,0 +1,65 @@ + + + + + + + + + + + +

Video with PreserveAspectRatio Attribute

+

+ Testing variations of preserveAspectRatio attribute with viewports + having different aspect ratios. More specifically tests the case + of preserveAspectRatio set to 'xMinYMax meet' on a video element. +

+

+ If the user agent does not support the 3GP media format, the test is still a pass. +

+ + + $RCSfile: media-video-210-t.svg,v $ + + + + + + + + + + + Video with PreserveAspectRatio Attribute + + + Testing variations of preserveAspectRatio attribute + + + with viewports having different aspect ratios + + + + + yMax* + + + $Revision: 1.9 $ + + + + + + DRAFT + + diff --git a/test/W3C_SVG_12_TinyTestSuite_beta/svg/media-video-211-t.svg b/test/W3C_SVG_12_TinyTestSuite_beta/svg/media-video-211-t.svg new file mode 100755 index 00000000..df6755ea --- /dev/null +++ b/test/W3C_SVG_12_TinyTestSuite_beta/svg/media-video-211-t.svg @@ -0,0 +1,66 @@ + + + + + + + + + + + +

Video with PreserveAspectRatio Attribute

+

+ Testing variations of preserveAspectRatio attribute with viewports + having different aspect ratios. More specifically tests the case + of preserveAspectRatio set to 'none' on a video element. +

+

+ If the user agent does not support the 3GP media format, the test is still a pass. +

+ + + $RCSfile: media-video-211-t.svg,v $ + + + + + + + + + + + Video with PreserveAspectRatio Attribute + + + Testing variations of preserveAspectRatio attribute + + + with viewports having different aspect ratios + + + + + + none + + + $Revision: 1.9 $ + + + + + diff --git a/test/W3C_SVG_12_TinyTestSuite_beta/svg/media-video-212-t.svg b/test/W3C_SVG_12_TinyTestSuite_beta/svg/media-video-212-t.svg new file mode 100755 index 00000000..4e6b35dc --- /dev/null +++ b/test/W3C_SVG_12_TinyTestSuite_beta/svg/media-video-212-t.svg @@ -0,0 +1,105 @@ + + + + + + + + + + + +

Video with rendering order

+

+ Colored circles should maintain rendering order as marked on them. + Video is 10 seconds in length and should freeze at the end. The circles should continue to animate indefinitely + Bottom frame contains a jpeg reference image. The jpeg image is rendering order is on the top and the video + rendering order is on the bottom. +

+

+ If the user agent does not support the 3GP media format, the test is still a pass. +

+ + + $RCSfile: media-video-212-t.svg,v $ + + + + + + + + + + Video with rendering order + + Colored circles should maintain rendering order as marked on them. Video should freeze at the end + + + Bottom frame contains a jpeg reference image. The jpeg image is rendering order is on the top and the video + rendering order is on the bottom. + + + + + BEHIND + + + + + BEHIND + + + + + + + + ON TOP + + + + + ON TOP + + + + + + $Revision: 1.10 $ + + + + + diff --git a/test/W3C_SVG_12_TinyTestSuite_beta/svg/media-video-213-t.svg b/test/W3C_SVG_12_TinyTestSuite_beta/svg/media-video-213-t.svg new file mode 100755 index 00000000..5f276f44 --- /dev/null +++ b/test/W3C_SVG_12_TinyTestSuite_beta/svg/media-video-213-t.svg @@ -0,0 +1,77 @@ + + + + + + + + + + + +

Rotation with Video and Image

+

+ Tests the case when type is set to 'rotate' in animateTransform. The test + contains two objects; one video and one image. Both are rotated about a + point definied by the center of the black circle. The video will rotate + clockwise, and the image will rotate anti-clockwise. +

+

+ If the user agent does not support the 3GP media format, the test is still a pass. +

+ + + $RCSfile: media-video-213-t.svg,v $ + + + + + + + + + + + Rotation with Video and Image + + + + + + + + + + + + + + + + + + + + + + + + + $Revision: 1.6 $ + + + + + diff --git a/test/W3C_SVG_12_TinyTestSuite_beta/svg/media-video-214-t.svg b/test/W3C_SVG_12_TinyTestSuite_beta/svg/media-video-214-t.svg new file mode 100755 index 00000000..c430393a --- /dev/null +++ b/test/W3C_SVG_12_TinyTestSuite_beta/svg/media-video-214-t.svg @@ -0,0 +1,67 @@ + + + + + + + + + + + +

Transformation and rendering order on Video

+

+ Tests the rendering order of Video with other objects. Test contains + a video element with a polygon rendered over the top. The polygon has + a solid fill; no video should be visible through the polygon. +

+

+ If the user agent does not support the 3GP media format, the test is still a pass. +

+ + + $RCSfile: media-video-214-t.svg,v $ + + + + + + + + + + + Transformation and rendering order on Video + + + + + + + + + + + + + + + $Revision: 1.8 $ + + + + + diff --git a/test/W3C_SVG_12_TinyTestSuite_beta/svg/media-video-215-t.svg b/test/W3C_SVG_12_TinyTestSuite_beta/svg/media-video-215-t.svg new file mode 100755 index 00000000..141a5d6f --- /dev/null +++ b/test/W3C_SVG_12_TinyTestSuite_beta/svg/media-video-215-t.svg @@ -0,0 +1,70 @@ + + + + + + + + + + + +

+ If a video is playing and xlink href is changed the stream should change. The + new stream should start playing at the same position as the reference video, if the media play time cannot be controlled. Otherwise the media time will be re-started. +

+

+ If the user agent does not support the 3GP media format, the test is still a pass. +

+ + + $RCSfile: media-video-215-t.svg,v $ + + + + + + + + + + + $Revision: 1.7 $ + + + + + diff --git a/test/W3C_SVG_12_TinyTestSuite_beta/svg/media-video-216-t.svg b/test/W3C_SVG_12_TinyTestSuite_beta/svg/media-video-216-t.svg new file mode 100755 index 00000000..57848790 --- /dev/null +++ b/test/W3C_SVG_12_TinyTestSuite_beta/svg/media-video-216-t.svg @@ -0,0 +1,85 @@ + + + + + + + + + + + +

+ Tests the different transformBehavior values on video. + Pinned, Pinned90, Pinned180, Pinned270 +

+

+ The 1st video element has transformBehavior set to pinned and is displayed in the top-left of a 4-video box. +

+

+ The 2nd video element has transformBehavior set to pinned90 and is displayed in the top-right of a 4-video box. +

+

+ The 3rd video element has transformBehavior set to pinned180 and is displayed in the bottom-left of a 4-video box. +

+

+ The 4th video element has transformBehavior set to pinned270 and is displayed in the bottom-right of a 4-video box. +

+

+ There are 4 green-stroked rectangles indicating the expected position and orientation, but not size. +

+

+ The videos should display with the appropriate rotation, centered on the green rectangles but not bound by them in any way, since determining the exact pixel size of the rectangles is not possible. +

+

+ If the user agent does not support the 3GP media format, the test is still a pass. +

+ + + $RCSfile: media-video-216-t.svg,v $ + + + + + + + + + + + + + + Transformed video not supported! + + + + + + + + + + + $Revision: 1.8 $ + + + + + diff --git a/test/W3C_SVG_12_TinyTestSuite_beta/svg/media-video-218-t.svg b/test/W3C_SVG_12_TinyTestSuite_beta/svg/media-video-218-t.svg new file mode 100755 index 00000000..9793da80 --- /dev/null +++ b/test/W3C_SVG_12_TinyTestSuite_beta/svg/media-video-218-t.svg @@ -0,0 +1,109 @@ + + + + + + + + + + + +

+ When no video element is displayable (visibility is hidden or display is none of the use element), + audio level should be set to 0 and video should not be rendered. + -Video1 should be displayed between 0-4s, not rendered between 4-6 s and displayed between 6-8s. + -Video2 should be displayed between 0-2s, not rendered between 2-6 s and displayed between 6-8s. + -The audio of the video should be muted between 4-6s as no video is then rendered. +

+

+ If the user agent does not support the 3GP media format, the test is still a pass. +

+ + + $RCSfile: media-video-218-t.svg,v $ + + + + + + + + + + + + + + + + + + Video 1 + + + + + + Video 2 + + + + + Animated display and visibility with use + + + Video 1 should be hidden and muted between 4-6s + + + Video 2 should be hidden and muted between 2-6s + + + + + + 0-2(s) + + + + + 2-4(s) + + + + + 4-6(s) + + + + + 6-8(s) + + 0123456789(s) + + + + + + + + $Revision: 1.6 $ + + + + + diff --git a/test/W3C_SVG_12_TinyTestSuite_beta/svg/media-video-219-t.svg b/test/W3C_SVG_12_TinyTestSuite_beta/svg/media-video-219-t.svg new file mode 100755 index 00000000..5ffed231 --- /dev/null +++ b/test/W3C_SVG_12_TinyTestSuite_beta/svg/media-video-219-t.svg @@ -0,0 +1,82 @@ + + + + + + + + + + + +

+ If a video is playing and it is repositioned by removing it's corresponding use + from tree and then reinserting it in tree the video should continue playing but change position +

+

+ If the user agent does not support the 3GP media format, the test is still a pass. +

+ + + $RCSfile: media-video-219-t.svg,v $ + + + + + + + + + + + + + + + + + + The video should be repositioned at 2s and 4s + + + + var oldChild = document.getElementById("welcome"); + document.getElementById("g1").removeChild(oldChild); + document.getElementById("g2").appendChild(oldChild); + + + var oldChild = document.getElementById("welcome"); + document.getElementById("g2").removeChild(oldChild); + document.getElementById("g1").appendChild(oldChild); + + + + 0123456(s) + + + + + + + + $Revision: 1.6 $ + + + + + diff --git a/test/W3C_SVG_12_TinyTestSuite_beta/svg/media-video-220-t.svg b/test/W3C_SVG_12_TinyTestSuite_beta/svg/media-video-220-t.svg new file mode 100755 index 00000000..8a2500e1 --- /dev/null +++ b/test/W3C_SVG_12_TinyTestSuite_beta/svg/media-video-220-t.svg @@ -0,0 +1,75 @@ + + + + + + + + + + + +

+ If a video is playing when it is removed from document tree + it should continue playing when re-inserted in tree. + - The video should change position at 2 seconds but continue playing. +

+

+ If the user agent does not support the 3GP media format, the test is still a pass. +

+ + + $RCSfile: media-video-220-t.svg,v $ + + + + + + + + + + + + + + + The video should be repositioned at 2s + + + + var oldChild = document.getElementById("welcome"); + var myChild = document.getElementById("g1").removeChild(oldChild); + document.getElementById("g2").appendChild(myChild); + + + + 0123456(s) + + + + + + + + $Revision: 1.6 $ + + + + + diff --git a/test/W3C_SVG_12_TinyTestSuite_beta/svg/media-video-221-t.svg b/test/W3C_SVG_12_TinyTestSuite_beta/svg/media-video-221-t.svg new file mode 100755 index 00000000..e05c9e6b --- /dev/null +++ b/test/W3C_SVG_12_TinyTestSuite_beta/svg/media-video-221-t.svg @@ -0,0 +1,90 @@ + + + + + + + + + + + +

+ When xlink:href is animated on a use element between two different video elements, the + displayed video should change and it should play at the current time. + -video1 should be displayed between 0-2 and 4-6s and video2 between 2-4s. +

+

+ If the user agent does not support the 3GP media format, the test is still a pass. +

+ + + $RCSfile: media-video-221-t.svg,v $ + + + + + + + + + + + + + + + + + + Animated xlink:href on use + + Stream should be switched at 2s and back again at 4s + + + + + + 0-2(s) + Video 1 + + + + + 2-4(s) + Video 2 + + + + + 4-6(s) + Video 1 + + + + + 6-8(s) + End + + + + $Revision: 1.5 $ + + + + + diff --git a/test/W3C_SVG_12_TinyTestSuite_beta/svg/media-video-222-t.svg b/test/W3C_SVG_12_TinyTestSuite_beta/svg/media-video-222-t.svg new file mode 100755 index 00000000..a63dab69 --- /dev/null +++ b/test/W3C_SVG_12_TinyTestSuite_beta/svg/media-video-222-t.svg @@ -0,0 +1,57 @@ + + + + + + + + + + + +

+ Video Elements with Incorrect xlink:href + This slide tests the video xlink:href attribute with invalid values +

+ + + $RCSfile: media-video-222-t.svg,v $ + + + + + + + + + + Video element with invalid xlink:href + Each video element has a xlink:href reference to media other than a supported video file. + The test will pass if no video is heard or seen. + + + + + + $Revision: 1.5 $ + + + + + diff --git a/test/W3C_SVG_12_TinyTestSuite_beta/svg/metadata-example-01-t.svg b/test/W3C_SVG_12_TinyTestSuite_beta/svg/metadata-example-01-t.svg new file mode 100755 index 00000000..d1166b22 --- /dev/null +++ b/test/W3C_SVG_12_TinyTestSuite_beta/svg/metadata-example-01-t.svg @@ -0,0 +1,138 @@ + + + + + + + + + + + +

Check that metadata in a variety of namespaces, inside a metadata element, does not affect rendering in any way. The file is not valid to the DTD, but is well formed.

+

The diagram on the table is a visualization of the RDF metadata in the graphic.

+

The rendered result should match the reference image and there should be no error messages or warnings

+ + + $RCSfile: metadata-example-01-t.svg,v $ + + + + + + + + + + + + + Line drawing of woman in antique attire, which looks legal or perhaps mystical. + image/svg+xml + Sibyll Trelawney + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + http://prismstandard.org/vocabularies/1.0/resourcetype.xml#birdsEye + http://prismstandard.org/vocabularies/1.0/resourcetype.xml#illustration + image/svg+xml + Line drawing of woman in antique attire, ... + online: + Sibyll Trelawney + + + http://purl.org/dc/elements/1.1/type + http://purl.org/dc/elements/1.1/format + http://purl.org/dc/elements/1.1/subject + http://purl.org/dc/elements/1.1/type + http://purl.org/dc/elements/1.1/description + + + + + + $Revision: 1.7 $ + + + + + diff --git a/test/W3C_SVG_12_TinyTestSuite_beta/svg/paint-color-01-t.svg b/test/W3C_SVG_12_TinyTestSuite_beta/svg/paint-color-01-t.svg new file mode 100755 index 00000000..a3cc9f41 --- /dev/null +++ b/test/W3C_SVG_12_TinyTestSuite_beta/svg/paint-color-01-t.svg @@ -0,0 +1,72 @@ + + + + + + + + + + + +

+ The purpose of this test is to determine if an application has the basic capability to process the 'color' property. + There are three subtests. +

+

+ The first subtest, to the top left, is passed if the circle has a red fill. The second subtest, to the top right, is + passed if the circle has a red stroke. The third subtest shows a rectangle with a gradient fill, which has three stops. + The subtest is passed if central stop is red, fading off to blue to the left and pale yellow to the right. +

+ + + $RCSfile: paint-color-01-t.svg,v $ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + fill + stroke + stop-color + + + + $Revision: 1.8 $ + + + + + diff --git a/test/W3C_SVG_12_TinyTestSuite_beta/svg/paint-color-03-t.svg b/test/W3C_SVG_12_TinyTestSuite_beta/svg/paint-color-03-t.svg new file mode 100755 index 00000000..0e26a357 --- /dev/null +++ b/test/W3C_SVG_12_TinyTestSuite_beta/svg/paint-color-03-t.svg @@ -0,0 +1,95 @@ + + + + + + + + + + + +

+ Purpose of test is to determine if the color datatype is supported. There are multiple syntaxes for specifying the + same color, such as #37F and #3377FF. For each of the six groups shown here, each of the shapes in the group uses + one of the syntactical forms and all in the group should be identical in color. +

+

+ The first row uses five forms - 3-digit hex, 6-digit hex, rbg() integer form, rgb() percentage form, and named + ('HTML') colors. +

+

+ The second row uses only four forms - 3-digit hex, 6-digit hex, rbg() integer form, rgb() percentage form - as + there are no HTML or X11 names for those colors. +

+ + + $RCSfile: paint-color-03-t.svg,v $ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + $Revision: 1.9 $ + + + + + diff --git a/test/W3C_SVG_12_TinyTestSuite_beta/svg/paint-color-04-t.svg b/test/W3C_SVG_12_TinyTestSuite_beta/svg/paint-color-04-t.svg new file mode 100755 index 00000000..bdfe4d23 --- /dev/null +++ b/test/W3C_SVG_12_TinyTestSuite_beta/svg/paint-color-04-t.svg @@ -0,0 +1,84 @@ + + + + + + + + + + + +

+ Tests system colors. The colors on your screen might not match the reference image at all, but they should at + minimum be legible and should preferably resemble the colors used on menus and other user interface elements on + your computer, pda or phone. +

+ + + $RCSfile: paint-color-04-t.svg,v $ + + + + + + + + + + + + + + + Lorem ipsum dolor sit amet, consectetuer adipiscing elit. + Vestibulum pulvinar. Duis laoreet, nunc vitae facilisis + tristique, pede sem iaculis mi, non consectetuer lorem + libero et est. Donec imperdiet purus sed odio. Duis + venenatis tortor eu lectus. Suspendisse sed metus at + metus viverra ultricies. Mauris porttitor, justo a vulputate + + + + + Load + + Save + + + + + + + + File + Edit + + + + Lorem + + + + + + + + + + + $Revision: 1.8 $ + + + + + diff --git a/test/W3C_SVG_12_TinyTestSuite_beta/svg/paint-color-05-t.svg b/test/W3C_SVG_12_TinyTestSuite_beta/svg/paint-color-05-t.svg new file mode 100755 index 00000000..dbc13f98 --- /dev/null +++ b/test/W3C_SVG_12_TinyTestSuite_beta/svg/paint-color-05-t.svg @@ -0,0 +1,44 @@ + + + + + + + + + + + +

Tests the color that is used for the currentColor value in the fill attribute when more than one color is specified.

+

This is illustrated using a single rectangle that is a child of a group element. A fill is specified for the group element but not the rectangle. Colour is specifed for the rectangle and the group element. The user agent should render the rectangle with a RED fill.

+ + + $RCSfile: paint-color-05-t.svg,v $ + + + + + + + + + + + + + + $Revision: 1.8 $ + + + + + diff --git a/test/W3C_SVG_12_TinyTestSuite_beta/svg/paint-color-201-t.svg b/test/W3C_SVG_12_TinyTestSuite_beta/svg/paint-color-201-t.svg new file mode 100755 index 00000000..3e18de66 --- /dev/null +++ b/test/W3C_SVG_12_TinyTestSuite_beta/svg/paint-color-201-t.svg @@ -0,0 +1,109 @@ + + + + + + + + + + + +

+ Tests the sixteen color names that must be supported in SVG Tiny. +

+ + + $RCSfile: paint-color-201-t.svg,v $ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + black + silver + gray + white + maroon + red + purple + fuchsia + + + + + + + + + + + + + + + + + + + + + + + green + lime + olive + yellow + navy + blue + teal + aqua + + + + $Revision: 1.4 $ + + + + + \ No newline at end of file diff --git a/test/W3C_SVG_12_TinyTestSuite_beta/svg/paint-fill-01-t.svg b/test/W3C_SVG_12_TinyTestSuite_beta/svg/paint-fill-01-t.svg new file mode 100755 index 00000000..4013d315 --- /dev/null +++ b/test/W3C_SVG_12_TinyTestSuite_beta/svg/paint-fill-01-t.svg @@ -0,0 +1,49 @@ + + + + + + + + + + + +

Verify the basic capability to handle the fill properties fill:none, and fill with a color (fill:red)

+

There should be two rectangles, the rectangle on the left hollow (fill:none) and the rectangle on the right filled with red.

+ + + $RCSfile: paint-fill-01-t.svg,v $ + + + + + + + + + Basic paint: fill properties. + + + + + + fill="none" + fill="red" + + + $Revision: 1.6 $ + + + + + diff --git a/test/W3C_SVG_12_TinyTestSuite_beta/svg/paint-fill-02-t.svg b/test/W3C_SVG_12_TinyTestSuite_beta/svg/paint-fill-02-t.svg new file mode 100755 index 00000000..3d69ed58 --- /dev/null +++ b/test/W3C_SVG_12_TinyTestSuite_beta/svg/paint-fill-02-t.svg @@ -0,0 +1,55 @@ + + + + + + + + + + + +

The test uses the "currentColor" value for the "fill" attribute.

+

+ The rectangle on the left should be green filled, the rectangle on the right should be blue. The text above the + rectangles should be black. +

+ + + $RCSfile: paint-fill-02-t.svg,v $ + + + + + + + + + + Basic paint: fill properties. + fill="currentColor" + + + + + + green + blue + + + + $Revision: 1.6 $ + + + + + diff --git a/test/W3C_SVG_12_TinyTestSuite_beta/svg/paint-fill-03-t.svg b/test/W3C_SVG_12_TinyTestSuite_beta/svg/paint-fill-03-t.svg new file mode 100755 index 00000000..bddf4b47 --- /dev/null +++ b/test/W3C_SVG_12_TinyTestSuite_beta/svg/paint-fill-03-t.svg @@ -0,0 +1,49 @@ + + + + + + + + + + + +

Verify the basic capability to handle the fill rule properties evenodd and nonzero

+

There should be two red filled stars, the leftmost star should be unfilled in the very center.

+ + + $RCSfile: paint-fill-03-t.svg,v $ + + + + + + + + + Basic paint: fill properties. + + + + + + fill-rule="evenodd" + fill-rule="nonzero" + + + $Revision: 1.6 $ + + + + + diff --git a/test/W3C_SVG_12_TinyTestSuite_beta/svg/paint-fill-04-t.svg b/test/W3C_SVG_12_TinyTestSuite_beta/svg/paint-fill-04-t.svg new file mode 100755 index 00000000..ee9ff402 --- /dev/null +++ b/test/W3C_SVG_12_TinyTestSuite_beta/svg/paint-fill-04-t.svg @@ -0,0 +1,64 @@ + + + + + + + + + + + +

+ This tests inheritance of three properties: "fill", "stroke" and "stroke-width". There is a "g" element (id="G1") + which sets fill="blue", stroke="red", and stroke-width="5". The first two rectangles on top should inherit all + those properties. The middle left rectangle has fill="yellow" and stroke-width="2", it should inherit the + stroke="red" from the parent container. The middle rectangle on the right has stroke="yellow", it should inherit + fill and stroke-width from the parent "g". The bottom two rectangles are in another "g" element (id="G2") which + is a child of "G1". "G2" sets fill="yellow". It should inherit the stroke and stroke width from the parent "G1". + The two bottom rectangles set no fill or stroke properties, they should inherit through the parents, stroke="red" + and stroke-width="5". +

+

The rendered picture should match the reference image, except for possible variations in the labeling text (per CSS2 rules).

+

+ The test uses the "rect" element, as well as basic fill (solid primary colors), stroke (black 1-pixel lines), + font-family (Arial) and font-size properties. +

+ + + $RCSfile: paint-fill-04-t.svg,v $ + + + + + + + + + + + + + + + + + + + + + $Revision: 1.6 $ + + + + + diff --git a/test/W3C_SVG_12_TinyTestSuite_beta/svg/paint-fill-05-t.svg b/test/W3C_SVG_12_TinyTestSuite_beta/svg/paint-fill-05-t.svg new file mode 100755 index 00000000..981489af --- /dev/null +++ b/test/W3C_SVG_12_TinyTestSuite_beta/svg/paint-fill-05-t.svg @@ -0,0 +1,60 @@ + + + + + + + + + + + +

Test using "fill-opacity" values for "rect" element. This test verifies that opacity is clamped to the specified range.

+

+ The six rect elements on the left have varying 'fill-opacity' values within the valid range of 0 to 1. The six elements + on the right have 'fill-opacity' values outside the 0 to 1 range, and must be clamped. The top three rect elements on + the right must have their 'fill-opacity' clamped to 0, while the bottom three rect elements on the right must be clamped + to 1. +

+ + + $RCSfile: paint-fill-05-t.svg,v $ + + + + + + + + + + + + + + + + + + + + + + + + + $Revision: 1.5 $ + + + + + diff --git a/test/W3C_SVG_12_TinyTestSuite_beta/svg/paint-grad-04-t.svg b/test/W3C_SVG_12_TinyTestSuite_beta/svg/paint-grad-04-t.svg new file mode 100755 index 00000000..c362e4d2 --- /dev/null +++ b/test/W3C_SVG_12_TinyTestSuite_beta/svg/paint-grad-04-t.svg @@ -0,0 +1,81 @@ + + + + + + + + + + + +

Test that checks the capability of the stop element in linear and radial gradients.

+

+ The first rectangle has a linear gradient fill with a vector starting at top left and going to bottom right. The + stop colors are at 20% spacing apart and are in the following order : violet, blue, lime, yellow, orange, red. + Because the gradient vector vector goes from (0,0) to (1,1) in object bounding box space and because the object + bounding box has a larger width than height, the gradient vector is skewed off of a pure 45 degree angle. The + gradient stripes are also skewed so that they are no longer perpendicular to the gradient vector. +

+

+ The next rectangle has a radial gradient fill with a multi-color stops from innermost to outermost in the following + order : black, yellow, red, blue, white, green. +

+

+ The rendered picture should match the reference image exactly, except for possible variations in the labelling + text (per CSS2 rules). +

+ + + $RCSfile: paint-grad-04-t.svg,v $ + + + + + + + + + + + + + + + + + + + + + Multi-color linear gradient. + + + + + + + + + + + + + Multi-color radial gradient. + + + $Revision: 1.8 $ + + + + + diff --git a/test/W3C_SVG_12_TinyTestSuite_beta/svg/paint-grad-05-t.svg b/test/W3C_SVG_12_TinyTestSuite_beta/svg/paint-grad-05-t.svg new file mode 100755 index 00000000..d7fe6bc9 --- /dev/null +++ b/test/W3C_SVG_12_TinyTestSuite_beta/svg/paint-grad-05-t.svg @@ -0,0 +1,88 @@ + + + + + + + + + + + +

Test that checks the capability of the stop opacity in linear and radial gradients.

+

+ There are two tests which contain rectangles with gradients using stop-opacity properties. A cyan color text string + "Background" is put behind both of the rectangles to help demonstrate the opacity concept. From top-down the appearance + of objects is as follows. +

+

+ The first rectangle has a linear gradient fill with a vector starting at top left and going to bottom right. The stop + colors are at 20% spacing apart and are in the following order : violet, blue, lime, yellow, orange, red. Also a stop + opacity is given to the colors in the following order: 1, 0.2, 0.5, 0, 0.8, 1 Because the gradient vector vector goes + from (0,0) to (1,1) in object bounding box space and because the object bounding box has a larger width than height, + the gradient vector is skewed off of a pure 45 degree angle. The gradient stripes are also skewed so that they are no + longer perpendicular to the gradient vector. +

+

+ The next rectangle has a radial gradient fill with a multi-color stops from innermost to outermost in the following + order : black, yellow, red, blue, white, green. Also a stop opacity is given to the colors in the following order: 1, + 0.2, 0.5, 0, 0.8, 1 +

+

+ The rendered picture should match the reference image exactly, except for possible variations in the labelling text + (per CSS2 rules). +

+ + + $RCSfile: paint-grad-05-t.svg,v $ + + + + + + + + + + + + Background + + + + + + + + + + + + + Background + + + + + + + + + + + + $Revision: 1.8 $ + + + + + diff --git a/test/W3C_SVG_12_TinyTestSuite_beta/svg/paint-grad-07-t.svg b/test/W3C_SVG_12_TinyTestSuite_beta/svg/paint-grad-07-t.svg new file mode 100755 index 00000000..08c6b45a --- /dev/null +++ b/test/W3C_SVG_12_TinyTestSuite_beta/svg/paint-grad-07-t.svg @@ -0,0 +1,70 @@ + + + + + + + + + + + +

Test that the viewer has basic capability to handle linear gradients on fills and stroke of objects and text.

+

+ This test uses the following elements : <linearGradient>, <stop> and the following properties : stop-color, + fill:url(# ), stroke(url# ) +

+

+ Both elements in this test use the same simple gradient. It is a linear gradient from blue (left) to red (right). From + top-down the appearance of objects is as follows. +

+

The top rectangle should be filled with the gradient.

+

The next rectangle has no fill, but has a thick stroke on which the gradient is applied.

+

The rendered picture should match the reference image, except for possible variations in the labelling text (per CSS2 rules).

+ + + $RCSfile: paint-grad-07-t.svg,v $ + + + + + + + + + + + + + + + + + + + + + Linear gradient filled rectangle + + + + + Linear gradient on stroke of rectangle + + + + $Revision: 1.8 $ + + + + + diff --git a/test/W3C_SVG_12_TinyTestSuite_beta/svg/paint-grad-08-t.svg b/test/W3C_SVG_12_TinyTestSuite_beta/svg/paint-grad-08-t.svg new file mode 100755 index 00000000..3eaf372f --- /dev/null +++ b/test/W3C_SVG_12_TinyTestSuite_beta/svg/paint-grad-08-t.svg @@ -0,0 +1,88 @@ + + + + + + + + + + + +

Test that the viewer has basic capability to handle linear gradients on fills and stroke of text.

+

+ This test uses the following elements : <linearGradient>, <stop> and the following properties : stop-color, + fill:url(# ), stroke(url# ) +

+

+ Both elements in this test use the same simple gradient. It is a linear gradient from blue (left) to red (right). From + top-down the appearance of objects is as follows. +

+

The first item is a text string "Gradient on fill" with the gradient on the fill of the text.

+

The second item is a text string that is not filled. It has a 2 user unit stroke on which the gradient is applied.

+

The rendered picture should match the reference image, except for possible variations in the labelling text (per CSS2 rules).

+ + + $RCSfile: paint-grad-08-t.svg,v $ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + Gradient on fill + Linear gradient on filled text + + + + Gradient on stroke + Linear gradient on stroke of text + + + $Revision: 1.7 $ + + + + + diff --git a/test/W3C_SVG_12_TinyTestSuite_beta/svg/paint-grad-09-t.svg b/test/W3C_SVG_12_TinyTestSuite_beta/svg/paint-grad-09-t.svg new file mode 100755 index 00000000..efbd623c --- /dev/null +++ b/test/W3C_SVG_12_TinyTestSuite_beta/svg/paint-grad-09-t.svg @@ -0,0 +1,92 @@ + + + + + + + + + + + +

+ Test that the viewer can handle the gradientUnits attribute on linear gradients. It tests the following values of + gradientUnits : default (objectBoundingBox), specifying objectBoundingBox, and specifying userSpaceOnUse. +

+

From top-down the appearance of objects is as follows.

+

+ The first rectangle uses the default attributes on the linearGradient element. Therefore the linear gradient should + default to objectBoundingBox. It should appear from the left edge of the rectangle (blue) to the right edge of the + rectangle (red). The rectangle is smaller than the viewport, because a previous version of the SVG spec had the + default value be 'viewport'. The test fails if only a portion of the gradient is shown. +

+

The next rectangle uses gradientUnits=objectBoundingBox. The linear gradient should travel from blue (top) to red (bottom).

+

+ The last rectangle uses gradientUnits=userSpaceOnUse. The rectangle element is given it's own transformation and the + gradient is assumed to be in this user space. The gradient should appear as a linear gradient from red (left) to blue + (right). +

+

+ The rendered picture should match the reference image exactly, except for possible variations in the labelling text + (per CSS2 rules). +

+ + + $RCSfile: paint-grad-09-t.svg,v $ + + + + + + + + + Testing gradientUnits attribute + + + + + + + + + Linear gradient with default attributes (thus, same as objectBoundingBox) + + Gradient is from the object left edge (red) to object right edge (blue) + + + + + + + + + gradientUnits=objectBoundingBox + Gradient is from the object top edge (blue) to object bottom edge (red) + + + + + + + + + gradientUnits=userSpaceOnUse + Gradient is from the object left edge (red) to object right edge (blue) + + + $Revision: 1.7 $ + + + + + diff --git a/test/W3C_SVG_12_TinyTestSuite_beta/svg/paint-grad-11-t.svg b/test/W3C_SVG_12_TinyTestSuite_beta/svg/paint-grad-11-t.svg new file mode 100755 index 00000000..de0e835e --- /dev/null +++ b/test/W3C_SVG_12_TinyTestSuite_beta/svg/paint-grad-11-t.svg @@ -0,0 +1,95 @@ + + + + + + + + + + + +

Test that the viewer has basic capability to handle radial gradients on fills and stroke of objects and text.

+

+ This test uses the following elements : <radialGradient>, <stop> and the following properties : stop-color, + fill:url(# ), stroke(url# ) +

+

From top-down (left to right) the appearance of objects is as follows.

+

+ The top left rectangle should be a radial gradient from black(in) to red(outside). The gradiant is applied to the + fill of the rectangle. +

+

+ The next rectangle has no fill, but has a thick stroke on which the gradient is applied. The gradient goes from + red(in) to yellow (out). +

+

The next item is a text with a radial gradient on the fill. The gradient goes from black (in) to yellow (out).

+

The last item is a text with a 2 user unit stroke on which a black (in) to red (out) linear gradient is applied.

+

+ The rendered picture should match the reference image exactly, except for possible variations in the labelling text + (per CSS2 rules). +

+ + + $RCSfile: paint-grad-11-t.svg,v $ + + + + + + + + + + + + + + + + + Radial gradient on fill of rectangle + + + + + + + + + Radial gradient on stroke of rectangle + + + + + + + + Gradient on text fill + Radial gradient on text, black to yellow + + + + + + + + Gradient on text stroke + Radial gradient on stroke of text, black to red + + + $Revision: 1.7 $ + + + + + diff --git a/test/W3C_SVG_12_TinyTestSuite_beta/svg/paint-grad-12-t.svg b/test/W3C_SVG_12_TinyTestSuite_beta/svg/paint-grad-12-t.svg new file mode 100755 index 00000000..965d3564 --- /dev/null +++ b/test/W3C_SVG_12_TinyTestSuite_beta/svg/paint-grad-12-t.svg @@ -0,0 +1,93 @@ + + + + + + + + + + + +

+ Test that the viewer can handle the gradientUnits attribute on radial gradients. It tests the following values of + gradientUnits : default (objectBoundingBox), objectBoundingBox, and userSpaceOnUse. +

+

From top-down the appearance of objects is as follows.

+

+ The first rectangle uses the default attributes on the radialGradient element. Therefore the radial gradient should + be relative to the object bounding box. It should appear from the center of the viewport (blue) to the edges of the + viewport (red). The rectangle is wider than tall so it the gradient should be elliptical, not circular. +

+

+ The next rectangle uses gradientUnits=objectBoundingBox. The radial gradient should travel from a center of 20%, 20% + of the rectangle with a radius of 50%. +

+

+ The last rectangle uses gradientUnits=userSpaceOnUse. The rectangle element is given it's own transformation and the + gradient is assumed to be in this user space. The gradient should appear in the center of the rectangle as a radial + gradient from red (center) to blue (edge). +

+

+ The rendered picture should match the reference image exactly, except for possible variations in the labelling text + (per CSS2 rules). +

+ + + $RCSfile: paint-grad-12-t.svg,v $ + + + + + + + + + Testing gradientUnits attribute + + + + + + + + + Radial gradient with default attributes (from blue to red) + Gradient is blue at the object center and red at the object edges + + + + + + + + + gradientUnits=objectBoundingBox + cx=.2, cy=.2, r=.5 + + + + + + + + + gradientUnits=userSpaceOnUse + Gradient is red to blue radial gradiant from center to horizontal bounds + + + $Revision: 1.7 $ + + + + + diff --git a/test/W3C_SVG_12_TinyTestSuite_beta/svg/paint-grad-15-t.svg b/test/W3C_SVG_12_TinyTestSuite_beta/svg/paint-grad-15-t.svg new file mode 100755 index 00000000..16055231 --- /dev/null +++ b/test/W3C_SVG_12_TinyTestSuite_beta/svg/paint-grad-15-t.svg @@ -0,0 +1,60 @@ + + + + + + + + + + + +

+ Test linear and radial gradient defaults. Includes testing defaults for linear grad x1,y1,y2 = 0.0, x2 = 1.0 and + testing defaults for radial grad cx,cy,r = 0.5 +

+

+ The top rectangle must be blue at the lefthand side and red at the right hand side, fading smoothly accross. The + lower rectangle must be red at the edges with a black centre to the radial gradient at the centre of the + rectangle, and the gradient occupying the whole rectangle. +

+ + + $RCSfile: paint-grad-15-t.svg,v $ + + + + + + + + + + + + + + + + + + + + + + + $Revision: 1.8 $ + + + + + diff --git a/test/W3C_SVG_12_TinyTestSuite_beta/svg/paint-grad-16-t.svg b/test/W3C_SVG_12_TinyTestSuite_beta/svg/paint-grad-16-t.svg new file mode 100755 index 00000000..05b5714a --- /dev/null +++ b/test/W3C_SVG_12_TinyTestSuite_beta/svg/paint-grad-16-t.svg @@ -0,0 +1,66 @@ + + + + + + + + + + + +

+ Test gradient stop rules. Including: No stops, like fill = none. One stop, like fill = black. If a stop less than + all previous stops, it is set equal to the largest stop. If two stops are equal the last stop controls the color + at the overlap point. +

+

+ The top rectangle must have a red outline and no fill. The middle rectangle must have a solid black fill. The + lower rectangle must have a yellow to red to green linear gradient on the left-hand half and a solid blue fill + for the right hand half. +

+ + + $RCSfile: paint-grad-16-t.svg,v $ + + + + + + + + + + + + + + + + + + + + + + + + + + + + $Revision: 1.7 $ + + + + + diff --git a/test/W3C_SVG_12_TinyTestSuite_beta/svg/paint-grad-17-t.svg b/test/W3C_SVG_12_TinyTestSuite_beta/svg/paint-grad-17-t.svg new file mode 100755 index 00000000..b2e73ba8 --- /dev/null +++ b/test/W3C_SVG_12_TinyTestSuite_beta/svg/paint-grad-17-t.svg @@ -0,0 +1,80 @@ + + + + + + + + + + + +

+ This test has a gradient with gradientUnits='objectBoundingBox' which is a fade from black to white. The gradient + is used for the stroke of a line. Vertical and horizontal lines don't have a boundingbox, since they are + one-dimensional, even though the stroke-width makes it look like they should have a boundingbox with non-zero width + and height. See the coordinate chapter, last paragraph of 7.12. +

+

+ The left rectangle has four 'line' elements rotated in different ways. The stroke for the lines have a green solid + stroke fallback which should be used if the gradient should be ignored. For this sub-test to pass there must be + three lines with solid green stroke, and one line (from bottom left to top right) with a gradient stroke, visible + in the rectangle. +

+

+ The right rectangle is the same as the left rectangle except that the stroke paintservers don't have a fallback + specified. For this sub-test to pass only the line from bottom left to top right must be visible in the rectangle, + and it must have a gradient stroke. +

+ + + $RCSfile: paint-grad-17-t.svg,v $ + + + + + + + + + + + + + + + + + + + + + + + With fallback + + + + + + + + + Without fallback + + + $Revision: 1.9 $ + + + + + diff --git a/test/W3C_SVG_12_TinyTestSuite_beta/svg/paint-grad-18-t.svg b/test/W3C_SVG_12_TinyTestSuite_beta/svg/paint-grad-18-t.svg new file mode 100755 index 00000000..b01bf2f7 --- /dev/null +++ b/test/W3C_SVG_12_TinyTestSuite_beta/svg/paint-grad-18-t.svg @@ -0,0 +1,74 @@ + + + + + + + + + + + +

This test shows rectangles filled with gradient. Several gradients are defined, with two stops:

+

For the top-left rectangle's gradient: The first stop defines a fully-opaque green color. The second stop explicitly inherits (i.e. using the 'inherit' keyword) its stop-color. The result should be that the top-left rectangle is filled with a gradient from green to red since the stop-color is inherited from the location of the gradient definition.

+

For the top-right rectangle's gradient: The first stop defines a fully-opaque green color. The second stop defines a green stop-color but explicitly inherits (i.e. using the 'inherit' keyword) the stop-opacity. The result should be that the top-right rectangle filled in green with a gradient opacity.

+

For the bottom-left rectangle's gradient: The first stop defines a fully-opaque green color. The second stop does not specify the stop-color and the stop-opacity. Since both properties are not inherited, the initial value should be used. The result should be that the lower-left rectangle filled with a gradient going from fully-opaque green to fully-opaque black.

+

For the bottom-right rectangle's gradient: The first stop defines a fully-opaque green color. The second stop specifies the stop-color using the 'currentColor' keyword. The result should be that the lower-right rectangle filled with a gradient going from fully-opaque green to fully-opaque yellow.

+ + + $RCSfile: paint-grad-18-t.svg,v $ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + $Revision: 1.7 $ + + + + + diff --git a/test/W3C_SVG_12_TinyTestSuite_beta/svg/paint-grad-19-t.svg b/test/W3C_SVG_12_TinyTestSuite_beta/svg/paint-grad-19-t.svg new file mode 100755 index 00000000..675cd5a9 --- /dev/null +++ b/test/W3C_SVG_12_TinyTestSuite_beta/svg/paint-grad-19-t.svg @@ -0,0 +1,89 @@ + + + + + + + + + + + +

+ This test shows rectangles filled with animated gradient which inherits some of their properties: stop-color, stop-opacity. + The correct result must show: - the top-left rectangle filled initially with a linear green-to-red gradient and turning into + a solid green color after 5s. - the top-right rectangle filled initially with a green gradient fully opaque on the left and + half transparent on the right, but after 5s the rectangle must be filled with a fully opaque solid green. - the bottom-left + rectangle filled with a static green-to-black opaque gradient - the bottom-right rectangle initially filled with a green-to-yellow + fully-opaque gradient animated and turning into a fully-opaque green solid color. Animations numbered a4 to a7 must have no impact. +

+ + + $RCSfile: paint-grad-19-t.svg,v $ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + $Revision: 1.8 $ + + + + + diff --git a/test/W3C_SVG_12_TinyTestSuite_beta/svg/paint-grad-201-t.svg b/test/W3C_SVG_12_TinyTestSuite_beta/svg/paint-grad-201-t.svg new file mode 100755 index 00000000..d672218f --- /dev/null +++ b/test/W3C_SVG_12_TinyTestSuite_beta/svg/paint-grad-201-t.svg @@ -0,0 +1,73 @@ + + + + + + + + + + + +

Test Stop Opacity Attribute

+

+ A linearGradient is defined with a stop-opacity of 0 that is also animated from 0 to 1 (clear to solid). + The yellow star must initially be visible through the gradient. After 5 seconds most of the start must + be covered by the linearGradient. +

+ + + $RCSfile: paint-grad-201-t.svg,v $ + + + + + + + + + + Stop Opacity Attribute + + The 'stop-opacity' attribute is animated from 0 to 1 (clear to solid). + + + + + + + + + + + + + + + + + + + + + + $Revision: 1.6 $ + + + + + diff --git a/test/W3C_SVG_12_TinyTestSuite_beta/svg/paint-grad-202-t.svg b/test/W3C_SVG_12_TinyTestSuite_beta/svg/paint-grad-202-t.svg new file mode 100755 index 00000000..77c77488 --- /dev/null +++ b/test/W3C_SVG_12_TinyTestSuite_beta/svg/paint-grad-202-t.svg @@ -0,0 +1,82 @@ + + + + + + + + + + + +

Stop Opacity Attribute with Text

+

+ There are three lines of text. For this test to pass each line of text must have the same gradient + from green to blue all set to a 'stop-opacity' of 0.4 . The reference rect at the bottom has a + similar gradient but with 'stop-opacity set to 1. The text of the poem should be lighter than + the reference line. +

+ + + $RCSfile: paint-grad-202-t.svg,v $ + + + + + + + + + + Stop Opacity Attribute with Text + + All three lines of text must have the same transparent gradient - + from green to blue, set at 0.4 'stop-opacity'. The reference rect at + the bottom has a similar gradient but with 'stop-opacity set to 1. + + + + + + + + + + + + + + + + + + + old pond + a frog leaps in - + a moment after, silence + + + + + + Frog Haiku by Matsuo Basho (1686), translated by Ross Figgins + + + $Revision: 1.7 $ + + + + + diff --git a/test/W3C_SVG_12_TinyTestSuite_beta/svg/paint-grad-203-t.svg b/test/W3C_SVG_12_TinyTestSuite_beta/svg/paint-grad-203-t.svg new file mode 100755 index 00000000..351e3379 --- /dev/null +++ b/test/W3C_SVG_12_TinyTestSuite_beta/svg/paint-grad-203-t.svg @@ -0,0 +1,77 @@ + + + + + + + + + + + +

+ Test on gradients with gradientUnits set. There are two rects, one using a gradient with gradientUnits set to "objectBoundingBox" and one with "userSpaceOnUse". Both rects contain a smaller rect to visualise the use of gradientUnits. + In the top rect, the small one should appear as a smaller version of the big rect. + In the bottom rect, the small one should just as a "frame" on the big rect. +

+ + + $RCSfile: paint-grad-203-t.svg,v $ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + gradientUnits="objectBoundingBox" (default) + gradientUnits="userSpaceOnUse" + + + $Revision: 1.6 $ + + + + + diff --git a/test/W3C_SVG_12_TinyTestSuite_beta/svg/paint-grad-204-t.svg b/test/W3C_SVG_12_TinyTestSuite_beta/svg/paint-grad-204-t.svg new file mode 100755 index 00000000..23978594 --- /dev/null +++ b/test/W3C_SVG_12_TinyTestSuite_beta/svg/paint-grad-204-t.svg @@ -0,0 +1,61 @@ + + + + + + + + + + + +

+ Gradient with only one stop-color. This test is passed if the fill of + the rect on the right is identical to the fill of the rect on the left. +

+

+ For gradients with only a single stop-color the painting shall occur + with the solid color fill using the color defined for the gradient stop. +

+ + + $RCSfile: paint-grad-204-t.svg,v $ + + + + + + + + + + + + + + + + Gradient with one stop + + + Reference + + + $Revision: 1.7 $ + + + + + diff --git a/test/W3C_SVG_12_TinyTestSuite_beta/svg/paint-grad-205-t.svg b/test/W3C_SVG_12_TinyTestSuite_beta/svg/paint-grad-205-t.svg new file mode 100755 index 00000000..cf1cb60c --- /dev/null +++ b/test/W3C_SVG_12_TinyTestSuite_beta/svg/paint-grad-205-t.svg @@ -0,0 +1,52 @@ + + + + + + + + + + + +

+ Gradient with no stop-elements. The painting shall occur as if 'none' were specified + as the paint style, thus allowing the pale blue rectangle to be seen inside the square. +

+ + + $RCSfile: paint-grad-205-t.svg,v $ + + + + + + + + + + + + + + + + + $Revision: 1.6 $ + + + + + diff --git a/test/W3C_SVG_12_TinyTestSuite_beta/svg/paint-nsstroke-201-t.svg b/test/W3C_SVG_12_TinyTestSuite_beta/svg/paint-nsstroke-201-t.svg new file mode 100755 index 00000000..f2236c86 --- /dev/null +++ b/test/W3C_SVG_12_TinyTestSuite_beta/svg/paint-nsstroke-201-t.svg @@ -0,0 +1,83 @@ + + + + + + + + + + + +

Non-scaling Stroke

+

Testing non-scaling-stroke on basic shapes and text.

+

The bottom shapes - triangle and oval - also have a gradient applied to the outline stroke.

+

+ At the start the two sets of shapes may not appear identical - depending on viewport size. + As the geometric shapes are zoomed out the outline strokes of the left-hand set of shapes + should remain fixed while the strokes of the right-hand set should scale in proportion to the shapes. +

+ + + $RCSfile: paint-nsstroke-201-t.svg,v $ + + + + + + + + + + As the geometric shapes are zoomed out the outline strokes of the left-hand set of shapes + should remain fixed while the strokes of the right-hand set should scale in proportion to the shapes. + + + + + + + + + + + + + + + + + ABCDE + + ABCDE + + + + + + + + + Non-Scaling Stroke + Scaling Stroke + + + + $Revision: 1.5 $ + + + + + diff --git a/test/W3C_SVG_12_TinyTestSuite_beta/svg/paint-nsstroke-203-t.svg b/test/W3C_SVG_12_TinyTestSuite_beta/svg/paint-nsstroke-203-t.svg new file mode 100755 index 00000000..3b63163c --- /dev/null +++ b/test/W3C_SVG_12_TinyTestSuite_beta/svg/paint-nsstroke-203-t.svg @@ -0,0 +1,116 @@ + + + + + + + + + + + +

Non-scaling Stroke

+

Testing "non-scaling-stroke" on basic shapes with "animate" and "animateTranform".

+

The animation should run indefinitely.

+ + + $RCSfile: paint-nsstroke-203-t.svg,v $ + + + + + + + + + + + Non-scaling Stroke + + The 'vector-effect' is set to 'non-scaling' on the geometric shapes used in this kaleidoscope. + + + The animation should run indefinitely. + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + $Revision: 1.5 $ + + + + + diff --git a/test/W3C_SVG_12_TinyTestSuite_beta/svg/paint-other-201-t.svg b/test/W3C_SVG_12_TinyTestSuite_beta/svg/paint-other-201-t.svg new file mode 100755 index 00000000..7ef05927 --- /dev/null +++ b/test/W3C_SVG_12_TinyTestSuite_beta/svg/paint-other-201-t.svg @@ -0,0 +1,65 @@ + + + + + + + + + + + +

Test solidColor paint server with 'solid-opacity' attribute.

+

+ There are three 'solidColor' definitions - red, green, blue. + These are used for both the fill and outlines of the rectangle and circle. +

+ + + $RCSfile: paint-other-201-t.svg,v $ + + + + + + + + + + Solid Color Paint Server + + There are three 'solidColor' definitions - red, green, blue. + + + These are used for both the fill and outlines of the rectangle and circle. + + + + + + + + + + + + + + $Revision: 1.5 $ + + + + + diff --git a/test/W3C_SVG_12_TinyTestSuite_beta/svg/paint-other-203-t.svg b/test/W3C_SVG_12_TinyTestSuite_beta/svg/paint-other-203-t.svg new file mode 100755 index 00000000..a0da3443 --- /dev/null +++ b/test/W3C_SVG_12_TinyTestSuite_beta/svg/paint-other-203-t.svg @@ -0,0 +1,75 @@ + + + + + + + + + + + +

+ Test solidColor animation. Animates solid-color and solid-opacity on two rects. +

+

+ The test is passed if the following objects are displayed: + Rect 1 + - Fill: blue animated to red, opacity 0 animated to 1 + - Stroke: none + + Rect 2 (roated -30 degrees) + - Fill: none + - Stroke: red animated to yellow, opacity 1 animated to 0 +

+

+ One rect animates its fill from blue to red over 3 seconds and has its solid-opacity animated from 0 to 1 over 5 seconds. + The other rect (no fill and rotated -30) has its stroke animated from red to yellow over 3s and solid-opacity from 1 to 0 over 5 seconds. +

+ + + $RCSfile: paint-other-203-t.svg,v $ + + + + + + + + + + + + + + + + + + + + + + + + + + + $Revision: 1.6 $ + + + + + diff --git a/test/W3C_SVG_12_TinyTestSuite_beta/svg/paint-stroke-01-t.svg b/test/W3C_SVG_12_TinyTestSuite_beta/svg/paint-stroke-01-t.svg new file mode 100755 index 00000000..4d196771 --- /dev/null +++ b/test/W3C_SVG_12_TinyTestSuite_beta/svg/paint-stroke-01-t.svg @@ -0,0 +1,56 @@ + + + + + + + + + + + +

+ Verify the basic capability to handle the stroke properties ("stroke") in combination with the "rect" element. The + pair should be rendered as two blue rectangles, the upper one without a stroke and the lower with a red stroke. +

+

The rendered picture should match the reference image, except for possible variations in the labeling text (per CSS2 rules).

+

+ The test uses the "rect" element, as well as basic "fill" (solid primary colors), "stroke", stroke="red", + "font-family" (Arial) and "font-size" attributes. +

+ + + $RCSfile: paint-stroke-01-t.svg,v $ + + + + + + + + + + + + Basic paint: stroke properties. + + + stroke="none" + stroke="red" + + + $Revision: 1.6 $ + + + + + diff --git a/test/W3C_SVG_12_TinyTestSuite_beta/svg/paint-stroke-02-t.svg b/test/W3C_SVG_12_TinyTestSuite_beta/svg/paint-stroke-02-t.svg new file mode 100755 index 00000000..8d460196 --- /dev/null +++ b/test/W3C_SVG_12_TinyTestSuite_beta/svg/paint-stroke-02-t.svg @@ -0,0 +1,57 @@ + + + + + + + + + + + +

+ Verify the basic capability to handle the stroke properties ("stroke", "stroke-width", "stroke-linejoin") in + combination with the "rect" element. The pair should be rendered as two red rectangles without an interior fill. + The upper rectangle should have a stroke width of 5 with sharp corners. The lower rectangle should have a stroke + width of 5 with round corners. +

+

+ The test uses the "rect" element, as well as basic "fill" (solid primary colors), "stroke", stroke="red" + stroke-width="10" stroke-linejoin="round", "font-family" (Arial) and "font-size" properties. +

+ + + $RCSfile: paint-stroke-02-t.svg,v $ + + + + + + + + + + + + Basic paint: stroke properties. + + + stroke-width="20" + stroke-linejoin="round" + + + $Revision: 1.6 $ + + + + + diff --git a/test/W3C_SVG_12_TinyTestSuite_beta/svg/paint-stroke-03-t.svg b/test/W3C_SVG_12_TinyTestSuite_beta/svg/paint-stroke-03-t.svg new file mode 100755 index 00000000..6e72b4ec --- /dev/null +++ b/test/W3C_SVG_12_TinyTestSuite_beta/svg/paint-stroke-03-t.svg @@ -0,0 +1,56 @@ + + + + + + + + + + + +

+ Verify the basic capability to handle the stroke properties ("stroke", "stroke-width" "stroke-linejoin", "stroke-linecap", + "stroke-miter") in combination with straight-line path commands. The pair should be rendered as as two red line segments. + The upper segment should have round end caps. The lower segment should be chopped off where the two line segments meet. +

+

+ The test uses the "path" element, as well as basic "fill" (solid primary colors), "stroke", "stroke-width", + "stroke-linejoin", "stroke-linecap", "stroke-miter", "font-family" (Arial) and "font-size" properties. +

+ + + $RCSfile: paint-stroke-03-t.svg,v $ + + + + + + + + + + + + Basic paint: stroke properties. + + + stroke-linecap="round" + stroke-miter="1" + + + $Revision: 1.6 $ + + + + + diff --git a/test/W3C_SVG_12_TinyTestSuite_beta/svg/paint-stroke-04-t.svg b/test/W3C_SVG_12_TinyTestSuite_beta/svg/paint-stroke-04-t.svg new file mode 100755 index 00000000..6eacbbb7 --- /dev/null +++ b/test/W3C_SVG_12_TinyTestSuite_beta/svg/paint-stroke-04-t.svg @@ -0,0 +1,57 @@ + + + + + + + + + + + +

+ Verify the "stroke-dasharray" and "stroke-dashoffset" properties. Two lines are drawn, one red and one black. + Both have a "stroke-dasharray" of "10,10" giving a dashed appearance where the size of the gaps and the size of + the dash is equal. The help show this, the black line has a "stroke-dashoffset" so that the dashes in the black + line match up with the gaps in the red line. +

+

+ The test uses the "path" element, "stroke", "stroke-width", "stroke-dasharray" and "stroke-dashoffset", "font-family" + (Arial) and "font-size" properties. +

+ + + $RCSfile: paint-stroke-04-t.svg,v $ + + + + + + + + + + + + Basic paint: stroke properties. + + + stroke-dasharray="10, 10" + stroke-dashoffset="10" + + + $Revision: 1.6 $ + + + + + diff --git a/test/W3C_SVG_12_TinyTestSuite_beta/svg/paint-stroke-05-t.svg b/test/W3C_SVG_12_TinyTestSuite_beta/svg/paint-stroke-05-t.svg new file mode 100755 index 00000000..4d6887e9 --- /dev/null +++ b/test/W3C_SVG_12_TinyTestSuite_beta/svg/paint-stroke-05-t.svg @@ -0,0 +1,81 @@ + + + + + + + + + + + +

+ User agents may render graphical primitives with different levels of accurancy. + This test is aimed at determining how does a UA render thin strokes. +

+

+ The test file contains a number of vertical and horizontal lines. + The stroke width of the vertical lines are increasing from left to right. + The stroke width of the horizontal lines are increasing from top to bottom. + The user should be able to see a smooth stroke width increment for the vertical and horizontal lines. +

+ + + painting-stroke-05-t.svg + + + + + + + + + Rendering thin strokes + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + $Revision: 1.6 $ + + + + + diff --git a/test/W3C_SVG_12_TinyTestSuite_beta/svg/paint-stroke-06-t.svg b/test/W3C_SVG_12_TinyTestSuite_beta/svg/paint-stroke-06-t.svg new file mode 100755 index 00000000..0729b23e --- /dev/null +++ b/test/W3C_SVG_12_TinyTestSuite_beta/svg/paint-stroke-06-t.svg @@ -0,0 +1,73 @@ + + + + + + + + + + + +

+ Test default effects of stroke-dasharray. +

+

+ This specifically tests the values of none and 0. + This also tests an odd number of values in a dash-array attribute + and in combination with an offset. +

+

+ The top two lines must be solid black. The next line shows a thick + black line with a thinner red line on top; both must have the same + dash pattern. The bottom two lines, one black and one blue, must render + so that the gaps of one correspond to the dashes of the other. +

+ + + $RCSfile: paint-stroke-06-t.svg,v $ + + + + + + + + + + + + + + + + + + + + + + + + + + + $Revision: 1.5 $ + + + + + \ No newline at end of file diff --git a/test/W3C_SVG_12_TinyTestSuite_beta/svg/paint-stroke-07-t.svg b/test/W3C_SVG_12_TinyTestSuite_beta/svg/paint-stroke-07-t.svg new file mode 100755 index 00000000..15496a9f --- /dev/null +++ b/test/W3C_SVG_12_TinyTestSuite_beta/svg/paint-stroke-07-t.svg @@ -0,0 +1,53 @@ + + + + + + + + + + + +

+ Test effect of different stroke-miterlimits. For this particular combination of stroke width and angle, + the cut off value of stroke-miterlimit is 18.028. Thus, the first and second subtests should not truncate + the stroke, and all the rest must truncate it. +

+ + + $RCSfile: paint-stroke-07-t.svg,v $ + + + + + + + + + + + + + + + + + + + + $Revision: 1.5 $ + + + + + diff --git a/test/W3C_SVG_12_TinyTestSuite_beta/svg/paint-stroke-08-t.svg b/test/W3C_SVG_12_TinyTestSuite_beta/svg/paint-stroke-08-t.svg new file mode 100755 index 00000000..6e5322f9 --- /dev/null +++ b/test/W3C_SVG_12_TinyTestSuite_beta/svg/paint-stroke-08-t.svg @@ -0,0 +1,76 @@ + + + + + + + + + + + +

+ Test effects of stroke-opacity range. Values + outside the range 0-1.0 must be clamped. +

+

+ There must be no blue bars visible beside the three pink dots. + Four semitransparent blue bars, increasingly more opaque, + must line up with the yellow dots. Three fully opaque + blue bars must line up with the green dots. +

+ + + $RCSfile: paint-stroke-08-t.svg,v $ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + $Revision: 1.5 $ + + + + + diff --git a/test/W3C_SVG_12_TinyTestSuite_beta/svg/paint-stroke-201-t.svg b/test/W3C_SVG_12_TinyTestSuite_beta/svg/paint-stroke-201-t.svg new file mode 100755 index 00000000..47bd1457 --- /dev/null +++ b/test/W3C_SVG_12_TinyTestSuite_beta/svg/paint-stroke-201-t.svg @@ -0,0 +1,128 @@ + + + + + + + + + + + +

+ Stroking for circle, large stroke-width, small r. +

+

+ The main indication for a failed test is the appearence of something red. + A second indication is a thin white line inside a blue area. +

+

+ For smaller circles the radius gets smaller than the half stroke-width, therefore the fill is not + visible anymore for them. Only the animated circle at the beginning and the next circle + on its right have a visible fill. +

+

+ To test the correct rendering, the blue circles cover always red filled circles without a stroke. + Additionally the size of the circles is given with a thin white stroke on top. If something + red gets visible or blue parts of the stroke of the circle are outside of the related white + stroked circle, an error is occured. If the circles are not displayed as circles with an accuracy of + one device pixel, an error is occured too. +

+ + + $RCSfile: paint-stroke-201-t.svg,v $ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + stroked circles + red = wrong + white inside blue = wrong + + + + $Revision: 1.5 $ + + + + + diff --git a/test/W3C_SVG_12_TinyTestSuite_beta/svg/paint-stroke-202-t.svg b/test/W3C_SVG_12_TinyTestSuite_beta/svg/paint-stroke-202-t.svg new file mode 100755 index 00000000..92391865 --- /dev/null +++ b/test/W3C_SVG_12_TinyTestSuite_beta/svg/paint-stroke-202-t.svg @@ -0,0 +1,175 @@ + + + + + + + + + + + +

+ Direction of stroke-dasharray and stroke-dashoffset for basic shapes. +

+

+ The main indication for a failed test is the appearence of a blue path on + a white background area. It is passed, if all blue paths are on a gray background area. +

+

+ stroke-dasharray and stroke-dashoffset are tested on basic shapes circle, ellipse, rectangle, + rectangle with rounded corners, line, polyline and polygon. The test is sensitive to the + direction of stroke-dasharray and stroke-dashoffset and on the starting point on the basic + shape. +

+

+ The dashes are positioned correctly, if they are only on a gray background area. + If there are dashes on a white background, this is an indication for an error. + Additional information given in the elements title and desc for the related subtest + may help to identify the tested shape and property combination and the error, + if there is one. +

+ + + $RCSfile: paint-stroke-202-t.svg,v $ + + + + + + + + + + background of filled rectangles indicating stroking areas in gray + + + + + + + + + + + + + testing stroke-dasharray for circle, rectangle with rounded corners, ellipse + + stroke-dasharray on circle without stroke-dashoffset + Note that the pathLength of the circle is exactly 560 + + + stroke-dasharray on rect with rounded corners without stroke-dashoffset + Note that the pathLength of the rect is exactly 560 + + + stroke-dasharray on ellipse without stroke-dashoffset + Note that the pathLength of the ellipse is exactly 560 + + + + + stroke-dasharray on circle without negative stroke-dashoffset + Note that the pathLength of the circle is exactly 560 + + + stroke-dasharray on rect with rounded corners with negative stroke-dashoffset + Note that the pathLength of the rect is exactly 560 + + + stroke-dasharray on ellipse with positive stroke-dashoffset + Note that the pathLength of the ellipse is exactly 560 + + + + + + testing stroke-dasharray for line, polyline, polygon + + + + stroke-dasharray on line with stroke-dashoffset set to 0 + + + stroke-dasharray on polyline with stroke-dashoffset set to 0 + + + stroke-dasharray on polygon with stroke-dashoffset set to 0 + + + + + + + stroke-dasharray on line with stroke-dashoffset + + + stroke-dasharray on polyline with negative stroke-dashoffset + + + stroke-dasharray on polygon with stroke-dashoffset + + + + + + testing stroke-dasharray for rectangles + + stroke-dasharray on rect with positive stroke-dashoffset + + + + stroke-dasharray on rect with rounded corners with positive stroke-dashoffset + Note that the pathLength of the rectangle is exactly 560, the round parts are 2pi*rx + + + + stroke-dasharray on rect with negative stroke-dashoffset + + + + + + position of the dashes: + blue on gray: ok + blue on white: fail + + + + + + + $Revision: 1.5 $ + + + + + diff --git a/test/W3C_SVG_12_TinyTestSuite_beta/svg/paint-stroke-204-t.svg b/test/W3C_SVG_12_TinyTestSuite_beta/svg/paint-stroke-204-t.svg new file mode 100755 index 00000000..ba49de73 --- /dev/null +++ b/test/W3C_SVG_12_TinyTestSuite_beta/svg/paint-stroke-204-t.svg @@ -0,0 +1,181 @@ + + + + + + + + + + + +

+ Precision tests for stroke-linejoin. +

+

+ The main indication for a failed test is the appearence of something red. +

+

+ stroke-linejoin is tested, using a comparsion with filled or stroked paths or shapes with the same appearance. + This is tested for different three miter angles for the values round, miter and bevel, for each of them one with + test path on top of the comparsion shapes and one with the path below. +

+ The four paths top right test the inheritance either for the value explicitely set to 'inherit' or a missing stroke-linejoin property. +

+

+

+ The top is always blue. If something + red gets visible, an error is occured. +

+ + + $RCSfile: paint-stroke-204-t.svg,v $ + + + + + + + + + + + + + stroke-linejoin round (on top) + + + + + + + + + + + + + + + stroke-linejoin round (below) + + + + + + + + + + + + + + + + + stroke-linejoin miter (on top) + + + + + + + + + + + + + stroke-linejoin miter (below) + + + + + + + + + + + + + stroke-linejoin bevel (on top) + + + + + + + + + + + + + stroke-linejoin bevel (below) + + + + + + + + + + + + inheritance test (on top, round) + + + + + + + + + + inheritance test (below, round) + + + + + + + + + + stroke-linejoin: + red = wrong + + + + + $Revision: 1.5 $ + + + + + diff --git a/test/W3C_SVG_12_TinyTestSuite_beta/svg/paint-stroke-205-t.svg b/test/W3C_SVG_12_TinyTestSuite_beta/svg/paint-stroke-205-t.svg new file mode 100755 index 00000000..f963905d --- /dev/null +++ b/test/W3C_SVG_12_TinyTestSuite_beta/svg/paint-stroke-205-t.svg @@ -0,0 +1,395 @@ + + + + + + + + + + + +

+ Stroking for subpaths with path length zero, depending on stroke-linecap. +

+

+ The main indication for a failed test is the appearence of something red + (this simple indication may fail itself, if the viewer does not support stroke-linecap). +

+

+ Several paths containing a subpath with length zero are + stroked and some of them animated. +

+

+ The zero length subpath is placed between two + other subpaths of finite length or before or after a + subpath of finite length or in one case the path consists of two + subpaths of length zero. + The behaviour is checked for stroke-linecap round, + square (subpath visible) and bevel (subpath not visible) + on the left. +

+

+ On the right the behaviour is tested with simple + animations to check the correct alignment + or shrinking to zero length. + stroke-linecap is animated between round or square too + for some of them. +

+

+ The behaviour is compared with similar paths with a + subpath of a very small length. Because the red stroked + paths have a slightly smaller stroke, they are always covered + by blue paths. + If something red gets visible, an error is occured. +

+ + + $RCSfile: paint-stroke-205-t.svg,v $ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + Red comparison - if visible - error + + + Blue testcase covers all red if correct + + + + Red comparison - if visible - error + + + Blue testcase covers all red if correct + + + + Red comparison - if visible - error + + + Blue testcase covers all red if correct + + + + Red comparison - if visible - error + + + Blue testcase covers all red if correct + + + + Red comparison - if visible - error + + + Blue testcase covers all red if correct + + + + + + + + linecap square - zero path visible + + + + Blue testcase 3 + + + + + linecap round - zero path visible + + + + + linecap butt - zero path not visible, blue covers all red + + + + + + + + + linecap square - zero path visible + + + + + + + + + + + + + + + + + + + Red comparison - if visible - error + + + Blue testcase covers all red if correct + + + + Red comparison - if visible - error + + + Blue testcase covers all red if correct + + + + Red comparison - if visible - error + + + Blue testcase covers all red if correct + + + + + Red comparison - if visible - error + + + Blue testcase covers all red if correct + + + + + + + Red comparison - if visible - error + + + Blue testcase covers all red if correct + + + + + Red comparison - if visible - error + + + Blue testcase covers all red if correct + + + + + + stroking of path fragments + with length zero + red = wrong + + + + + $Revision: 1.6 $ + + + + + diff --git a/test/W3C_SVG_12_TinyTestSuite_beta/svg/paint-stroke-207-t.svg b/test/W3C_SVG_12_TinyTestSuite_beta/svg/paint-stroke-207-t.svg new file mode 100755 index 00000000..22a36a1f --- /dev/null +++ b/test/W3C_SVG_12_TinyTestSuite_beta/svg/paint-stroke-207-t.svg @@ -0,0 +1,106 @@ + + + + + + + + + + + +

+ Centering of stroke on the outline of rectangles. +

+

+ The main indication for a failed test is the appearence of something red. +

+

+ The width and position of the stroke centered on the outline of a rectangle is tested with four stroked rectangles, + one is the thin black stroked test frame rectangle, the second one a large blue rectangle, the third a rectangle + with rounded corners, looking like a circle and the fourth a small square. +

+

+ The correct position is tested by a comparsion with several filled rectangles in the background or in the fourth case + covering the test square completely. The parts of the background covered with the blue test rectangles are filled red, + respectively the test square is stroked red too. + Therefore if something red gets visible, the position of the stroke of + the related test rectangle is wrong. +

+

+ According to the conformance criteria all visual rendering should be accurate to within one px unit to the mathematically + correct result. Therefore possible residuals from the red background parts have to be in this + range of accuracy to pass the test. +

+ + + $RCSfile: paint-stroke-207-t.svg,v $ + + + + + + + + + + + background of filled rectangles indicating the position of the stroked test rectangles + + + + + + + + + + + + + large blue stroked test rectangle + + + small blue stroked test rectangle with rounded corners looking like a circle + + + + + + + small red stroked test rectangle + + + small blue rectangles to cover the small red stroked test rectangle + + + + + + + + + position of the stroke: + red = wrong + + + + + $Revision: 1.5 $ + + + + + diff --git a/test/W3C_SVG_12_TinyTestSuite_beta/svg/paint-vfill-201-t.svg b/test/W3C_SVG_12_TinyTestSuite_beta/svg/paint-vfill-201-t.svg new file mode 100755 index 00000000..26551402 --- /dev/null +++ b/test/W3C_SVG_12_TinyTestSuite_beta/svg/paint-vfill-201-t.svg @@ -0,0 +1,66 @@ + + + + + + + + + + + +

Viewport Fill Attribute

+

+ The root SVG element of this test slide has a 'viewport-fill' attribute set to 'silver'. + At the start the entire background should be a light grey.This should then change to aqua. + There are two reference squares in the center - silver and aqua. +

+ + + $RCSfile: paint-vfill-201-t.svg,v $ + + + + + + + + + + Viewport Fill Attribute + + The root SVG element of this test slide has a 'viewport-fill' attribute set to 'silver'. + + + At the start the entire background should be a light grey.This should then change to aqua. + + + There are two reference squares in the center - silver and aqua. + + + + + + + + + + $Revision: 1.5 $ + + + + + diff --git a/test/W3C_SVG_12_TinyTestSuite_beta/svg/paint-vfill-202-t.svg b/test/W3C_SVG_12_TinyTestSuite_beta/svg/paint-vfill-202-t.svg new file mode 100755 index 00000000..f93aa1d9 --- /dev/null +++ b/test/W3C_SVG_12_TinyTestSuite_beta/svg/paint-vfill-202-t.svg @@ -0,0 +1,50 @@ + + + + + + + + + + + +

+ Tests viewport-fill and viewport-fill-opacity. + The image should show the correct viewport-fill (green). +

+ + + $RCSfile: paint-vfill-202-t.svg,v $ + + + + + + + + + + + + + + $Revision: 1.6 $ + + + + + diff --git a/test/W3C_SVG_12_TinyTestSuite_beta/svg/paint-vfill-203-t.svg b/test/W3C_SVG_12_TinyTestSuite_beta/svg/paint-vfill-203-t.svg new file mode 100755 index 00000000..278d90ab --- /dev/null +++ b/test/W3C_SVG_12_TinyTestSuite_beta/svg/paint-vfill-203-t.svg @@ -0,0 +1,50 @@ + + + + + + + + + + + +

+ Test on viewport-fill and viewport-fill-opacity. + Animates viewport-fill from yellow to blue over one second, and animates viewport-fill-opacity from 1.0 to 0.5. +

+ + + $RCSfile: paint-vfill-203-t.svg,v $ + + + + + + + + + + + + + + $Revision: 1.6 $ + + + + + \ No newline at end of file diff --git a/test/W3C_SVG_12_TinyTestSuite_beta/svg/paint-vfill-204-t.svg b/test/W3C_SVG_12_TinyTestSuite_beta/svg/paint-vfill-204-t.svg new file mode 100755 index 00000000..6011e0ab --- /dev/null +++ b/test/W3C_SVG_12_TinyTestSuite_beta/svg/paint-vfill-204-t.svg @@ -0,0 +1,50 @@ + + + + + + + + + + + +

+ Test on viewport-fill and viewport-fill-opacity. viewport-fill-opacity is set to 0.0 so the set viewport-fill + color should not be visible. The image has its viewport-fill set to "inherit" and viewport-fill-opacity to 1.0 + so the image should show with a yellow viewport-fill and full opacity. +

+ + + $RCSfile: paint-vfill-204-t.svg,v $ + + + + + + + + + + + + + $Revision: 1.6 $ + + + + + \ No newline at end of file diff --git a/test/W3C_SVG_12_TinyTestSuite_beta/svg/paint-vfill-205-t.svg b/test/W3C_SVG_12_TinyTestSuite_beta/svg/paint-vfill-205-t.svg new file mode 100755 index 00000000..53e6ebcb --- /dev/null +++ b/test/W3C_SVG_12_TinyTestSuite_beta/svg/paint-vfill-205-t.svg @@ -0,0 +1,49 @@ + + + + + + + + + + + +

+ Tests viewport-fill and viewport-fill-opacity. + Output should match reference image. +

+ + + $RCSfile: paint-vfill-205-t.svg,v $ + + + + + + + + + + + + + $Revision: 1.5 $ + + + + + \ No newline at end of file diff --git a/test/W3C_SVG_12_TinyTestSuite_beta/svg/paint-vfill-206-t.svg b/test/W3C_SVG_12_TinyTestSuite_beta/svg/paint-vfill-206-t.svg new file mode 100755 index 00000000..80f9952a --- /dev/null +++ b/test/W3C_SVG_12_TinyTestSuite_beta/svg/paint-vfill-206-t.svg @@ -0,0 +1,70 @@ + + + + + + + + + + + +

Viewport Fill Opacity Attribute

+

+ The root SVG element of this test slide has a 'viewport-fill' attribute set to 'yellow' + with a 'viewport-fill-opacity' of 1. At the start the entire background should be solid yellow. + This should then change to a pale bluish gray. There are two reference squares in the center - solid yellow - to + match the background at the start and a pale yellow that should match the backgound after a few seconds. +

+ + + $RCSfile: paint-vfill-206-t.svg,v $ + + + + + + + + + + Viewport Fill Opacity Attribute + + The root SVG element of this test slide has a 'viewport-fill' attribute set to 'yellow' + + + with a 'viewport-fill-opacity' of 1. At the start the entire background should be solid yellow. + + + This should then change to a pale bluish gray. There are two reference squares in the center. + + + + + + + + + + + + + $Revision: 1.9 $ + + + + + diff --git a/test/W3C_SVG_12_TinyTestSuite_beta/svg/paths-data-01-t.svg b/test/W3C_SVG_12_TinyTestSuite_beta/svg/paths-data-01-t.svg new file mode 100755 index 00000000..407a70ac --- /dev/null +++ b/test/W3C_SVG_12_TinyTestSuite_beta/svg/paths-data-01-t.svg @@ -0,0 +1,132 @@ + + + + + + + + + + + +

Test that the viewer has the basic capability to handle the 'path' element and its data (d) attribute in combination with the cubic Bezier curveto commands, C, c, S, s (plus Mm and Zz).

+

There are 8 subtests, each composed from the cubic Bezier path commands per the label by the subtest. On-curve control points (i.e., the curve position) are marked by small blue squares. Subtests are filled, or stroked, or both, using simple style properties and colors.

+

The rendered picture should match the reference image exactly, except for possible variations in the labelling text (per CSS2 rules).

+ + + $RCSfile: paths-data-01-t.svg,v $ + + + + + + + + + + + + Cubic bézier curves drawn with commands: + + + + + + + + + + + M,C,S,m,c,s + + + + + + + + + + + + M,c,c,c,C,z + + + + + + + + + + M,C,Z + + + + + + + + + + + M,C,c,Z + + + + + + + + + + + m,c,s + + + + + + + + + + M,C + + + + + + + + + + + + M,c,s,s,s,z + + + + + + + + + + m,c,z + + + $Revision: 1.13 $ + + + + + diff --git a/test/W3C_SVG_12_TinyTestSuite_beta/svg/paths-data-02-t.svg b/test/W3C_SVG_12_TinyTestSuite_beta/svg/paths-data-02-t.svg new file mode 100755 index 00000000..2cfa1d01 --- /dev/null +++ b/test/W3C_SVG_12_TinyTestSuite_beta/svg/paths-data-02-t.svg @@ -0,0 +1,105 @@ + + + + + + + + + + + +

Test that the viewer has the basic capability to handle the 'path' element and its data (d) attribute in combination with the quadratic Bezier curveto commands, Q, q, T, t (plus Mm and Zz).

+

There are 7 subtests, each composed from the quadric Bezier path commands per the label by the subtest. On-curve control points (i.e., the curve position) are marked by small colored squares. Subtests are filled, or stroked, or both, using simple style properties and colors.

+

The rendered picture should match the reference image exactly, except for possible variations in the labelling text (per CSS2 rules).

+ + + $RCSfile: paths-data-02-t.svg,v $ + + + + + + + + + Quadratic bézier curves drawn with commands: + + + + + M,Q,M,q,z + + + + + + + + + m,q,z,m,q,z + + + + + + + + + M,Q,Z + + + + + + + M,Q,T,Q,z + + + + + + + + + M,Q,Q,z + + + + + + + + M,q,t,t,t,t,z + + + + + + + + + + + M,q,Q,q,Q,z + + + + + + + + $Revision: 1.13 $ + + + + + diff --git a/test/W3C_SVG_12_TinyTestSuite_beta/svg/paths-data-04-t.svg b/test/W3C_SVG_12_TinyTestSuite_beta/svg/paths-data-04-t.svg new file mode 100755 index 00000000..3493f264 --- /dev/null +++ b/test/W3C_SVG_12_TinyTestSuite_beta/svg/paths-data-04-t.svg @@ -0,0 +1,65 @@ + + + + + + + + + + + +

Verify the basic capability to handle the 'path' element, and its data attribute (d) in combination with the straight-line path commands. Two pairs of concentric equilateral triangles are drawn using respectively M,L,Z and m,l,z. The shapes are identical, with one stroked and one filled. The fill-mode default of "even-odd" means that the inner triangle is hollow.

+

The rendered picture should match the reference image exactly, except for possible variations in the labelling text (per CSS2 rules).

+ + + $RCSfile: paths-data-04-t.svg,v $ + + + + + + + + + Lines drawn with commands (absolute coordinates): + + + + + M,L,L,L,Z, + subpath + M,L,L,L,Z + + + + + + + + stroked + + + + + + + + filled + + + + $Revision: 1.12 $ + + + + + diff --git a/test/W3C_SVG_12_TinyTestSuite_beta/svg/paths-data-05-t.svg b/test/W3C_SVG_12_TinyTestSuite_beta/svg/paths-data-05-t.svg new file mode 100755 index 00000000..2e0eeb2b --- /dev/null +++ b/test/W3C_SVG_12_TinyTestSuite_beta/svg/paths-data-05-t.svg @@ -0,0 +1,63 @@ + + + + + + + + + + + +

Verify the basic capability to handle the 'path' element, and its data attribute (d) in combination with the straight-line path commands. Two pairs of concentric equilateral triangles are drawn using respectively M,L,Z and m,l,z. The shapes in each pair are identical, with one stroked and one filled. The fill-mode default of "even-odd" means that the inner triangle is hollow.

+

The rendered picture should match the reference image exactly, except for possible variations in the labelling text (per CSS2 rules).

+ + + $RCSfile: paths-data-05-t.svg,v $ + + + + + + + + + Lines drawn with commands (relative coordinates): + + + + + m,l,l,l,z, + subpath + m,l,l,l,z + + + + + + + + + + + + + + + + + + $Revision: 1.13 $ + + + + + diff --git a/test/W3C_SVG_12_TinyTestSuite_beta/svg/paths-data-06-t.svg b/test/W3C_SVG_12_TinyTestSuite_beta/svg/paths-data-06-t.svg new file mode 100755 index 00000000..a182a81e --- /dev/null +++ b/test/W3C_SVG_12_TinyTestSuite_beta/svg/paths-data-06-t.svg @@ -0,0 +1,68 @@ + + + + + + + + + + + +

Verify the basic capability to handle the 'path' element, and its data attribute (d) in combination with the straight-line path commands. Two pairs of staircase figures are drawn using respectively M,H,V,Z and m,h,v,z. The shapes in each pair are identical, with one stroked and one filled.

+

The rendered picture should match the reference image exactly, except for possible variations in the labelling text (per CSS2 rules).

+ + + $RCSfile: paths-data-06-t.svg,v $ + + + + + + + + + Horizontal and Vertical Lines drawn with commands (absolute coordinates): + + + + + M,H,V,H, + V,H,V,H, + V,Z + + + + + + + + + + + + + + + + + + + + + + + $Revision: 1.12 $ + + + + + diff --git a/test/W3C_SVG_12_TinyTestSuite_beta/svg/paths-data-07-t.svg b/test/W3C_SVG_12_TinyTestSuite_beta/svg/paths-data-07-t.svg new file mode 100755 index 00000000..f2f4de12 --- /dev/null +++ b/test/W3C_SVG_12_TinyTestSuite_beta/svg/paths-data-07-t.svg @@ -0,0 +1,67 @@ + + + + + + + + + + + +

Verify the basic capability to handle the 'path' element, and its data attribute (d) in combination with the straight-line path commands. Two pairs of staircase figures are drawn using respectively M,H,V,Z and m,h,v,z. The shapes in each pair are identical, with one stroked and one filled.

+

The rendered picture should match the reference image exactly, except for possible variations in the labelling text (per CSS2 rules).

+ + + $RCSfile: paths-data-07-t.svg,v $ + + + + + + + + + Horizontal and Vertical Lines drawn with commands (relative coordinates): + + + + + m,h,v,h + v,h,v,h + v,z + + + + + + + + + + + + + + + + + + + + + + $Revision: 1.12 $ + + + + + diff --git a/test/W3C_SVG_12_TinyTestSuite_beta/svg/paths-data-08-t.svg b/test/W3C_SVG_12_TinyTestSuite_beta/svg/paths-data-08-t.svg new file mode 100755 index 00000000..18e7ac95 --- /dev/null +++ b/test/W3C_SVG_12_TinyTestSuite_beta/svg/paths-data-08-t.svg @@ -0,0 +1,63 @@ + + + + + + + + + + + +

Verify the basic capability to handle the 'path' element, and its data attribute (d) in combination with the straight-line path commands. Two pairs of concentric equilateral triangles are drawn using M and Z. No L commands are used in this test as they are implied after an M or Z command. The shapes are identical, with one stroked and one filled. The fill-mode default of "even-odd" means that the inner triangle is hollow.

+

The rendered picture should match the reference image exactly, except for possible variations in the labelling text (per CSS2 rules).

+ + + $RCSfile: paths-data-08-t.svg,v $ + + + + + + + + + + + + Lines drawn with commands (testing implicit followup of 'L' commands): + M and Z + + + + + + + + + stroked + + + + + + + + filled + + + + $Revision: 1.9 $ + + + + + diff --git a/test/W3C_SVG_12_TinyTestSuite_beta/svg/paths-data-09-t.svg b/test/W3C_SVG_12_TinyTestSuite_beta/svg/paths-data-09-t.svg new file mode 100755 index 00000000..b632db73 --- /dev/null +++ b/test/W3C_SVG_12_TinyTestSuite_beta/svg/paths-data-09-t.svg @@ -0,0 +1,61 @@ + + + + + + + + + + + +

Verify the basic capability to handle the 'path' element, and its data attribute (d) in combination with the straight-line path commands. Two pairs of concentric equilateral triangles are drawn using m and z. No l commands are used in this test as they are implied after an m or z command. The shapes are identical, with one stroked and one filled. The fill-mode default of "even-odd" means that the inner triangle is hollow.

+

The rendered picture should match the reference image exactly, except for possible variations in the labelling text (per CSS2 rules).

+ + + $RCSfile: paths-data-09-t.svg,v $ + + + + + + + + + + + + Lines drawn with commands (testing implicit followup of 'l' commands): + m and z + + + + + + + + + + + + + + + + + + + $Revision: 1.9 $ + + + + + diff --git a/test/W3C_SVG_12_TinyTestSuite_beta/svg/paths-data-10-t.svg b/test/W3C_SVG_12_TinyTestSuite_beta/svg/paths-data-10-t.svg new file mode 100755 index 00000000..f0f75e79 --- /dev/null +++ b/test/W3C_SVG_12_TinyTestSuite_beta/svg/paths-data-10-t.svg @@ -0,0 +1,97 @@ + + + + + + + + + + + +

Verify that the viewer renders the line caps and line joins for open and closed paths properly. Verify that the open triangular paths are stroked differently at ends of the path than they are at their intermediate corners. In contrast, the corners of a closed path should all appear the same.

+

The rendered picture should match the reference image, except for possible variations in the labelling text (per CSS2 rules).

+ + + $RCSfile: paths-data-10-t.svg,v $ + + + + + + + + + Testing correct stroking with open and closed paths + + + open + join=round + cap=butt + M,L + + + + + + open + join=bevel + cap=round + m,l + + + + + + open + join=miter + cap=square + M,L + + + + + + closed + join=round + cap=butt + M,L,Z + + + + + + closed + join=bevel + cap=round + m,l,z + + + + + + closed + join=miter + cap=square + M,L,Z + + + + + + + + $Revision: 1.11 $ + + + + + diff --git a/test/W3C_SVG_12_TinyTestSuite_beta/svg/paths-data-12-t.svg b/test/W3C_SVG_12_TinyTestSuite_beta/svg/paths-data-12-t.svg new file mode 100755 index 00000000..4d43b144 --- /dev/null +++ b/test/W3C_SVG_12_TinyTestSuite_beta/svg/paths-data-12-t.svg @@ -0,0 +1,56 @@ + + + + + + + + + + + +

Test using multiple coord sets to build a polybézier, and implicit values for initial S.

+

The rendered picture should match the reference image exactly, except for possible variations in the labelling text (per CSS2 rules).

+ + + $RCSfile: paths-data-12-t.svg,v $ + + + + + + + + + Testing cubic bézier curves and implicit values for 'S': + M,C,S + M,S + + + + + + + + + + + + + + + + $Revision: 1.11 $ + + + + + diff --git a/test/W3C_SVG_12_TinyTestSuite_beta/svg/paths-data-13-t.svg b/test/W3C_SVG_12_TinyTestSuite_beta/svg/paths-data-13-t.svg new file mode 100755 index 00000000..e4f388b2 --- /dev/null +++ b/test/W3C_SVG_12_TinyTestSuite_beta/svg/paths-data-13-t.svg @@ -0,0 +1,47 @@ + + + + + + + + + + + +

Test multiple coordinates for V and H. There should be one horizontal red line and one vertical blue line.

+

The rendered picture should match the reference image exactly, except for possible variations in the labelling text (per CSS2 rules).

+ + + $RCSfile: paths-data-13-t.svg,v $ + + + + + + + + + Testing implicit followup of 'V' and 'H' commands): + M,H + M,V + + + + + + + $Revision: 1.10 $ + + + + + diff --git a/test/W3C_SVG_12_TinyTestSuite_beta/svg/paths-data-14-t.svg b/test/W3C_SVG_12_TinyTestSuite_beta/svg/paths-data-14-t.svg new file mode 100755 index 00000000..a236033e --- /dev/null +++ b/test/W3C_SVG_12_TinyTestSuite_beta/svg/paths-data-14-t.svg @@ -0,0 +1,49 @@ + + + + + + + + + + + +

Test implicit values for moveto. If the first command is 'm' it should be taken as an absolute moveto, plus implicit lineto.

+

The rendered picture should match the reference image exactly, except for possible variations in the labelling text (per CSS2 rules).

+ + + $RCSfile: paths-data-14-t.svg,v $ + + + + + + + + + Testing implicit followup of 'l/L' commands succeeding 'm/M', commands: + m,z,m,z + M,Z,M,Z + + + + + + + + + $Revision: 1.10 $ + + + + + diff --git a/test/W3C_SVG_12_TinyTestSuite_beta/svg/paths-data-15-t.svg b/test/W3C_SVG_12_TinyTestSuite_beta/svg/paths-data-15-t.svg new file mode 100755 index 00000000..05c8788a --- /dev/null +++ b/test/W3C_SVG_12_TinyTestSuite_beta/svg/paths-data-15-t.svg @@ -0,0 +1,52 @@ + + + + + + + + + + + +

Test using multiple coord sets to build a polybézier, then T with no preceding Q or T.

+

The rendered picture should match the reference image exactly, except for possible variations in the labeling text (per CSS2 rules).

+ + + $RCSfile: paths-data-15-t.svg,v $ + + + + + + + + + Testing implement followup of commands for quadratic bézier curves + M,Q + M,T + + + + + + + + + + + + $Revision: 1.10 $ + + + + + diff --git a/test/W3C_SVG_12_TinyTestSuite_beta/svg/render-elems-01-t.svg b/test/W3C_SVG_12_TinyTestSuite_beta/svg/render-elems-01-t.svg new file mode 100755 index 00000000..f6525925 --- /dev/null +++ b/test/W3C_SVG_12_TinyTestSuite_beta/svg/render-elems-01-t.svg @@ -0,0 +1,54 @@ + + + + + + + + + + + +

Verifies that shapes can be filled.

+

There is one pair of octagons. These are filled.

+

The rendered image should match the reference image except for the text which may show minor layout differences.

+

The test uses the 'path' element, as well as basic fill (solid primary colors), stroke (primary color 1-pixel and wide lines), font-family (Arial) and font-size properties - the common prerequisites.

+ + + $RCSfile: render-elems-01-t.svg,v $ + + + + + + + + + + + + + + + + + + + Shape fill + + + + $Revision: 1.8 $ + + + + + diff --git a/test/W3C_SVG_12_TinyTestSuite_beta/svg/render-elems-02-t.svg b/test/W3C_SVG_12_TinyTestSuite_beta/svg/render-elems-02-t.svg new file mode 100755 index 00000000..0c8996b5 --- /dev/null +++ b/test/W3C_SVG_12_TinyTestSuite_beta/svg/render-elems-02-t.svg @@ -0,0 +1,57 @@ + +"> +]> + + + + + + + + + + +

Verifies that shapes can be stroked.

+

There is one pair of octagons. These are stroked.

+

The rendered image should match the reference image except for the text which may show minor layout differences.

+

The test uses the 'rect' element, as well as basic fill (solid primary colors), stroke (primary color 1-pixel and wide lines), font-family (Arial) and font-size properties - the common prerequisites.

+ + + $RCSfile: render-elems-02-t.svg,v $ + + + + + + + + + + + + + + + + + + + Shape stroke + + + + $Revision: 1.8 $ + + + + + diff --git a/test/W3C_SVG_12_TinyTestSuite_beta/svg/render-elems-03-t.svg b/test/W3C_SVG_12_TinyTestSuite_beta/svg/render-elems-03-t.svg new file mode 100755 index 00000000..bee69cd4 --- /dev/null +++ b/test/W3C_SVG_12_TinyTestSuite_beta/svg/render-elems-03-t.svg @@ -0,0 +1,53 @@ + +"> +]> + + + + + + + + + + +

Verifies that shapes can be filled, stroked and the order of filling and stroking.

+

There is one pair of octagons. These are filled plus stroked.

+

The rendered image should match the reference image except for the text which may show minor layout differences.

+

The test uses the 'rect' element, as well as basic fill (solid primary colors), stroke (primary color 1-pixel and wide lines), font-family (Arial) and font-size properties - the common prerequisites.

+ + + $RCSfile: render-elems-03-t.svg,v $ + + + + + + + + + + + + + &shape; + &shape; + Shape fill and stroke + + + + $Revision: 1.8 $ + + + + + diff --git a/test/W3C_SVG_12_TinyTestSuite_beta/svg/render-elems-06-t.svg b/test/W3C_SVG_12_TinyTestSuite_beta/svg/render-elems-06-t.svg new file mode 100755 index 00000000..6808229d --- /dev/null +++ b/test/W3C_SVG_12_TinyTestSuite_beta/svg/render-elems-06-t.svg @@ -0,0 +1,56 @@ + + + + + + + + + + + +

Verifies that text can be filled. The test shows two 'A' characters that are filled and not stroked.

+

The rendered image should match the reference image except for the text which may show minor layout differences.

+ + + $RCSfile: render-elems-06-t.svg,v $ + + + + + + + + + + + + + + + + + + + + Text fill + + A + A + + + + $Revision: 1.8 $ + + + + + diff --git a/test/W3C_SVG_12_TinyTestSuite_beta/svg/render-elems-07-t.svg b/test/W3C_SVG_12_TinyTestSuite_beta/svg/render-elems-07-t.svg new file mode 100755 index 00000000..3d353e84 --- /dev/null +++ b/test/W3C_SVG_12_TinyTestSuite_beta/svg/render-elems-07-t.svg @@ -0,0 +1,56 @@ + + + + + + + + + + + +

Verifies that text can be stroked. The The test shows two characters that are stroked and not filled.

+

The rendered image should match the reference image except for the text which may show minor layout differences.

+ + + $RCSfile: render-elems-07-t.svg,v $ + + + + + + + + + + + + + + + + + + + + Text stroke + + A + B + + + + $Revision: 1.8 $ + + + + + diff --git a/test/W3C_SVG_12_TinyTestSuite_beta/svg/render-elems-08-t.svg b/test/W3C_SVG_12_TinyTestSuite_beta/svg/render-elems-08-t.svg new file mode 100755 index 00000000..1c0d8869 --- /dev/null +++ b/test/W3C_SVG_12_TinyTestSuite_beta/svg/render-elems-08-t.svg @@ -0,0 +1,56 @@ + + + + + + + + + + + +

Verifies that text can be stroked. The test shows two 'A' characters that are both stroked and filled.

+

The rendered image should match the reference image except for the text which may show minor layout differences.

+ + + $RCSfile: render-elems-08-t.svg,v $ + + + + + + + + + + + + + + + + + + + + Text fill and stroke + + A + B + + + + $Revision: 1.8 $ + + + + + diff --git a/test/W3C_SVG_12_TinyTestSuite_beta/svg/render-groups-01-t.svg b/test/W3C_SVG_12_TinyTestSuite_beta/svg/render-groups-01-t.svg new file mode 100755 index 00000000..011c63ed --- /dev/null +++ b/test/W3C_SVG_12_TinyTestSuite_beta/svg/render-groups-01-t.svg @@ -0,0 +1,74 @@ + + + + + + + + + + + +

Verifies implicit rendering order (paragraph 3.3) and grouping mechanism (paragraphs 3.4). It also validates basic Shape, Image and text rendering.

+

This test renders 3 elements: a text string "SVG", then a shape, then an image. Because of their definition order and coordinates, the image should be on top of the rectangle and the rectangle on top of the text. None of the "SVG" should show through the rectangle and none of the rectangle should show through the image.

+

Prerequisites: the test assumes proper handling of the fill stroke, stroke-width, font-size rendering properties. It uses the rect, line, text and image elements, as well as all the elements required for the test template. To ensure that the text string is overlapped by the other elements and to avoid a dependency on system fonts, an SVG font is used.

+

The rendered image should match the reference image exactly.

+ + + $RCSfile: render-groups-01-t.svg,v $ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + SVG + + + + + + + $Revision: 1.9 $ + + + + + diff --git a/test/W3C_SVG_12_TinyTestSuite_beta/svg/render-groups-03-t.svg b/test/W3C_SVG_12_TinyTestSuite_beta/svg/render-groups-03-t.svg new file mode 100755 index 00000000..2bd1926c --- /dev/null +++ b/test/W3C_SVG_12_TinyTestSuite_beta/svg/render-groups-03-t.svg @@ -0,0 +1,76 @@ + + + + + + + + + + + +

Verifies implicit rendering order (paragraph 3.3) and grouping mechanism (paragraphs 3.4). It also validates basic Shape, Image and text rendering.

+

This test renders 3 elements: a text string "SVG", then a shape, then an image. Because of their definition order and coordinates, the image should be on top of the rectangle and the rectangle on top of the text. None of the "SVG" should show through the rectangle and none of the rectangle should show through the image.

+

Prerequisites: the test assumes proper handling of the fill stroke, stroke-width, font-size rendering properties. It uses the rect, line, text and image elements, as well as all the elements required for the test template. To ensure that the text string is overlapped by the other elements and to avoid a dependency on system fonts, an SVG font is used.

+

The rendered image should match the reference image exactly.

+ + + $RCSfile: render-groups-03-t.svg,v $ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + SVG + + + + + + $Revision: 1.8 $ + + + + + diff --git a/test/W3C_SVG_12_TinyTestSuite_beta/svg/script-element-201-t.svg b/test/W3C_SVG_12_TinyTestSuite_beta/svg/script-element-201-t.svg new file mode 100755 index 00000000..ede311be --- /dev/null +++ b/test/W3C_SVG_12_TinyTestSuite_beta/svg/script-element-201-t.svg @@ -0,0 +1,62 @@ + + + + + + + + + + + +

+ Test that when a script element has both an xlink:href attribute and child character data, + the executable content for the script is retrieved from the IRI of the xlink:href attribute, + and the child content is not added to the scripting context. +

+

+ The test loads an external script resource, which if executed sets the fill or the blue rect to green. + If the child content is executed the fill will be set to red and an alert will be displayed. +

+

+ The test has passed if the rect is green after script execution has taken place and there has been no + alert displayed. +

+ + + $RCSfile: script-element-201-t.svg,v $ + + + + + + + + + + + + + + + $Revision: 1.6 $ + + + + + diff --git a/test/W3C_SVG_12_TinyTestSuite_beta/svg/script-element-202-t.svg b/test/W3C_SVG_12_TinyTestSuite_beta/svg/script-element-202-t.svg new file mode 100755 index 00000000..b2a7cf41 --- /dev/null +++ b/test/W3C_SVG_12_TinyTestSuite_beta/svg/script-element-202-t.svg @@ -0,0 +1,77 @@ + + + + + + + + + + + +

+ Test that scripts are not processed until added to the DOM tree. Also test that a function defined in a script + element can be called from a handler element in the same scripting context. +

+

+ When the blue rect is clicked a script element is created. The script to be run must not be processed until + the script element is added to the tree. If it is processed before added to the tree, the rect that is + inserted into the document will be red. If not, then it will be green. +

+

+ The test has passed if after clicking the blue rect a green rect is displayed in its place. +

+ + + $RCSfile: script-element-202-t.svg,v $ + + + + + + + + + + + + + + makeScriptElement(); + + + Click here! + + + $Revision: 1.5 $ + + + + + diff --git a/test/W3C_SVG_12_TinyTestSuite_beta/svg/script-element-203-t.svg b/test/W3C_SVG_12_TinyTestSuite_beta/svg/script-element-203-t.svg new file mode 100755 index 00000000..4f379866 --- /dev/null +++ b/test/W3C_SVG_12_TinyTestSuite_beta/svg/script-element-203-t.svg @@ -0,0 +1,121 @@ + + + + + + + + + + + +

+ The test consists of 8 subtests, each testing requirements from the script processing section. + When the test is first loaded it shows 8 red circles. After the scripts have been executed the circles should all be green. +

+

+ The test has passed if all 8 circles are green after the script processing has taken place. +

+ + + $RCSfile: script-element-203-t.svg,v $ + + + + + + + + + Test script logic + + + + + + + + + + + + + + + + + + + + + + + + document.getElementById("c5").setAttributeNS( null, "fill", "red"); + + + + + + + + + + + + + $Revision: 1.5 $ + + + + + diff --git a/test/W3C_SVG_12_TinyTestSuite_beta/svg/script-handle-05-t.svg b/test/W3C_SVG_12_TinyTestSuite_beta/svg/script-handle-05-t.svg new file mode 100755 index 00000000..b90c406a --- /dev/null +++ b/test/W3C_SVG_12_TinyTestSuite_beta/svg/script-handle-05-t.svg @@ -0,0 +1,74 @@ + + + + + + + + + + + +

Tests basic mouse event handler and DOM manipulation through ECMA script binding.

+

The test uses ECMA Script and initially displays a target with a message asking the user to click on the target. Once the user has done so, and if both event handling and DOM manipulation are supported, then the target and initial text are hidden and a text message indicating that the test was successful is displayed.

+ + + $RCSfile: script-handle-05-t.svg,v $ + + + + + + + + + + Event and DOM Access Test + + + + + + + onMouseClick(evt); + + Click on target + + + + + + Scripting Test Passed! + + + + + + $Revision: 1.10 $ + + + + + diff --git a/test/W3C_SVG_12_TinyTestSuite_beta/svg/script-handle-06-t.svg b/test/W3C_SVG_12_TinyTestSuite_beta/svg/script-handle-06-t.svg new file mode 100755 index 00000000..1cd34c55 --- /dev/null +++ b/test/W3C_SVG_12_TinyTestSuite_beta/svg/script-handle-06-t.svg @@ -0,0 +1,100 @@ + + + + + + + + + + + +

Tests basic mouse event handlers.

+

The test shows a target that can be used to generate the various kinds of mouse and keyboard events supported in SVG. Below the target, the list of events is shown with red markers next to each.

+

If the test passes, all the markers should have turned to green after the events have been triggered on the target. If any event has not triggered, its marker will remain red.

+ + + $RCSfile: script-handle-06-t.svg,v $ + + + + + + + + + + Mouse event handlers test. + + + + + Use the target to trigger events + + + + + onEvent(evt, 'onfocusin'); + + + onEvent(evt, 'onfocusout'); + + + onEvent(evt, 'onactivate'); + + + + + + Target + + + + + + onfocusin + onfocusout + onactivate + + + + + + + + + + + + + + + + + + + $Revision: 1.9 $ + + + + + diff --git a/test/W3C_SVG_12_TinyTestSuite_beta/svg/script-handle-07-t.svg b/test/W3C_SVG_12_TinyTestSuite_beta/svg/script-handle-07-t.svg new file mode 100755 index 00000000..760b32e2 --- /dev/null +++ b/test/W3C_SVG_12_TinyTestSuite_beta/svg/script-handle-07-t.svg @@ -0,0 +1,100 @@ + + + + + + + + + + + +

Tests basic mouse event handlers.

+

The test shows a target that can be used to generate the various kinds of mouse and keyboard events supported in SVG. Below the target, the list of events is shown with red markers next to each.

+

If the test passes, all the markers should have turned to green after the events have been triggered on the target. If any event has not triggered, its marker will remain red.

+ + + $RCSfile: script-handle-07-t.svg,v $ + + + + + + + + + + Mouse event handlers test. + + + + + Target + Use the target to trigger events + + + + + onEvent(evt, 'onmousedown'); + + + onEvent(evt, 'onmouseup'); + + + onEvent(evt, 'onclick'); + + + + + + + + + + + onmousedown + onmouseup + onclick + + + + + + + + + + + + + + + + + + + $Revision: 1.9 $ + + + + + diff --git a/test/W3C_SVG_12_TinyTestSuite_beta/svg/script-handle-08-t.svg b/test/W3C_SVG_12_TinyTestSuite_beta/svg/script-handle-08-t.svg new file mode 100755 index 00000000..5863adeb --- /dev/null +++ b/test/W3C_SVG_12_TinyTestSuite_beta/svg/script-handle-08-t.svg @@ -0,0 +1,100 @@ + + + + + + + + + + + +

Tests basic mouse event handlers.

+

The test shows a target that can be used to generate the various kinds of mouse and keyboard events supported in SVG. Below the target, the list of events is shown with red markers next to each.

+

If the test passes, all the markers should have turned to green after the events have been triggered on the target. If any event has not triggered, its marker will remain red.

+ + + $RCSfile: script-handle-08-t.svg,v $ + + + + + + + + + + Mouse event handlers test. + + + + + Target + Use the target to trigger events + + + + + onEvent(evt, 'onmouseover'); + + + onEvent(evt, 'onmousemove'); + + + onEvent(evt, 'onmouseout'); + + + + + + + + + + + onmouseover + onmousemove + onmouseout + + + + + + + + + + + + + + + + + + + $Revision: 1.10 $ + + + + + diff --git a/test/W3C_SVG_12_TinyTestSuite_beta/svg/script-handle-201-t.svg b/test/W3C_SVG_12_TinyTestSuite_beta/svg/script-handle-201-t.svg new file mode 100755 index 00000000..d339930f --- /dev/null +++ b/test/W3C_SVG_12_TinyTestSuite_beta/svg/script-handle-201-t.svg @@ -0,0 +1,108 @@ + + + + + + + + + + + +

+ Test on event handling and scripting. While the mouse is over the rect, a new red rect should become visible underneath. +

+ + + $RCSfile: script-handle-201-t.svg,v $ + + + + + + + + + + + Multiple eventhandlers on one object + + + mouse-over/out events should change visibility of rectangle under the event target rectangle. + + + move mouse over the rect. + + + + + + + + + + + + + + + + + + + + + + flipVisibility(); + + + + florpVisibility(); + + + + + + $Revision: 1.7 $ + + + + + diff --git a/test/W3C_SVG_12_TinyTestSuite_beta/svg/script-handle-202-t.svg b/test/W3C_SVG_12_TinyTestSuite_beta/svg/script-handle-202-t.svg new file mode 100755 index 00000000..87192d72 --- /dev/null +++ b/test/W3C_SVG_12_TinyTestSuite_beta/svg/script-handle-202-t.svg @@ -0,0 +1,87 @@ + + + + + + + + + + + +

+ Test of script handlers for SMIL events. A red square should flash on the screen six times. +

+ + + $RCSfile: script-handle-202-t.svg,v $ + + + + + + + + + + + Test of script handlers for SMIL events. A red square should flash on the screen six times. + + + + + + + + + + + + + + + flipVisibility(evt); + + + + + + $Revision: 1.6 $ + + + + + diff --git a/test/W3C_SVG_12_TinyTestSuite_beta/svg/script-listener-201-t.svg b/test/W3C_SVG_12_TinyTestSuite_beta/svg/script-listener-201-t.svg new file mode 100755 index 00000000..94847683 --- /dev/null +++ b/test/W3C_SVG_12_TinyTestSuite_beta/svg/script-listener-201-t.svg @@ -0,0 +1,83 @@ + + + + + + + + + + + +

+ This test tests the assertion from the Namespaces in XML specification, + "The namespace prefix, unless it is xml or xmlns, MUST have been declared + in a namespace declaration attribute in either the start-tag of the element + where the prefix is used or in an ancestor element (i.e. an element in whose content the prefixed markup occurs)." + The root element doesn't declare the XML Event namespace for the prefix "ev". + +

+ The test has passed if handlers are implemented (the handler with xml:id="passhandler" has run) + but the handler with xml:id="failhandler" has not run. + If the handler is run then the text in the testcase will show "Test failed: magic prefixes!". + If handlers are not implemented at all, the testcase will show "Test failed: handlers not implemented." +

+

+ The test is also passed if the implementation states somehow that the test case is not namespace + well formed (by overlaying it on the image, informing the user in the error console, not + showing the document at all, etc.). +

+

+ + + $RCSfile: script-listener-201-t.svg,v $ + + + + + + + + + + + Test failed: handlers not implemented. + + + + + + document.getElementById("status").textContent = "Test passed"; + + + + + + + document.getElementById("status").textContent = "Test failed: magic prefixes!"; + + + + $Revision: 1.7 $ + + + + + diff --git a/test/W3C_SVG_12_TinyTestSuite_beta/svg/script-listener-202-t.svg b/test/W3C_SVG_12_TinyTestSuite_beta/svg/script-listener-202-t.svg new file mode 100755 index 00000000..06613313 --- /dev/null +++ b/test/W3C_SVG_12_TinyTestSuite_beta/svg/script-listener-202-t.svg @@ -0,0 +1,65 @@ + + + + + + + + + + + +

+ This test tests that a handler is not found when the 'handler' attribute contains + an IDREF. The test fails if a red rectangle covers the text content area or the string "Test failed" is displayed. +

+ + + $RCSfile: script-listener-202-t.svg,v $ + + + + + + + + + + + Test passed. + + + + + + + document.getElementById("status").textContent = "Test failed"; + + + + + document.getElementById("test-body-content").removeChild( document.getElementById("impl-xml-events") ); + + + + + + + $Revision: 1.5 $ + + + + + diff --git a/test/W3C_SVG_12_TinyTestSuite_beta/svg/script-listener-203-t.svg b/test/W3C_SVG_12_TinyTestSuite_beta/svg/script-listener-203-t.svg new file mode 100755 index 00000000..015d4832 --- /dev/null +++ b/test/W3C_SVG_12_TinyTestSuite_beta/svg/script-listener-203-t.svg @@ -0,0 +1,77 @@ + + + + + + + + + + + +

+ This test tests that an element with the name 'listener' is not interpreted as an svg element, + and that it's not the same as an element named 'listener' in the XML Events namespace. +

+

+ The test has passed if handlers are implemented (the handler with xml:id="passhandler" has run) + but the handler with xml:id="failhandler" has not run. + + If the handler is run then the text in the testcase will show "Test failed: 'listener' is not an svg element.". + + The pass condition is indicated by two rects that must both be green after running the test, if + either of the rects is red then the test has failed. +

+ + + $RCSfile: script-listener-203-t.svg,v $ + + + + + + + + + + + + + + + + document.getElementById("r1").setAttributeNS(null, "fill", "green"); + + + + + + + document.getElementById("status").textContent = "Test failed: 'listener' is not an svg element."; + document.getElementById("r2").setAttributeNS(null, "fill", "red"); + + + + + + + + + $Revision: 1.3 $ + + + + + \ No newline at end of file diff --git a/test/W3C_SVG_12_TinyTestSuite_beta/svg/script-listener-204-t.svg b/test/W3C_SVG_12_TinyTestSuite_beta/svg/script-listener-204-t.svg new file mode 100755 index 00000000..e7413148 --- /dev/null +++ b/test/W3C_SVG_12_TinyTestSuite_beta/svg/script-listener-204-t.svg @@ -0,0 +1,95 @@ + + + + + + + + + + + +

+ This test tests the 'propagate' and 'defaultAction' attributes on the XML Event 'listener' element. +

+

+ The test has passed if after clicking the each of the blue rects they both turn green and show the text "Passed", + and that clicking the leftmost rect doesn't traverse the link. If any of the rects are blue or red after clicking + them the test has failed. +

+ + + $RCSfile: script-listener-204-t.svg,v $ + + + + + + + + + + + + + + + + Click here + + + + + Click here + + + + + + + fail(1); + + + pass(1); + + + + + + pass(2); + + + fail(2); + + + + $Revision: 1.4 $ + + + + + \ No newline at end of file diff --git a/test/W3C_SVG_12_TinyTestSuite_beta/svg/shapes-circle-01-t.svg b/test/W3C_SVG_12_TinyTestSuite_beta/svg/shapes-circle-01-t.svg new file mode 100755 index 00000000..6e579eb1 --- /dev/null +++ b/test/W3C_SVG_12_TinyTestSuite_beta/svg/shapes-circle-01-t.svg @@ -0,0 +1,46 @@ + + + + + + + + + + + +

The rendered picture should match the reference image, except for possible variations in the labelling text (per CSS2 rules).

+ + + $RCSfile: shapes-circle-01-t.svg,v $ + + + + + + + + + Testing the <circle/> element with different fill, stroke and stroke-width attributes + + + + + + + + + $Revision: 1.10 $ + + + + + diff --git a/test/W3C_SVG_12_TinyTestSuite_beta/svg/shapes-circle-02-t.svg b/test/W3C_SVG_12_TinyTestSuite_beta/svg/shapes-circle-02-t.svg new file mode 100755 index 00000000..24e015bf --- /dev/null +++ b/test/W3C_SVG_12_TinyTestSuite_beta/svg/shapes-circle-02-t.svg @@ -0,0 +1,52 @@ + + + + + + + + + + + +

Defaults test with circle.

+ + + $RCSfile: shapes-circle-02-t.svg,v $ + + + + + + + + + Testing the default attributes on the <circle/> element + + + + + + + + + + + + + + + $Revision: 1.8 $ + + + + + diff --git a/test/W3C_SVG_12_TinyTestSuite_beta/svg/shapes-circle-03-t.svg b/test/W3C_SVG_12_TinyTestSuite_beta/svg/shapes-circle-03-t.svg new file mode 100755 index 00000000..9498fad1 --- /dev/null +++ b/test/W3C_SVG_12_TinyTestSuite_beta/svg/shapes-circle-03-t.svg @@ -0,0 +1,86 @@ + + + + + + + + + + + +

Defaults test with circle.

+ + + $RCSfile: shapes-circle-03-t.svg,v $ + + + + + + + + + Testing the correct stroking of the <circle /> element. + 3 'o clock starting point + 3 'o clock starting point + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + $Revision: 1.6 $ + + + + + diff --git a/test/W3C_SVG_12_TinyTestSuite_beta/svg/shapes-ellipse-01-t.svg b/test/W3C_SVG_12_TinyTestSuite_beta/svg/shapes-ellipse-01-t.svg new file mode 100755 index 00000000..f0455c8e --- /dev/null +++ b/test/W3C_SVG_12_TinyTestSuite_beta/svg/shapes-ellipse-01-t.svg @@ -0,0 +1,59 @@ + + + + + + + + + + + +

The rendered picture should match the reference image, except for possible variations in the labelling text (per CSS2 rules).

+ + + $RCSfile: shapes-ellipse-01-t.svg,v $ + + + + + + + + + Testing the <ellipse /> element with various stroke and fill attributes + + + + + + + + + + + + + + + + + + + + + + $Revision: 1.10 $ + + + + + diff --git a/test/W3C_SVG_12_TinyTestSuite_beta/svg/shapes-ellipse-02-t.svg b/test/W3C_SVG_12_TinyTestSuite_beta/svg/shapes-ellipse-02-t.svg new file mode 100755 index 00000000..e1c16ba2 --- /dev/null +++ b/test/W3C_SVG_12_TinyTestSuite_beta/svg/shapes-ellipse-02-t.svg @@ -0,0 +1,50 @@ + + + + + + + + + + + +

Defaults test with ellipse. Ellipses with rx or ry set to zero shouldn't be drawn. Unspecified cx and cy attributes default to zero.

+ + + $RCSfile: shapes-ellipse-02-t.svg,v $ + + + + + + + + + Testing the default and zero value attributes of the <ellipse /> element. + + + + + + + + + + + + + $Revision: 1.9 $ + + + + + diff --git a/test/W3C_SVG_12_TinyTestSuite_beta/svg/shapes-ellipse-03-t.svg b/test/W3C_SVG_12_TinyTestSuite_beta/svg/shapes-ellipse-03-t.svg new file mode 100755 index 00000000..97173a8c --- /dev/null +++ b/test/W3C_SVG_12_TinyTestSuite_beta/svg/shapes-ellipse-03-t.svg @@ -0,0 +1,82 @@ + + + + + + + + + + + +

Defaults test with circle.

+ + + $RCSfile: shapes-ellipse-03-t.svg,v $ + + + + + + + + + Testing the correct stroking of the <ellipse /> element. + 3 'o clock starting point + 3 'o clock starting point + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + $Revision: 1.6 $ + + + + + diff --git a/test/W3C_SVG_12_TinyTestSuite_beta/svg/shapes-intro-01-t.svg b/test/W3C_SVG_12_TinyTestSuite_beta/svg/shapes-intro-01-t.svg new file mode 100755 index 00000000..e584d461 --- /dev/null +++ b/test/W3C_SVG_12_TinyTestSuite_beta/svg/shapes-intro-01-t.svg @@ -0,0 +1,96 @@ + + + + + + + + + + + +

Tests the degenerate cases of the basic shapes. The shapes are positioned within the black rectangles.

+

None of the shapes should be visible (each of the ten black rectangles should be empty). The rendered picture should match the reference image, except for possible variations in the labelling text (per CSS2 rules).

+ + + $RCSfile: shapes-intro-01-t.svg,v $ + + + + + + + + + Testing the degenerate cases of the basic shapes; attribute values set to zero. + + + + + + + + + + + + + + + + + + + + + + Stroked + Unstroked + Zero width rect + Zero height rect + Zero radius circle + Zero x radius ellipse + Zero y radius ellipse + Zero length line + + + + + + + + + + + + + + + + + + + + + + + + + + + + + $Revision: 1.8 $ + + + + + diff --git a/test/W3C_SVG_12_TinyTestSuite_beta/svg/shapes-line-01-t.svg b/test/W3C_SVG_12_TinyTestSuite_beta/svg/shapes-line-01-t.svg new file mode 100755 index 00000000..e5c6525c --- /dev/null +++ b/test/W3C_SVG_12_TinyTestSuite_beta/svg/shapes-line-01-t.svg @@ -0,0 +1,68 @@ + + + + + + + + + + + +

The rendered picture should match the reference image, except for possible variations in the labelling text (per CSS2 rules).

+ + + $RCSfile: shapes-line-01-t.svg,v $ + + + + + + + + + Testing the <line/> element with different stroke and stroke-width attributes + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + $Revision: 1.9 $ + + + + + diff --git a/test/W3C_SVG_12_TinyTestSuite_beta/svg/shapes-line-02-t.svg b/test/W3C_SVG_12_TinyTestSuite_beta/svg/shapes-line-02-t.svg new file mode 100755 index 00000000..f93e7eca --- /dev/null +++ b/test/W3C_SVG_12_TinyTestSuite_beta/svg/shapes-line-02-t.svg @@ -0,0 +1,66 @@ + + + + + + + + + + + +

+ For this test to pass the following lines must be drawn: + - Green line across the top from 480,0 to 0,0 + - Red line across the left hand side from 0,0 to 0,360 + - Blue line across the bottom from 480,360 to 0,360 + - Purple line across the test from 480,85 to 0,0 + - Fuchsia line across the test from 0,0 to 480,170 + - Aqua line across the test from 0,360 to 480,170 + - Teal line across the test from 480,256 to 0,360 +

+

+ If the x1, x2, y1, or y2 attribute is not specified the effect is as if + a value of "0" were specified. +

+

+ The rendered picture should match the reference image, except for possible + variations in the labelling text (per CSS2 rules). +

+ + + $RCSfile: shapes-line-02-t.svg,v $ + + + + + + + + + Testing the default attributes of the <line/> element + + + + + + + + + + + + $Revision: 1.4 $ + + + + + diff --git a/test/W3C_SVG_12_TinyTestSuite_beta/svg/shapes-polygon-01-t.svg b/test/W3C_SVG_12_TinyTestSuite_beta/svg/shapes-polygon-01-t.svg new file mode 100755 index 00000000..e517f888 --- /dev/null +++ b/test/W3C_SVG_12_TinyTestSuite_beta/svg/shapes-polygon-01-t.svg @@ -0,0 +1,64 @@ + + + + + + + + + + + +

The rendered picture should match the reference image, except for possible variations in the labelling text (per CSS2 rules).

+ + + $RCSfile: shapes-polygon-01-t.svg,v $ + + + + + + + + + Testing the <polygon/> element with different fill, stroke and stroke-width attributes + + + + + + + + + + + + + + + + + + + + + + + + + + + $Revision: 1.9 $ + + + + + diff --git a/test/W3C_SVG_12_TinyTestSuite_beta/svg/shapes-polygon-02-t.svg b/test/W3C_SVG_12_TinyTestSuite_beta/svg/shapes-polygon-02-t.svg new file mode 100755 index 00000000..be2971eb --- /dev/null +++ b/test/W3C_SVG_12_TinyTestSuite_beta/svg/shapes-polygon-02-t.svg @@ -0,0 +1,63 @@ + + + + + + + + + + + +

+ Testing different points attribute syntaxes, empty and invalid points + attributes (e.g. odd number of coordinates). +

+

+ Only three identical polygon elements should be rendered down the + right hand side of the test. +

+

+ The rendered picture should match the reference image, except for + possible variations in the labelling text (per CSS2 rules). +

+ + + $RCSfile: shapes-polygon-02-t.svg,v $ + + + + + + + + + Test that empty and invalid points attributes don't result in rendering 'polygon' elements. + Only three similar <polygon /> elements should be rendered. + Three different syntaxes in the points attribute. + + + + + + + + + + + + + $Revision: 1.5 $ + + + + + \ No newline at end of file diff --git a/test/W3C_SVG_12_TinyTestSuite_beta/svg/shapes-polyline-01-t.svg b/test/W3C_SVG_12_TinyTestSuite_beta/svg/shapes-polyline-01-t.svg new file mode 100755 index 00000000..1ee881c7 --- /dev/null +++ b/test/W3C_SVG_12_TinyTestSuite_beta/svg/shapes-polyline-01-t.svg @@ -0,0 +1,70 @@ + + + + + + + + + + + +

The rendered picture should match the reference image, except for possible variations in the labelling text (per CSS2 rules).

+ + + $RCSfile: shapes-polyline-01-t.svg,v $ + + + + + + + + + Testing the <polyline/> element with different fill, stroke and stroke-width attributes + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + $Revision: 1.9 $ + + + + + diff --git a/test/W3C_SVG_12_TinyTestSuite_beta/svg/shapes-polyline-02-t.svg b/test/W3C_SVG_12_TinyTestSuite_beta/svg/shapes-polyline-02-t.svg new file mode 100755 index 00000000..f34388fe --- /dev/null +++ b/test/W3C_SVG_12_TinyTestSuite_beta/svg/shapes-polyline-02-t.svg @@ -0,0 +1,64 @@ + + + + + + + + + + + +

+ Testing different points attribute syntaxes, empty and invalid points + attributes (e.g. odd number of coordinates). +

+

+ Only three identical polygon elements should be rendered down the + right hand side of the test. +

+

+ The rendered picture should match the reference image, except for possible + variations in the labelling text (per CSS2 rules). +

+ + + $RCSfile: shapes-polyline-02-t.svg,v $ + + + + + + + + + Test that empty and invalid points attributes result in not rendering <polyline /> elements. + Only three similar <polyline /> elements should be rendered. + Two different syntaxes in the points attribute. + + + + + + + + + + + + + $Revision: 1.4 $ + + + + + \ No newline at end of file diff --git a/test/W3C_SVG_12_TinyTestSuite_beta/svg/shapes-rect-01-t.svg b/test/W3C_SVG_12_TinyTestSuite_beta/svg/shapes-rect-01-t.svg new file mode 100755 index 00000000..3e5deec8 --- /dev/null +++ b/test/W3C_SVG_12_TinyTestSuite_beta/svg/shapes-rect-01-t.svg @@ -0,0 +1,60 @@ + + + + + + + + + + + +

The rendered picture should match the reference image, except for possible variations in the labelling text (per CSS2 rules).

+ + + $RCSfile: shapes-rect-01-t.svg,v $ + + + + + + + + + Testing the <rect/> element with different fill, stroke and rx attributes + + + + + + + + + + + + + + + + + + + + + + + $Revision: 1.10 $ + + + + + diff --git a/test/W3C_SVG_12_TinyTestSuite_beta/svg/shapes-rect-02-t.svg b/test/W3C_SVG_12_TinyTestSuite_beta/svg/shapes-rect-02-t.svg new file mode 100755 index 00000000..ecdaeb88 --- /dev/null +++ b/test/W3C_SVG_12_TinyTestSuite_beta/svg/shapes-rect-02-t.svg @@ -0,0 +1,55 @@ + + + + + + + + + + + +

The rendered picture should match the reference image, except for possible variations in the labelling text (per CSS2 rules).

+

Testing the default attributes on the rect element. There should be four rectangles. One should be placed on the left (default x), one on the top (default y). Two rounded rectangles should appear where rx and ry are of the same value (one of the two had been omitted).

+ + + $RCSfile: shapes-rect-02-t.svg,v $ + + + + + + + + + Testing the default values of attributes of the <rect/> element + + + + + + + + + + + + + + + + + $Revision: 1.9 $ + + + + + diff --git a/test/W3C_SVG_12_TinyTestSuite_beta/svg/shapes-rect-03-t.svg b/test/W3C_SVG_12_TinyTestSuite_beta/svg/shapes-rect-03-t.svg new file mode 100755 index 00000000..470d6891 --- /dev/null +++ b/test/W3C_SVG_12_TinyTestSuite_beta/svg/shapes-rect-03-t.svg @@ -0,0 +1,64 @@ + + + + + + + + + + + +

Testing the correct stroking of the rect element. The blue lines indicate where a dash or gap should start and end. For the test to pass, it has to match the reference image.

+ + + $RCSfile: shapes-rect-03-t.svg,v $ + + + + + + + + + Testing the correct stroking of the <rect/> element + + + + + + + + + + + + + + + + + + + + + + + + + + + $Revision: 1.5 $ + + + + + diff --git a/test/W3C_SVG_12_TinyTestSuite_beta/svg/struct-class-201-t.svg b/test/W3C_SVG_12_TinyTestSuite_beta/svg/struct-class-201-t.svg new file mode 100755 index 00000000..622d50ab --- /dev/null +++ b/test/W3C_SVG_12_TinyTestSuite_beta/svg/struct-class-201-t.svg @@ -0,0 +1,92 @@ + + + + + + + + + + + +

+ Tests that the value of the 'class' attribute is included in the DOM, + including space-separated values, and values with extraneous spaces. +

+

+ The rendered picture should match the reference image, except for + possible variations in the labelling text (per CSS2 rules). The pass + condition is seeing three green circles, with text below each circle + reflecting the normalized space-separated values for the class of that + circle. The leftmost circle has the value "foo", the middle circle has + the value "bar baz", and the rightmost circle has the value + " funky spacing ", normalized to "funky spacing". If any of the + circles are red, the test has failed. +

+ + + $RCSfile: struct-class-201-t.svg,v $ + + + + + + + + + + + + + + + + + + + + + + $Revision: 1.3 $ + + + + + \ No newline at end of file diff --git a/test/W3C_SVG_12_TinyTestSuite_beta/svg/struct-common-201-t.svg b/test/W3C_SVG_12_TinyTestSuite_beta/svg/struct-common-201-t.svg new file mode 100755 index 00000000..73c2479d --- /dev/null +++ b/test/W3C_SVG_12_TinyTestSuite_beta/svg/struct-common-201-t.svg @@ -0,0 +1,110 @@ + + + + initTest(evt); + + + + + + + + + + +

+ Tests that reading of IDs and modification of id and xml:id is conformant to the SVG and xml:id specifications. The test passes if four green circles are shown. +

+

+ The first circle has an id only; the second, xml:id only. The third circle has both, with the same values; and the fourth has both, with different values. All four circles have a red fill; on loading the document, a script + gets each of the circles by its ID and then sets the fill to green. Lastly, the script attempts + to get the fourth circle by ID, using the value of the id attribute; this must fail. If the fourth + circle is dark red, the implementation is not giving priority to the value of xml:id. +

+ + + $RCSfile: struct-common-201-t.svg,v $ + + + + + + + + + + + + + + + + + id only + xml:id only + id and + xml:id, same + values + id and + xml:id, different + values + + + + + $Revision: 1.8 $ + + + + + diff --git a/test/W3C_SVG_12_TinyTestSuite_beta/svg/struct-cond-01-t.svg b/test/W3C_SVG_12_TinyTestSuite_beta/svg/struct-cond-01-t.svg new file mode 100755 index 00000000..5e473174 --- /dev/null +++ b/test/W3C_SVG_12_TinyTestSuite_beta/svg/struct-cond-01-t.svg @@ -0,0 +1,46 @@ + + + + + + + + + + + +

This test evaluates a switch statement. The result should be a green rectangle in the lower left quarter of the output window.

+

The rendered picture should match the reference image, except for possible variations in the labelling text (per CSS2 rules).

+

The test uses the 'rect' element, as well as basic fill (solid primary colors), stroke (black 1-pixel lines), font-family (Arial) and font-size properties.

+ + + $RCSfile: struct-cond-01-t.svg,v $ + + + + + + + + + + + + + + + + $Revision: 1.8 $ + + + + + diff --git a/test/W3C_SVG_12_TinyTestSuite_beta/svg/struct-cond-02-t.svg b/test/W3C_SVG_12_TinyTestSuite_beta/svg/struct-cond-02-t.svg new file mode 100755 index 00000000..afba9c9c --- /dev/null +++ b/test/W3C_SVG_12_TinyTestSuite_beta/svg/struct-cond-02-t.svg @@ -0,0 +1,336 @@ + + + + + + + + + + + +

This tests ability to use the 'systemLanguage' as a test attribute within a switch element. To pass, either

+

It is an error to display no output; the last child of switch has no test, so it will always be taken unless a more suitable child has already evaluated to true.

+

In addition, the string "Why don't they just speak <language>" should appear in the center of the graphic, translated into that language. It is not an error for some or all of this string to display as 'missing character' glyphs, if no suitable font is available - however, this is unlikely if the language is indeed the users primary language. (It can easily occur during testing, however).

+ + + $RCSfile: struct-cond-02-t.svg,v $ + + + + + + + + + + + + + + Waarom kan hulle nie net doodgewoon Afrikaans praat nie? + Afrikaans + + + ለምንድነው አማርኛ የማይናገሩት፧ + Amharic + + + + لماذا لا يتكلمون اللّغة العربية فحسب؟ + Arabic (SA) + + + Защо те просто не могат да говорят български ? + Bulgarian + + + ওরা েকন বাংলা বলেত পাের না ? + Bengali + + + + Per què no poden simplement parlar en català ? + Catalan + + + Proč prostě nemluví česky ? + Czech + + + Pam dydyn nhw ddim yn siarad Cymraeg ? + Welsh + + + Hvorfor kan de ikke bare tale dansk ? + Danish + + + + Warum sprechen sie nicht einfach Deutsch ? + German (DE) + + + Μα γιατί δεν μπορούν να μιλήσουν Ελληνικά ; + Greek (modern, GR) + + + Why can't they just speak English ? + English (US) + + + ¿Por qué no pueden simplemente hablar en castellano ? + Spanish (ES) + + + Zergatik ezin dute  Euzkeraz bakarrik hitzegin? + Basque + + + خب، چرا فارسى صحبت نمى كنند؟ + Farsi + + + Miksi he eivät yksinkertaisesti puhu suomea ? + Finnish + + + + Pourquoi, tout simplement, ne parlent-ils pas en Français ? + French (FR) + + + Carson nach eil iad a'bruidhinn na Gàidhlige ? + Scots Gaelic + + + બદ્ધા લોકો ગુજરાતી કૅમ નથી બોલતા? + Gujarti (IN) + + + + למה הם פשוט לא מדברים עברית ? + Hebrew (modern) + + + यह लोग हिन्दी क्यों नहीं बोल सकते हैं ? + Hindi + + + Zašto jednostavno ne govore hrvatski ? + Croatian + + + Miért nem beszélnek egyszerűen magyarul ? + Hungarian + + + Ինչու՞ նրանք չեն խոսում Հայերեն + Armenian + + + Mengapa mereka tidak bisa bicara bahasa Indonesia ? + Indonesian + + + Hvers vegna geta þeir ekki réttlátur tala Íslenska ? + Icelandic + + + Perchè non possono semplicemente parlare italiano ? + Italian + + + + ᓱᒻᒪᓂᒃᑯᐊ ᐃᓄᒃᑎᑐ ᑐᐃᓐᓇᔭᙱᓚᑦ + Inuktitut + + + なぜ、みんな日本語を話してくれないのか? + Japanese (JP) + + + Kenapa kok ora nganggo  basa Jawa  wae? + Javanese + + + რატომ არ ლაპარაკობენ ისინი ქართულად ? + Georgian + + + Олар неге қазақ тiлiнде сойлемейдi? + Kazakh + + + ಅವರು ಕನ್ನಡ ಮಾತನಾಡಬಹುದಲ್ಲಾ? + Kannada + + + 세계의 모든 사람들이 한국어 를 이해한다면 얼마나 좋을까? + Korean + + + Емне үчүн алар кыргызча сүйлбйт? + Kirghiz + + + Kodėl gi jie nekalba lietuviškai ? + Lithuanian + + + Зошто тие едноставно не говорат македонски ? + Macedonian + + + लोकांना मराठी का बोलता येत नाही? + Marathi + + + Waarom spreken ze niet gewoon Nederlands ? + Dutch + + + Hvorfor kan de ikke bare snakke norsk ? + Norwegian + + + ସେମାନେ ଉଡିଯା ରେ କହିନ୍କି କହିବେ ନହିଁ? + Oriya + + + Dlaczego oni nie mówią po polsku ? + Polish + + + + Porque é que eles não falam simplesmente em Português ? + Portugese (PT) + + + Porque é que eles não falam em Português (do Brasil) ? + Portugese (BR) + + + Porque é que eles não falam simplesmente em Português ? + Portugese + + + De ce ei nu vorbesc moldoveneşte ? + Romanian + + + Почему же они не говорят по-русски ? + Russian + + + ते किं संस्कृतः माम वदन्ति ? + Sanskrit + + + Zašto jednostavno ne govore srpski ? + Serbian + + + අැයි ඔවුන්ට ඉංගරිස කතා ෛනබ ? + Sinhalese + + + + Zakaj vendar ne govorijo slovensko ? + Slovenian + + + Pse nuk duan të flasin vetëm shqip ? + Albanian + + + Varför pratar dom inte bara svenska ? + Swedish + + + அவர்கள் ஏன் தமிழில் பேசக்கூடாது ? + Tamil + + + తెలుగు లో ఎందుకు మాట్లాడరు? + Telugu + + + Čaro onho ba zaboni točiki gap namezanand? + Tajik + + + ทำไมเขาถึงไม่พูด ภาษาไทย + Thai + + + Bakit hindi na lang sila magsalita ng Tagalog ? + Tagalog (Filipino) + + + Neden Türkçe konuşamıyorlar? + Turkish + + + Нишләп олар татарча сүләша алмыйлар? + Tatar + + + Чому б їм не розмовляти українською ? + Ukranian + + + ﻦﻴﻫ ﻰﺘﻠﻭﺒ ﻦﻴﻬﻨ ﻦﻭﻴﻜ ﻮﺪﺭﺃ بس ﻮﻩ ﻟﻮﮒ؟ + Urdu (IN) + + + ﻦﻴﻫ ﻰﺘﻠﻭﺒ ﻦﻴﻬﻨ ﻦﻭﻴﻜ ﻮﺪﺭﺃ بس ﻮﻩ ﻟﻮﮒ؟ + Urdu (PK) + + + + Nega ular uzbek tilinda gapirmaidilar? + Uzbek + + + Tại sao họ không thể chỉ nói tiếng Việt ? + Vietnamese + + + פֿאַרװאָס רעדט מען ניט פּשוט ייִדיש ? + Yiddish + + + 他们为什么不说中文 (中国) ? + Chinese (CN) + + + 他們爲什麽不說中文(台灣)? + Chinese (TW) + + + + You have no (matching) language preference set + なぜ、みんな日本語を話してくれないのか? + Why can't they just speak English ? + Pourquoi, tout simplement, ne parlent-ils pas en Français ? + + + + + + + $Revision: 1.8 $ + + + + + diff --git a/test/W3C_SVG_12_TinyTestSuite_beta/svg/struct-cond-03-t.svg b/test/W3C_SVG_12_TinyTestSuite_beta/svg/struct-cond-03-t.svg new file mode 100755 index 00000000..df18dcb1 --- /dev/null +++ b/test/W3C_SVG_12_TinyTestSuite_beta/svg/struct-cond-03-t.svg @@ -0,0 +1,97 @@ + + + + + + + + + + + +

+ Tests the <switch> element with requiredFeature. If a red rectangle with white text 'FAIL' is + displayed, the test fails. Otherwise, if a green rectangle is displayed in the lower part with the text '', + the test is passed. +

+

+ The red rectangle and the white text each require a non-existent feature; the test attribute will thus + evaluate to false and neither element will be rendered by a compliant implementation. +

+

+ The upper subtest is informative; it distinguishes between a purely SVG Tiny 1.2 + implementation and others which also implement more (eg SVG Full 1.1, or + some profile of SVG 1.2 greater than Tiny). The results of this subtest + does not affect the pass/fail criteria. +

+

+ Because SVG Tiny does not support for SVG Full DOM, an SVG Tiny implementation which + does not support other SVG Profiles should show a rectangle + like this. + If the application supports the DOM, meaning that it does more than just SVG Tiny, it + should show a rectangle like this. + Either result is a pass. +

+

+ The lower subtest,has another switch. The first child has a requiredFeature + set to http://www.w3.org/TR/SVG11/feature#BasicText which all SVG Tiny implementations + must support. If the application does, the lower rectangle is displayed in green + like this. Otherwise, a red rectangle + indicates that the text has failed. +

+ + + $RCSfile: struct-cond-03-t.svg,v $ + + + + + + + + + + + + This viewer does more than SVG Tiny 1.2 + + + + + This viewer + does not implement SVG Full DOM + + + + + + + SVG Basic Text feature supported + + + + Fail: Basic Text feature not supported + + + + + FAIL + + + $Revision: 1.7 $ + + + + + diff --git a/test/W3C_SVG_12_TinyTestSuite_beta/svg/struct-cond-204-t.svg b/test/W3C_SVG_12_TinyTestSuite_beta/svg/struct-cond-204-t.svg new file mode 100755 index 00000000..80a82878 --- /dev/null +++ b/test/W3C_SVG_12_TinyTestSuite_beta/svg/struct-cond-204-t.svg @@ -0,0 +1,150 @@ + + + + + + + + + + + +

Required Formats Attribute

+

+ A series of switches are used to determine which Internet Media types ('MIME types') + are supported, using the 'requiredFormats' attribute, + displaying a 'yes' or 'no' as appropriate. The test is passed if there is text in + the second row of each column, and that text is only + green (in the top table) + or blueviolet (in the bottom table); + no red text is displayed. +

+

+ The SVG Tiny 1.2 specification mandates certain formats, so these must be supported: + image/jpeg, image/png, image/svg+xml. + It is an error not to support them, therefore 'yes' is green and 'no' is red. +

+

+ This test also checks for support of Internet Media types which are + assumed to not exist and are unlikely to ever be registered: garbage/garbage. + Therefore, 'yes' is red and 'no' is green. +

+

+ Lastly, most media types are optional. For example, image/tiff may be + supported but support is not mandated by the SVG Tiny 1.2 specification. + The second table examines these optional formats. + Both 'yes' and 'no' are displayed in blueviolet. Whether the particular Internet Media type + is supported or not does not affect whether the test is passed or failed, but does provide useful + information about the optional capabilities of a particular implementation. +

+ + + $RCSfile: struct-cond-204-t.svg,v $ + + + + + + + + + + requiredFormats Attribute + + Supported Internet Media types are determined, using the 'requiredFormats' attribute + + + + + Mandatory Formats + Supported? + image/svg+xml + + Yes (required) + No (fail) + + image/png + + Yes (required) + No (fail) + + image/jpeg + + Yes (required) + No (fail) + + foo/foo + + Yes (fail) + No (expected) + + image/png image/svg+xml foo/foo + + Yes (fail) + No (expected) + + image/svg+xml image/png image/jpeg + + Yes (required) + No (fail) + + + Optional Formats + Supported? + + image/tif + + Yes + No + + image/g3fax + + Yes + No + + + video/mpeg + + Yes + No + + video/3gpp + + Yes + No + + + audio/vnd.wave;codec=1 + + Yes + No + + + audio/3gpp + + Yes + No + + + + + $Revision: 1.4 $ + + + + + diff --git a/test/W3C_SVG_12_TinyTestSuite_beta/svg/struct-cond-205-t.svg b/test/W3C_SVG_12_TinyTestSuite_beta/svg/struct-cond-205-t.svg new file mode 100755 index 00000000..b5073d3e --- /dev/null +++ b/test/W3C_SVG_12_TinyTestSuite_beta/svg/struct-cond-205-t.svg @@ -0,0 +1,249 @@ + + + + + + + + + + + +

+ Tests all the SVG Tiny 1.2 feature strings using requiredFeatures. +

+ + + $RCSfile: struct-cond-205-t.svg,v $ + + + + + + + + + + Required Features Attribute + + A series of switches are used to determine which 'requiredFeatures' are supported. + + + + Feature + Supported? + + http://www.w3.org/Graphics/SVG/feature/1.2/#SVG-static + + Yes + No + + http://www.w3.org/Graphics/SVG/feature/1.2/#SVG-static-DOM + + Yes + No + + http://www.w3.org/Graphics/SVG/feature/1.2/#SVG-animated + + Yes + No + + http://www.w3.org/Graphics/SVG/feature/1.2/#SVG-all + + Yes + No + + http://www.w3.org/Graphics/SVG/feature/1.2/#CoreAttribute + + Yes + No + + http://www.w3.org/Graphics/SVG/feature/1.2/#NavigationAttribute + + Yes + No + + garbage + + Yes + No (expected) + + http://www.w3.org/Graphics/SVG/feature/1.2/#NavigationAttribute + + Yes + No + + http://www.w3.org/Graphics/SVG/feature/1.2/#Structure + + Yes + No + + http://www.w3.org/Graphics/SVG/feature/1.2/#structure + + Yes + No (expected) + + http://www.w3.org/Graphics/SVG/feature/1.2/#ConditionalProcessing + + Yes + No + + http://www.w3.org/Graphics/SVG/feature/1.2/#ConditionalProcessingAttribute + + Yes + No + + http://www.w3.org/Graphics/SVG/feature/1.2/#Image + + Yes + No + + http://www.w3.org/Graphics/SVG/feature/1.2/#Prefetch + + Yes + No + + http://www.w3.org/Graphics/SVG/feature/1.2/#Discard + + Yes + No + + http://www.w3.org/Graphics/SVG/feature/1.2/#Shape + + Yes + No + + http://www.w3.org/Graphics/SVG/feature/1.2/#Text + + Yes + No + + http://www.w3.org/Graphics/SVG/feature/1.2/#PaintAttribute + + Yes + No + + http://www.w3.org/Graphics/SVG/feature/1.2/#OpacityAttribute + + Yes + No + + http://www.w3.org/Graphics/SVG/feature/1.2/#GraphicsAttribute + + Yes + No + + + + + + $Revision: 1.4 $ + + + + + diff --git a/test/W3C_SVG_12_TinyTestSuite_beta/svg/struct-cond-209-t.svg b/test/W3C_SVG_12_TinyTestSuite_beta/svg/struct-cond-209-t.svg new file mode 100755 index 00000000..c9cd0546 --- /dev/null +++ b/test/W3C_SVG_12_TinyTestSuite_beta/svg/struct-cond-209-t.svg @@ -0,0 +1,74 @@ + + + + + + + + + + + +

+ This test evaluates the effects of the 'display' or 'visibility' + attributes on a switch statement. The result should be a green circle + in the center of the output window. +

+

+ The rendered picture should match the reference image, except for + possible variations in the labelling text (per CSS2 rules). The pass + condition is seeing a green circle in the center of the image. If a + gray rectangle is visible, the test cannot be evaluated because the + 'display' attribute is not supported. If a blue rectangle is visible, + the test cannot be evaluated because the 'visibility' attribute is not + supported. If a red rectangle with a gray stroke is visible, the test + is failed because the switch is affected by the 'display' attribute. + If a red rectangle with a black stroke is visible, the test is failed + because the switch is affected by the 'display' attribute. +

+

+ The test uses the 'rect' and 'circle' elements, as well as basic fill + (solid primary colors), stroke (black or gray 2-pixel lines), and the + 'display' and 'visibility' attributes. +

+ + + $RCSfile: struct-cond-209-t.svg,v $ + + + + + + + + + + + + + + + + + + + + + + + + $Revision: 1.3 $ + + + + + diff --git a/test/W3C_SVG_12_TinyTestSuite_beta/svg/struct-cond-210-t.svg b/test/W3C_SVG_12_TinyTestSuite_beta/svg/struct-cond-210-t.svg new file mode 100755 index 00000000..b46683e6 --- /dev/null +++ b/test/W3C_SVG_12_TinyTestSuite_beta/svg/struct-cond-210-t.svg @@ -0,0 +1,82 @@ + + + + + + + + + + + +

+ This test evaluates the effects of the switch statement on referencing + content such as gradients or elements. The result should be a yellow + rectangle in the center of the output window, with green circles in + three of the corners of the rectangle. +

+

+ The rendered picture should match the reference image, except for + possible variations in the labelling text (per CSS2 rules). The pass + condition is seeing three circles, one solid green circle in upper + right corner of the rectangle, and a circle with a green gradient in + each of the bottom corners of the rectangle. If a red or black circle + is visible in the upper left corner of the rectangle, the test cannot + be evaluated because the 'switch' is not correctly supported. If any of + the upper-right or lower circles is not visible, or does not have the + correct fill, the test is failed. If the bottom-right circle is not + visible or does not have the gradient fill, then the 'switch' is not + correctly supported, and does not allow one conditionally hidden + resource to reference another. +

+

+ The test uses the 'rect', 'circle', 'gradient', and 'use' elements, as + well as basic fill (solid primary colors) and radial gradients. +

+ + + $RCSfile: struct-cond-210-t.svg,v $ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + $Revision: 1.3 $ + + + + + diff --git a/test/W3C_SVG_12_TinyTestSuite_beta/svg/struct-defs-01-t.svg b/test/W3C_SVG_12_TinyTestSuite_beta/svg/struct-defs-01-t.svg new file mode 100755 index 00000000..ef7781e9 --- /dev/null +++ b/test/W3C_SVG_12_TinyTestSuite_beta/svg/struct-defs-01-t.svg @@ -0,0 +1,49 @@ + + + + + + + + + + + +

Test to verify that the defs element is used as a container correctly.

+

In this test a fill is created which is solid red. The view should be a solid red rectangle centered in the viewport 100 pixels from from left,top and right,bottom. Also, in the defs sections there are rectangle defined, one to paint over the entire canvas with a green fill and the other to obscure most of the red rectangle. The green rectangles should not show in the view as defs are referenced items and are not rendered. No green should show.

+

The rendered picture should match the reference image, except for possible variations in the labelling text (per CSS2 rules).

+

The test uses the 'rect' element, as well as basic fill (solid primary colors), stroke (black 1-pixel lines), font-family (Arial) and font-size properties.

+ + + $RCSfile: struct-defs-01-t.svg,v $ + + + + + + + + + + + + + + + + + + $Revision: 1.8 $ + + + + + diff --git a/test/W3C_SVG_12_TinyTestSuite_beta/svg/struct-defs-201-t.svg b/test/W3C_SVG_12_TinyTestSuite_beta/svg/struct-defs-201-t.svg new file mode 100755 index 00000000..1a4293ee --- /dev/null +++ b/test/W3C_SVG_12_TinyTestSuite_beta/svg/struct-defs-201-t.svg @@ -0,0 +1,104 @@ + + + + + + + + + + + +

+ Tests that the value of the display property on the defs element or on its descendants + doesn't prevent the elements from being referenced. +

+

+ The test has passed if the following conditions are met: +

+
    +
  1. there are 8 big rects visible each of a different color.
  2. +
  3. on top of the 8 big rects there are 8 circles that contain the reference color, the color of each circle must match the color of the rect to the right of its center
  4. +
  5. from the top-left to the top-right corner the colors must be: green, lime, yellow, olive.
  6. +
  7. from the bottom-left to the bottom-right corner the colors must be: navy, teal, blue, fuchsia.
  8. +
+ + + $RCSfile: struct-defs-201-t.svg,v $ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + $Revision: 1.4 $ + + + + + \ No newline at end of file diff --git a/test/W3C_SVG_12_TinyTestSuite_beta/svg/struct-discard-201-t.svg b/test/W3C_SVG_12_TinyTestSuite_beta/svg/struct-discard-201-t.svg new file mode 100755 index 00000000..9581608a --- /dev/null +++ b/test/W3C_SVG_12_TinyTestSuite_beta/svg/struct-discard-201-t.svg @@ -0,0 +1,97 @@ + + + + + + + + + + + +

Discard Element

+

The blue bars are animated then 'discarded' as indicated by comments.

+ + + $RCSfile: struct-discard-201-t.svg,v $ + + + + + + + + + Progressive rendering example + + Discard Element + + The blue bars are animated then 'discarded' as indicated by comments. + + + + + 0s + 1s + 2s + 3s + 4s + 5s + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + Starts at 0s, Discards at 5s + Starts at 2s, Discards at 4s + Starts at 0s, Discards at 4s + Starts at 0s, No discard. + Starts at 5s. + + + + + $Revision: 1.5 $ + + + + + diff --git a/test/W3C_SVG_12_TinyTestSuite_beta/svg/struct-discard-204-t.svg b/test/W3C_SVG_12_TinyTestSuite_beta/svg/struct-discard-204-t.svg new file mode 100755 index 00000000..cb01610b --- /dev/null +++ b/test/W3C_SVG_12_TinyTestSuite_beta/svg/struct-discard-204-t.svg @@ -0,0 +1,71 @@ + + + + + + + + + + + +

+ This test tests that trying to animate xlink:href on the discard element will not + apply. +

+

+ The test has passed if after 3 seconds there are 4 green circles visible, and + no red. +

+ + + $RCSfile: struct-discard-204-t.svg,v $ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + $Revision: 1.6 $ + + + + + \ No newline at end of file diff --git a/test/W3C_SVG_12_TinyTestSuite_beta/svg/struct-discard-205-t.svg b/test/W3C_SVG_12_TinyTestSuite_beta/svg/struct-discard-205-t.svg new file mode 100755 index 00000000..aed33a11 --- /dev/null +++ b/test/W3C_SVG_12_TinyTestSuite_beta/svg/struct-discard-205-t.svg @@ -0,0 +1,72 @@ + + + + + + + + + + + +

+ This test tests that discard elements themselves are discarded after being activated. +

+

+ The test has passed if after 3 seconds there are three green circles visible, and no red. +

+ + + $RCSfile: struct-discard-205-t.svg,v $ + + + + + + + + + + + + + + + + + + + + + + + + + var d1 = document.getElementById("discard1"); + var d2 = document.getElementById("discard2"); + var d3 = document.getElementById("discard3"); + + if(d1 || d2 || d3) + document.getElementById("c3").setAttribute("fill", "red"); + + + + + $Revision: 1.4 $ + + + + + \ No newline at end of file diff --git a/test/W3C_SVG_12_TinyTestSuite_beta/svg/struct-discard-206-t.svg b/test/W3C_SVG_12_TinyTestSuite_beta/svg/struct-discard-206-t.svg new file mode 100755 index 00000000..54bddd1a --- /dev/null +++ b/test/W3C_SVG_12_TinyTestSuite_beta/svg/struct-discard-206-t.svg @@ -0,0 +1,65 @@ + + + + + + + + + + + +

+ Tests that discard elements can be discarded before activation. +

+

+ The test has passed if after 3 seconds there is there are 4 green rects visible, + and nothing red. +

+ + + $RCSfile: struct-discard-206-t.svg,v $ + + + + + + + + + + + + + + + + + + + + + + + + + + + $Revision: 1.5 $ + + + + + \ No newline at end of file diff --git a/test/W3C_SVG_12_TinyTestSuite_beta/svg/struct-discard-207-t.svg b/test/W3C_SVG_12_TinyTestSuite_beta/svg/struct-discard-207-t.svg new file mode 100755 index 00000000..7d257218 --- /dev/null +++ b/test/W3C_SVG_12_TinyTestSuite_beta/svg/struct-discard-207-t.svg @@ -0,0 +1,85 @@ + + + + + + + + + + + +

+ This test tests that discard acts the same as removeChild. + First two red rects and a blue circle should be seen. The blue circle has + its radius animated to 0 over the course of 3 seconds. At the point where + the blue circle disappears the two red rects should be removed from the + tree. This reveals two green circles. +

+

+ The test has passed if in the interval 0-3 seconds there are two red rects and a blue circle, and after 3 seconds two green circles can be seen and the text at the bottom says "Test passed". +

+ + + $RCSfile: struct-discard-207-t.svg,v $ + + + + + + + + + + + + + + + + + + + + + + + var r2 = document.getElementById("r2"); + var parenta = r2.parentNode; + parenta.removeChild(r2); + + + + + + + + + + Test running... + + + $Revision: 1.5 $ + + + + + diff --git a/test/W3C_SVG_12_TinyTestSuite_beta/svg/struct-frag-02-t.svg b/test/W3C_SVG_12_TinyTestSuite_beta/svg/struct-frag-02-t.svg new file mode 100755 index 00000000..a5ebc4f9 --- /dev/null +++ b/test/W3C_SVG_12_TinyTestSuite_beta/svg/struct-frag-02-t.svg @@ -0,0 +1,45 @@ + + + + + + + + + + + +

This test validates the use of the preserveAspectRatio attribute on the root svg element in an SVG Tiny document. In this document, preserveAspectRatio is set to none and the width and height of the document set to 100%.

+

The document's viewBox is defined to be 100 by 100 with an origin in (100, 100). The content is made of 2 red squares and 2 orange circles.

+

Because preserveAspectRatio is set to 'none', the content should appear distorted: squares show as rectangles and circles show as ellipses.

+ + + $RCSfile: struct-frag-02-t.svg,v $ + + + + + + + + + + + + + + + $Revision: 1.6 $ + + + + + diff --git a/test/W3C_SVG_12_TinyTestSuite_beta/svg/struct-frag-03-t.svg b/test/W3C_SVG_12_TinyTestSuite_beta/svg/struct-frag-03-t.svg new file mode 100755 index 00000000..862a5997 --- /dev/null +++ b/test/W3C_SVG_12_TinyTestSuite_beta/svg/struct-frag-03-t.svg @@ -0,0 +1,45 @@ + + + + + + + + + + + +

This test validates the use of the preserveAspectRatio attribute on the root svg element in an SVG Tiny document. In this document, preserveAspectRatio is set to 'xMidYMid meet' and the width and height of the document set to 100%.

+

The document's viewBox is defined to be 100 by 100 with an origin in (100, 100). The content is made of 2 red squares and 2 orange circles.

+

Because preserveAspectRatio is set to 'xMidYMid meet', the content should appear centered within the viewport: squares show as squares (and not rectangles) and circles show as circles (and not ellipses).

+ + + $RCSfile: struct-frag-03-t.svg,v $ + + + + + + + + + + + + + + + $Revision: 1.6 $ + + + + + diff --git a/test/W3C_SVG_12_TinyTestSuite_beta/svg/struct-frag-04-t.svg b/test/W3C_SVG_12_TinyTestSuite_beta/svg/struct-frag-04-t.svg new file mode 100755 index 00000000..5c6c7e6c --- /dev/null +++ b/test/W3C_SVG_12_TinyTestSuite_beta/svg/struct-frag-04-t.svg @@ -0,0 +1,45 @@ + + + + + + + + + + + +

This test validates the operation of the svg element when there is no viewbox.

+

The document's size is 480 by 360 with an x/y origin in (1000, 1000). Because x/y are ignored on the root svg element, the x/y origin should have no effect on the drawing.

+

The document contains squares and circles between the (100,100) and (200, 200) coordinates. Changing the viewport size should have no effect on the placement or scale of the document's conten.

+ + + $RCSfile: struct-frag-04-t.svg,v $ + + + + + + + + + + + + + + + $Revision: 1.6 $ + + + + + diff --git a/test/W3C_SVG_12_TinyTestSuite_beta/svg/struct-frag-05-t.svg b/test/W3C_SVG_12_TinyTestSuite_beta/svg/struct-frag-05-t.svg new file mode 100755 index 00000000..c7847ebd --- /dev/null +++ b/test/W3C_SVG_12_TinyTestSuite_beta/svg/struct-frag-05-t.svg @@ -0,0 +1,53 @@ + + + + + + + + + + + +

This tests that XML Namespaces are correctly implemented, in that the tuple of local name and namespace URI, rather than the prefix, is important. The first subtest is a group where the namespace prefix 's' is bound to the SVG namespace and an 's:circle' is drawn in pale yellow. The same group declares the default namespace to be a non-SVG namespace; the blue circle element in that namespace must not be drawn.

+

The second subtest puts the namespace declarations on the elements themselves. The prefix 'toto' is bound to the SVG namespace and the XLink namespace is made the default namespace. Thus, the blue '<toto:a href="uri">Valid</toto:a>' is a valid link and must be traversable. Select this link, then go back to the test.

+

The third subtest has no prefix on the element name 'a' and uses the usual 'xlink:' prefix on the 'href' attribute. However, both the default namespace and the namespace bound to the 'xlink' prefix are dummy namespaces. Not only should the link not be traversable, it must not even display at all. If the text 'Invalid' is displayed, the test fails.

+ + + $RCSfile: struct-frag-05-t.svg,v $ + + + + + + + + + + + + + + + Valid + + + Invalid + + + + + $Revision: 1.7 $ + + + + + diff --git a/test/W3C_SVG_12_TinyTestSuite_beta/svg/struct-frag-06-t.svg b/test/W3C_SVG_12_TinyTestSuite_beta/svg/struct-frag-06-t.svg new file mode 100755 index 00000000..4dfc3c88 --- /dev/null +++ b/test/W3C_SVG_12_TinyTestSuite_beta/svg/struct-frag-06-t.svg @@ -0,0 +1,56 @@ + + + + + + + + + + + +

This test adds testing of some basic XML features SVG User Agents should support.

+

First, the test checks support for the default entities amp, lt, gt, apos and quot. This is what the first line shows in gray.

+

Second, the test checks support for hexadecimal and decimal character entities, as shown in the second line, again in gray

+

Finally, the last line shows usage of an entity defined in the document's internal DTD subset. The same geometry (a path) is reused twice, once filled in gray and ones stroked in gray.

+ + + $RCSfile: struct-frag-06-t.svg,v $ + + + + + + + + + Default entities: amp, lt, gt, apos, quot: + &, <, >, ', " + Character references: + A hexadecimal (&#x41)= A + A decimal (&#65)= A + Entity references: + gray + + + + outlined + + + + + + $Revision: 1.6 $ + + + + + diff --git a/test/W3C_SVG_12_TinyTestSuite_beta/svg/struct-group-01-t.svg b/test/W3C_SVG_12_TinyTestSuite_beta/svg/struct-group-01-t.svg new file mode 100755 index 00000000..cfb32050 --- /dev/null +++ b/test/W3C_SVG_12_TinyTestSuite_beta/svg/struct-group-01-t.svg @@ -0,0 +1,55 @@ + + + + + + + + + + + +

The test checks to see that graphics elements (g) can be nested and that the like attributes can be passed to the children. All the g elements for this test are in the g element whose xml:id=allGs. The two red rectangles and the yellow are in the g labeled rects. The reds inherit a fill color the green rect has a fill specified and it should not be overwritten. The two yellow rectangles should inherit the fill color and the transform attribute, they should be yellow and rotated at -20 degrees. These two rectangles are in g "yellowNrotate", that g is nested inside g "gratuitiousG". The black rectangle in the upper right, has no attributes inherited from its parent. The focus is nesting of g elements and passing on of attributes.

+

The rendered picture should match the reference image, except for possible variations in the labelling text (per CSS2 rules).

+

The test uses the 'rect' element, as well as basic fill (solid primary colors), stroke (black 1-pixel lines), font-family (Arial) and font-size properties.

+ + + $RCSfile: struct-group-01-t.svg,v $ + + + + + + + + + + + + + + + + + + + + + + + + + $Revision: 1.9 $ + + + + + diff --git a/test/W3C_SVG_12_TinyTestSuite_beta/svg/struct-group-03-t.svg b/test/W3C_SVG_12_TinyTestSuite_beta/svg/struct-group-03-t.svg new file mode 100755 index 00000000..b22d3aa6 --- /dev/null +++ b/test/W3C_SVG_12_TinyTestSuite_beta/svg/struct-group-03-t.svg @@ -0,0 +1,226 @@ + + + + + + + + + + + +

This test validates that properties are inherited (or not, depending on their defintion), from a group to its children.

+

The two rows displayed in this test should be identical. In the top row, each property is set to the value 'inherit'. In the bottom row, which is the reference, each property is set to the value that should be inherited in the top row.

+ + + $RCSfile: struct-group-03-t.svg,v $ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + color + display + fill + fill-rule + stroke + stroke-dasharray + stroke-dashoffset + stroke-linecap + stroke-linejoin + stroke-miterlimit + stroke-width + visibility + font-family + font-size + font-style + font-weight + text-anchor + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + A + + + A + + + A + + + A + + + A + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + A + + + A + + + A + + + A + + + A + + + + + $Revision: 1.6 $ + + + + + diff --git a/test/W3C_SVG_12_TinyTestSuite_beta/svg/struct-image-01-t.svg b/test/W3C_SVG_12_TinyTestSuite_beta/svg/struct-image-01-t.svg new file mode 100755 index 00000000..8495435b --- /dev/null +++ b/test/W3C_SVG_12_TinyTestSuite_beta/svg/struct-image-01-t.svg @@ -0,0 +1,42 @@ + + + + + + + + + + + +

The image test case checks to see if the basic image formats allowed in the tiny profile are supported. The upper right has an JPG image the lower right has a PNG image. They are the same image. Those positions are relative to the upper left of the entire canvas. If any of the components are missing, then an image format is not being properly supported.

+

The rendered picture should match the reference image, except for possible variations in the labelling text (per CSS2 rules).

+ + + $RCSfile: struct-image-01-t.svg,v $ + + + + + + + + + + + + + $Revision: 1.9 $ + + + + + diff --git a/test/W3C_SVG_12_TinyTestSuite_beta/svg/struct-image-03-t.svg b/test/W3C_SVG_12_TinyTestSuite_beta/svg/struct-image-03-t.svg new file mode 100755 index 00000000..e3a240c4 --- /dev/null +++ b/test/W3C_SVG_12_TinyTestSuite_beta/svg/struct-image-03-t.svg @@ -0,0 +1,46 @@ + + + + + + + + + + + +

This test verifies the support for gamma correction of displayed PNG images. Several different images are displayed one above the other; if gamma correction is correctly performed based on the values in the gAMA chunk in the PNG file, the resulting displayed values are the same in all of the files (except for rounding error, which gives some artefacts at the right side of the lowest two images due to the very high levels of gamma correction needed for this test).

+ + + $RCSfile: struct-image-03-t.svg,v $ + + + + + + + + + + + + + + + Gamma correction + + + $Revision: 1.9 $ + + + + + diff --git a/test/W3C_SVG_12_TinyTestSuite_beta/svg/struct-image-04-t.svg b/test/W3C_SVG_12_TinyTestSuite_beta/svg/struct-image-04-t.svg new file mode 100755 index 00000000..a8227631 --- /dev/null +++ b/test/W3C_SVG_12_TinyTestSuite_beta/svg/struct-image-04-t.svg @@ -0,0 +1,42 @@ + + + + + + + + + + + +

The image test case checks to see if the basic image formats allowed in the tiny profile are supported using the data: URI schema and base64 encoding.. The upper right has an JPG image the lower right has a PNG image. They are the same image. Those positions are relative to the upper left of the entire canvas. If any of the components are missing, then an image format is not being properly supported.

+

The rendered picture should match the reference image, except for possible variations in the labelling text (per CSS2 rules).

+ + + $RCSfile: struct-image-04-t.svg,v $ + + + + + + + + + + + + + $Revision: 1.9 $ + + + + + diff --git a/test/W3C_SVG_12_TinyTestSuite_beta/svg/struct-image-06-t.svg b/test/W3C_SVG_12_TinyTestSuite_beta/svg/struct-image-06-t.svg new file mode 100755 index 00000000..3278ec31 --- /dev/null +++ b/test/W3C_SVG_12_TinyTestSuite_beta/svg/struct-image-06-t.svg @@ -0,0 +1,78 @@ + + + + + + + + + + + +

Check that all the preserveAspectRatio values are supported for the <image> element. In particular, check that values which are not supported on the svg element's preserveAspectRatio are supported for <image>.

+ + + $RCSfile: struct-image-06-t.svg,v $ + + + + + + + + + + Example PreserveAspectRatio - demonstrate available options + SVG to fit + + + + Viewport 1 + + + + Viewport 2 + + + + + ---------- meet ---------- + + xMid* + + + + + + ---------- meet ---------- + + *YMid + + + + + + ---------- meet ---------- + + *none + + + + + + + + $Revision: 1.6 $ + + + + + diff --git a/test/W3C_SVG_12_TinyTestSuite_beta/svg/struct-image-07-t.svg b/test/W3C_SVG_12_TinyTestSuite_beta/svg/struct-image-07-t.svg new file mode 100755 index 00000000..8a542de5 --- /dev/null +++ b/test/W3C_SVG_12_TinyTestSuite_beta/svg/struct-image-07-t.svg @@ -0,0 +1,59 @@ + + + + + + + + + + + +

This test validates that xml:base is properly handled on the <image> element. It shows the same image three times, with different xml:base and xlink:href values.

+ + + $RCSfile: struct-image-07-t.svg,v $ + + + + + + + + + + + + no + xml:base + + + + + xml:base + on image + + + + + xml:base + on parent + + + + + + $Revision: 1.6 $ + + + + + diff --git a/test/W3C_SVG_12_TinyTestSuite_beta/svg/struct-image-08-t.svg b/test/W3C_SVG_12_TinyTestSuite_beta/svg/struct-image-08-t.svg new file mode 100755 index 00000000..d6938b34 --- /dev/null +++ b/test/W3C_SVG_12_TinyTestSuite_beta/svg/struct-image-08-t.svg @@ -0,0 +1,45 @@ + + + + + + + + + + + +

Tests PNG images with alpha. The result should be identical to the reference image.

+ + + $RCSfile: struct-image-08-t.svg,v $ + + + + + + + + + + + + + + + + + $Revision: 1.6 $ + + + + + diff --git a/test/W3C_SVG_12_TinyTestSuite_beta/svg/struct-image-09-t.svg b/test/W3C_SVG_12_TinyTestSuite_beta/svg/struct-image-09-t.svg new file mode 100755 index 00000000..7ca4bb36 --- /dev/null +++ b/test/W3C_SVG_12_TinyTestSuite_beta/svg/struct-image-09-t.svg @@ -0,0 +1,44 @@ + + + + + + + + + + + +

Tests PNG images with pallete ransparency (tRNS chunk). The result should be identical to the reference image.

+ + + $RCSfile: struct-image-09-t.svg,v $ + + + + + + + + + + + + + + + + $Revision: 1.6 $ + + + + + diff --git a/test/W3C_SVG_12_TinyTestSuite_beta/svg/struct-image-10-t.svg b/test/W3C_SVG_12_TinyTestSuite_beta/svg/struct-image-10-t.svg new file mode 100755 index 00000000..1486a267 --- /dev/null +++ b/test/W3C_SVG_12_TinyTestSuite_beta/svg/struct-image-10-t.svg @@ -0,0 +1,45 @@ + + + + + + + + + + + +

Tests PNG greyscale images with alpha. The result should be identical to the reference image.

+ + + $RCSfile: struct-image-10-t.svg,v $ + + + + + + + + + + + + + + + + + $Revision: 1.6 $ + + + + + diff --git a/test/W3C_SVG_12_TinyTestSuite_beta/svg/struct-progressive-201-t.svg b/test/W3C_SVG_12_TinyTestSuite_beta/svg/struct-progressive-201-t.svg new file mode 100755 index 00000000..3587855c --- /dev/null +++ b/test/W3C_SVG_12_TinyTestSuite_beta/svg/struct-progressive-201-t.svg @@ -0,0 +1,1886 @@ + + + + + + + + + + + +

+ Tests progressive rendering. Progressive rendering is an optional feature. +

+

+ On user agents which support progressive rendering, the test is passed + if the circles render progressively. The update frequency is + implementation dependant. +

+

+ On user agents which do not support progressive rendering, the test is passed + if all the circles are all displayed in a single render. +

+ + + $RCSfile: struct-progressive-201-t.svg,v $ + + + + + + + + + + Testing progressive rendering, if supported + The rectangle should be full of circles, + rendered progressively. + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + $Revision: 1.6 $ + + + + + \ No newline at end of file diff --git a/test/W3C_SVG_12_TinyTestSuite_beta/svg/struct-progressive-202-t.svg b/test/W3C_SVG_12_TinyTestSuite_beta/svg/struct-progressive-202-t.svg new file mode 100755 index 00000000..06efcc8c --- /dev/null +++ b/test/W3C_SVG_12_TinyTestSuite_beta/svg/struct-progressive-202-t.svg @@ -0,0 +1,1886 @@ + + + + + + + + + + + +

+ Tests progressive rendering. On user agents which support progressive rendering, + the rectangle should be full of circles, rendered all at once because of forward use with externalResourcesRequired. + The update frequency is implementation dependant. +

+ + + $RCSfile: struct-progressive-202-t.svg,v $ + + + + + + + + + + Testing progressive rendering, if supported + The rectangle should be full of circles, + rendered all at once because of forward use with externalResourcesRequired + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + $Revision: 1.4 $ + + + + + \ No newline at end of file diff --git a/test/W3C_SVG_12_TinyTestSuite_beta/svg/struct-progressive-203-t.svg b/test/W3C_SVG_12_TinyTestSuite_beta/svg/struct-progressive-203-t.svg new file mode 100755 index 00000000..102f3899 --- /dev/null +++ b/test/W3C_SVG_12_TinyTestSuite_beta/svg/struct-progressive-203-t.svg @@ -0,0 +1,1397 @@ + + + + + + + + + + + +

+ Tests progressive rendering. On user agents which support progressive rendering, + the rectangle should be full of circles, rendered progressively. + Images should appear as the circles pass the yellow dots. + The update frequency is implementation dependant. +

+ + + $RCSfile: struct-progressive-203-t.svg,v $ + + + + + + + + + + Testing progressive rendering with external references, if supported. + Rectangle should progressively fill up with circles. + Images should appear as the circles pass the yellow dots. + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + $Revision: 1.4 $ + + + + + \ No newline at end of file diff --git a/test/W3C_SVG_12_TinyTestSuite_beta/svg/struct-progressive-204-t.svg b/test/W3C_SVG_12_TinyTestSuite_beta/svg/struct-progressive-204-t.svg new file mode 100755 index 00000000..2bbe579b --- /dev/null +++ b/test/W3C_SVG_12_TinyTestSuite_beta/svg/struct-progressive-204-t.svg @@ -0,0 +1,1397 @@ + + + + + + + + + + + +

+ Tests progressive rendering. On user agents which support progressive rendering, + the content should be rendered all at once due to forward use of externalResourcesRequired on top-level SVG. + The update frequency is implementation dependant. +

+ + + $RCSfile: struct-progressive-204-t.svg,v $ + + + + + + + + + + Testing progressive rendering with external references, if supported. + Rendered all at once because of forward use with externalResourcesRequired on top-level SVG + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + $Revision: 1.4 $ + + + + + + \ No newline at end of file diff --git a/test/W3C_SVG_12_TinyTestSuite_beta/svg/struct-svg-201-t.svg b/test/W3C_SVG_12_TinyTestSuite_beta/svg/struct-svg-201-t.svg new file mode 100755 index 00000000..5779d9f4 --- /dev/null +++ b/test/W3C_SVG_12_TinyTestSuite_beta/svg/struct-svg-201-t.svg @@ -0,0 +1,87 @@ + + + + + + + + + + + +

+ The svg should look the same on both sides and the text + should read "OK". +

+ + + $RCSfile: struct-svg-201-t.svg,v $ + + + + + + + + + + + + + + + Get-FloatTrait(snapshotTime) on svg and check value + reference + scripted + + Error! + + + + l8 4 bed + + + + l8 4 bed + + + + + + + + + + + + + $Revision: 1.4 $ + + + + + diff --git a/test/W3C_SVG_12_TinyTestSuite_beta/svg/struct-svg-202-t.svg b/test/W3C_SVG_12_TinyTestSuite_beta/svg/struct-svg-202-t.svg new file mode 100755 index 00000000..27b12d33 --- /dev/null +++ b/test/W3C_SVG_12_TinyTestSuite_beta/svg/struct-svg-202-t.svg @@ -0,0 +1,86 @@ + + + + + + + + + + + +

+ The svg shold look the same on both sides and the text + should read "OK". +

+ + + $RCSfile: struct-svg-202-t.svg,v $ + + + + + + + + + + + + + + GetFloatTrait(snapshotTime) on svg where snapshotTime is default + reference + scripted + + Error! + + + + l8 4 bed + + + + l8 4 bed + + + + + + + + + + + + + + $Revision: 1.4 $ + + + + + diff --git a/test/W3C_SVG_12_TinyTestSuite_beta/svg/struct-svg-203-t.svg b/test/W3C_SVG_12_TinyTestSuite_beta/svg/struct-svg-203-t.svg new file mode 100755 index 00000000..4dcef9c0 --- /dev/null +++ b/test/W3C_SVG_12_TinyTestSuite_beta/svg/struct-svg-203-t.svg @@ -0,0 +1,68 @@ + + + + + + + + + + + +

+ This test tests that any <svg> elements that are encountered inside + an <svg> element are ignored, if the user agent supports SVG Tiny 1.2 only. +

+

+ If the user agent can handle SVG 1.1 Basic or Full, then the test has passed + if only the string "This text should be visible if the viewer supports at least SVG 1.1 Basic." + is visible. +

+

+ If the user agent supports only SVG 1.2 Tiny then the test has passed if + the svg element and it's contents have been ignored. Only the string + "This text should be visible if the viewer supports only SVG 1.2 Tiny." should + be visible. +

+

+ If both strings are visible then the test has failed. +

+ + + $RCSfile: struct-svg-203-t.svg,v $ + + + + + + + + + + This text should be visible if the viewer supports only SVG 1.2 Tiny. + + + + This text should be visible if the viewer supports at least SVG 1.1 Basic. + + + + + $Revision: 1.5 $ + + + + + \ No newline at end of file diff --git a/test/W3C_SVG_12_TinyTestSuite_beta/svg/struct-svg-204-t.svg b/test/W3C_SVG_12_TinyTestSuite_beta/svg/struct-svg-204-t.svg new file mode 100755 index 00000000..263d5c70 --- /dev/null +++ b/test/W3C_SVG_12_TinyTestSuite_beta/svg/struct-svg-204-t.svg @@ -0,0 +1,49 @@ + + + + + + + + + + + +

+ This test is passed if nothing is rendered as the SVG root element + contains negative values for the width and height. +

+ + + $RCSfile: struct-svg-204-t.svg,v $ + + + + + + + + + + Failed + + + + $Revision: 1.4 $ + + + + + \ No newline at end of file diff --git a/test/W3C_SVG_12_TinyTestSuite_beta/svg/struct-use-01-t.svg b/test/W3C_SVG_12_TinyTestSuite_beta/svg/struct-use-01-t.svg new file mode 100755 index 00000000..b8f456c3 --- /dev/null +++ b/test/W3C_SVG_12_TinyTestSuite_beta/svg/struct-use-01-t.svg @@ -0,0 +1,88 @@ + + + + + + + + + + + +

The purpose of this test is to validate proper handling of the use element. In particular, the test checks the proper inheritance of properties through the shadow tree (rather than through the document tree).

+

The test should display various elements in different shades of green. If an element is not displayed in green, but in red fill and/or yellow stroke, then it is in error.

+ + + $RCSfile: struct-use-01-t.svg,v $ + + + + + + + + + + + + + + + + + + + + + + + + Text + + + + + <rect> + <circle> + <ellipse> + <line> + <polyline> + <polygon> + <path> + <image> + <text> + + + <g> + <use> + + + + + + + + + + + + + + + + + + $Revision: 1.6 $ + + + + + diff --git a/test/W3C_SVG_12_TinyTestSuite_beta/svg/struct-use-03-t.svg b/test/W3C_SVG_12_TinyTestSuite_beta/svg/struct-use-03-t.svg new file mode 100755 index 00000000..a400f189 --- /dev/null +++ b/test/W3C_SVG_12_TinyTestSuite_beta/svg/struct-use-03-t.svg @@ -0,0 +1,53 @@ + + + + + + + + + + + +

The purpose of this test is to validate proper handling of the x/y attributes on the use element.

+

The test shows a <use> element displayed on the right. On the left, a group built as described in section 5.6 of the SVG 1.1 specification validates that the <use element is properly processed.

+ + + $RCSfile: struct-use-03-t.svg,v $ + + + + + + + + + + + + Reference + <use> + + + + + + + + + + + $Revision: 1.6 $ + + + + + diff --git a/test/W3C_SVG_12_TinyTestSuite_beta/svg/struct-use-09-t.svg b/test/W3C_SVG_12_TinyTestSuite_beta/svg/struct-use-09-t.svg new file mode 100755 index 00000000..c68e38d8 --- /dev/null +++ b/test/W3C_SVG_12_TinyTestSuite_beta/svg/struct-use-09-t.svg @@ -0,0 +1,81 @@ + + + + + + + + + + + +

+ This tests a set of 'use' and 'rect' elements inside 'g' elements, with + each referencing the one before. For the test to pass, 5 nested + rectangles with a green stroke must be rendered, and no red rectangles + must be rendered. +

+ + + $RCSfile: struct-use-09-t.svg,v $ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + $Revision: 1.5 $ + + + + + \ No newline at end of file diff --git a/test/W3C_SVG_12_TinyTestSuite_beta/svg/struct-use-201-t.svg b/test/W3C_SVG_12_TinyTestSuite_beta/svg/struct-use-201-t.svg new file mode 100755 index 00000000..5c0fb64d --- /dev/null +++ b/test/W3C_SVG_12_TinyTestSuite_beta/svg/struct-use-201-t.svg @@ -0,0 +1,94 @@ + + + + + + + + + + + +

+ This test tests reference restrictions on the use element. Each of the 5 different + restrictions is tested. +

+

+ A compliant SVG Tiny 1.2 user agent must treat each of the invalid IRI:s as if the xlink:href + attribute hadn't been specified, which is the same as disabling rendering of the use element + in question. Thus for the test to pass none of the content that the use elements try to reference + must be visible, the end result should be 5 empty (white) rects. +

+

+ For a user agent that handles at least SVG 1.1 Basic the testcase has still passed if the referenced + content in the rect that is labelled "B" is visible since this is allowed for 1.1. +

+ + + $RCSfile: struct-use-201-t.svg,v $ + + + + + + + + + Test <use> reference restrictions + + + + + + + A + + + + + + + B + + + + + + + C + + + + + + + D + + + + + + + E + + + + $Revision: 1.5 $ + + + + + \ No newline at end of file diff --git a/test/W3C_SVG_12_TinyTestSuite_beta/svg/struct-use-202-t.svg b/test/W3C_SVG_12_TinyTestSuite_beta/svg/struct-use-202-t.svg new file mode 100755 index 00000000..8333f771 --- /dev/null +++ b/test/W3C_SVG_12_TinyTestSuite_beta/svg/struct-use-202-t.svg @@ -0,0 +1,66 @@ + + + + + + + + + + + +

+ This test tests the reference restriction B on the use element. +

+

+ A compliant SVG Tiny 1.2 user agent must treat each of the invalid IRI:s as if the xlink:href + attribute hadn't been specified, which is the same as disabling rendering of the use element + in question. Thus for the test to pass the content that the use element tries to reference + must be invisible, the end result should be an empty (white) rect. +

+

+ For a user agent that handles at least SVG 1.1 Basic the testcase has still passed if the referenced + content in the rect that is labelled "B" is visible since this is allowed for 1.1. + If the script in the external resource is executed then the color of the rect will be green. + If not then the rect will be red. +

+ + + $RCSfile: struct-use-202-t.svg,v $ + + + + + + + + + Test <use> reference restriction B + + + + + + + B + + + + $Revision: 1.4 $ + + + + + \ No newline at end of file diff --git a/test/W3C_SVG_12_TinyTestSuite_beta/svg/struct-use-203-t.svg b/test/W3C_SVG_12_TinyTestSuite_beta/svg/struct-use-203-t.svg new file mode 100755 index 00000000..3efca16d --- /dev/null +++ b/test/W3C_SVG_12_TinyTestSuite_beta/svg/struct-use-203-t.svg @@ -0,0 +1,47 @@ + + + + + + + + + + + +

The intent of the file is to determine if the UA supports references to external SVG fragments. To pass this test, the UA agent must display a total of 8 graphical primitives (2 rectangles, 2 circles, 2 ellipses and 2 triangles). For each object, the UA should display a semi transparent duplicate copy at an offset position. See referenced image.

+ + + $RCSfile: struct-use-203-t.svg,v $ + + + + + + + + + + + + + + + + External references on <use> + + + $Revision: 1.2 $ + + + + + diff --git a/test/W3C_SVG_12_TinyTestSuite_beta/svg/struct-use-204-t.svg b/test/W3C_SVG_12_TinyTestSuite_beta/svg/struct-use-204-t.svg new file mode 100755 index 00000000..604f7c13 --- /dev/null +++ b/test/W3C_SVG_12_TinyTestSuite_beta/svg/struct-use-204-t.svg @@ -0,0 +1,47 @@ + + + + + + + + + + + +

The intent of the file is to determine if the UA supports references to external SVG fragments. To pass this test, the UA agent must display a total of 8 graphical primitives (2 rectangles, 2 circles, 2 ellipses and 2 triangles). For each object, the UA should display a semi-transparent duplicate copy at an offset position. See referenced image.

+ + + $RCSfile: struct-use-204-t.svg,v $ + + + + + + + + + + + + + + + + External references on <use> + + + $Revision: 1.2 $ + + + + + diff --git a/test/W3C_SVG_12_TinyTestSuite_beta/svg/struct-use-205-t.svg b/test/W3C_SVG_12_TinyTestSuite_beta/svg/struct-use-205-t.svg new file mode 100755 index 00000000..ac4d496e --- /dev/null +++ b/test/W3C_SVG_12_TinyTestSuite_beta/svg/struct-use-205-t.svg @@ -0,0 +1,188 @@ + + + + + + + + + + + +

+ This test checks some aspects of the SVGElementInstance with regards to events. +

+

+ Four blue rects should be visible at first. To run the test each rect must be clicked a minimum of two times. Once + to run the basic test, and once to verify that the event handler was removed properly. The test has passed if after + clicking all the rects two times or more there are four green rects with the word "Passed" on them. If anything red + is visible or the text on any of the rects say "Failed" then the test has failed. +

+

+ The top-left rect checks that correspondingUseElement and correspondingElement are returning the correct values, and + also that the currentTarget isn't the same as target here. +

+

+ The top-right rect checks that events bubble the correct way when SVGElementInstance is involved. It's almost the same + as the first subtest, but uses another 'use' element. +

+

+ The bottom-left rect doesn't use 'use' elements at all, it's to illustrate event bubbling in normal trees as compared + to SVGElementInstance trees. +

+

+ The bottom-right rect uses nested 'use' elements. The event handler 'nestedhandler' should be executed first, and will + check some aspects of nested use elements. It will modify what it references, and that is checked in the 'h4' event + handler. +

+ + + $RCSfile: struct-use-205-t.svg,v $ + + + + + + + + + + Test SVGElementInstance and events + + + + + Click here + + + + var link = "#fail"; + // The correspondingUseElement is always the outermost use element if use elements are nested + if(event.target.correspondingUseElement == document.getElementById("u3")) + { + // The currentTarget is the 'nesteduse' use element when this event is received, + // and the target is the element where the event originated + if(event.currentTarget.correspondingElement == document.getElementById("nesteduse")) + { + link = "#pass"; + } + } + document.getElementById("nesteduse").setAttributeNS("http://www.w3.org/1999/xlink", "href", link); + + // Remove the handler, so that clicking again does nothing + document.getElementById("nesteduse").removeChild(document.getElementById("nestedhandler")); + + + + + Failed + + + + Passed + + + + + + + var link = "#fail"; + // The currentTarget is this use element, and the target should be the rect element where + // the event originated. Checks these conditions. + // if(event.target != event.currentTarget) + { + if(event.target.correspondingUseElement == event.currentTarget) + { + if(event.target.correspondingElement == document.getElementById("r")) + { + link = "#pass"; + } + } + } + document.getElementById("u1").setAttributeNS("http://www.w3.org/1999/xlink", "href", link); + + // Remove the handler, so that clicking again does nothing + document.getElementById("u1").removeChild(document.getElementById("h1")); + + + + + var link = "#fail"; + // The target element should have a correspondingUseElement that is the element using it. + // In this case it should be 'u2', and the correspondingElement should be the rect with id 'r'. + if(event.target.correspondingUseElement == document.getElementById("u2")) + { + if(event.target.correspondingElement == document.getElementById("r")) + { + link = "#pass"; + } + } + document.getElementById("u2").setAttributeNS("http://www.w3.org/1999/xlink", "href", link); + + // Remove the handler, so that clicking again does nothing + document.getElementById("u2").removeChild(document.getElementById("h2")); + + + + + Click here + + + var status = "Failed"; + // This subtest is included to show the how target and currentTarget works on normal elements. + if(event.target != event.currentTarget) + { + if(event.target == document.getElementById("r3")) + { + if(event.currentTarget == document.getElementById("g3")) + { + status = "Passed"; + } + } + } + document.getElementById("r3").setAttributeNS(null, "fill", status == "Passed" ? "green" : "red"); + document.getElementById("t3").textContent = status; + + // Remove the handler, so that clicking again does nothing + document.getElementById("g3").removeChild(document.getElementById("h3")); + + + + + var link = "#fail"; + // If the nested use handler was executed then the rect element where the event originated has no + // corresponding use element anymore, correspondingUseElement will be null. + if(!event.target.correspondingUseElement) + { + if(event.target.correspondingElement == document.getElementById("r")) + { + link = "#pass"; + } + } + document.getElementById("u3").setAttributeNS("http://www.w3.org/1999/xlink", "href", link); + + // Remove the handler, so that clicking again does nothing + document.getElementById("u3").removeChild(document.getElementById("h4")); + + + + + + $Revision: 1.5 $ + + + + + \ No newline at end of file diff --git a/test/W3C_SVG_12_TinyTestSuite_beta/svg/struct-use-206-t.svg b/test/W3C_SVG_12_TinyTestSuite_beta/svg/struct-use-206-t.svg new file mode 100755 index 00000000..8265b32e --- /dev/null +++ b/test/W3C_SVG_12_TinyTestSuite_beta/svg/struct-use-206-t.svg @@ -0,0 +1,48 @@ + + + + + + + + + + + +

+ If the user agent supports referencing external content you should see three green rects. +

+ + + $RCSfile: struct-use-206-t.svg,v $ + + + + + + + + + + + + + $Revision: 1.1 $ + + + + + diff --git a/test/W3C_SVG_12_TinyTestSuite_beta/svg/struct-use-207-t.svg b/test/W3C_SVG_12_TinyTestSuite_beta/svg/struct-use-207-t.svg new file mode 100755 index 00000000..e8cebea9 --- /dev/null +++ b/test/W3C_SVG_12_TinyTestSuite_beta/svg/struct-use-207-t.svg @@ -0,0 +1,78 @@ + + + + + + + + + + + +

+ This file is intented to test the computed values in external + references. Both files (referencing and referenced) define similar + colors/gradients via 'color', 'linearGradient' and 'radialGradient'. + The ids of those definitions are the same but the actual appearance are + different. These definitions are used to test the property inheritance + feature of SVG. +

+

+ The top left rectangle should be filled with the blue linear gradient + since the 'use' has a specified value defined in the 'defs' section. + The top right rectangle is forestgreen since the 'use' has a computed + value. The bottom left rectangle is also forestgreen since the fill is + not inherited from the referenced element's original parent. The bottom + right rectangle is filled with the orange radial gradient since the + computed value is given by the CSS cascade. +

+ + + $RCSfile: struct-use-207-t.svg,v $ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + External references and computed values + + + + $Revision: 1.2 $ + + + + + diff --git a/test/W3C_SVG_12_TinyTestSuite_beta/svg/struct-use-208-t.svg b/test/W3C_SVG_12_TinyTestSuite_beta/svg/struct-use-208-t.svg new file mode 100755 index 00000000..8d80936e --- /dev/null +++ b/test/W3C_SVG_12_TinyTestSuite_beta/svg/struct-use-208-t.svg @@ -0,0 +1,57 @@ + + + + + + + + + + + +

+ Tests the reference a group of shapes with the use element. +

+

+ The test is passed if two green circles with a black border are + rendered. +

+ + + $RCSfile: struct-use-208-t.svg,v $ + + + + + + + + + + + + + + + + + + + $Revision: 1.3 $ + + + + + diff --git a/test/W3C_SVG_12_TinyTestSuite_beta/svg/struct-use-209-t.svg b/test/W3C_SVG_12_TinyTestSuite_beta/svg/struct-use-209-t.svg new file mode 100755 index 00000000..8779a843 --- /dev/null +++ b/test/W3C_SVG_12_TinyTestSuite_beta/svg/struct-use-209-t.svg @@ -0,0 +1,64 @@ + + + + + + + + + + + +

+ Tests circular references. +

+

+ For this test to pass the green text "This text should be visible." must + be rendered. It is not an error if graphics are visible in addition to + the green text. It is not a requirement that graphics be rendered in + addition to the green text. +

+ + + $RCSfile: struct-use-209-t.svg,v $ + + + + + + + + + + + + 'use' referencing 'svg' element + + + + + + 'use' referencing 'image' element + + + This text should be visible. + + + $Revision: 1.2 $ + + + + + diff --git a/test/W3C_SVG_12_TinyTestSuite_beta/svg/struct-use-recursion-01-t.svg b/test/W3C_SVG_12_TinyTestSuite_beta/svg/struct-use-recursion-01-t.svg new file mode 100755 index 00000000..89231258 --- /dev/null +++ b/test/W3C_SVG_12_TinyTestSuite_beta/svg/struct-use-recursion-01-t.svg @@ -0,0 +1,59 @@ + + + + + + + + + + + +

+ This test checks for recursion in 'use' elements. The passing conditions are that the browser does not crash, and that at least one orange circle, and one yellow circle, and a line of green text are rendered. + Also, on an implementation-specific basis, additional orange and yellow circles with a dashed gray stroke may or may not be rendered, depending upon when and how the implementation detects the circular reference, + with the number of dashed circles of a given color indicating now many times the level of recurrsion permitted by the implementation. +

+ + + $RCSfile: struct-use-recursion-01-t.svg,v $ + + + + + + + + + + + + + + + + + + + This text should be visible. + + + + $Revision: 1.5 $ + + + + + \ No newline at end of file diff --git a/test/W3C_SVG_12_TinyTestSuite_beta/svg/struct-use-recursion-02-t.svg b/test/W3C_SVG_12_TinyTestSuite_beta/svg/struct-use-recursion-02-t.svg new file mode 100755 index 00000000..b5856c8e --- /dev/null +++ b/test/W3C_SVG_12_TinyTestSuite_beta/svg/struct-use-recursion-02-t.svg @@ -0,0 +1,58 @@ + + + + + + + + + + + +

+ This test checks for recursion in 'use' elements with external references. The passing conditions are that the browser does not crash, and that the green test is rendered. The passing conditions are that the + browser does not crash, and that at least one orange circle and a line of green text are rendered. Also, on an implementation-specific basis, additional orange and yellow circles with a dashed gray stroke may or may + not be rendered, depending upon when and how the implementation detects the circular reference, with the number of dashed circles of a given color indicating now many times the level of recurrsion permitted by the implementation.. +

+

+ This test depends upon 'struct-use-recursion-03-t.svg'. +

+ + + $RCSfile: struct-use-recursion-02-t.svg,v $ + + + + + + + + + + + + + + + This text should be visible. + + + + $Revision: 1.5 $ + + + + + \ No newline at end of file diff --git a/test/W3C_SVG_12_TinyTestSuite_beta/svg/struct-use-recursion-03-t.svg b/test/W3C_SVG_12_TinyTestSuite_beta/svg/struct-use-recursion-03-t.svg new file mode 100755 index 00000000..ca2329f3 --- /dev/null +++ b/test/W3C_SVG_12_TinyTestSuite_beta/svg/struct-use-recursion-03-t.svg @@ -0,0 +1,58 @@ + + + + + + + + + + + +

+ This test checks for recursion in 'use' elements with external references. The passing conditions are that the browser does not crash, and that at least one yellow circle and a line of green text are rendered. + Also, on an implementation-specific basis, additional orange and yellow circles with a dashed gray stroke may or may not be rendered, depending upon when and how the implementation detects the circular reference, + with the number of dashed circles of a given color indicating now many times the level of recurrsion permitted by the implementation. +

+

+ This test depends upon 'struct-use-recursion-02-t.svg'. It differs from 'struct-use-recursion-02-t.svg' in that the 'use' element comes before the 'circle' element. +

+ + + $RCSfile: struct-use-recursion-03-t.svg,v $ + + + + + + + + + + + + + + + This text should be visible. + + + + $Revision: 1.5 $ + + + + + \ No newline at end of file diff --git a/test/W3C_SVG_12_TinyTestSuite_beta/svg/styling-inherit-01-t.svg b/test/W3C_SVG_12_TinyTestSuite_beta/svg/styling-inherit-01-t.svg new file mode 100755 index 00000000..d05e8f13 --- /dev/null +++ b/test/W3C_SVG_12_TinyTestSuite_beta/svg/styling-inherit-01-t.svg @@ -0,0 +1,61 @@ + + + + + + + + + + + +

Verify property inheritance as required by 6.7 "Property inheritance".

+

For this test to pass:

+

At the center right, there is an ellipse. The fill color is not specified on that element but on its parent. The ellipse must be filled a solid yellow

+

At the top left, an oval shape is formed from a rectangle with a radial gradient. The color of the middle stop uses the keyword 'inherit' and thus takes its parent's value of green, giving a yellow, green, white gradient from the center to the edge.

+

At the bottom left, an oval shape is formed from a rectangle with a radial gradient. The color of the middle stop uses the value 'currentColor' and thus takes the value its parent's color property, a dark red, giving a yellow, dark red, white gradient from the center to the edge

+ + + $RCSfile: styling-inherit-01-t.svg,v $ + + + + + + + + + + + + + + + + + + + + + + + + + + + + $Revision: 1.10 $ + + + + + diff --git a/test/W3C_SVG_12_TinyTestSuite_beta/svg/styling-inherit-02-t.svg b/test/W3C_SVG_12_TinyTestSuite_beta/svg/styling-inherit-02-t.svg new file mode 100755 index 00000000..5c4fb5e8 --- /dev/null +++ b/test/W3C_SVG_12_TinyTestSuite_beta/svg/styling-inherit-02-t.svg @@ -0,0 +1,101 @@ + + + + + + + + + + + +

+ Tests inheritance, animation and effect of display:none on stop-color. Three + rectangles are displayed. After a five second animation has completed, + the test is passed if all three rectangles display a green to blue gradient. +

+

+ The stop-color property is not inherited by default, but the value 'inherit' forces it to + inherit the current animated value from its parent. +

+

+ In the first subtest, the value of the stop-color property on the second stop is + 'inherit'. Its parent, linearGradient with id "MyGradient" also has stop-color set to + "inherit". The parent of this gradient is the group with id "g2" and the property + stop-color is animated on that group. Thus, after the animation finishes, + the inherited value is blue. +

+

+ In the second subtest, the value of the stop-color property on the second stop is + 'currentColor'. Its parent, linearGradient with id "MyGradient" does not have the + color property set, but the property is inherited, so it inherits from the + parent - the group with id "g2". The property color is animated on that group. + Thus, after the animation finishes, the inherited value is again blue. +

+

+ The third subtest is not animated. It checks that, per specification, the properties + on a gradient are inherited from the point of definition, not the point of use. An + implementation which does this incorrectly will show a green to red fill. +

+ + + $RCSfile: styling-inherit-02-t.svg,v $ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + $Revision: 1.8 $ + + + + + \ No newline at end of file diff --git a/test/W3C_SVG_12_TinyTestSuite_beta/svg/styling-inherit-03-t.svg b/test/W3C_SVG_12_TinyTestSuite_beta/svg/styling-inherit-03-t.svg new file mode 100755 index 00000000..f3fed0d9 --- /dev/null +++ b/test/W3C_SVG_12_TinyTestSuite_beta/svg/styling-inherit-03-t.svg @@ -0,0 +1,126 @@ + + + + + + + + + + + +

+ Tests inheritance, animation, currentColor on solid-color. Four + rectangles are displayed. After a five second animation has completed, + the test is passed if all four rectangles display a solid green fill. +

+

+ Note: The solid-color property is not inherited by default, but the value 'inherit' forces it to + inherit the current animated value from its parent. +

+ +

+ In the first subtest, the rectangle has a solid fill. + On the solidColor element, the value of the solid-color property is + 'inherit'. Its parent, a group, also has solid-color set to + "inherit". The parent of this group is another group, the property + solid-color is green on it. +

+

+ In the second subtest, the rectangle has a solid fill. + On the solidColor element, the value of the solid-color property is + 'inherit'. Its parent has solid-color set to + "inherit". The parent of this group is another group whose solid-color + property is yellow. + The solid-color property on the solidColor element is + animated from yellow to green. Thus, after the animation finishes, + the inherited value is green. +

+

+ In the third subtest, the rectangle has a solid fill. + On the solidColor element, the value of the solid-color property is + 'inherit'. Its parent has solid-color set to + "inherit". The parent of this group is another group whose solid-color + property is yellow. + The solid-color property on the outermost group is + animated from yellow to green. Thus, after the animation finishes, + the inherited value is green. +

+

+ In the fourth subtest, the rectangle has a solid fill. + On the solidColor element, the value of the solid-color property is + 'currentColor'. Its parent has color set to + "inherit". The parent of this group is another group whose color + property is yellow. + The color property on theoutermost group is + animated from yellow to green. Thus, after the animation finishes, + the inherited value of color, and thus the value used by currentColor, is green. +

+ + + $RCSfile: styling-inherit-03-t.svg,v $ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + $Revision: 1.5 $ + + + + + \ No newline at end of file diff --git a/test/W3C_SVG_12_TinyTestSuite_beta/svg/styling-pres-01-t.svg b/test/W3C_SVG_12_TinyTestSuite_beta/svg/styling-pres-01-t.svg new file mode 100755 index 00000000..ae1e710e --- /dev/null +++ b/test/W3C_SVG_12_TinyTestSuite_beta/svg/styling-pres-01-t.svg @@ -0,0 +1,47 @@ + + + + + + + + + + + +

Check that !important in presentation attribute is an unsupported attribute value. To pass, two rectangles should be drawn. A black filled rectangle and a lime green stroked rectangle.

+

+ A fill attribute is set to red with !important. This is an unsupported attribute value, + consequently the fill attribute should be the lacuna value, which is black. Therefore, to pass, the rectangle should be filled with black. +

+

A lime green border is also drawn, to check that rendering continues after the element with the unsupported value.

+ + + $RCSfile: styling-pres-01-t.svg,v $ + + + + + + + + + + + + + + $Revision: 1.10 $ + + + + + diff --git a/test/W3C_SVG_12_TinyTestSuite_beta/svg/text-align-01-t.svg b/test/W3C_SVG_12_TinyTestSuite_beta/svg/text-align-01-t.svg new file mode 100755 index 00000000..884d7b99 --- /dev/null +++ b/test/W3C_SVG_12_TinyTestSuite_beta/svg/text-align-01-t.svg @@ -0,0 +1,63 @@ + + + + + + + + + + + +

Test 'text-anchor' property (horizontal).

+

The three lines test the three values for property 'text-anchor': start, middle and end.

+ + + $RCSfile: text-align-01-t.svg,v $ + + + + + + + + + Test 'text-anchor' (horizontal) + + + + + text-anchor:none + + + + + text-anchor:start + + + + + text-anchor:middle + + + + + text-anchor:end + + + + + $Revision: 1.8 $ + + + + + diff --git a/test/W3C_SVG_12_TinyTestSuite_beta/svg/text-align-07-t.svg b/test/W3C_SVG_12_TinyTestSuite_beta/svg/text-align-07-t.svg new file mode 100755 index 00000000..217102d9 --- /dev/null +++ b/test/W3C_SVG_12_TinyTestSuite_beta/svg/text-align-07-t.svg @@ -0,0 +1,58 @@ + + + + + + + + + + + +

Test horizontal baselines across script and font size changes.

+

+ The dominant baseline should be alphabetic, so the 'ab' will be sitting + on the blue line, the japanese glyphs will be on the ideographic + baseline and 'ण' is a devangari character and will use the hanging + baseline. The smaller versions of the characters should be aligned to + the same baselines. So 'ab' on the blue line, the ideographic chars + slightly below the line and the devangari should be hanging from the + hanging baseline. +

+

Original test authored by Rodney Hardy at CISRA.

+ + + $RCSfile: text-align-07-t.svg,v $ + + + + + + + + + + + + a犜ण + a犜ण + a犜ण + + + + + + $Revision: 1.7 $ + + + + + diff --git a/test/W3C_SVG_12_TinyTestSuite_beta/svg/text-align-08-t.svg b/test/W3C_SVG_12_TinyTestSuite_beta/svg/text-align-08-t.svg new file mode 100755 index 00000000..6d0ea9a5 --- /dev/null +++ b/test/W3C_SVG_12_TinyTestSuite_beta/svg/text-align-08-t.svg @@ -0,0 +1,75 @@ + + + + + + + + + + + +

+ Test horizontal baselines across script and font size changes. It uses + an SVG Font, where the Latin letter "a" is a rectangle, the Japanese + letter "犜" is an upward-pointing triangle, and the Devanagari letter + "ण" is a downward-pointing triangle. +

+

+ The dominant baseline should be alphabetic, so the 'a' will be sitting + on the alphabetic (blue) line, the japanese glyph (upward pointing + triangle) will be aligned on the ideographic (red) baseline and 'ण' is + a devangari character (downward pointing triangle) and will use the + hanging baseline (green). The smaller versions of the characters should + be aligned to the same baselines as the respective larger characters, + so all like shapes align to the same baseline.. +

+

Original test authored by Rodney Hardy at CISRA.

+ + + $RCSfile: text-align-08-t.svg,v $ + + + + + + + + + + + + + + + + + + + + + + a犜ण + a犜ण + a犜ण + + + + + + + + $Revision: 1.7 $ + + + + + diff --git a/test/W3C_SVG_12_TinyTestSuite_beta/svg/text-align-201-t.svg b/test/W3C_SVG_12_TinyTestSuite_beta/svg/text-align-201-t.svg new file mode 100755 index 00000000..df4964d6 --- /dev/null +++ b/test/W3C_SVG_12_TinyTestSuite_beta/svg/text-align-201-t.svg @@ -0,0 +1,61 @@ + + + + + + + + + + + +

+ Test for viewer capability to handle the basics of the 'textAnchor' + alignment property for 'text' when it has child elements. +

+

+ The first line from the top tests that a 'tspan' element is rendered + after the text content of the parent 'text' element. +

+

+ The second line from the top tests that all the text content, including + that of child 'tspan' elements, is taken into account when positioning + the text with respect to its alignment point. +

+

+ The rendered picture should match the reference image, except for + possible variations in the text fonts and layout (per CSS2 rules). +

+ + + $RCSfile: text-align-201-t.svg,v $ + + Test of 'text-anchor' + text-anchor, text and tspan + + + + + start text + red tspan + + + first text first tspan last tspan last text + + + + + $Revision: 1.4 $ + + + + + diff --git a/test/W3C_SVG_12_TinyTestSuite_beta/svg/text-align-202-t.svg b/test/W3C_SVG_12_TinyTestSuite_beta/svg/text-align-202-t.svg new file mode 100755 index 00000000..7510cdf3 --- /dev/null +++ b/test/W3C_SVG_12_TinyTestSuite_beta/svg/text-align-202-t.svg @@ -0,0 +1,895 @@ + + + + + + + + + + + +

This test checks for text alignment on right-to-left text.

+

The first subtest has the word for 'Egypt', مص

+

The second subtest has the hebrew text פעילות

+

Text-anchor values of start are black, middle are maroon and end are dark blue.

+ + + $RCSfile: text-align-202-t.svg,v $ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + آلات + آلات + آلات + + + مص + مص + مص + + + + פעילות + פעילות + פעילות + + + + $Revision: 1.10 $ + + + + + + diff --git a/test/W3C_SVG_12_TinyTestSuite_beta/svg/text-area-201-t.svg b/test/W3C_SVG_12_TinyTestSuite_beta/svg/text-area-201-t.svg new file mode 100755 index 00000000..ab1a4b2f --- /dev/null +++ b/test/W3C_SVG_12_TinyTestSuite_beta/svg/text-area-201-t.svg @@ -0,0 +1,68 @@ + + + + + + + + + + + +

Testing 'textArea' with fixed 'width' and 'height'

+

+ Lines should break at character boundaries if there is not enough room to perform word breaks. + The 'height' of the first 'textArea' below (top-right) is less than that of the characters + so nothing should appear. +

+

The text is taken from "The Lost Princess of Oz" by Baum, L. Frank (Lyman Frank), 1856-1919

+ + + $RCSfile: text-area-201-t.svg,v $ + + + + + + + + + + TextArea with Fixed Width and Height + + Lines should break at character boundaries if there is not enough room to perform word breaks. + + + The 'height' of the first 'textArea' below (top-right) is less than that of the characters + + + so nothing should appear. + + + + Excerpt from "The Lost Princess of Oz" by Baum, L. Frank (Lyman Frank), 1856-1919 + + + + + + + + + + $Revision: 1.7 $ + + + + + diff --git a/test/W3C_SVG_12_TinyTestSuite_beta/svg/text-area-202-t.svg b/test/W3C_SVG_12_TinyTestSuite_beta/svg/text-area-202-t.svg new file mode 100755 index 00000000..56581ac3 --- /dev/null +++ b/test/W3C_SVG_12_TinyTestSuite_beta/svg/text-area-202-t.svg @@ -0,0 +1,152 @@ + + + + + + + + + + + +

Testing 'textArea' with fixed 'width' and 'height'

+

+ Three 'textArea' elements contain words which are increasing in 'font-size'. + + To pass, no characters should appear in the top-right box since the 'height' of the 'textArea' is less + than that of the characters. + + There should be no characters outside of the border of the larger bottom-left box. + + In the left-side box, there may be characters outside of the border, depending on whether + the implementation breaks words or not. +

+

The text is taken from "The Lost Princess of Oz" by Baum, L. Frank (Lyman Frank), 1856-1919

+ + + $RCSfile: text-area-202-t.svg,v $ + + + + + + + + + + TextArea with Fixed Width and Height + + + Excerpt from "The Lost Princess of Oz" by Baum, L. Frank (Lyman Frank), 1856-1919 + + + + + + + + + + $Revision: 1.6 $ + + + + + diff --git a/test/W3C_SVG_12_TinyTestSuite_beta/svg/text-area-203-t.svg b/test/W3C_SVG_12_TinyTestSuite_beta/svg/text-area-203-t.svg new file mode 100755 index 00000000..e998f8f9 --- /dev/null +++ b/test/W3C_SVG_12_TinyTestSuite_beta/svg/text-area-203-t.svg @@ -0,0 +1,74 @@ + + + + + + + + + + + +

TextArea with Animated Width and Height

+

+ A visible rectangle is drawn the same size as the textArea. The text + contained in the textArea should automatically wrap. +

+

+ The textArea starts off as a 24x 24 square and is animated down to full + size. The text should continually rewrap as the textArea increases in + size. +

+

+ The text is taken from "The Lost Princess of Oz" by Baum, L. Frank + (Lyman Frank), 1856-1919 +

+ + + $RCSfile: text-area-203-t.svg,v $ + + + + + + + + + TextArea with Animated Width and Height + + The text should continually rewrap as the 'textArea' decreases and increases in size. + + + Excerpt from "The Lost Princess of Oz" by Baum, L. Frank (Lyman Frank), 1856-1919 + + + + + + + + + + + $Revision: 1.7 $ + + + + + diff --git a/test/W3C_SVG_12_TinyTestSuite_beta/svg/text-area-204-t.svg b/test/W3C_SVG_12_TinyTestSuite_beta/svg/text-area-204-t.svg new file mode 100755 index 00000000..0b667a58 --- /dev/null +++ b/test/W3C_SVG_12_TinyTestSuite_beta/svg/text-area-204-t.svg @@ -0,0 +1,61 @@ + + + + + + + + + + + +

TextArea with Animated Font-size

+

The font-size is animated from 32 to 8.5 - text should continually rewrap as the font-size decreases in size.

+

The text is taken from "The Lost Princess of Oz" by Baum, L. Frank (Lyman Frank), 1856-1919

+ + + $RCSfile: text-area-204-t.svg,v $ + + + + + + + + + TextArea with Animated Font-size + The text should continually rewrap as the 'font-size' decreases and increases in size. + Excerpt from "The Lost Princess of Oz" by Baum, L. Frank (Lyman Frank), 1856-1919 + + + + + $Revision: 1.8 $ + + + + + diff --git a/test/W3C_SVG_12_TinyTestSuite_beta/svg/text-area-205-t.svg b/test/W3C_SVG_12_TinyTestSuite_beta/svg/text-area-205-t.svg new file mode 100755 index 00000000..777fdbc9 --- /dev/null +++ b/test/W3C_SVG_12_TinyTestSuite_beta/svg/text-area-205-t.svg @@ -0,0 +1,52 @@ + + + + + + + + + + + +

TextArea with Height Set to Auto

+

Text should wrap at the right-hand margin and continue to the end of the paragraph.

+

The text is taken from "The Lost Princess of Oz" by Baum, L. Frank (Lyman Frank), 1856-1919

+ + + $RCSfile: text-area-205-t.svg,v $ + + + + + + + + + TextArea with Height Set to Auto + Text should wrap at the right-hand margin and continue to the end of the paragraph. + Excerpt from "The Lost Princess of Oz" by Baum, L. Frank (Lyman Frank), 1856-1919 + + + + + + + $Revision: 1.7 $ + + + + + diff --git a/test/W3C_SVG_12_TinyTestSuite_beta/svg/text-area-206-t.svg b/test/W3C_SVG_12_TinyTestSuite_beta/svg/text-area-206-t.svg new file mode 100755 index 00000000..079f337a --- /dev/null +++ b/test/W3C_SVG_12_TinyTestSuite_beta/svg/text-area-206-t.svg @@ -0,0 +1,71 @@ + + + + + + + + + + + +

TextArea with Line-increment and Tbreak

+

The blue lines should appear below each of the five text lines in the 'textArea'.

+ + + $RCSfile: text-area-206-t.svg,v $ + + + + + + + + + TextArea with Line-increment and Tbreak + + The blue lines should appear below each of the five text lines in the 'textArea'. + + + + + + + + + + + + + $Revision: 1.7 $ + + + + + diff --git a/test/W3C_SVG_12_TinyTestSuite_beta/svg/text-area-207-t.svg b/test/W3C_SVG_12_TinyTestSuite_beta/svg/text-area-207-t.svg new file mode 100755 index 00000000..51e109a5 --- /dev/null +++ b/test/W3C_SVG_12_TinyTestSuite_beta/svg/text-area-207-t.svg @@ -0,0 +1,88 @@ + + + + + + + + + + + +

TextArea Transformed by Rotation

+

The three 'textArea's should be rotated by 35, 90 and 180 degrees.

+

The text is taken from "The Lost Princess of Oz" by Baum, L. Frank (Lyman Frank), 1856-1919

+ + + $RCSfile: text-area-207-t.svg,v $ + + + + + + + + + TextArea Transformed by Rotation + + The three textArea's should be rotated by 35, 90 and 180 degrees. + + + Excerpts from "The Lost Princess of Oz" by Baum, L. Frank (Lyman Frank), 1856-1919 + + + + + + + + + + + + + + + + $Revision: 1.8 $ + + + + + diff --git a/test/W3C_SVG_12_TinyTestSuite_beta/svg/text-area-208-t.svg b/test/W3C_SVG_12_TinyTestSuite_beta/svg/text-area-208-t.svg new file mode 100755 index 00000000..06f8491f --- /dev/null +++ b/test/W3C_SVG_12_TinyTestSuite_beta/svg/text-area-208-t.svg @@ -0,0 +1,79 @@ + + + + + + + + + + + +

TextArea with Both Width and Height Set to Auto

+

+ The eight lines of numbers should not wrap. Each line is terminated by a tbreak element. + They have numbers from 0 to 50. Each line increases the 'font-size' by 25%. + The 'line-increment' attribute is not used. +

+

+ This test is passed if eight lines of numbers are rendered and not + wrapped to a new line. Numbers displayed will decrease with each line. + Every line must begin with number 0. +

+ + + $RCSfile: text-area-208-t.svg,v $ + + TextArea with Both Width and Height Set to Auto + + The following eight lines of numbers should not wrap. They have numbers from 0 to 50. + + + Each line increases the 'font-size' by 25%. The 'line-increment' attribute is not used. + + + + + + + $Revision: 1.6 $ + + + + + diff --git a/test/W3C_SVG_12_TinyTestSuite_beta/svg/text-area-209-t.svg b/test/W3C_SVG_12_TinyTestSuite_beta/svg/text-area-209-t.svg new file mode 100755 index 00000000..bdd468e4 --- /dev/null +++ b/test/W3C_SVG_12_TinyTestSuite_beta/svg/text-area-209-t.svg @@ -0,0 +1,60 @@ + + + + + + + + + + + +

TextArea Testing Word Breaks and Tbreak

+

+ Each word should break onto a new line. The left-hand 'textArea' has no 'tbreak' elements + while the right-hand one uses 'tbreak' after each word. Both should appear the same. +

+ + + $RCSfile: text-area-209-t.svg,v $ + + + + + + + + + TextArea Testing Word Breaks and Tbreak + + Each word should break onto a new line. The left-hand 'textArea' has no 'tbreak' elements + + + while the right-hand one uses 'tbreak' after each word. Both should appear the same. + + + + + + + + $Revision: 1.7 $ + + + + + diff --git a/test/W3C_SVG_12_TinyTestSuite_beta/svg/text-area-210-t.svg b/test/W3C_SVG_12_TinyTestSuite_beta/svg/text-area-210-t.svg new file mode 100755 index 00000000..bc2c8c69 --- /dev/null +++ b/test/W3C_SVG_12_TinyTestSuite_beta/svg/text-area-210-t.svg @@ -0,0 +1,66 @@ + + + + + + + + + + + +

Testing "tbreak"

+

The gap between the lines should be as described

+ + + $RCSfile: text-area-210-t.svg,v $ + + + + + + + + + <tbreak> + This slides tests the behaviour of <tbreak> in various situations + + + + + + $Revision: 1.7 $ + + + + + diff --git a/test/W3C_SVG_12_TinyTestSuite_beta/svg/text-area-211-t.svg b/test/W3C_SVG_12_TinyTestSuite_beta/svg/text-area-211-t.svg new file mode 100755 index 00000000..5faca6e4 --- /dev/null +++ b/test/W3C_SVG_12_TinyTestSuite_beta/svg/text-area-211-t.svg @@ -0,0 +1,72 @@ + + + + + + + + + + + +

TextArea with Line-increment and Tbreak

+

Testing 'tbreak' while animating the 'font-size' attribute in 'tspan' in 'textArea'

+

+ This test defines one 'textArea' element with a 'tspan' child. The 'tspan' has as red fill and also an animation + which animates the font-size from 0 to 20. The tspan element has a tbreak element before and after it. +

+

+ To pass, the red text should both start and end on a new line, even when the font-size of the tspan is animated. +

+

The text is taken from "The Lost Princess of Oz" by Baum, L. Frank (Lyman Frank), 1856-1919

+ + + $RCSfile: text-area-211-t.svg,v $ + + + + + + + + + + TextArea with Line-increment and Tbreak + + Excerpt from "The Lost Princess of Oz" by Baum, L. Frank (Lyman Frank), 1856-1919 + + + + + $Revision: 1.5 $ + + + + + diff --git a/test/W3C_SVG_12_TinyTestSuite_beta/svg/text-area-213-t.svg b/test/W3C_SVG_12_TinyTestSuite_beta/svg/text-area-213-t.svg new file mode 100755 index 00000000..10c2b968 --- /dev/null +++ b/test/W3C_SVG_12_TinyTestSuite_beta/svg/text-area-213-t.svg @@ -0,0 +1,94 @@ + + + + + + + + + + + +

TextArea with Animated Width and Height

+

+ A visible rectangle is drawn the same size as the textArea. The text contained in the textArea should + automatically wrap. +

+

+ The textArea starts off as a 24x 24 square and is animated down to full size. The text should continually + rewrap as the textArea increases in size. +

+

The text is taken from "The Lost Princess of Oz" by Baum, L. Frank (Lyman Frank), 1856-1919

+ + + $RCSfile: text-area-213-t.svg,v $ + + + + + + + + + TextArea with display-align + + The text should be clipped properly for each display-align value, as height animates + + + Excerpt from "The Lost Princess of Oz" by Baum, L. Frank (Lyman Frank), 1856-1919 + + + + + default + + + + auto + + + + before + + + + center + + + + after + + + + + + + + + + + + $Revision: 1.6 $ + + + + + diff --git a/test/W3C_SVG_12_TinyTestSuite_beta/svg/text-area-220-t.svg b/test/W3C_SVG_12_TinyTestSuite_beta/svg/text-area-220-t.svg new file mode 100755 index 00000000..2e781c2a --- /dev/null +++ b/test/W3C_SVG_12_TinyTestSuite_beta/svg/text-area-220-t.svg @@ -0,0 +1,59 @@ + + + + + + + + + + + +

Testing "textArea"

+

A visible rectangle is drawn the same size as the textArea. The text contained in the textArea should automatically wrap.

+

The textArea starts off as a 24x 24 square and is animated down to full size. The text should continually rewrap as the textArea increases in size.

+

The text is taken from "The Lost Princess of Oz" by Baum, L. Frank (Lyman Frank), 1856-1919

+ + + $RCSfile: text-area-220-t.svg,v $ + + + + + + + + + 'textArea' with 'text-align' set to 'end' + All text should be right-justified. Each paragraph is terminated with a double 'tbreak'. + Excerpt from "The Lost Princess of Oz" by Baum, L. Frank (Lyman Frank), 1856-1919 + + + + + $Revision: 1.7 $ + + + + + diff --git a/test/W3C_SVG_12_TinyTestSuite_beta/svg/text-area-221-t.svg b/test/W3C_SVG_12_TinyTestSuite_beta/svg/text-area-221-t.svg new file mode 100755 index 00000000..146b26d5 --- /dev/null +++ b/test/W3C_SVG_12_TinyTestSuite_beta/svg/text-area-221-t.svg @@ -0,0 +1,72 @@ + + + + + + + + + + + +

TextArea with line-increment, text-align and display-align

+

+ All text should be centered vertically and horizontally. + The 'font-size' is varied along with 'line-increment'. +

+

The text is taken from "The Lost Princess of Oz" by Baum, L. Frank (Lyman Frank), 1856-1919

+ + + $RCSfile: text-area-221-t.svg,v $ + + + + + + + + + TextArea with line-increment, text-align and display-align + + All text should be centered horizontally and vertically. + + + Excerpt from "The Lost Princess of Oz" by Baum, L. Frank (Lyman Frank), 1856-1919 + + + + + + $Revision: 1.6 $ + + + + + diff --git a/test/W3C_SVG_12_TinyTestSuite_beta/svg/text-area-222-t.svg b/test/W3C_SVG_12_TinyTestSuite_beta/svg/text-area-222-t.svg new file mode 100755 index 00000000..3f36221f --- /dev/null +++ b/test/W3C_SVG_12_TinyTestSuite_beta/svg/text-area-222-t.svg @@ -0,0 +1,63 @@ + + + + + + + + + + + +

Testing 'textArea' with editable attribute

+

Activating a textArea element should bring up UI asking for new text

+

The initial text is taken from "The Lost Princess of Oz" by Baum, L. Frank (Lyman Frank), 1856-1919

+ + + $RCSfile: text-area-222-t.svg,v $ + + + + + + + + + + TextArea with editable attribute + + Activating a textArea element should allow edit of textArea contents. + + + + Excerpt from "The Lost Princess of Oz" by Baum, L. Frank (Lyman Frank), 1856-1919 + + + + + + + + + + + + + + + $Revision: 1.6 $ + + + + + diff --git a/test/W3C_SVG_12_TinyTestSuite_beta/svg/text-edit-201-t.svg b/test/W3C_SVG_12_TinyTestSuite_beta/svg/text-edit-201-t.svg new file mode 100755 index 00000000..55455682 --- /dev/null +++ b/test/W3C_SVG_12_TinyTestSuite_beta/svg/text-edit-201-t.svg @@ -0,0 +1,130 @@ + + + + + + + + + + + +

+ This test checks basic text-editing capabilities. +

+

+ Start editing by activating the textArea that has a green dashed outline. + This textArea has no child text content, but has a defined width and height. + Input the string "123 456" (one two three, space, space, four five six). + + After input is complete, click the button labeled "Check #1". If the frame around + the textArea goes from being dashed to being solid then that part of the test has passed. + Another condition is that the text string "123 456" should look like it only has one space + and not two due to the whitespace handling rules. +

+

+ Next activate the middle textArea that has a red dashed outline. + Input two spaces between 3 and 4. Now since this textArea has xml:space="preserve" those + two spaces should be rendered as two spaces, meaning it must look different from the first + textArea on the left. The textContent must be the same in both cases though, and this is + verified by clicking the button labeled "Check #2". If the test is successful the frame + will turn from dashed red to solid red. +

+

+ Finally activate the rightmost textArea that has a blue dashed outline. + Then exit the editing mode without changing the text. The text must not change and the 'tbreak' element + must be kept in the position it's in. Now activate the textArea again and input an additional linebreak between 3 and 4. + The line "345" must now be on the third line, the second line being blank. + Click the button labeled "Check #3" to verify the result, the frame will turn from dashed + blue to solid blue if successful. +

+

+ The test has passed if after inputting text according to the instructions above and clicking the three + buttons the rendered image matches the reference image exactly. +

+ + + $RCSfile: text-edit-201-t.svg,v $ + + + + + + + + + + Test editable text in textArea + + + Input the string "123 456" (two spaces). + + + + + + + if(document.getElementById("ta1").textContent == "123 456") + document.getElementById("r1").setAttributeNS(null, "stroke-dasharray", "none"); + + + Check #1 + + + Insert two spaces between 3 and 4. + + + + + + + if(document.getElementById("ta2").textContent == "123 456") + document.getElementById("r2").setAttributeNS(null, "stroke-dasharray", "none"); + + + Check #2 + + + Insert an additional linefeed between 3 and 4. + + + + + + + + + + Check #3 + + + + $Revision: 1.5 $ + + + + + \ No newline at end of file diff --git a/test/W3C_SVG_12_TinyTestSuite_beta/svg/text-fonts-01-t.svg b/test/W3C_SVG_12_TinyTestSuite_beta/svg/text-fonts-01-t.svg new file mode 100755 index 00000000..debda5cb --- /dev/null +++ b/test/W3C_SVG_12_TinyTestSuite_beta/svg/text-fonts-01-t.svg @@ -0,0 +1,52 @@ + + + + + + + + + + + +

Purpose of test is to determine if the font family is being correctly selected. The top two lines of text test serif fonts; the top line in maroon tests the generic font family 'serif' and the second line in black tests a selection of commonly available named serif fonts. The next two lines of text test sans-serif fonts; the top line in maroon tests the generic font family 'sans-serif' and the second line in black tests a selection of commonly available named sans serif fonts. The following two lines of text test monospaced fonts; the top line in maroon tests the generic font family 'monospaced' and the second line in black tests a selection of commonly available named monospaced fonts. The lowercase 'i' and uppercase'W' should be the same width,for monospaced fonts.

+

The seventh line of text, in green, tests for three non-existent fonts (nonsense names). There is no fallback generic font specified. The text must be displayed anyway.

+

The first six lines contain two Japanese characters (画像) at the end of the line. Both of these characters must be displayed, although it is compliant to display them with the 'missing glyph' if no suitable font containing Japanese characters can be found. Most but not all fonts have a visible missing glyph character. If the selected font has a visible missing glyph character, it should appear wherever the corresponding glyph is not available.

+ + + $RCSfile: text-fonts-01-t.svg,v $ + + + + + + + + + + A serifed face 画像 + A sans-serif face 画像 + A mono (iW) face 画像 + + A serifed face 画像 + A sans-serif face 画像 + A mono (iW) face 画像 + + This must be displayed + + + + $Revision: 1.8 $ + + + + + diff --git a/test/W3C_SVG_12_TinyTestSuite_beta/svg/text-fonts-02-t.svg b/test/W3C_SVG_12_TinyTestSuite_beta/svg/text-fonts-02-t.svg new file mode 100755 index 00000000..8816e869 --- /dev/null +++ b/test/W3C_SVG_12_TinyTestSuite_beta/svg/text-fonts-02-t.svg @@ -0,0 +1,60 @@ + + + + + + + + + + + +

Purpose of test is to determine if the font weight is being correctly rendered. A number of font families are specified. The numerical weight values (100 to 900) should show the lighter weights on the lower numbers and the heavier weights on the larger numbers. Heavier is defined to mean 'no lighter'.

+

If only one font weight is available, they should all display at the same weight. The transition from black to green figures shows the correct light to bold transition for the common case where two weights are available. If three or more weights are available, see the CSS2 specification for how these are allocated to the nine weight numbers.

+

The absolute keywords 'normal' and bold' are tested by the first two lines on the right hand side of the test, the third line of text tests the to 'bolder' relative keyword and the fourth tests the 'lighter' relative keyword.

+ + + $RCSfile: text-fonts-02-t.svg,v $ + + + + + + + + + + 100 + 200 + 300 + 400 + 500 + 600 + 700 + 800 + 900 + This is bold + This is normal + + Blue is bolder + + + Blue is lighter + + + + + $Revision: 1.8 $ + + + + + diff --git a/test/W3C_SVG_12_TinyTestSuite_beta/svg/text-fonts-03-t.svg b/test/W3C_SVG_12_TinyTestSuite_beta/svg/text-fonts-03-t.svg new file mode 100755 index 00000000..7c56a30e --- /dev/null +++ b/test/W3C_SVG_12_TinyTestSuite_beta/svg/text-fonts-03-t.svg @@ -0,0 +1,62 @@ + + + + + + + + + + + +

Testing font-family attribute. Two SVG fonts are defined. Various text elements are then used with varying values for the font-family attribute. The first two text elements should display in their respective fonts, the last two should be displayed using the system font since the value specified for font-family is either invalid or not specified.

+

The rendered picture should match the reference image exactly, except for possible variations in the labelling text (per CSS2 rules).

+ + + $RCSfile: text-fonts-03-t.svg,v $ + + + + + + + + + + + + + + + + + + + + + + + font-family = "Haettenschweiler" + ABC + font-family = "Charlesworth" + ABC + font-family = "Invalid Name" + ABC + font-family = not specified + ABC + + + $Revision: 1.6 $ + + + + + diff --git a/test/W3C_SVG_12_TinyTestSuite_beta/svg/text-fonts-04-t.svg b/test/W3C_SVG_12_TinyTestSuite_beta/svg/text-fonts-04-t.svg new file mode 100755 index 00000000..d5166063 --- /dev/null +++ b/test/W3C_SVG_12_TinyTestSuite_beta/svg/text-fonts-04-t.svg @@ -0,0 +1,76 @@ + + + + + + + + + + + +

+ Testing font-family attribute. + Various text elements are + used with varying values for the font-family attribute. + The first two text elements should display in their respective fonts, + Haettenschweiler and + , + if they are installed on the target system. Otherwise, simply + displaying + the text in some fallback font is enough to pass the test. + The last two should be displayed using a fallback font since the + value specified for font-family is either invalid or not specified. + Failing to display the text means the test is not passed. +

+

+ If the two named fonts are available on the system, + the rendered picture should match the reference image exactly, + except for possible + variations in the labelling text (per CSS2 rules) + and variations in text antialiasing or hinting. +

+ + + $RCSfile: text-fonts-04-t.svg,v $ + + + + + + + + + + font-family = "Haettenschweiler" + ABC + + font-family = "Charlesworth" + ABC + + font-family = "Invalid Name" + ABC + + font-family = not specified + ABC + + + + $Revision: 1.4 $ + + + + + diff --git a/test/W3C_SVG_12_TinyTestSuite_beta/svg/text-fonts-202-t.svg b/test/W3C_SVG_12_TinyTestSuite_beta/svg/text-fonts-202-t.svg new file mode 100755 index 00000000..5e1fdf35 --- /dev/null +++ b/test/W3C_SVG_12_TinyTestSuite_beta/svg/text-fonts-202-t.svg @@ -0,0 +1,85 @@ + + + + + + + + + + + +

+ This tests the 'font-weight' property when multiple weights are available. A + font family with six weights is specified, with a fallback to 'serif'. If + the platform supports installable opentype fonts, please download + Zalamander Caps + by Tim Ahrens of Just Another Foundry. +

+

+ The numerical weight values (100 to 900) should show the lighter weights on the + lower numbers and the heavier weights on the larger numbers. Heavier is defined + to mean 'no lighter'. +

+

+ If only one font weight is available, they should all display at the same weight. + The transition from black to green figures shows the correct light to bold transition + for the common case where two weights are available. If three or more weights are + available, see the CSS2 specification for how these are allocated to the nine weight + numbers. +

+

+ The absolute keywords 'normal' and bold' are tested by the first two lines on the + right hand side of the test, the third line of text tests the to 'bolder' relative + keyword and the fourth tests the 'lighter' relative keyword. +

+ + + $RCSfile: text-fonts-202-t.svg,v $ + + + + + + + + + + 100 + 200 + 300 + 400 + 500 + 600 + 700 + 800 + 900 + This is bold + This is normal + + Blue is bolder + + + Blue is lighter + + + ZalamanderCaps is an OpenType font + by Tim Ahrens of Just Another Foundry + + + + + $Revision: 1.7 $ + + + + + diff --git a/test/W3C_SVG_12_TinyTestSuite_beta/svg/text-intro-01-t.svg b/test/W3C_SVG_12_TinyTestSuite_beta/svg/text-intro-01-t.svg new file mode 100755 index 00000000..175ba5e4 --- /dev/null +++ b/test/W3C_SVG_12_TinyTestSuite_beta/svg/text-intro-01-t.svg @@ -0,0 +1,61 @@ + + + + + + + + + + + +

Test left-to-right aspect of internationalized text.

+

Various text strings in various languages appear. The main purpose of the test is to verify that the correct characters appear and that they appear in the correct order and orientation, even though the first choice font does not have the right glyphs.

+

Correct rendering requires that each character is rendered. it may be rendered with the 'missing glyph' if no glyphs are found in the fonts listed in the content, or in any fallback font that is available. The first choice font is a special SVG font that only contains the 'missing glyph'. Missing glyph from other fonts may conformantly be used, however.

+ + + $RCSfile: text-intro-01-t.svg,v $ + + + + + + + + + + + + + + + Test left-to-right text. + + Polish: Mogę jeść szkło, i mi ... + Russian: Я могу есть стекло, ... + Greek: Μπορώ να φάω ... + Hebrew: אני יכול לאכול זכוכית ... + Yiddish: איך קען עסן גלאָז און ... + + + Chinese:我能吞下玻璃而不伤身体。 + + + Japanese: 私はガラスを食べます。 + + + + $Revision: 1.8 $ + + + + + diff --git a/test/W3C_SVG_12_TinyTestSuite_beta/svg/text-intro-04-t.svg b/test/W3C_SVG_12_TinyTestSuite_beta/svg/text-intro-04-t.svg new file mode 100755 index 00000000..ba6c44ad --- /dev/null +++ b/test/W3C_SVG_12_TinyTestSuite_beta/svg/text-intro-04-t.svg @@ -0,0 +1,53 @@ + + + + + + + + + + + +

Test basic aspect of internationalized text.

+

Various text strings in various languages appear. The main purpose of the test is to verify that the correct characters appear and that they appear in the correct order and orientation.

+

Correct rendering requires that each character is rendered. It is not required that a given character be rendered with any particular font; just that it is rendered. It may be rendered with the 'missing glyph' if no glyphs are found in the fonts listed in the content, or in any fallback font that is available.

+

A future version of this test might include all necessary glyphs as an SVG font.

+ + + $RCSfile: text-intro-04-t.svg,v $ + + + + + + + + + Test horizontal text. + + Polish: Mogę jeść szkło, i mi nie szkodzi. + Russian: Я могу есть стекло, это мне не вредит. + Greek: Μπορώ να φάω σπασμένα γυαλιά χωρίς να πάθω τίποτα. + + Text "אני יכול לאכול זכוכית וזה לא מזיק לי" is in Hebrew + Yiddish: איך קען עסן גלאָז און עס טוט מיר נישט װײ. + Chinese:我能吞下玻璃而不伤身体。 + Japanese: 私はガラスを食べられます。それは私を傷つけません。 + + + + $Revision: 1.8 $ + + + + + diff --git a/test/W3C_SVG_12_TinyTestSuite_beta/svg/text-intro-05-t.svg b/test/W3C_SVG_12_TinyTestSuite_beta/svg/text-intro-05-t.svg new file mode 100755 index 00000000..cc9d7b79 --- /dev/null +++ b/test/W3C_SVG_12_TinyTestSuite_beta/svg/text-intro-05-t.svg @@ -0,0 +1,45 @@ + + + + + + + + + + + +

Tests Arabic text using various platform fonts. If these fonts are not available, a fallback font should be used that has Arabic glyphs. If such a font is not available, the 'missing glyph' (typically an open rectangle) should be displayed. It is an error to display the wrong Arabic glyphs, for example to display all isolate forms.

+ + + $RCSfile: text-intro-05-t.svg,v $ + + + + + + + + + لماذا لا يتكلمون اللّغة العربية فحسب؟ + + لماذا لا يتكلمون اللّغة العربية فحسب؟ + + لماذا لا يتكلمون اللّغة العربية فحسب؟ + + + + $Revision: 1.6 $ + + + + + diff --git a/test/W3C_SVG_12_TinyTestSuite_beta/svg/text-intro-06-t.svg b/test/W3C_SVG_12_TinyTestSuite_beta/svg/text-intro-06-t.svg new file mode 100755 index 00000000..a85cda8a --- /dev/null +++ b/test/W3C_SVG_12_TinyTestSuite_beta/svg/text-intro-06-t.svg @@ -0,0 +1,56 @@ + + + + + + + + + + + +

This test ensures that mandatory ligatures in Arabic are displayed.

+

+ There are two subtests. The first requires an isolate lam-alef ligature + and the second requires a right-joining lam-alef ligature. +

+

+ The test is passed if subtests are displayed as following: +

+
    +
  • The first subtest has the word for 'tools', آلات
  • +
  • The second subtest has the word for 'three', ثلاثة
  • +
+ + + $RCSfile: text-intro-06-t.svg,v $ + + + + + + + + + + + + آلات + ثلاثة + + + + $Revision: 1.8 $ + + + + + diff --git a/test/W3C_SVG_12_TinyTestSuite_beta/svg/text-intro-201-t.svg b/test/W3C_SVG_12_TinyTestSuite_beta/svg/text-intro-201-t.svg new file mode 100755 index 00000000..fb7d29bf --- /dev/null +++ b/test/W3C_SVG_12_TinyTestSuite_beta/svg/text-intro-201-t.svg @@ -0,0 +1,55 @@ + + + + + + + + + + + +

Test text element, tspan element and various text styles.

+

The first group tests that text displays at all, that it displays in a straight line, and that the font style can be made italic or bold.

+

The second group tests that text can be treated as any other graphical element, with stroke and fill properties. The first word tests that fill color can be specified. The second word tests that stroke color can be specified in absence of fill. The third group tests the combination of all these effects. The final group tests positioning of 'text' elements.

+ + + $RCSfile: text-intro-201-t.svg,v $ + + + + + + + + + Plain + Italic + Bold + fill only + stroke only + Bold, italic, fill and stroke + + + + Each line of text which flows in a + rectangular box has to be broken + into separated lines. + + + + + $Revision: 1.4 $ + + + + + diff --git a/test/W3C_SVG_12_TinyTestSuite_beta/svg/text-text-04-t.svg b/test/W3C_SVG_12_TinyTestSuite_beta/svg/text-text-04-t.svg new file mode 100755 index 00000000..17b9b170 --- /dev/null +++ b/test/W3C_SVG_12_TinyTestSuite_beta/svg/text-text-04-t.svg @@ -0,0 +1,171 @@ + + + + + + + + + + + +

The purpose of this test is to validate proper handling of the text element's x and y attributes. In the various samples, a red marker shows the text's (0,0) coordinate. The blue markers show the current text positions. These are either defined by absolute x/y positioning or they are computed from the embeded font's glyphs advances.

+

The first text sample shows a reference piece of text.

+

The second text sample (x all) shows a piece of text where all the glyphs are positioned along the x axis.

+

The third text sample (x more) is a text element where there are more x values than characters (5 values for 4 characters). The last x value should be ignored and the result should be the same as the third sample.

+

The fourth text sample (x fewer) is a text element where there are fewer x values than characters (3 values for 4 characters). The last character should not be positioned but laid out normally, following its previous character sibling.

+

The fifth (y all), sixth (y more) and seventh (y fewer) text sample parallel the second, third and fourth test, but for the y attribute values.

+

The samples in the right column show combinations of x/y value sets.

+

In all the above tests, blue markers represent the expected glyph positions. The red markers are showing positions where no glyph should appear. The glyphs are black squares of increasing sizes.

+ + + $RCSfile: text-text-04-t.svg,v $ + + + + + + + + + + + + + + + + + + + + + + + + Reference + + + + + + 1234 + + + + x all + + + + + + 1234 + + + x more + + + + + + + 1234 + + + x fewer + + + + + + 1234 + + + y all + + + + + 1234 + + + y more + + + + + 1234 + + + y fewer + + + + + 1234 + + + + x/y all + + + + + + 1234 + + + x/y more + + + + + + + 1234 + + + x/y fewer + + + + + + 1234 + + + x all y fewer + + + + + + 1234 + + + x fewer y all + + + + + + 1234 + + + + + + $Revision: 1.6 $ + + + + + diff --git a/test/W3C_SVG_12_TinyTestSuite_beta/svg/text-text-06-t.svg b/test/W3C_SVG_12_TinyTestSuite_beta/svg/text-text-06-t.svg new file mode 100755 index 00000000..d223921a --- /dev/null +++ b/test/W3C_SVG_12_TinyTestSuite_beta/svg/text-text-06-t.svg @@ -0,0 +1,95 @@ + + + + + + + + + + + +

The purpose of this test is to validate the interaction of x/y glyph positioning and ligatures.

+

The first line shows an example where there is a ligature (fi) which should be accounted for before breaking into text chunks (see specification section 10.5, additional x/y/dx/dy processing rules, bullet discussing ligatures). In this first line, the ligatures cause the x position 180 (shown in red), to be ignored. As a result, a glyph should be shown over each pale blue square markers. The glyphs are black squares of increasing sizes except for the initial ligature which has the form of two small black triangles joined at their tops. The ligature should show on the first pale blue marker position.

+

The second line shows the same test but using multiple y positions.

+

The third line shows the same test but using multiple x and y positions.

+ + + $RCSfile: text-text-06-t.svg,v $ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + x positioning + y positioning + x/y positioning + + + + + + + + + fi1234 + + + + + + + + + fi1234 + + + + + + + + + fi1234 + + + + + + $Revision: 1.7 $ + + + + + diff --git a/test/W3C_SVG_12_TinyTestSuite_beta/svg/text-text-07-t.svg b/test/W3C_SVG_12_TinyTestSuite_beta/svg/text-text-07-t.svg new file mode 100755 index 00000000..791e7c23 --- /dev/null +++ b/test/W3C_SVG_12_TinyTestSuite_beta/svg/text-text-07-t.svg @@ -0,0 +1,43 @@ + + + + + + + + + + + +

Tests multiple x, y, rotate, with various combinations. Since an array of values is given, each glyph must use the value from the corresponding character in the list.

+

The rendered picture should match the reference image exactly, except for possible variations in the labelling text (per CSS2 rules).

+ + + $RCSfile: text-text-07-t.svg,v $ + + + + + + + + + Multi X Y + ROTATE + Both Together + + + $Revision: 1.6 $ + + + + + diff --git a/test/W3C_SVG_12_TinyTestSuite_beta/svg/text-text-08-t.svg b/test/W3C_SVG_12_TinyTestSuite_beta/svg/text-text-08-t.svg new file mode 100755 index 00000000..0a8418f3 --- /dev/null +++ b/test/W3C_SVG_12_TinyTestSuite_beta/svg/text-text-08-t.svg @@ -0,0 +1,42 @@ + + + + + + + + + + + +

Two opacity properties (fill-opacity and stroke-opacity) of 'text' elements are covered in this test.

+ + + $RCSfile: text-text-08-t.svg,v $ + + + + + + + + + Normal Text + Fill opacity + Stroke opacity + + + $Revision: 1.9 $ + + + + + diff --git a/test/W3C_SVG_12_TinyTestSuite_beta/svg/text-text-09-t.svg b/test/W3C_SVG_12_TinyTestSuite_beta/svg/text-text-09-t.svg new file mode 100755 index 00000000..dbeb5423 --- /dev/null +++ b/test/W3C_SVG_12_TinyTestSuite_beta/svg/text-text-09-t.svg @@ -0,0 +1,55 @@ + + + + + + + + + + +

+ Tests multiple x, y, rotate, with various combinations. Since an + array of values is given, each glyph must use the value from the + corresponding character in the list. In this test, there are less values + in the array than there are characters. + +

+

+ The rendered picture should match the reference image exactly, except for possible + variations in the labelling text (per CSS2 rules). +

+ + + $RCSfile: text-text-09-t.svg,v $ + + + + + + + + + Multi X Y + ROTATE + Both Together + + + $Revision: 1.6 $ + + + + + diff --git a/test/W3C_SVG_12_TinyTestSuite_beta/svg/text-tselect-03-t.svg b/test/W3C_SVG_12_TinyTestSuite_beta/svg/text-tselect-03-t.svg new file mode 100755 index 00000000..34fc8adc --- /dev/null +++ b/test/W3C_SVG_12_TinyTestSuite_beta/svg/text-tselect-03-t.svg @@ -0,0 +1,87 @@ + + + + + + + + + + + +

+ This test demonstrates text selection of bidirectional text. +

+

To pass the test the the first 9 characters in logical order starting from logical position 0 are to be selected. This must be done by the tester since there's no way to control the selection in DOM. The selection should be started at the letter 'a' and proceed to the number '1' as indicated by the arrows. Visually this makes the selection discontigous and these substrings must be selected (listed in visual order):

+

"abc"

+

the space between "c" and "ו"

+

"1"

+

the space between "3" and "ג"

+

"אבג"

+

If only the substrings listed above were selected then the test has passed.

+ + + $RCSfile: text-tselect-03-t.svg,v $ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + Start selecting here + select from 'a' to '1' + + + + abc אבג 123 דהו def + + + $Revision: 1.8 $ + + + + + diff --git a/test/W3C_SVG_12_TinyTestSuite_beta/svg/text-ws-01-t.svg b/test/W3C_SVG_12_TinyTestSuite_beta/svg/text-ws-01-t.svg new file mode 100755 index 00000000..21034606 --- /dev/null +++ b/test/W3C_SVG_12_TinyTestSuite_beta/svg/text-ws-01-t.svg @@ -0,0 +1,58 @@ + + + + + + + + + + + +

Test for viewer correct handling of whitespace and the 'xml:space' attribute. There are two sub-tests, for xml:space value "default". In each test, the content of the 'text' element is written on multiple lines. The first test of each pair has indented text with leading space characters, tabs, etc. The second has no indentation, but a line break before the content and after it. There are no space (or other whitespace) characters at the ends of the lines.

+

The two test cases are self-descriptive. From the top; first, "default" value applied to 3 lines of content with indents, space characters, tabs, etc; second, "default" applied to two lines content with no indent;

+

In each test, the test string is in blue and the reference image is in black. The rendered picture should approximately match the reference image, however there is some question in the reference image concerning the exact amount of space in the long-space areas. The third test uses the nbsp unicode character to force the reference white spaces display, which provides an accurate match if the font in use has the same metrics for that character and the default white space. Also, variations are possible in the text fonts and layout (per CSS2 rules).

+

The test also uses the 'rect' element, as well as basic fill (solid primary colors), stroke (black 1-pixel lines), font-family (Arial) and font-size properties.

+ + + $RCSfile: text-ws-01-t.svg,v $ + + + + + + + + + Basic: xml:space attribute + & whitespace handling. + + + + WS with indented lines. + WS with indented lines. + + xml:space='default' + + + + WS non-indented lines. + WS non-indented lines. + + xml:space='default' + + + $Revision: 1.7 $ + + + + + diff --git a/test/W3C_SVG_12_TinyTestSuite_beta/svg/text-ws-02-t.svg b/test/W3C_SVG_12_TinyTestSuite_beta/svg/text-ws-02-t.svg new file mode 100755 index 00000000..0750468e --- /dev/null +++ b/test/W3C_SVG_12_TinyTestSuite_beta/svg/text-ws-02-t.svg @@ -0,0 +1,65 @@ + + + + + + + + + + + +

Test for viewer correct handling of whitespace and the 'xml:space' attribute. There are two sub-tests, for value "preserve". In each test, the content of the 'text' element is written on multiple lines. The first test of each pair has indented text with leading space characters, tabs, etc. The second has no indentation, but a line break before the content and after it. There are no space (or other whitespace) characters at the ends of the lines.

+

The two test cases are self-descriptive. From the top; first, "preserve" applied to essentially the same content as first; second, "preserve" applied to essentially the same content as second.

+

In each test, the test string is in blue and the reference image is in black. The rendered picture should approximately match the reference image, however there is some question in the reference image concerning the exact amount of space in the long-space areas. The third test uses the nbsp unicode character to force the reference white spaces display, which provides an accurate match if the font in use has the same metrics for that character and the default white space. Also, variations are possible in the text fonts and layout (per CSS2 rules).

+

The test also uses the 'rect' element, as well as basic fill (solid primary colors), stroke (black 1-pixel lines), font-family (Arial) and font-size properties.

+ + + $RCSfile: text-ws-02-t.svg,v $ + + + + + + + + + Basic: xml:space attribute + & whitespace handling. + + + + +WS + with + indented lines. + + +  WS   with  indented lines. + + xml:space='preserve' + + + + WS +non-indented lines. + + WS non-indented lines. + + xml:space='preserve' + + + $Revision: 1.8 $ + + + + + diff --git a/test/W3C_SVG_12_TinyTestSuite_beta/svg/udom-conform-201-t.svg b/test/W3C_SVG_12_TinyTestSuite_beta/svg/udom-conform-201-t.svg new file mode 100755 index 00000000..53180339 --- /dev/null +++ b/test/W3C_SVG_12_TinyTestSuite_beta/svg/udom-conform-201-t.svg @@ -0,0 +1,159 @@ + + + + + + + + + + + +

+ This tests that the getTrait[NS] and setTrait[NS] + methods of the TraitAccess interface work for the special + '#text' trait on the desc, title, + metadata, text, tspan and textArea + elements. +

+

+ The rectangle in the top left corner indicates whether the + getTrait and getTraitNS returned the expected + strings for each of the relevant elements; blue for pass, + red for fail. The four text strings below it indicate whether + setTrait and setTraitNS worked on the text + and textArea elements; they must all be the string “PASS”. +

+ + + $RCSfile: udom-conform-201-t.svg,v $ + + + + + + + + + #text trait access test + + + This is the desc. + This is the title. + This is the metadata. + + This is the text and this is the tspan. + + + + + + + + + + $Revision: 1.7 $ + + + + + diff --git a/test/W3C_SVG_12_TinyTestSuite_beta/svg/udom-dom-204-t.svg b/test/W3C_SVG_12_TinyTestSuite_beta/svg/udom-dom-204-t.svg new file mode 100755 index 00000000..2f3c909d --- /dev/null +++ b/test/W3C_SVG_12_TinyTestSuite_beta/svg/udom-dom-204-t.svg @@ -0,0 +1,159 @@ + + + + + + + + + + + +

+ This tests that the appendChild method of the + Node interface works correctly. +

+

+ The test has been passed if six blue rectangles are displayed. + Each rectangle indicates the result of a different aspect of + appendChild behavior being tested: +

+
    +
  • + The first is a test of appending a newly created rect that + is not yet in the document tree. +
  • +
  • + The second is a test of appending a rect that is already + somewhere else in the document tree. In its initial position, it + inherits fill='red', and in its new position, it inherits + fill='blue'. +
  • +
  • + The third is a test of appending a rect to its current + parent. This results in the rect being moved to the + final position in the list of child nodes. In its initial + position, a red rect occludes this blue one. In its final + position, this blue rect occludes the red one. +
  • +
  • + The fourth is a test of appending a second element to the document + node. This results in a DOMException being thrown with code + HIERARCHY_REQUEST_ERR. If this exception is thrown, the + rect is changed from red to blue. +
  • +
  • + The fifth is a test of appending an element to one of its + descendant elements. This also results in a DOMException being + thrown with code HIERARCHY_REQUEST_ERR. If this exception is + thrown, the rect is changed from red to blue. +
  • +
  • + The sixth is a test of appending an element from another document + into this document. The element from the other document is obtained + by calling parseXML. A DOMException must be thrown with + code WRONG_DOCUMENT_ERR. If this exception is thrown, the + rect is changed from red to blue. +
  • +
+ + + $RCSfile: udom-dom-204-t.svg,v $ + + + + + + + + + Node.appendChild test + All six rectangles above must be blue. + + + + + + + + + + + + + + + + + $Revision: 1.6 $ + + + + + diff --git a/test/W3C_SVG_12_TinyTestSuite_beta/svg/udom-dom-206-t.svg b/test/W3C_SVG_12_TinyTestSuite_beta/svg/udom-dom-206-t.svg new file mode 100755 index 00000000..9640da53 --- /dev/null +++ b/test/W3C_SVG_12_TinyTestSuite_beta/svg/udom-dom-206-t.svg @@ -0,0 +1,142 @@ + + + + + + + + + + + +

+ This tests that the removeChild method of the + Node interface works correctly. +

+

+ The test has three sub-tests, for different removeChild + behavior, which consist of a paired rectangle and circle: +

+
    +
  • + The first is a test of successfully removing a single element + from the document. Initially, a red rectangle occludes a blue + rectangle. This red rectangle should then be removed by the + removeChild call, which results in the blue rectangle + becoming visible. The circle beneath it represents whether + removeChild returned the correct value (i.e., a reference + to the same red rectangle that was removed). If this return + value is incorrect, the circle will remain red. If it was + correct, the circle is changed to be blue. +
  • +
  • + The second is a test of successfully removing a subtree + from the document. The subtree is simply a g element + with a red rect as a child, which initially occludes + a blue rectangle. The group with the red rectangle should then be + removed by the removeChild call, which results in the blue + rectangle becoming visible. The circle beneath it represents + whether removeChild returned the correct value (i.e., a + reference to the g element that was removed). If this + return value is incorrect, the circle will remain red. If it was + correct, the circle is changed to be blue. +
  • +
  • + The third is a test of removeChild throwing a NOT_FOUND_ERR + DOMException when passed an element that is not a child of + the element on which the method was called. If the blue rectangle + remains, the implementation correctly did not remove it. The circle + indicates whether the exception was thrown as expected. If the + exception was not thrown, or the wrong is exception is thrown, + the circle will remain red. Otherwise, the circle will be changed + to be blue. +
  • +
+

+ The test has been passed if the top row shows three blue rectangles + and the bottom row shows three blue circles. +

+ + + $RCSfile: udom-dom-206-t.svg,v $ + + + + + + + + + Node.removeChild test + All three rects and three circles must be blue. + + + + remove single element + remove subtree + remove incorrect element + + + removeChild operation + removeChild return value + + + + + + + + + + + + + + + + + $Revision: 1.6 $ + + + + + diff --git a/test/W3C_SVG_12_TinyTestSuite_beta/svg/udom-dom-207-t.svg b/test/W3C_SVG_12_TinyTestSuite_beta/svg/udom-dom-207-t.svg new file mode 100755 index 00000000..8330228a --- /dev/null +++ b/test/W3C_SVG_12_TinyTestSuite_beta/svg/udom-dom-207-t.svg @@ -0,0 +1,116 @@ + + + + + + + + + + + +

+ This tests that the cloneNode method of the + Node interface works correctly. +

+

+ The test has two sub-tests: one for a deep clone, and + one for a shallow clone. +

+
    +
  • + The first row shows the deep clone sub-test. A group + containing three cascaded rectangles and a text + element are cloned and inserted into the document 180 + user units to the right. The group inherits fill and + stroke colors from a parent element, and where the cloned + copy of the group is inserted, different colors are + inherited. The original group inherits a blue fill and + a light blue stroke, while the cloned group inherits an + orange fill and a light orange stroke. The text in both copies + of the group have a white fill and no stroke. +
  • +
  • + The second row shows the shallow clone sub-test. A circle + element with two child set elements (that set the fill to + blue and the stroke to light blue) is shallow cloned and inserted + into the document 100 user units to the right. Since it is a + shallow clone, the cloned circle does not have the + set element children, and inherits an orange fill + and a light orange stroke. +
  • +
+ + + $RCSfile: udom-dom-207-t.svg,v $ + + + + + + + + + Node.cloneNode test + + + original + deep clone + original + shallow clone + + + + + + + + A + + + + + + + + + + + + + + + $Revision: 1.5 $ + + + + + diff --git a/test/W3C_SVG_12_TinyTestSuite_beta/svg/udom-dom-209-t.svg b/test/W3C_SVG_12_TinyTestSuite_beta/svg/udom-dom-209-t.svg new file mode 100755 index 00000000..f775261d --- /dev/null +++ b/test/W3C_SVG_12_TinyTestSuite_beta/svg/udom-dom-209-t.svg @@ -0,0 +1,120 @@ + + + + + + + + + + + +

+ This tests that the setAttribute and setAttributeNS + methods on the Element interface work correctly, for some + simple cases. +

+

+ There are five sub-tests (a rectangle for each). These are: +

+
    +
  • Sub-test 1: test setting known attributes in no namespace.
  • +
  • Sub-test 2: test setting unknown attributes in no namespace.
  • +
  • + Sub-test 3: test setting known attributes in a namespace, correctly using setAttributeNS with a namespace URI. +
  • +
  • + Sub-test 4: test setting known attributes in a namespace, incorrectly using setAttribute with a QName. +
  • +
  • Sub-test 5: test setting unknown attributes in a namespace.
  • +
+

+ The test has been passed if all five rectangles are blue. +

+ + + $RCSfile: udom-dom-209-t.svg,v $ + + + + + + + + + Element.setAttribute(NS) test + All five rectangles must be blue. + + + + + + + + + + + + + + + + + $Revision: 1.6 $ + + + + + diff --git a/test/W3C_SVG_12_TinyTestSuite_beta/svg/udom-dom-210-t.svg b/test/W3C_SVG_12_TinyTestSuite_beta/svg/udom-dom-210-t.svg new file mode 100755 index 00000000..c617a4dc --- /dev/null +++ b/test/W3C_SVG_12_TinyTestSuite_beta/svg/udom-dom-210-t.svg @@ -0,0 +1,162 @@ + + + + + + + + + + + +

+ This tests that the createElementNS method on the + Document interface works correctly, for each SVG Tiny 1.2 + element, and for some unknown elements. +

+

+ There are four sub-tests (a rectangle for each). The test has been + passed if all four rectangles are blue. +

+

+ Thes are: +

+
    +
  • Sub-test 1: test creating each SVG Tiny 1.2 element.
  • +
  • Sub-test 2: test creating an unknown element in no namespace.
  • +
  • Sub-test 3: test creating an unknown element in the SVG namespace.
  • +
  • Sub-test 4: test creating an unknown element in another namespace.
  • +
+

+ +

+ + + $RCSfile: udom-dom-210-t.svg,v $ + + + + + + + + + Document.createElement(NS) test + + SVG elements + Unknown element, + no namespace + Unknown element, + SVG namespace + Unknown element, + non-SVG namespace + + All four rectangles must be blue. + + + + + + + + + + $Revision: 1.8 $ + + + + + diff --git a/test/W3C_SVG_12_TinyTestSuite_beta/svg/udom-dom-211-t.svg b/test/W3C_SVG_12_TinyTestSuite_beta/svg/udom-dom-211-t.svg new file mode 100755 index 00000000..8f58bcf5 --- /dev/null +++ b/test/W3C_SVG_12_TinyTestSuite_beta/svg/udom-dom-211-t.svg @@ -0,0 +1,64 @@ + + + + + + + + + + + +

+ This performs a simple test on the documentElement attribute + on the Document interface. +

+

+ The test has been passed if there is a single green rectangle. +

+ + + $RCSfile: udom-dom-211-t.svg,v $ + + + + + + + + + Document.documentElement test + + + + + $Revision: 1.5 $ + + + + + diff --git a/test/W3C_SVG_12_TinyTestSuite_beta/svg/udom-dom-213-t.svg b/test/W3C_SVG_12_TinyTestSuite_beta/svg/udom-dom-213-t.svg new file mode 100755 index 00000000..3ab84f0b --- /dev/null +++ b/test/W3C_SVG_12_TinyTestSuite_beta/svg/udom-dom-213-t.svg @@ -0,0 +1,110 @@ + + + + + + + + + + + +

+ This tests that the firstElementChild, + lastElementChild, nextElementSibling and + previousElementSibling methods of the ElementTraversal + interface works correctly. +

+

+ The rectangle in the top left corner indicates whether all + of the attributes being tested have the expected values; green for + pass, red for fail. +

+ + + $RCSfile: udom-dom-213-t.svg,v $ + + + + + + + + + + ElementTraversal test + + + + + + + + + + + $Revision: 1.7 $ + + + + + diff --git a/test/W3C_SVG_12_TinyTestSuite_beta/svg/udom-event-201-t.svg b/test/W3C_SVG_12_TinyTestSuite_beta/svg/udom-event-201-t.svg new file mode 100755 index 00000000..55e380d4 --- /dev/null +++ b/test/W3C_SVG_12_TinyTestSuite_beta/svg/udom-event-201-t.svg @@ -0,0 +1,102 @@ + + + + + + + + + + + +

+ This tests that the methods of the EventTarget interface work + correctly. +

+

+ There are three sub-tests (a rectangle for each). These are: +

+
    +
  • Sub-test 1: test adding a listener with addEventListener.
  • +
  • + Sub-test 2: test adding a listener with addEventListener then + removing it with removeEventListener. +
  • +
  • + Sub-test 3: test adding a listener for an event type with incorrect + casing. +
  • +
+

+ The test has been passed if all three rectangles are blue. +

+ + + $RCSfile: udom-event-201-t.svg,v $ + + + + + + + + + EventTarget interface test + All three rectangles must be blue. + + + + + + + $Revision: 1.7 $ + + + + + diff --git a/test/W3C_SVG_12_TinyTestSuite_beta/svg/udom-event-202-t.svg b/test/W3C_SVG_12_TinyTestSuite_beta/svg/udom-event-202-t.svg new file mode 100755 index 00000000..f34f0ce5 --- /dev/null +++ b/test/W3C_SVG_12_TinyTestSuite_beta/svg/udom-event-202-t.svg @@ -0,0 +1,101 @@ + + + + + + + + + + + +

+ This tests that the target, currentTarget, + type and cancelable + attributes of the Event interface work correctly. +

+

+ The test consists of a single rectangle, which has event listeners + registered on it and all of its ancestor nodes. Clicking on the + rectangle will test that the attribute of the Event object + all have expected values, for each invocation of an event listener. + It also tests whether each of the event listeners is indeed invoked. +

+

+ The test has been passed if the rectangle becomes blue when clicking + it. +

+ + + $RCSfile: udom-event-202-t.svg,v $ + + + + + + + + + Event interface attributes test + Click the black rectangle above. + If it turns blue, the test has been passed. + + + + + $Revision: 1.8 $ + + + + + diff --git a/test/W3C_SVG_12_TinyTestSuite_beta/svg/udom-event-203-t.svg b/test/W3C_SVG_12_TinyTestSuite_beta/svg/udom-event-203-t.svg new file mode 100755 index 00000000..dff635f1 --- /dev/null +++ b/test/W3C_SVG_12_TinyTestSuite_beta/svg/udom-event-203-t.svg @@ -0,0 +1,97 @@ + + + + + + + + + + + +

+ This tests the stopPropagation method of the + Event interface. +

+

+ The test consists of a single rectangle, which has event listeners + registered on it and some of its ancestor nodes. Clicking on the + rectangle will dispatch the click event. The listener on + the parent node of the rect calls stopPropagation(). + The test checks that the listener for the grandparent node is not + dispatched. +

+

+ The test has been passed if the rectangle becomes blue when clicking + it. +

+ + + $RCSfile: udom-event-203-t.svg,v $ + + + + + + + + + Event.stopPropagation test + Click the rectangle above. + If it turns blue, the test has been passed. + + + + + + + + + $Revision: 1.8 $ + + + + + diff --git a/test/W3C_SVG_12_TinyTestSuite_beta/svg/udom-event-204-t.svg b/test/W3C_SVG_12_TinyTestSuite_beta/svg/udom-event-204-t.svg new file mode 100755 index 00000000..a8753443 --- /dev/null +++ b/test/W3C_SVG_12_TinyTestSuite_beta/svg/udom-event-204-t.svg @@ -0,0 +1,120 @@ + + + + + + + + + + + +

+ This tests the defaultPrevented attribute and the + preventDefault method of the Event interface. +

+

+ The test consists of a single rectangle, which has event listeners + registered on it and some of its ancestor nodes. Clicking on the + rectangle will dispatch the click event. The listener on + the grandparent node of the rect calls + preventDefault(). The test checks that the event object has + defaultPrevented set to true. +

+

+ The test has been passed if the rectangle becomes blue when clicking + it. +

+ + + $RCSfile: udom-event-204-t.svg,v $ + + + + + + + + + Event interface preventDefault/defaultPrevented test + Click the rectangle above. + If it turns blue, the test has been passed. + + + + + + + + + + + $Revision: 1.7 $ + + + + + diff --git a/test/W3C_SVG_12_TinyTestSuite_beta/svg/udom-event-205-t.svg b/test/W3C_SVG_12_TinyTestSuite_beta/svg/udom-event-205-t.svg new file mode 100755 index 00000000..790869e1 --- /dev/null +++ b/test/W3C_SVG_12_TinyTestSuite_beta/svg/udom-event-205-t.svg @@ -0,0 +1,164 @@ + + + + + + + + + + + +

+ This tests the clientX, clientY and button + attributes of the MouseEvent interface. +

+

+ The test consists of three rectangles, one for each of the three + common mouse buttons. To perform the test, the user must move the + mouse cursor over a rectangle, press the mouse button down, then + move the mouse cursor out of the rectangle. If after this the + rectangle becomes blue, then that sub-test has been passed, indicating + that the clientX, clientY and button + attributes of the MouseEvent object had expected values for + the mouseover, mousedown and mouseout + events. +

+

+ The test as a whole has been passed if, for each rectangle that + corresponds to a button on the pointing device that the user + agent supports, it becomes blue after performing the interaction. + If the user agent does not support a pointing device at all, + then the test is passed automatically without needing to + perform any interaction. +

+ + + $RCSfile: udom-event-205-t.svg,v $ + + + + + + + + + MouseEvent interface test + + For each rectangle below, move the mouse over the + rectangle, click, then move the mouse out of the rectangle. + The text underneath the rectangle indicates which mouse + button to use. + If each rectangle (for which there exists the corresponding + button that the user agent supports) turns blue, the test has been passed. + + + + + + primary + (usually left) + extra + (usually middle) + secondary + (usually right) + + + + + $Revision: 1.6 $ + + + + + diff --git a/test/W3C_SVG_12_TinyTestSuite_beta/svg/udom-event-207-t.svg b/test/W3C_SVG_12_TinyTestSuite_beta/svg/udom-event-207-t.svg new file mode 100755 index 00000000..c8286241 --- /dev/null +++ b/test/W3C_SVG_12_TinyTestSuite_beta/svg/udom-event-207-t.svg @@ -0,0 +1,93 @@ + + + + + + + + + + + +

+ This tests the data attribute of the TextEvent + interface. +

+

+ To perform the test, the user must input some text. This can be + from a variety of sources, such characters directly from a keyboard, + text pasted from the clipboard, input from an IME or input from a + speech recognizer. + Once the text has been input, the black rectangle should turn blue to + indicate that the test has been passed. In addition, the + text element below the rectangle will show the text that was + input. +

+

+ If the rectangle becomes red, the test failed because the + data attribute had an invalid value. If the rectangle + remains black, the test failed because the textInput + event is not supported. If the text string does not appear, + or does not match the input text, the test failed because the + textInput event is not supported correctly (e.g. it + only tests for any keyboard activity). +

+ + + $RCSfile: udom-event-207-t.svg,v $ + + + + + + + + + TextEvent interface test + Input some text. The rectangle below should become blue + to indicate that the test has been passed. + + + Text input: [] + + + + + $Revision: 1.9 $ + + + + + diff --git a/test/W3C_SVG_12_TinyTestSuite_beta/svg/udom-event-208-t.svg b/test/W3C_SVG_12_TinyTestSuite_beta/svg/udom-event-208-t.svg new file mode 100755 index 00000000..d0e38ff6 --- /dev/null +++ b/test/W3C_SVG_12_TinyTestSuite_beta/svg/udom-event-208-t.svg @@ -0,0 +1,115 @@ + + + + + + + + + + + +

+ This tests the detail attribute of the UIEvent + interface and the dispatch order of mouse events when clicking. +

+

+ To perform the test, the user must triple click on the circle. + The nine rectangles to the right of the circle indicate whether the + detail attribute of the UIEvent object was correct + for the mousedown, click and mouseup + events. The first row of rectangles checks the three events when + detail = 1, the second row for detail = 2 and + the third row for detail = 3. +

+

+ In addition, the circle should remain black after the nine rectangles + have become blue. If the circle becomes red, it indicates that + the test failed because the mousedown, click and + mouseup events were fired in an incorrect order. +

+

+ The test has been passed if, after triple clicking the circle, all nine + rectangles are blue and the circle remains black. +

+ + + $RCSfile: udom-event-208-t.svg,v $ + + + + + + + + + UIEvent interface and mouse event dispatch order test + Triple click the circle. The nine rectangles below should turn blue and the + circle should remain black to indicate that the test has been passed. + + + + + + + + + + + + + + + + $Revision: 1.6 $ + + + + + diff --git a/test/W3C_SVG_12_TinyTestSuite_beta/svg/udom-event-209-t.svg b/test/W3C_SVG_12_TinyTestSuite_beta/svg/udom-event-209-t.svg new file mode 100755 index 00000000..52eb14bd --- /dev/null +++ b/test/W3C_SVG_12_TinyTestSuite_beta/svg/udom-event-209-t.svg @@ -0,0 +1,101 @@ + + + + + + + + + + + +

+ This tests that the target, currentTarget, + type and cancelable + attributes of the Event interface work correctly. It + is the same as udom-event-202-t except that the event listener + is given by an ECMAScript object with a handleEvent + property, rather than by an ECMAScript Function object. +

+

+ The test consists of a single rectangle, which has event listeners + registered on it and all of its ancestor nodes. Clicking on the + rectangle will test that the attribute of the Event object + all have expected values, for each invocation of an event listener. + It also tests whether each of the event listeners is indeed invoked. +

+

+ The test has been passed if the rectangle becomes blue when clicking + it. +

+ + + $RCSfile: udom-event-209-t.svg,v $ + + + + + + + + + Event interface attributes test + Click the black rectangle above. + If it turns blue, the test has been passed. + + + + + $Revision: 1.8 $ + + + + + diff --git a/test/W3C_SVG_12_TinyTestSuite_beta/svg/udom-event-210-t.svg b/test/W3C_SVG_12_TinyTestSuite_beta/svg/udom-event-210-t.svg new file mode 100755 index 00000000..a9bd77a1 --- /dev/null +++ b/test/W3C_SVG_12_TinyTestSuite_beta/svg/udom-event-210-t.svg @@ -0,0 +1,79 @@ + + + + + + + + + + + +

+ The test at first should show a green rectangle. +

+

+ Trigger some mousewheel events, for example by using a mouse with a scrollwheel + or a jog dial. + The test has passed if, when you scroll down, the rectangle rotates clockwise; + and when you scroll up, the rectangle rotates counter clockwise. + For reference the values of the Mousewheel event are displayed as text. +

+ + + $RCSfile: udom-event-210-t.svg,v $ + + + + + + + + + + + + + 0) + angle++; + else + angle--; + if(angle<0) + angle=360; + if(angle>360) + angle=0; + ]]> + + + Mouseover the rect and use the scrollwheel + + + + + + + + $Revision: 1.6 $ + + + + + \ No newline at end of file diff --git a/test/W3C_SVG_12_TinyTestSuite_beta/svg/udom-glob-201-t.svg b/test/W3C_SVG_12_TinyTestSuite_beta/svg/udom-glob-201-t.svg new file mode 100755 index 00000000..009090e6 --- /dev/null +++ b/test/W3C_SVG_12_TinyTestSuite_beta/svg/udom-glob-201-t.svg @@ -0,0 +1,87 @@ + + + + + + + + + + + +

+ This tests that the GlobalException interface is present + and that all of its constant fields exist and are correct. +

+

+ The rectangle in the top left corner indicates whether all + of the constant fields are correct; green for pass, red for fail. +

+ + + $RCSfile: udom-glob-201-t.svg,v $ + + + + + + + + + GlobalException interface test + + + + + $Revision: 1.6 $ + + + + + diff --git a/test/W3C_SVG_12_TinyTestSuite_beta/svg/udom-glob-202-t.svg b/test/W3C_SVG_12_TinyTestSuite_beta/svg/udom-glob-202-t.svg new file mode 100755 index 00000000..1f8a3d2f --- /dev/null +++ b/test/W3C_SVG_12_TinyTestSuite_beta/svg/udom-glob-202-t.svg @@ -0,0 +1,56 @@ + + + + + + + + + + + +

+ This tests that the gotoLocation method is present + and works for a simple case. +

+

+ Once loaded, the SVG file will be replaced by the words success. Note that the + contents of this file may be displayed for a short interval until the new file is loaded. +

+ + + $RCSfile: udom-glob-202-t.svg,v $ + + + + + + + + + gotoLocation test + FAIL + + + + + $Revision: 1.4 $ + + + + + diff --git a/test/W3C_SVG_12_TinyTestSuite_beta/svg/udom-glob-203-t.svg b/test/W3C_SVG_12_TinyTestSuite_beta/svg/udom-glob-203-t.svg new file mode 100755 index 00000000..058079c4 --- /dev/null +++ b/test/W3C_SVG_12_TinyTestSuite_beta/svg/udom-glob-203-t.svg @@ -0,0 +1,234 @@ + + + + + + + + + + + +

+ This SVG will test the SVGGlobal's postURL() callback status. The test + is passed if, on each row, both squares have the same color. +

+

+ There are multiple calls to postURL(), each with a different expected + HTTP return code. +

+

+ The test works in conjunction with a JSP servlet called HttpCodeTest, + which will simulate the various HTTP return codes, based on the query + parameter from the client. +

+

+ For each call to postURL(), two squares will appear. The first square + represents the "expected" status code. The second square represents the + "actual" status code that the callback function receives. The status + codes are color-coded. +

+

+ Note that the status codes may take some time to update, due to the + asynchronous nature of the postURL() callback. Tester should allow some + time for all postURL() calls to receive ther return codes. The latency + will vary depending on the network environment, but normally, it should + only be a couple minutes at most. +

+

+ 100-ranges status codes are not tested here because the spec states that + these status codes should be ignored. It is not clear what the expected + callback status should be in this case. +

+ + + $RCSfile: udom-glob-203-t.svg,v $ + + + + + + + + + + Testing SVGGlobal postURL's callback status + + + expected + actual + + + + + + + no status + + + + status=false + + + + status=true + + + + Callbacks not yet finished + + + $Revision: 1.5 $ + + + + + diff --git a/test/W3C_SVG_12_TinyTestSuite_beta/svg/udom-glob-204-t.svg b/test/W3C_SVG_12_TinyTestSuite_beta/svg/udom-glob-204-t.svg new file mode 100755 index 00000000..bf71ac65 --- /dev/null +++ b/test/W3C_SVG_12_TinyTestSuite_beta/svg/udom-glob-204-t.svg @@ -0,0 +1,229 @@ + + + + + + + + + + + +

+ This SVG will test the SVGGlobal's getURL() callback status. The test is + passed if, on each row, both squares have the same color. +

+

+ There are multiple calls to getURL(), each with a different expected + HTTP return code. +

+

+ The test works in conjunction with a JSP servlet called HttpCodeTest, + which will simulate the various HTTP return codes, based on the query + parameter from the client. +

+

+ For each call to getURL(), two squares will appear. The first square + represents the "expected" status code. The second square represents the + "actual" status code that the callback function receives. The status + codes are color-coded. +

+

+ Note that the status codes may take some time to update, due to the + asynchronous nature of the getURL() callback. Tester should allow some + time for all getURL() calls to receive ther return codes. The latency + will vary depending on the network environment, but normally, it should + only be a couple minutes at most. Once all calls have returned, the text + "Callbacks now finished" will show, in green. +

+

+ 100-ranges status codes are not tested here because the spec states that + these status codes should be ignored. It is not clear what the expected + callback status should be in this case. +

+ + + $RCSfile: udom-glob-204-t.svg,v $ + + + + + + + + + + Testing SVGGlobal getURL's callback status + + + expected + actual + + + + + + + no status + + + + status=false + + + + status=true + + + + Callbacks not yet finished + + + $Revision: 1.6 $ + + + + + diff --git a/test/W3C_SVG_12_TinyTestSuite_beta/svg/udom-node-201-t.svg b/test/W3C_SVG_12_TinyTestSuite_beta/svg/udom-node-201-t.svg new file mode 100755 index 00000000..87daabd2 --- /dev/null +++ b/test/W3C_SVG_12_TinyTestSuite_beta/svg/udom-node-201-t.svg @@ -0,0 +1,79 @@ + + + + + + + + + + + +

+ Test with cloneNode on a use element. The red rect is cloned directly on the rect element. + The yellow rect is cloned on the use element. Two red and two yellow rects must be showing. +

+ + + $RCSfile: udom-node-201-t.svg,v $ + + + + + + + + + + + + + + + + + + + + + Test with cloneNode on a use element. + Two red and two yellow rects must be visible! + Rect + Used rect + Clone + Clone + + + $Revision: 1.4 $ + + + + + + diff --git a/test/W3C_SVG_12_TinyTestSuite_beta/svg/udom-node-202-t.svg b/test/W3C_SVG_12_TinyTestSuite_beta/svg/udom-node-202-t.svg new file mode 100755 index 00000000..0b951cd9 --- /dev/null +++ b/test/W3C_SVG_12_TinyTestSuite_beta/svg/udom-node-202-t.svg @@ -0,0 +1,85 @@ + + + + + + + + + + + +

+ Testing CloneNode with different values of the "deep" parameter. + In this test an image with animations inside is cloned twice, one which should keep the animations and the second that should only clone image node. + The first and second image should animate from opacity 0 and width 20 to opacity 1 and width 100. The third image should not animate. +

+ + + $RCSfile: udom-node-202-t.svg,v $ + + + + + + + + + + + + + + Non cloned image + + + + Cloned image with Children + + + + Cloned image Only + + + + + + + $Revision: 1.5 $ + + + + + diff --git a/test/W3C_SVG_12_TinyTestSuite_beta/svg/udom-node-204-t.svg b/test/W3C_SVG_12_TinyTestSuite_beta/svg/udom-node-204-t.svg new file mode 100755 index 00000000..39c642de --- /dev/null +++ b/test/W3C_SVG_12_TinyTestSuite_beta/svg/udom-node-204-t.svg @@ -0,0 +1,81 @@ + + + + + + + + + + + +

+ Test basic uDOM support with node (parentNode) and trait access. + The svg shold look the same on both sides and the text + should read "OK". +

+ + + $RCSfile: udom-node-204-t.svg,v $ + + + + + + + + + + + + + parentNode on Node + reference + scripted + + Error! + + + + + + + + + + $Revision: 1.5 $ + + + + + diff --git a/test/W3C_SVG_12_TinyTestSuite_beta/svg/udom-over-01-t.svg b/test/W3C_SVG_12_TinyTestSuite_beta/svg/udom-over-01-t.svg new file mode 100755 index 00000000..e80939a3 --- /dev/null +++ b/test/W3C_SVG_12_TinyTestSuite_beta/svg/udom-over-01-t.svg @@ -0,0 +1,100 @@ + + + + + + + + + + + +

+ Verify the basic capability to handle the SVG DOM API. + The test is composed of a top level svg element with an 'onload' event handler and a rect element. + Both the svg and the rect elements have an identifier. The 'onload' handler invokes SVG-specific DOM API methods which use these identifiers. +

+

+ First, the handler gets the SVG root element and checks it has the expected identifier. + Then, the handler accesses the coordinates of the rect element and uses them to build a 'shadow' rectangle under the existing one. + Finally, the 'shadow' rectangle is created using the createElementNS method. +

+

+ If an implementation supports the ECMAScript DOM binding for SVG, then the image must show the following text: + "This document's root identifier is: svg-root" and a red rectangle with a black shadow rectangle. Otherwise, only a red rectangle will show. +

+

The rendered picture should match the reference image.

+ + + $RCSfile: udom-over-01-t.svg,v $ + + + + + + + + + + domTest(evt); + + + + + + $Revision: 1.8 $ + + + + + diff --git a/test/W3C_SVG_12_TinyTestSuite_beta/svg/udom-smil-201-t.svg b/test/W3C_SVG_12_TinyTestSuite_beta/svg/udom-smil-201-t.svg new file mode 100755 index 00000000..cf3dd426 --- /dev/null +++ b/test/W3C_SVG_12_TinyTestSuite_beta/svg/udom-smil-201-t.svg @@ -0,0 +1,117 @@ + + + + + + + + + + + +

+ This tests the beginElement and beginElementAt + methods of the ElementTimeControl interface. +

+

+ The test consists of four animated rectangles, one pink, three blue. + To perform the test, the user must click the pink rectangle. + The pink rectangle is set to animate with begin='mousedown', + while the three blue rectangles have begin='indefinite', + and are begun with calls to methods on the ElementTimeControl + interface: +

+
    +
  • + The first blue rectangle is begun with .beginElement(). +
  • +
  • + The second blue rectangle is begun with .beginElementAt(0). +
  • +
  • + The third blue rectangle is begun with .beginElementAt(2.5). +
  • +
+

+ The test has been passed if the three blue rectangles reach their + destination at the same time as the pink rectangle. +

+ + + $RCSfile: udom-smil-201-t.svg,v $ + + + + + + + + + ElementTimeControl.beginElement(At) test 1 + Click the pink rectangle. + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + $Revision: 1.5 $ + + + + + diff --git a/test/W3C_SVG_12_TinyTestSuite_beta/svg/udom-smil-202-t.svg b/test/W3C_SVG_12_TinyTestSuite_beta/svg/udom-smil-202-t.svg new file mode 100755 index 00000000..5bc753da --- /dev/null +++ b/test/W3C_SVG_12_TinyTestSuite_beta/svg/udom-smil-202-t.svg @@ -0,0 +1,135 @@ + + + + + + + + + + + +

+ This tests the beginElement and beginElementAt + methods of the ElementTimeControl interface, with different + begin instance time lists. +

+

+ The test has been passed if all the three rectangles and the circle + become blue one second after clicking the circle. +

+

+ The test consists of a pink circle and three animated rectangles. + To perform the test, the user must click the pink circle. + The three rectangles all have animations that begin='0s' + and run indefinitely, and are also set to restart='none'. + Clicking the circle will attempt to begin the three animations as follows: +

+
    +
  • + The first rectangle's animation has .beginElement() called. +
  • +
  • + The second rectangle's animation has .beginElementAt(0) called. +
  • +
  • + The third rectangle's animation has .beginElementAt(0.5) called. +
  • +
+

+ All three animations should not begin with these method calls, since + the animations have already started and are set to restart='none'. + If an animation does restart, its endEvent will be captured + and the rectangle will become red. If the animation does not restart, + it will become blue one second after clicking the pink circle. +

+

+ In addition, the circle should become blue one second after clicking + it. This indicates that the implementation correctly dispatches an + endEvent when an element restarts. +

+ + + $RCSfile: udom-smil-202-t.svg,v $ + + + + + + + + + ElementTimeControl.beginElement(At) test 2 + Click the pink circle. The test has passed if the rectangles + and the circle become blue one second after clicking the circle. + + + + + + + + + + + + + + + + + + + + + + + + $Revision: 1.7 $ + + + + + diff --git a/test/W3C_SVG_12_TinyTestSuite_beta/svg/udom-smil-203-t.svg b/test/W3C_SVG_12_TinyTestSuite_beta/svg/udom-smil-203-t.svg new file mode 100755 index 00000000..abf81b7f --- /dev/null +++ b/test/W3C_SVG_12_TinyTestSuite_beta/svg/udom-smil-203-t.svg @@ -0,0 +1,125 @@ + + + + + + + + + + + +

+ This tests the endElement and endElementAt + methods of the ElementTimeControl interface. +

+

+ The test consists of four animated rectangles, one pink, three blue. + To perform the test, the user must click the pink rectangle. + The pink rectangle is set to animate with begin='mousedown'. + The three blue rectangles have two animations each: the first is + an animation element that moves the rectangle along its + corresponding line, with begin='0s' dur='5s'. After the + animation element is a set element with + end='indefinite'. Each set animation is ended with + calls to methods on the ElementTimeControl interface: +

+
    +
  • + The first blue rectangle is ended with .endElement(). +
  • +
  • + The second blue rectangle is ended with .endElementAt(0). +
  • +
  • + The third blue rectangle is end with .endElementAt(2.5). +
  • +
+

+ The test has been passed if the first two blue rectangles follow the + animation of the pink rectangle, and the third blue rectangle follows + the animation of the pink rectangle after 2.5 seconds (i.e., half way + through the pink rectangle's animation). +

+ + + $RCSfile: udom-smil-203-t.svg,v $ + + + + + + + + + ElementTimeControl.endElement(At) test + Click the pink rectangle. + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + $Revision: 1.5 $ + + + + + diff --git a/test/W3C_SVG_12_TinyTestSuite_beta/svg/udom-svg-201-t.svg b/test/W3C_SVG_12_TinyTestSuite_beta/svg/udom-svg-201-t.svg new file mode 100755 index 00000000..5db52f8f --- /dev/null +++ b/test/W3C_SVG_12_TinyTestSuite_beta/svg/udom-svg-201-t.svg @@ -0,0 +1,78 @@ + + + + + + + + + + + +

+ This tests that the SVGException interface is present + and that all of its constant fields exist and are correct. +

+

+ The rectangle in the top left corner indicates whether all + of the constant fields are correct; green for pass, red for fail. +

+ + + $RCSfile: udom-svg-201-t.svg,v $ + + + + + + + + + SVGException interface test + + + + + $Revision: 1.5 $ + + + + + diff --git a/test/W3C_SVG_12_TinyTestSuite_beta/svg/udom-svg-202-t.svg b/test/W3C_SVG_12_TinyTestSuite_beta/svg/udom-svg-202-t.svg new file mode 100755 index 00000000..d66038fa --- /dev/null +++ b/test/W3C_SVG_12_TinyTestSuite_beta/svg/udom-svg-202-t.svg @@ -0,0 +1,58 @@ + + + + + + + + + + + +

+ This tests that the global attribute of the + SVGException interface does refer to the global script context. +

+

+ The rectangle in the top left corner indicates whether the test + passed; green for pass, red for fail. +

+ + + $RCSfile: udom-svg-202-t.svg,v $ + + + + + + + + + SVGDocument.global test + + + + + $Revision: 1.5 $ + + + + + diff --git a/test/W3C_SVG_12_TinyTestSuite_beta/svg/udom-svg-204-t.svg b/test/W3C_SVG_12_TinyTestSuite_beta/svg/udom-svg-204-t.svg new file mode 100755 index 00000000..6c44768d --- /dev/null +++ b/test/W3C_SVG_12_TinyTestSuite_beta/svg/udom-svg-204-t.svg @@ -0,0 +1,148 @@ + + + + + + + + + + + +

+ This tests that the correspondingElement and + correspondingUseElement attributes of the + SVGElementInstance interface have expected values. +

+

+ The test consists of a single rectangle that is a descendant + of a number of g elements and a couple of nested + use shadow trees. When the user clicks the rectangle, + a mousedown event is dispatched, which travels up + the nested shadow trees. If the correspondingElement and + correspondingUseElement attributes of the + SVGElementInstance object (which is the currentTarget + of the event) are correct, the rectangle becomes blue. Otherwise, + it becomes red. +

+ + + $RCSfile: udom-svg-204-t.svg,v $ + + + + + + + + + SVGElementInstance interface test + Click the rectangle. The test has passed if it turns blue. + + + + + + + + + + + + + + + + + + + + + + $Revision: 1.7 $ + + + + + diff --git a/test/W3C_SVG_12_TinyTestSuite_beta/svg/udom-svg-205-t.svg b/test/W3C_SVG_12_TinyTestSuite_beta/svg/udom-svg-205-t.svg new file mode 100755 index 00000000..d3a828ea --- /dev/null +++ b/test/W3C_SVG_12_TinyTestSuite_beta/svg/udom-svg-205-t.svg @@ -0,0 +1,86 @@ + + + + + + + + + + + +

+ This tests that the NAV_* constants on the + SVGSVGElement exist. +

+

+ The rectangle in the top left corner indicates whether all + of the constant fields are correct; green for pass, red for fail. +

+ + + $RCSfile: udom-svg-205-t.svg,v $ + + + + + + + + + SVGSVGElement NAV_ constants test + + + + + $Revision: 1.5 $ + + + + + diff --git a/test/W3C_SVG_12_TinyTestSuite_beta/svg/udom-svg-206-t.svg b/test/W3C_SVG_12_TinyTestSuite_beta/svg/udom-svg-206-t.svg new file mode 100755 index 00000000..68e9f328 --- /dev/null +++ b/test/W3C_SVG_12_TinyTestSuite_beta/svg/udom-svg-206-t.svg @@ -0,0 +1,100 @@ + + + + + + + + + + + +

+ This tests setting and getting the currentScale attribute of + the SVGSVGElement interface. +

+

+ There are three sub-tests, each represented by a rectangle (blue for + pass, red for fail). The test has been passed if all three rectangles are blue, and + the test slide is shown at 90% of its regular size (i.e., the + range (0, 0) -> (533.333, 400) user units is shown). +

+ +

+ The first sub-test checks that the initial value of + currentScale is 1. The second checks setting + currentScale to a valid value (in this case, 0.9), and + looks at the resulting screenCTM. The third exercises retrieving + the newly set value. +

+ + + $RCSfile: udom-svg-206-t.svg,v $ + + + + + + + + + SVGSVGElement.currentScale test + All three rectangles must be blue. + + + Initial value + + + Set value + + + Get new value + + + + + + $Revision: 1.7 $ + + + + + diff --git a/test/W3C_SVG_12_TinyTestSuite_beta/svg/udom-svg-208-t.svg b/test/W3C_SVG_12_TinyTestSuite_beta/svg/udom-svg-208-t.svg new file mode 100755 index 00000000..4b8bb4e8 --- /dev/null +++ b/test/W3C_SVG_12_TinyTestSuite_beta/svg/udom-svg-208-t.svg @@ -0,0 +1,257 @@ + + + + + + + + + + + +

+ Test on SMIL with scripting. The animated bar should pause for 3s at 1.5s and resume at 4.5s. + The smaller rects should change color at the indicated times. +

+ + + $RCSfile: udom-svg-208-t.svg,v $ + + + + + + + + + repeatCount + + 0 + 1 + 5 + 6 + 7 + + + pause 3s + + + + + + + + + + + + + + + + + + + + + + + + + repeatDur + + 0 + 1 + 5 + 6 + 7 + + + pause 3s + + + + + + + + + + + + + + + + + + + + + + + + end-3 + end-2 + A.begin-1 + repeat(1) + repeat(2) + repeat(3) + repeat(4) + end-6 + + + + + >1 + + + + + + A + >5 + + + + + + >1 + + + + + + >1 + + + + + + >5 + + + + + + >6 + + + + + + never + + + + + + >=0 + + + + + + + + >1 + + + + + + >5 + + + + + + >1 + + + + + + >1 + + + + + + >5 + + + + + + >6 + + + + + + never + + + + + + >=0 + + + + + + + + + + document.getElementById("anim_1").pauseElement(); + document.getElementById("anim_2").pauseElement(); + + + + document.getElementById("anim_1").resumeElement(); + document.getElementById("anim_2").resumeElement(); + + + + + + 01234567(s) + + + + + + + + + $Revision: 1.3 $ + + + + + diff --git a/test/W3C_SVG_12_TinyTestSuite_beta/svg/udom-svg-209-t.svg b/test/W3C_SVG_12_TinyTestSuite_beta/svg/udom-svg-209-t.svg new file mode 100755 index 00000000..b3660408 --- /dev/null +++ b/test/W3C_SVG_12_TinyTestSuite_beta/svg/udom-svg-209-t.svg @@ -0,0 +1,416 @@ + + + + + + + + + + + +

+ Test on SMIL with scripting. Animation should match the indicated begin- repeat- and end-values +

+ + + $RCSfile: udom-svg-209-t.svg,v $ + + + + + + + + + + + + + + begin + 0-1s + 5-6s + + repeat(1) + 1-2s + 7.5-8.5s + + repeat(2) + never + + repeat(3) + never + + end + 3-4s + 8-9s + + + Pause 5s + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + Scripted begin and end + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + document.getElementById("anim_4").beginElement(); + document.getElementById("anim_5").beginElement(); + document.getElementById("anim_6").beginElement(); + + + + document.getElementById("anim_4").endElement(); + document.getElementById("anim_5").endElement(); + document.getElementById("anim_6").endElement(); + + + + + + + + + + + document.getElementById("anim_1").pauseElement(); + document.getElementById("anim_2").pauseElement(); + document.getElementById("anim_3").pauseElement(); + document.getElementById("anim_4").pauseElement(); + document.getElementById("anim_5").pauseElement(); + document.getElementById("anim_6").pauseElement(); + + + + document.getElementById("anim_1").resumeElement(); + document.getElementById("anim_2").resumeElement(); + document.getElementById("anim_3").resumeElement(); + document.getElementById("anim_4").resumeElement(); + document.getElementById("anim_5").resumeElement(); + document.getElementById("anim_6").resumeElement(); + + + + + + 0123456789(s) + + + + + + + + + $Revision: 1.3 $ + + + + + \ No newline at end of file diff --git a/test/W3C_SVG_12_TinyTestSuite_beta/svg/udom-svg-210-t.svg b/test/W3C_SVG_12_TinyTestSuite_beta/svg/udom-svg-210-t.svg new file mode 100755 index 00000000..e7d09d2a --- /dev/null +++ b/test/W3C_SVG_12_TinyTestSuite_beta/svg/udom-svg-210-t.svg @@ -0,0 +1,156 @@ + + + + + + + + + + + +

+ Test on SMIL with scripting. Animation should match the indicated begin- and end-values, + and should pause for three seconds when the pause-sign turn red. +

+ + + $RCSfile: udom-svg-210-t.svg,v $ + + + + + + + + + + + + + + restart: whenNotActive + + begin + end + + + begin: 0;3;5.5 + + 0-1 + 5.5-6.5 + 5-6 + 7.5-8.5 + + + + + + + + + + + + + + + + + + + + + + + begin: 0;3;5.5 + end: 2.5;9 + + 0-1 + 3-4 + 2.5-3.5 + 6-7 + + + + + + + + + + + + + + + + + + + + + + + + + + + + + Pause 3s + + + + + + + document.getElementById("anim_1").pauseElement(); + document.getElementById("anim_2").pauseElement(); + + + + document.getElementById("anim_1").resumeElement(); + document.getElementById("anim_2").resumeElement(); + + + + + + 0123456789(s) + + + + + + + + + $Revision: 1.4 $ + + + + + diff --git a/test/W3C_SVG_12_TinyTestSuite_beta/svg/udom-svg-211-t.svg b/test/W3C_SVG_12_TinyTestSuite_beta/svg/udom-svg-211-t.svg new file mode 100755 index 00000000..0ee14448 --- /dev/null +++ b/test/W3C_SVG_12_TinyTestSuite_beta/svg/udom-svg-211-t.svg @@ -0,0 +1,152 @@ + + + + + + + + + + + +

+ Test on SMIL with scripting. Animation should match the indicated begin- and end-values, + and should pause for three seconds when the pause-sign turns red. restart is set to "never" so should NOT restart. +

+ + + $RCSfile: udom-svg-211-t.svg,v $ + + + + + + + + + + + + + + restart: never + + begin + end + + + begin: 0;3;5.5 + + 0-1 + 5-6 + + + + + + + + + + + + + + + + + + + + + + + begin: 0;3;5.5 + end: 2.5;9 + + 0-1 + 2.5-3.5 + + + + + + + + + + + + + + + + + + + + + + + + + + + + + Pause 3s + + + + + + + document.getElementById("anim_1").pauseElement(); + document.getElementById("anim_2").pauseElement(); + + + + document.getElementById("anim_1").resumeElement(); + document.getElementById("anim_2").resumeElement(); + + + + + + 0123456789(s) + + + + + + + + + $Revision: 1.5 $ + + + + + diff --git a/test/W3C_SVG_12_TinyTestSuite_beta/svg/udom-svg-213-t.svg b/test/W3C_SVG_12_TinyTestSuite_beta/svg/udom-svg-213-t.svg new file mode 100755 index 00000000..b7a011d9 --- /dev/null +++ b/test/W3C_SVG_12_TinyTestSuite_beta/svg/udom-svg-213-t.svg @@ -0,0 +1,111 @@ + + + + + + + + + + + +

+ This tests that the getCurrentTime method of the + SVGSVGElement interface returns sensible values. +

+

+ The test shows three rectangles. The test is passed if the first rectangle is blue, and after + clicking the second rectangle it turns blue, and after clicking + the third rectangle it also turns blue. +

+

+ The first one represents + whether calling getCurrentTime before the load + event is dispatched returns 0. Clicking the second rectangle + (which is red to begin with) then tests that the current time is + greater than 0. Finally, clicking the third rectangle (which + also is red to begin with) tests that the current time is greater + than the time at which the second rectangle was clicked. + +

+ + + $RCSfile: udom-svg-213-t.svg,v $ + + + + + + + + + SVGSVGElement.getCurrentTime() test + + + + + + + + + + Click this rectangle. + Then click this one. + + + + + $Revision: 1.10 $ + + + + + diff --git a/test/W3C_SVG_12_TinyTestSuite_beta/svg/udom-svg-216-t.svg b/test/W3C_SVG_12_TinyTestSuite_beta/svg/udom-svg-216-t.svg new file mode 100755 index 00000000..c2ff44c9 --- /dev/null +++ b/test/W3C_SVG_12_TinyTestSuite_beta/svg/udom-svg-216-t.svg @@ -0,0 +1,68 @@ + + + + + + + + + + + +

+ This tests the basic functionality of + SVGSVGElement.createSVGPath(). It + verifies that the returned path object has no path segments + initially, that a path segment can be added to the path object, + and that the object returned is actually + instanceof SVGPath. +

+

+ The test is passed if the rectangle is green. +

+ + + $RCSfile: udom-svg-216-t.svg,v $ + + + + + + + + + SVGSVGElement.createSVGPath() test + + + + + $Revision: 1.4 $ + + + + + diff --git a/test/W3C_SVG_12_TinyTestSuite_beta/svg/udom-svg-218-t.svg b/test/W3C_SVG_12_TinyTestSuite_beta/svg/udom-svg-218-t.svg new file mode 100755 index 00000000..2dc8eb4a --- /dev/null +++ b/test/W3C_SVG_12_TinyTestSuite_beta/svg/udom-svg-218-t.svg @@ -0,0 +1,168 @@ + + + + + + + + + + + +

+ This test some more complex invocations of SVGGlobal.getURL(). +

+

+ The test contains 3 subtests. The test is passed if all 3 rectangles + relating to a respective subtest turn green upon test completion. +

+

+ The first subtest tests fetching a text/plain resource via a 3xx + redirection status code using SVGGlobal.getURL(). +

+

+ The second subtest tests a text/plain resource returned with status + code 403 using SVGGlobal.getURL(). +

+

+ The third subtest tests a text/plain resource returned with status + code 500 using SVGGlobal.getURL(). +

+ + + $RCSfile: udom-svg-218-t.svg,v $ + + + + + + + + + More SVGSVGElement.getURL() tests + + + + + Fetch a text/plain resource via a 3xx + redirection status code + + A text/plain resource returned with + status code 403. + + A text/plain resource returned with + status code 500. + + + + Test Running... + + + + + $Revision: 1.5 $ + + + + + diff --git a/test/W3C_SVG_12_TinyTestSuite_beta/svg/udom-svg-220-t.svg b/test/W3C_SVG_12_TinyTestSuite_beta/svg/udom-svg-220-t.svg new file mode 100755 index 00000000..c5c9884a --- /dev/null +++ b/test/W3C_SVG_12_TinyTestSuite_beta/svg/udom-svg-220-t.svg @@ -0,0 +1,231 @@ + + + + + + + + + + + +

+ This tests trait access methods on the TraitAccess interface + for the 'accumulate' trait. Each trait getter and setter method is called on + each applicable SVG Tiny 1.2 element. +

+

+ The test is passed if the rendering matches the reference rendering. + The rectangle must be blue, and there must be a blue circle to the + right of it whose diameter is the same as the height of the rectangle. + There must be no text displayed below the rectangle. +

+ + + $RCSfile: udom-svg-220-t.svg,v $ + + + + + + + + + Trait access test: accumulate + + + + + + + $Revision: 1.10 $ + + + + + diff --git a/test/W3C_SVG_12_TinyTestSuite_beta/svg/udom-svg-224-t.svg b/test/W3C_SVG_12_TinyTestSuite_beta/svg/udom-svg-224-t.svg new file mode 100755 index 00000000..ac677ce5 --- /dev/null +++ b/test/W3C_SVG_12_TinyTestSuite_beta/svg/udom-svg-224-t.svg @@ -0,0 +1,251 @@ + + + + + + + + + + + +

+ This tests trait access methods on the TraitAccess interface + for the 'begin' trait. Each trait getter and setter method is called on + each applicable SVG Tiny 1.2 element. +

+

+ The test is passed if, five seconds after the document begins: +

+
    +
  • the rectangle is blue,
  • +
  • + there is a blue circle to the right of the rectangle whose + diameter is the same as the height of the rectangle, +
  • +
  • an animation showing rotating rectangles to the right of the circle begins,
  • +
  • a video showing a dog to the right of the animation begins, and
  • +
  • an audio clip begins playing.
  • +
+

+ Also, there must be no text displayed inside the rounded green rectangle. +

+ + + $RCSfile: udom-svg-224-t.svg,v $ + + + + + + + + + Trait access test: begin + + + + + + + + $Revision: 1.6 $ + + + + + diff --git a/test/W3C_SVG_12_TinyTestSuite_beta/svg/udom-svg-225-t.svg b/test/W3C_SVG_12_TinyTestSuite_beta/svg/udom-svg-225-t.svg new file mode 100755 index 00000000..3098de43 --- /dev/null +++ b/test/W3C_SVG_12_TinyTestSuite_beta/svg/udom-svg-225-t.svg @@ -0,0 +1,253 @@ + + + + + + + + + + + +

+ This test verifies that the CTM fetched by getScreenCTM is a snapshot value of the current animated state. + + The CTM values are inspected on 'beginEvent', 'endEvent' and 'repeatEvent' times. The expected values are + calculated from the SMIL Animation equations and the current document time. + + The test has passed if the testcase reports "Results match expected values." 8 times, and each such string + is prefixed with a green rectangle. When this happens the text in the rect with blue stroke changes from + 'failed' to 'passed'. +

+ + + $RCSfile: udom-svg-225-t.svg,v $ + + + + + + + + + + + + + + + + + var ctm = document.getElementById( "rect1" ).getScreenCTM( ); + var expected = [ 1, 0, 0, 1, 0, 0 ]; + verifyMatrix(ctm, expected, eps); + + + var ctm = document.getElementById( "rect1" ).getScreenCTM( ); + var expected = [ 1, 0, 0, 1, 240, 160 ]; + verifyMatrix(ctm, expected, eps); + + + + + + + 0) + { + expected.mTranslate(240,160); + } + expected.mRotate(angle); + if(t > 0) + { + expected.mTranslate(-240,-160); + } + expected.mScale(scale); + + verifyMatrix2(ctm, document.getElementById( "rect2" ).getScreenCTM( ), eps); + verifyMatrix2(ctm, expected, eps); + ]]> + + + + + + + + + + + + + + + + SVGLocatable.getScreenCTM - animated test + + + + failed + + + + + + $Revision: 1.6 $ + + + + + + DRAFT + + \ No newline at end of file diff --git a/test/W3C_SVG_12_TinyTestSuite_beta/svg/udom-svg-226-t.svg b/test/W3C_SVG_12_TinyTestSuite_beta/svg/udom-svg-226-t.svg new file mode 100755 index 00000000..f8b8fb62 --- /dev/null +++ b/test/W3C_SVG_12_TinyTestSuite_beta/svg/udom-svg-226-t.svg @@ -0,0 +1,208 @@ + + + + + + + + + + + +

+ Four animations begin at time 0 and end at times 1, 2, 5 and 9 seconds. Event listeners are registered + for the "endEvent" event. + As each animation ends, getCurrentTime() is called and verified with the expected time. The expected time is compared with + the minimum time to take into account implementation-specific document time resolution. + If all times have the expected values, the text changes from 'testing' to 'passed' +

+ + + $RCSfile: udom-svg-226-t.svg,v $ + + + + + + + + + + + = 1 ) + { + drawString( "", "time_test_1"); + } + else + { + isPassed = false; + drawString( "currentTime: " + curTime + ", expecting 1", "time_test_1" ); + } + } + + function doTimer2( ) + { + curTime = topsvg.getCurrentTime( ); + if ( curTime >= 2) + { + drawString( "", "time_test_2"); + } + else + { + isPassed = false; + drawString( "currentTime: " + curTime + ", expecting 2", "time_test_2" ); + } + } + + function doTimer3( ) + { + curTime = topsvg.getCurrentTime( ); + if ( curTime >= 5 ) + { + drawString( "", "time_test_5"); + } + else + { + isPassed = false; + drawString( "currentTime: " + curTime + ", expecting 5", "time_test_5" ); + } + } + + function doTimer4( ) + { + curTime = topsvg.getCurrentTime( ); + if ( curTime >= 9 ) + { + drawString( "", "time_test_9"); + } + else + { + isPassed = false; + drawString( "currentTime: " + curTime + ", expecting 9", "time_test_9" ); + } + + updateStatus(); + } + + var status = document.getElementById("TestStatus"); + status.setTrait("#text", "testing"); + + try + { + document.getElementById("animationTimer1").addEventListener("endEvent", doTimer1, false); + document.getElementById("animationTimer2").addEventListener("endEvent", doTimer2, false); + document.getElementById("animationTimer3").addEventListener("endEvent", doTimer3, false); + document.getElementById("animationTimer4").addEventListener("endEvent", doTimer4, false); + } + catch(e) + { + isPassed = false; + drawString("Unexpected exception!", "test_status"); + } + ]]> + + + + + + + 0 + 1 + 2 + 3 + 4 + 5 + 6 + 7 + 8 + 9 + 10 + + + + + SVGSVGElement.getCurrentTime() - basic test + + + + + + + + + + + + + + + currentTime: 1 + currentTime: 2 + currentTime: 5 + currentTime: 9 + + + + + failed + + + + $Revision: 1.7 $ + + + + + diff --git a/test/W3C_SVG_12_TinyTestSuite_beta/svg/udom-svg-227-t.svg b/test/W3C_SVG_12_TinyTestSuite_beta/svg/udom-svg-227-t.svg new file mode 100755 index 00000000..dfe5ac5b --- /dev/null +++ b/test/W3C_SVG_12_TinyTestSuite_beta/svg/udom-svg-227-t.svg @@ -0,0 +1,237 @@ + + + + + + + + + + + +

+ Tests setCurrentTime. The test is passed if the the moving bar skips + from 2 to 4 , and from 5 to 8; and after the animation completes, the + text "passed" appears at the bottom right. +

+

+ Four animations begin at time 0 and end at times 1, 2, 5 and 9 seconds. + Event listeners are registered for the "endEvent" event. + As each animation ends, getCurrentTime() is called to verify the expected current time, which + is them followed by a call to setCurrentTime. + If all times have the expected values, the text changes from 'testing' to 'passed' + The expected time is compared with + the minimum time to take into account implementation-specific document time resolution. +

+ + + $RCSfile: udom-svg-227-t.svg,v $ + + + + + + + + + + + = 1 ) + { + drawString( "currentTime: 1"); + } + else + { + isPassed = false; + drawString( "currentTime: " + curTime + ", expecting 1" ); + } + } + + function doTimer2( ) + { + curTime = topsvg.getCurrentTime( ); + if ( curTime >= 2 ) + { + drawString( "currentTime: 2"); + } + else + { + isPassed = false; + drawString( "currentTime: " + curTime + ", expecting 2" ); + } + + drawString( "setCurrentTime to 4" ); + topsvg.setCurrentTime( 4 ); + + curTime = topsvg.getCurrentTime( ); + if ( curTime >= 4 ) + { + drawString( "currentTime: 4"); + } + else + { + isPassed = false; + drawString( "currentTime: " + curTime + ", expecting 4" ); + } + } + + function doTimer3( ) + { + curTime = topsvg.getCurrentTime( ); + if ( curTime >= 5 ) + { + drawString( "currentTime: 5"); + } + else + { + isPassed = false; + drawString( "currentTime: " + curTime + ", expecting 5" ); + } + + drawString( "setCurrentTime to 8" ); + topsvg.setCurrentTime( 8 ); + + curTime = topsvg.getCurrentTime( ); + if ( curTime >= 8 ) + { + drawString( "currentTime: 8"); + } + else + { + isPassed = false; + drawString( "currentTime: " + curTime + ", expecting 1" ); + } + } + + function doTimer4( ) + { + curTime = topsvg.getCurrentTime( ); + if ( curTime >= 9 && curTime < 9.1 ) + { + drawString( "currentTime: 9"); + } + else + { + isPassed = false; + drawString( "currentTime: " + curTime + ", expecting 2" ); + } + + updateStatus(); + } + + + document.getElementById("animationTimer1").addEventListener("endEvent", doTimer1, false); + document.getElementById("animationTimer2").addEventListener("endEvent", doTimer2, false); + document.getElementById("animationTimer3").addEventListener("endEvent", doTimer3, false); + document.getElementById("animationTimer4").addEventListener("endEvent", doTimer4, false); + + drawString( "currentTime: " + topsvg.getCurrentTime( ) ); + } + + ]]> + + + + + + + 0 + 1 + 2 + 3 + 4 + 5 + 6 + 7 + 8 + 9 + 10 + + + + + + SVGSVGElement.setCurrentTime() - basic test + + + + + + + + + + + + + + failed + + + + + $Revision: 1.5 $ + + + + + diff --git a/test/W3C_SVG_12_TinyTestSuite_beta/svg/udom-svg-228-t.svg b/test/W3C_SVG_12_TinyTestSuite_beta/svg/udom-svg-228-t.svg new file mode 100755 index 00000000..95222130 --- /dev/null +++ b/test/W3C_SVG_12_TinyTestSuite_beta/svg/udom-svg-228-t.svg @@ -0,0 +1,221 @@ + + + + + + + + + + + +

+ This tests setFocus and getCurrentFocusedObject, setting the focus and then checking that the correct element has focus. Successes are shown in green, + failures in red. If all subtests pass, the text in the blue box changes from "failed" to "passed". +

+

+ A numeric keypad is shown. Focus starts on the "5" and is then moved programatically + to each of the other numbers, finally returning to "5". Since this happens on the load event, there is no indication of the focus moving. +

+ + + $RCSfile: udom-svg-228-t.svg,v $ + + + + + + + + + + + + + + SVGSVGElement.setFocus() and + getCurrentFocusedObject() + + + + + 7 + + + + + 8 + + + + + 9 + + + + + 4 + + + + + 5 + + + + + 6 + + + + + 1 + + + + + 2 + + + + + 3 + + + + + + + + + failed + + + + $Revision: 1.6 $ + + + + + diff --git a/test/W3C_SVG_12_TinyTestSuite_beta/svg/udom-svg-231-t.svg b/test/W3C_SVG_12_TinyTestSuite_beta/svg/udom-svg-231-t.svg new file mode 100755 index 00000000..6766f17e --- /dev/null +++ b/test/W3C_SVG_12_TinyTestSuite_beta/svg/udom-svg-231-t.svg @@ -0,0 +1,119 @@ + + + + + + + + + + + +

+ The TraitAccess tests uses a set of common ECMAScript code to test various trait combinations with expected values. If a result is not as expected, an error is displayed in red text, indicating the returned result and what was expected. When all subtests have returned success, the result is set to 'passed'. The pass condition for the test is that all subtests are green, and the word 'passed' is at the bottom right. +

+ + + $RCSfile: udom-svg-231-t.svg,v $ + + + + + + + + + TraitAccess.setRGBColorTrait() / getRGBColorTrait() + + + + + " + + + + + + failed + + + + + + + Test on textContent + The text "Not changed yet!" (in red) that is located just below the rect + must be replaced after 1s by + "Rect Text and Rect Animate Text!" (in green) + + + $Revision: 1.9 $ + + + + + diff --git a/test/W3C_SVG_12_TinyTestSuite_beta/svg/udom-textcontent-202-t.svg b/test/W3C_SVG_12_TinyTestSuite_beta/svg/udom-textcontent-202-t.svg new file mode 100755 index 00000000..093fcb3c --- /dev/null +++ b/test/W3C_SVG_12_TinyTestSuite_beta/svg/udom-textcontent-202-t.svg @@ -0,0 +1,79 @@ + + + + + + + + + + + +

+ Tests access to textContent. + The only text that should be visible is the string "Rect Text and Rect Animate Text!" in green. + The set element that makes the element "setTextContent" hidden should be removed when setting the new textContent and therefore the text must be visible. +

+ + + $RCSfile: udom-textcontent-202-t.svg,v $ + + + + + + + + + + + Not changed yet! + + + + + + + + + Rect Text + + + + + and Rect Animate Text! + + + + + + + + + $Revision: 1.4 $ + + + + + diff --git a/test/W3C_SVG_12_TinyTestSuite_beta/svg/udom-traitaccess-201-t.svg b/test/W3C_SVG_12_TinyTestSuite_beta/svg/udom-traitaccess-201-t.svg new file mode 100755 index 00000000..4a714bf9 --- /dev/null +++ b/test/W3C_SVG_12_TinyTestSuite_beta/svg/udom-traitaccess-201-t.svg @@ -0,0 +1,84 @@ + + + + + + + + + + + +

+ Tests trait access in uDOM. + The svg should look the same on both sides and the text + should read "Passed". Both the rects should link back to this test. +

+ + + $RCSfile: udom-traitaccess-201-t.svg,v $ + + + + + + + + + + + + + + Set/Get-TraitNs() on + reference + scripted + + Fail + + + + + + + + + + + + + + + + + $Revision: 1.4 $ + + + + + diff --git a/test/W3C_SVG_12_TinyTestSuite_beta/svg/udom-traitaccess-202-t.svg b/test/W3C_SVG_12_TinyTestSuite_beta/svg/udom-traitaccess-202-t.svg new file mode 100755 index 00000000..e8f99288 --- /dev/null +++ b/test/W3C_SVG_12_TinyTestSuite_beta/svg/udom-traitaccess-202-t.svg @@ -0,0 +1,131 @@ + + + + + + + + + + + +

+ Test on solidColor trait access. + The test result is displayed within the test. +

+

+ The test is passed if the results for the sub tests are as follows +

+
    +
  • The first 1,2,255
  • +
  • The second sub test 254,4,3
  • +
  • The third sub test #FE0403
  • +
  • The fourth sub test #0506FD
  • +
  • The fith sub test is 0,0,0
  • +
+ + + $RCSfile: udom-traitaccess-202-t.svg,v $ + + + + + + + + + + + + + + + + + + + + + + + + Testing solidColor trait access + + + 1. getRGBColorTrait(solid-color): + DOES NOT WORK! + + + 2. setRGBColorTrait(solid-color): + DOES NOT WORK! + + + 3. getTrait(solid-color): + DOES NOT WORK! + + + 4. setTrait(solid-color): + DOES NOT WORK! + + + 5. getting default: + DOES NOT WORK! + + + + + $Revision: 1.5 $ + + + + + diff --git a/test/W3C_SVG_12_TinyTestSuite_beta/svg/udom-traitaccess-203-t.svg b/test/W3C_SVG_12_TinyTestSuite_beta/svg/udom-traitaccess-203-t.svg new file mode 100755 index 00000000..2217025f --- /dev/null +++ b/test/W3C_SVG_12_TinyTestSuite_beta/svg/udom-traitaccess-203-t.svg @@ -0,0 +1,103 @@ + + + + + + + + + + + +

+ Test on solidColor solid-opacity trait access. + Test result are displayed within the test. + The first sub-test should display a number approximately equal to 0.2. + The second sub-test should display a number approximately equal to 0.5. + The third sub-test should display a number equal to 1. +

+ + + $RCSfile: udom-traitaccess-203-t.svg,v $ + + + + + + + + + + + + + + + + + + + + + + + + Testing solidColor trait access + + + 1. getFloatTrait(solid-opacity): + DOES NOT WORK! + + + 2. setFloatTrait(solid-opacity): + DOES NOT WORK! + + + 3. getting default: + DOES NOT WORK! + + + + + + $Revision: 1.7 $ + + + + + diff --git a/test/W3C_SVG_12_TinyTestSuite_beta/svg/udom-traitaccess-204-t.svg b/test/W3C_SVG_12_TinyTestSuite_beta/svg/udom-traitaccess-204-t.svg new file mode 100755 index 00000000..fb956022 --- /dev/null +++ b/test/W3C_SVG_12_TinyTestSuite_beta/svg/udom-traitaccess-204-t.svg @@ -0,0 +1,79 @@ + + + + + + + + + + + +

+ Tests set/get access on 'fill-rule' trait. + The start should look the same on both sides and the text should read "OK". +

+ + + $RCSfile: udom-traitaccess-204-t.svg,v $ + + + + + + + + + + + + + Set/Get-Trait(fillrule) on path + reference + scripted + + Error! + + + + + + + + + + + + + + $Revision: 1.4 $ + + + + + diff --git a/test/W3C_SVG_12_TinyTestSuite_beta/svg/udom-traitaccess-205-t.svg b/test/W3C_SVG_12_TinyTestSuite_beta/svg/udom-traitaccess-205-t.svg new file mode 100755 index 00000000..1e22308f --- /dev/null +++ b/test/W3C_SVG_12_TinyTestSuite_beta/svg/udom-traitaccess-205-t.svg @@ -0,0 +1,53 @@ + + + + + + + + + + + +

+ Test on Ecma-script. Sets viewport-fill to green with setRGBColorTrait (should show a green viewport). +

+ + + $RCSfile: udom-traitaccess-205-t.svg,v $ + + + + + + + + + Green = OK + Red = Error! + + + + $Revision: 1.5 $ + + + + + diff --git a/test/W3C_SVG_12_TinyTestSuite_beta/svg/udom-traitaccess-206-t.svg b/test/W3C_SVG_12_TinyTestSuite_beta/svg/udom-traitaccess-206-t.svg new file mode 100755 index 00000000..95122a43 --- /dev/null +++ b/test/W3C_SVG_12_TinyTestSuite_beta/svg/udom-traitaccess-206-t.svg @@ -0,0 +1,53 @@ + + + + + + + + + + + +

+ Test on Ecma-script. Sets viewport-fill to green with setTrait (should show a green viewport). +

+ + + $RCSfile: udom-traitaccess-206-t.svg,v $ + + + + + + + + + Green = OK + Red = Error! + + + + + $Revision: 1.4 $ + + + + + diff --git a/test/W3C_SVG_12_TinyTestSuite_beta/svg/udom-traitaccess-207-t.svg b/test/W3C_SVG_12_TinyTestSuite_beta/svg/udom-traitaccess-207-t.svg new file mode 100755 index 00000000..de06b0a9 --- /dev/null +++ b/test/W3C_SVG_12_TinyTestSuite_beta/svg/udom-traitaccess-207-t.svg @@ -0,0 +1,52 @@ + + + + + + + + + + + +

+ Test on Ecma-script. Sets viewport-fill-opacity to 0.5 with setFloatTrait + (should show a red viewport with correct opacity, and the text 'viewport-fill-opacity="0.5"' should show). +

+ + + $RCSfile: udom-traitaccess-207-t.svg,v $ + + + + + + + + + viewport-fill-opacity="0.5" + + + + $Revision: 1.5 $ + + + + + diff --git a/test/W3C_SVG_12_TinyTestSuite_beta/svgHarness/animate-elem-02-t.svg b/test/W3C_SVG_12_TinyTestSuite_beta/svgHarness/animate-elem-02-t.svg new file mode 100755 index 00000000..8b92d4dd --- /dev/null +++ b/test/W3C_SVG_12_TinyTestSuite_beta/svgHarness/animate-elem-02-t.svg @@ -0,0 +1,43 @@ + + + + + + + + + + + + + + + + + + + + + + + animate-elem-02-t + + SVG Image + + PNG Image + + + + + + Previous + + + No Nav + + + Next + + + + \ No newline at end of file diff --git a/test/W3C_SVG_12_TinyTestSuite_beta/svgHarness/animate-elem-03-t.svg b/test/W3C_SVG_12_TinyTestSuite_beta/svgHarness/animate-elem-03-t.svg new file mode 100755 index 00000000..7af73444 --- /dev/null +++ b/test/W3C_SVG_12_TinyTestSuite_beta/svgHarness/animate-elem-03-t.svg @@ -0,0 +1,43 @@ + + + + + + + + + + + + + + + + + + + + + + + animate-elem-03-t + + SVG Image + + PNG Image + + + + + + Previous + + + No Nav + + + Next + + + + \ No newline at end of file diff --git a/test/W3C_SVG_12_TinyTestSuite_beta/svgHarness/animate-elem-04-t.svg b/test/W3C_SVG_12_TinyTestSuite_beta/svgHarness/animate-elem-04-t.svg new file mode 100755 index 00000000..7bc1c6d9 --- /dev/null +++ b/test/W3C_SVG_12_TinyTestSuite_beta/svgHarness/animate-elem-04-t.svg @@ -0,0 +1,43 @@ + + + + + + + + + + + + + + + + + + + + + + + animate-elem-04-t + + SVG Image + + PNG Image + + + + + + Previous + + + No Nav + + + Next + + + + \ No newline at end of file diff --git a/test/W3C_SVG_12_TinyTestSuite_beta/svgHarness/animate-elem-05-t.svg b/test/W3C_SVG_12_TinyTestSuite_beta/svgHarness/animate-elem-05-t.svg new file mode 100755 index 00000000..b99131b1 --- /dev/null +++ b/test/W3C_SVG_12_TinyTestSuite_beta/svgHarness/animate-elem-05-t.svg @@ -0,0 +1,43 @@ + + + + + + + + + + + + + + + + + + + + + + + animate-elem-05-t + + SVG Image + + PNG Image + + + + + + Previous + + + No Nav + + + Next + + + + \ No newline at end of file diff --git a/test/W3C_SVG_12_TinyTestSuite_beta/svgHarness/animate-elem-06-t.svg b/test/W3C_SVG_12_TinyTestSuite_beta/svgHarness/animate-elem-06-t.svg new file mode 100755 index 00000000..15944a17 --- /dev/null +++ b/test/W3C_SVG_12_TinyTestSuite_beta/svgHarness/animate-elem-06-t.svg @@ -0,0 +1,43 @@ + + + + + + + + + + + + + + + + + + + + + + + animate-elem-06-t + + SVG Image + + PNG Image + + + + + + Previous + + + No Nav + + + Next + + + + \ No newline at end of file diff --git a/test/W3C_SVG_12_TinyTestSuite_beta/svgHarness/animate-elem-07-t.svg b/test/W3C_SVG_12_TinyTestSuite_beta/svgHarness/animate-elem-07-t.svg new file mode 100755 index 00000000..c6b7f421 --- /dev/null +++ b/test/W3C_SVG_12_TinyTestSuite_beta/svgHarness/animate-elem-07-t.svg @@ -0,0 +1,43 @@ + + + + + + + + + + + + + + + + + + + + + + + animate-elem-07-t + + SVG Image + + PNG Image + + + + + + Previous + + + No Nav + + + Next + + + + \ No newline at end of file diff --git a/test/W3C_SVG_12_TinyTestSuite_beta/svgHarness/animate-elem-08-t.svg b/test/W3C_SVG_12_TinyTestSuite_beta/svgHarness/animate-elem-08-t.svg new file mode 100755 index 00000000..762e82f2 --- /dev/null +++ b/test/W3C_SVG_12_TinyTestSuite_beta/svgHarness/animate-elem-08-t.svg @@ -0,0 +1,43 @@ + + + + + + + + + + + + + + + + + + + + + + + animate-elem-08-t + + SVG Image + + PNG Image + + + + + + Previous + + + No Nav + + + Next + + + + \ No newline at end of file diff --git a/test/W3C_SVG_12_TinyTestSuite_beta/svgHarness/animate-elem-09-t.svg b/test/W3C_SVG_12_TinyTestSuite_beta/svgHarness/animate-elem-09-t.svg new file mode 100755 index 00000000..0fd06a6d --- /dev/null +++ b/test/W3C_SVG_12_TinyTestSuite_beta/svgHarness/animate-elem-09-t.svg @@ -0,0 +1,43 @@ + + + + + + + + + + + + + + + + + + + + + + + animate-elem-09-t + + SVG Image + + PNG Image + + + + + + Previous + + + No Nav + + + Next + + + + \ No newline at end of file diff --git a/test/W3C_SVG_12_TinyTestSuite_beta/svgHarness/animate-elem-10-t.svg b/test/W3C_SVG_12_TinyTestSuite_beta/svgHarness/animate-elem-10-t.svg new file mode 100755 index 00000000..106f587f --- /dev/null +++ b/test/W3C_SVG_12_TinyTestSuite_beta/svgHarness/animate-elem-10-t.svg @@ -0,0 +1,43 @@ + + + + + + + + + + + + + + + + + + + + + + + animate-elem-10-t + + SVG Image + + PNG Image + + + + + + Previous + + + No Nav + + + Next + + + + \ No newline at end of file diff --git a/test/W3C_SVG_12_TinyTestSuite_beta/svgHarness/animate-elem-11-t.svg b/test/W3C_SVG_12_TinyTestSuite_beta/svgHarness/animate-elem-11-t.svg new file mode 100755 index 00000000..323a872f --- /dev/null +++ b/test/W3C_SVG_12_TinyTestSuite_beta/svgHarness/animate-elem-11-t.svg @@ -0,0 +1,43 @@ + + + + + + + + + + + + + + + + + + + + + + + animate-elem-11-t + + SVG Image + + PNG Image + + + + + + Previous + + + No Nav + + + Next + + + + \ No newline at end of file diff --git a/test/W3C_SVG_12_TinyTestSuite_beta/svgHarness/animate-elem-12-t.svg b/test/W3C_SVG_12_TinyTestSuite_beta/svgHarness/animate-elem-12-t.svg new file mode 100755 index 00000000..017d285c --- /dev/null +++ b/test/W3C_SVG_12_TinyTestSuite_beta/svgHarness/animate-elem-12-t.svg @@ -0,0 +1,43 @@ + + + + + + + + + + + + + + + + + + + + + + + animate-elem-12-t + + SVG Image + + PNG Image + + + + + + Previous + + + No Nav + + + Next + + + + \ No newline at end of file diff --git a/test/W3C_SVG_12_TinyTestSuite_beta/svgHarness/animate-elem-13-t.svg b/test/W3C_SVG_12_TinyTestSuite_beta/svgHarness/animate-elem-13-t.svg new file mode 100755 index 00000000..531102c6 --- /dev/null +++ b/test/W3C_SVG_12_TinyTestSuite_beta/svgHarness/animate-elem-13-t.svg @@ -0,0 +1,43 @@ + + + + + + + + + + + + + + + + + + + + + + + animate-elem-13-t + + SVG Image + + PNG Image + + + + + + Previous + + + No Nav + + + Next + + + + \ No newline at end of file diff --git a/test/W3C_SVG_12_TinyTestSuite_beta/svgHarness/animate-elem-14-t.svg b/test/W3C_SVG_12_TinyTestSuite_beta/svgHarness/animate-elem-14-t.svg new file mode 100755 index 00000000..61961b2a --- /dev/null +++ b/test/W3C_SVG_12_TinyTestSuite_beta/svgHarness/animate-elem-14-t.svg @@ -0,0 +1,43 @@ + + + + + + + + + + + + + + + + + + + + + + + animate-elem-14-t + + SVG Image + + PNG Image + + + + + + Previous + + + No Nav + + + Next + + + + \ No newline at end of file diff --git a/test/W3C_SVG_12_TinyTestSuite_beta/svgHarness/animate-elem-15-t.svg b/test/W3C_SVG_12_TinyTestSuite_beta/svgHarness/animate-elem-15-t.svg new file mode 100755 index 00000000..401e9010 --- /dev/null +++ b/test/W3C_SVG_12_TinyTestSuite_beta/svgHarness/animate-elem-15-t.svg @@ -0,0 +1,43 @@ + + + + + + + + + + + + + + + + + + + + + + + animate-elem-15-t + + SVG Image + + PNG Image + + + + + + Previous + + + No Nav + + + Next + + + + \ No newline at end of file diff --git a/test/W3C_SVG_12_TinyTestSuite_beta/svgHarness/animate-elem-17-t.svg b/test/W3C_SVG_12_TinyTestSuite_beta/svgHarness/animate-elem-17-t.svg new file mode 100755 index 00000000..9ecd2923 --- /dev/null +++ b/test/W3C_SVG_12_TinyTestSuite_beta/svgHarness/animate-elem-17-t.svg @@ -0,0 +1,43 @@ + + + + + + + + + + + + + + + + + + + + + + + animate-elem-17-t + + SVG Image + + PNG Image + + + + + + Previous + + + No Nav + + + Next + + + + \ No newline at end of file diff --git a/test/W3C_SVG_12_TinyTestSuite_beta/svgHarness/animate-elem-19-t.svg b/test/W3C_SVG_12_TinyTestSuite_beta/svgHarness/animate-elem-19-t.svg new file mode 100755 index 00000000..08739207 --- /dev/null +++ b/test/W3C_SVG_12_TinyTestSuite_beta/svgHarness/animate-elem-19-t.svg @@ -0,0 +1,43 @@ + + + + + + + + + + + + + + + + + + + + + + + animate-elem-19-t + + SVG Image + + PNG Image + + + + + + Previous + + + No Nav + + + Next + + + + \ No newline at end of file diff --git a/test/W3C_SVG_12_TinyTestSuite_beta/svgHarness/animate-elem-20-t.svg b/test/W3C_SVG_12_TinyTestSuite_beta/svgHarness/animate-elem-20-t.svg new file mode 100755 index 00000000..61a8941e --- /dev/null +++ b/test/W3C_SVG_12_TinyTestSuite_beta/svgHarness/animate-elem-20-t.svg @@ -0,0 +1,43 @@ + + + + + + + + + + + + + + + + + + + + + + + animate-elem-20-t + + SVG Image + + PNG Image + + + + + + Previous + + + No Nav + + + Next + + + + \ No newline at end of file diff --git a/test/W3C_SVG_12_TinyTestSuite_beta/svgHarness/animate-elem-201-t.svg b/test/W3C_SVG_12_TinyTestSuite_beta/svgHarness/animate-elem-201-t.svg new file mode 100755 index 00000000..7467d83c --- /dev/null +++ b/test/W3C_SVG_12_TinyTestSuite_beta/svgHarness/animate-elem-201-t.svg @@ -0,0 +1,43 @@ + + + + + + + + + + + + + + + + + + + + + + + animate-elem-201-t + + SVG Image + + PNG Image + + + + + + Previous + + + No Nav + + + Next + + + + \ No newline at end of file diff --git a/test/W3C_SVG_12_TinyTestSuite_beta/svgHarness/animate-elem-202-t.svg b/test/W3C_SVG_12_TinyTestSuite_beta/svgHarness/animate-elem-202-t.svg new file mode 100755 index 00000000..0c64442d --- /dev/null +++ b/test/W3C_SVG_12_TinyTestSuite_beta/svgHarness/animate-elem-202-t.svg @@ -0,0 +1,43 @@ + + + + + + + + + + + + + + + + + + + + + + + animate-elem-202-t + + SVG Image + + PNG Image + + + + + + Previous + + + No Nav + + + Next + + + + \ No newline at end of file diff --git a/test/W3C_SVG_12_TinyTestSuite_beta/svgHarness/animate-elem-203-t.svg b/test/W3C_SVG_12_TinyTestSuite_beta/svgHarness/animate-elem-203-t.svg new file mode 100755 index 00000000..b9154574 --- /dev/null +++ b/test/W3C_SVG_12_TinyTestSuite_beta/svgHarness/animate-elem-203-t.svg @@ -0,0 +1,43 @@ + + + + + + + + + + + + + + + + + + + + + + + animate-elem-203-t + + SVG Image + + PNG Image + + + + + + Previous + + + No Nav + + + Next + + + + \ No newline at end of file diff --git a/test/W3C_SVG_12_TinyTestSuite_beta/svgHarness/animate-elem-205-t.svg b/test/W3C_SVG_12_TinyTestSuite_beta/svgHarness/animate-elem-205-t.svg new file mode 100755 index 00000000..d6f42109 --- /dev/null +++ b/test/W3C_SVG_12_TinyTestSuite_beta/svgHarness/animate-elem-205-t.svg @@ -0,0 +1,43 @@ + + + + + + + + + + + + + + + + + + + + + + + animate-elem-205-t + + SVG Image + + PNG Image + + + + + + Previous + + + No Nav + + + Next + + + + \ No newline at end of file diff --git a/test/W3C_SVG_12_TinyTestSuite_beta/svgHarness/animate-elem-206-t.svg b/test/W3C_SVG_12_TinyTestSuite_beta/svgHarness/animate-elem-206-t.svg new file mode 100755 index 00000000..308d9644 --- /dev/null +++ b/test/W3C_SVG_12_TinyTestSuite_beta/svgHarness/animate-elem-206-t.svg @@ -0,0 +1,43 @@ + + + + + + + + + + + + + + + + + + + + + + + animate-elem-206-t + + SVG Image + + PNG Image + + + + + + Previous + + + No Nav + + + Next + + + + \ No newline at end of file diff --git a/test/W3C_SVG_12_TinyTestSuite_beta/svgHarness/animate-elem-207-t.svg b/test/W3C_SVG_12_TinyTestSuite_beta/svgHarness/animate-elem-207-t.svg new file mode 100755 index 00000000..5dd360b5 --- /dev/null +++ b/test/W3C_SVG_12_TinyTestSuite_beta/svgHarness/animate-elem-207-t.svg @@ -0,0 +1,43 @@ + + + + + + + + + + + + + + + + + + + + + + + animate-elem-207-t + + SVG Image + + PNG Image + + + + + + Previous + + + No Nav + + + Next + + + + \ No newline at end of file diff --git a/test/W3C_SVG_12_TinyTestSuite_beta/svgHarness/animate-elem-209-t.svg b/test/W3C_SVG_12_TinyTestSuite_beta/svgHarness/animate-elem-209-t.svg new file mode 100755 index 00000000..3210fadb --- /dev/null +++ b/test/W3C_SVG_12_TinyTestSuite_beta/svgHarness/animate-elem-209-t.svg @@ -0,0 +1,43 @@ + + + + + + + + + + + + + + + + + + + + + + + animate-elem-209-t + + SVG Image + + PNG Image + + + + + + Previous + + + No Nav + + + Next + + + + \ No newline at end of file diff --git a/test/W3C_SVG_12_TinyTestSuite_beta/svgHarness/animate-elem-21-t.svg b/test/W3C_SVG_12_TinyTestSuite_beta/svgHarness/animate-elem-21-t.svg new file mode 100755 index 00000000..ed759385 --- /dev/null +++ b/test/W3C_SVG_12_TinyTestSuite_beta/svgHarness/animate-elem-21-t.svg @@ -0,0 +1,43 @@ + + + + + + + + + + + + + + + + + + + + + + + animate-elem-21-t + + SVG Image + + PNG Image + + + + + + Previous + + + No Nav + + + Next + + + + \ No newline at end of file diff --git a/test/W3C_SVG_12_TinyTestSuite_beta/svgHarness/animate-elem-210-t.svg b/test/W3C_SVG_12_TinyTestSuite_beta/svgHarness/animate-elem-210-t.svg new file mode 100755 index 00000000..9a3fa089 --- /dev/null +++ b/test/W3C_SVG_12_TinyTestSuite_beta/svgHarness/animate-elem-210-t.svg @@ -0,0 +1,43 @@ + + + + + + + + + + + + + + + + + + + + + + + animate-elem-210-t + + SVG Image + + PNG Image + + + + + + Previous + + + No Nav + + + Next + + + + \ No newline at end of file diff --git a/test/W3C_SVG_12_TinyTestSuite_beta/svgHarness/animate-elem-211-t.svg b/test/W3C_SVG_12_TinyTestSuite_beta/svgHarness/animate-elem-211-t.svg new file mode 100755 index 00000000..34836de9 --- /dev/null +++ b/test/W3C_SVG_12_TinyTestSuite_beta/svgHarness/animate-elem-211-t.svg @@ -0,0 +1,43 @@ + + + + + + + + + + + + + + + + + + + + + + + animate-elem-211-t + + SVG Image + + PNG Image + + + + + + Previous + + + No Nav + + + Next + + + + \ No newline at end of file diff --git a/test/W3C_SVG_12_TinyTestSuite_beta/svgHarness/animate-elem-212-t.svg b/test/W3C_SVG_12_TinyTestSuite_beta/svgHarness/animate-elem-212-t.svg new file mode 100755 index 00000000..a203c184 --- /dev/null +++ b/test/W3C_SVG_12_TinyTestSuite_beta/svgHarness/animate-elem-212-t.svg @@ -0,0 +1,43 @@ + + + + + + + + + + + + + + + + + + + + + + + animate-elem-212-t + + SVG Image + + PNG Image + + + + + + Previous + + + No Nav + + + Next + + + + \ No newline at end of file diff --git a/test/W3C_SVG_12_TinyTestSuite_beta/svgHarness/animate-elem-213-t.svg b/test/W3C_SVG_12_TinyTestSuite_beta/svgHarness/animate-elem-213-t.svg new file mode 100755 index 00000000..28014f6e --- /dev/null +++ b/test/W3C_SVG_12_TinyTestSuite_beta/svgHarness/animate-elem-213-t.svg @@ -0,0 +1,43 @@ + + + + + + + + + + + + + + + + + + + + + + + animate-elem-213-t + + SVG Image + + PNG Image + + + + + + Previous + + + No Nav + + + Next + + + + \ No newline at end of file diff --git a/test/W3C_SVG_12_TinyTestSuite_beta/svgHarness/animate-elem-214-t.svg b/test/W3C_SVG_12_TinyTestSuite_beta/svgHarness/animate-elem-214-t.svg new file mode 100755 index 00000000..c10ec957 --- /dev/null +++ b/test/W3C_SVG_12_TinyTestSuite_beta/svgHarness/animate-elem-214-t.svg @@ -0,0 +1,43 @@ + + + + + + + + + + + + + + + + + + + + + + + animate-elem-214-t + + SVG Image + + PNG Image + + + + + + Previous + + + No Nav + + + Next + + + + \ No newline at end of file diff --git a/test/W3C_SVG_12_TinyTestSuite_beta/svgHarness/animate-elem-215-t.svg b/test/W3C_SVG_12_TinyTestSuite_beta/svgHarness/animate-elem-215-t.svg new file mode 100755 index 00000000..0df2f741 --- /dev/null +++ b/test/W3C_SVG_12_TinyTestSuite_beta/svgHarness/animate-elem-215-t.svg @@ -0,0 +1,43 @@ + + + + + + + + + + + + + + + + + + + + + + + animate-elem-215-t + + SVG Image + + PNG Image + + + + + + Previous + + + No Nav + + + Next + + + + \ No newline at end of file diff --git a/test/W3C_SVG_12_TinyTestSuite_beta/svgHarness/animate-elem-216-t.svg b/test/W3C_SVG_12_TinyTestSuite_beta/svgHarness/animate-elem-216-t.svg new file mode 100755 index 00000000..e4661571 --- /dev/null +++ b/test/W3C_SVG_12_TinyTestSuite_beta/svgHarness/animate-elem-216-t.svg @@ -0,0 +1,43 @@ + + + + + + + + + + + + + + + + + + + + + + + animate-elem-216-t + + SVG Image + + PNG Image + + + + + + Previous + + + No Nav + + + Next + + + + \ No newline at end of file diff --git a/test/W3C_SVG_12_TinyTestSuite_beta/svgHarness/animate-elem-217-t.svg b/test/W3C_SVG_12_TinyTestSuite_beta/svgHarness/animate-elem-217-t.svg new file mode 100755 index 00000000..aee13367 --- /dev/null +++ b/test/W3C_SVG_12_TinyTestSuite_beta/svgHarness/animate-elem-217-t.svg @@ -0,0 +1,43 @@ + + + + + + + + + + + + + + + + + + + + + + + animate-elem-217-t + + SVG Image + + PNG Image + + + + + + Previous + + + No Nav + + + Next + + + + \ No newline at end of file diff --git a/test/W3C_SVG_12_TinyTestSuite_beta/svgHarness/animate-elem-218-t.svg b/test/W3C_SVG_12_TinyTestSuite_beta/svgHarness/animate-elem-218-t.svg new file mode 100755 index 00000000..c2f327e0 --- /dev/null +++ b/test/W3C_SVG_12_TinyTestSuite_beta/svgHarness/animate-elem-218-t.svg @@ -0,0 +1,43 @@ + + + + + + + + + + + + + + + + + + + + + + + animate-elem-218-t + + SVG Image + + PNG Image + + + + + + Previous + + + No Nav + + + Next + + + + \ No newline at end of file diff --git a/test/W3C_SVG_12_TinyTestSuite_beta/svgHarness/animate-elem-219-t.svg b/test/W3C_SVG_12_TinyTestSuite_beta/svgHarness/animate-elem-219-t.svg new file mode 100755 index 00000000..fc886ca9 --- /dev/null +++ b/test/W3C_SVG_12_TinyTestSuite_beta/svgHarness/animate-elem-219-t.svg @@ -0,0 +1,43 @@ + + + + + + + + + + + + + + + + + + + + + + + animate-elem-219-t + + SVG Image + + PNG Image + + + + + + Previous + + + No Nav + + + Next + + + + \ No newline at end of file diff --git a/test/W3C_SVG_12_TinyTestSuite_beta/svgHarness/animate-elem-22-t.svg b/test/W3C_SVG_12_TinyTestSuite_beta/svgHarness/animate-elem-22-t.svg new file mode 100755 index 00000000..2600d518 --- /dev/null +++ b/test/W3C_SVG_12_TinyTestSuite_beta/svgHarness/animate-elem-22-t.svg @@ -0,0 +1,43 @@ + + + + + + + + + + + + + + + + + + + + + + + animate-elem-22-t + + SVG Image + + PNG Image + + + + + + Previous + + + No Nav + + + Next + + + + \ No newline at end of file diff --git a/test/W3C_SVG_12_TinyTestSuite_beta/svgHarness/animate-elem-221-t.svg b/test/W3C_SVG_12_TinyTestSuite_beta/svgHarness/animate-elem-221-t.svg new file mode 100755 index 00000000..7be341fc --- /dev/null +++ b/test/W3C_SVG_12_TinyTestSuite_beta/svgHarness/animate-elem-221-t.svg @@ -0,0 +1,43 @@ + + + + + + + + + + + + + + + + + + + + + + + animate-elem-221-t + + SVG Image + + PNG Image + + + + + + Previous + + + No Nav + + + Next + + + + \ No newline at end of file diff --git a/test/W3C_SVG_12_TinyTestSuite_beta/svgHarness/animate-elem-222-t.svg b/test/W3C_SVG_12_TinyTestSuite_beta/svgHarness/animate-elem-222-t.svg new file mode 100755 index 00000000..2198358c --- /dev/null +++ b/test/W3C_SVG_12_TinyTestSuite_beta/svgHarness/animate-elem-222-t.svg @@ -0,0 +1,43 @@ + + + + + + + + + + + + + + + + + + + + + + + animate-elem-222-t + + SVG Image + + PNG Image + + + + + + Previous + + + No Nav + + + Next + + + + \ No newline at end of file diff --git a/test/W3C_SVG_12_TinyTestSuite_beta/svgHarness/animate-elem-225-t.svg b/test/W3C_SVG_12_TinyTestSuite_beta/svgHarness/animate-elem-225-t.svg new file mode 100755 index 00000000..e34eed4a --- /dev/null +++ b/test/W3C_SVG_12_TinyTestSuite_beta/svgHarness/animate-elem-225-t.svg @@ -0,0 +1,43 @@ + + + + + + + + + + + + + + + + + + + + + + + animate-elem-225-t + + SVG Image + + PNG Image + + + + + + Previous + + + No Nav + + + Next + + + + \ No newline at end of file diff --git a/test/W3C_SVG_12_TinyTestSuite_beta/svgHarness/animate-elem-226-t.svg b/test/W3C_SVG_12_TinyTestSuite_beta/svgHarness/animate-elem-226-t.svg new file mode 100755 index 00000000..3a0b9ae1 --- /dev/null +++ b/test/W3C_SVG_12_TinyTestSuite_beta/svgHarness/animate-elem-226-t.svg @@ -0,0 +1,43 @@ + + + + + + + + + + + + + + + + + + + + + + + animate-elem-226-t + + SVG Image + + PNG Image + + + + + + Previous + + + No Nav + + + Next + + + + \ No newline at end of file diff --git a/test/W3C_SVG_12_TinyTestSuite_beta/svgHarness/animate-elem-227-t.svg b/test/W3C_SVG_12_TinyTestSuite_beta/svgHarness/animate-elem-227-t.svg new file mode 100755 index 00000000..a159f951 --- /dev/null +++ b/test/W3C_SVG_12_TinyTestSuite_beta/svgHarness/animate-elem-227-t.svg @@ -0,0 +1,43 @@ + + + + + + + + + + + + + + + + + + + + + + + animate-elem-227-t + + SVG Image + + PNG Image + + + + + + Previous + + + No Nav + + + Next + + + + \ No newline at end of file diff --git a/test/W3C_SVG_12_TinyTestSuite_beta/svgHarness/animate-elem-23-t.svg b/test/W3C_SVG_12_TinyTestSuite_beta/svgHarness/animate-elem-23-t.svg new file mode 100755 index 00000000..2cdb43c5 --- /dev/null +++ b/test/W3C_SVG_12_TinyTestSuite_beta/svgHarness/animate-elem-23-t.svg @@ -0,0 +1,43 @@ + + + + + + + + + + + + + + + + + + + + + + + animate-elem-23-t + + SVG Image + + PNG Image + + + + + + Previous + + + No Nav + + + Next + + + + \ No newline at end of file diff --git a/test/W3C_SVG_12_TinyTestSuite_beta/svgHarness/animate-elem-24-t.svg b/test/W3C_SVG_12_TinyTestSuite_beta/svgHarness/animate-elem-24-t.svg new file mode 100755 index 00000000..1f89e481 --- /dev/null +++ b/test/W3C_SVG_12_TinyTestSuite_beta/svgHarness/animate-elem-24-t.svg @@ -0,0 +1,43 @@ + + + + + + + + + + + + + + + + + + + + + + + animate-elem-24-t + + SVG Image + + PNG Image + + + + + + Previous + + + No Nav + + + Next + + + + \ No newline at end of file diff --git a/test/W3C_SVG_12_TinyTestSuite_beta/svgHarness/animate-elem-25-t.svg b/test/W3C_SVG_12_TinyTestSuite_beta/svgHarness/animate-elem-25-t.svg new file mode 100755 index 00000000..14099e80 --- /dev/null +++ b/test/W3C_SVG_12_TinyTestSuite_beta/svgHarness/animate-elem-25-t.svg @@ -0,0 +1,43 @@ + + + + + + + + + + + + + + + + + + + + + + + animate-elem-25-t + + SVG Image + + PNG Image + + + + + + Previous + + + No Nav + + + Next + + + + \ No newline at end of file diff --git a/test/W3C_SVG_12_TinyTestSuite_beta/svgHarness/animate-elem-26-t.svg b/test/W3C_SVG_12_TinyTestSuite_beta/svgHarness/animate-elem-26-t.svg new file mode 100755 index 00000000..e95f5139 --- /dev/null +++ b/test/W3C_SVG_12_TinyTestSuite_beta/svgHarness/animate-elem-26-t.svg @@ -0,0 +1,43 @@ + + + + + + + + + + + + + + + + + + + + + + + animate-elem-26-t + + SVG Image + + PNG Image + + + + + + Previous + + + No Nav + + + Next + + + + \ No newline at end of file diff --git a/test/W3C_SVG_12_TinyTestSuite_beta/svgHarness/animate-elem-27-t.svg b/test/W3C_SVG_12_TinyTestSuite_beta/svgHarness/animate-elem-27-t.svg new file mode 100755 index 00000000..99385ae9 --- /dev/null +++ b/test/W3C_SVG_12_TinyTestSuite_beta/svgHarness/animate-elem-27-t.svg @@ -0,0 +1,43 @@ + + + + + + + + + + + + + + + + + + + + + + + animate-elem-27-t + + SVG Image + + PNG Image + + + + + + Previous + + + No Nav + + + Next + + + + \ No newline at end of file diff --git a/test/W3C_SVG_12_TinyTestSuite_beta/svgHarness/animate-elem-28-t.svg b/test/W3C_SVG_12_TinyTestSuite_beta/svgHarness/animate-elem-28-t.svg new file mode 100755 index 00000000..8b217781 --- /dev/null +++ b/test/W3C_SVG_12_TinyTestSuite_beta/svgHarness/animate-elem-28-t.svg @@ -0,0 +1,43 @@ + + + + + + + + + + + + + + + + + + + + + + + animate-elem-28-t + + SVG Image + + PNG Image + + + + + + Previous + + + No Nav + + + Next + + + + \ No newline at end of file diff --git a/test/W3C_SVG_12_TinyTestSuite_beta/svgHarness/animate-elem-29-t.svg b/test/W3C_SVG_12_TinyTestSuite_beta/svgHarness/animate-elem-29-t.svg new file mode 100755 index 00000000..24680101 --- /dev/null +++ b/test/W3C_SVG_12_TinyTestSuite_beta/svgHarness/animate-elem-29-t.svg @@ -0,0 +1,43 @@ + + + + + + + + + + + + + + + + + + + + + + + animate-elem-29-t + + SVG Image + + PNG Image + + + + + + Previous + + + No Nav + + + Next + + + + \ No newline at end of file diff --git a/test/W3C_SVG_12_TinyTestSuite_beta/svgHarness/animate-elem-30-t.svg b/test/W3C_SVG_12_TinyTestSuite_beta/svgHarness/animate-elem-30-t.svg new file mode 100755 index 00000000..4344a9a0 --- /dev/null +++ b/test/W3C_SVG_12_TinyTestSuite_beta/svgHarness/animate-elem-30-t.svg @@ -0,0 +1,43 @@ + + + + + + + + + + + + + + + + + + + + + + + animate-elem-30-t + + SVG Image + + PNG Image + + + + + + Previous + + + No Nav + + + Next + + + + \ No newline at end of file diff --git a/test/W3C_SVG_12_TinyTestSuite_beta/svgHarness/animate-elem-31-t.svg b/test/W3C_SVG_12_TinyTestSuite_beta/svgHarness/animate-elem-31-t.svg new file mode 100755 index 00000000..59cc4425 --- /dev/null +++ b/test/W3C_SVG_12_TinyTestSuite_beta/svgHarness/animate-elem-31-t.svg @@ -0,0 +1,43 @@ + + + + + + + + + + + + + + + + + + + + + + + animate-elem-31-t + + SVG Image + + PNG Image + + + + + + Previous + + + No Nav + + + Next + + + + \ No newline at end of file diff --git a/test/W3C_SVG_12_TinyTestSuite_beta/svgHarness/animate-elem-32-t.svg b/test/W3C_SVG_12_TinyTestSuite_beta/svgHarness/animate-elem-32-t.svg new file mode 100755 index 00000000..64211ec4 --- /dev/null +++ b/test/W3C_SVG_12_TinyTestSuite_beta/svgHarness/animate-elem-32-t.svg @@ -0,0 +1,43 @@ + + + + + + + + + + + + + + + + + + + + + + + animate-elem-32-t + + SVG Image + + PNG Image + + + + + + Previous + + + No Nav + + + Next + + + + \ No newline at end of file diff --git a/test/W3C_SVG_12_TinyTestSuite_beta/svgHarness/animate-elem-33-t.svg b/test/W3C_SVG_12_TinyTestSuite_beta/svgHarness/animate-elem-33-t.svg new file mode 100755 index 00000000..fe338a0f --- /dev/null +++ b/test/W3C_SVG_12_TinyTestSuite_beta/svgHarness/animate-elem-33-t.svg @@ -0,0 +1,43 @@ + + + + + + + + + + + + + + + + + + + + + + + animate-elem-33-t + + SVG Image + + PNG Image + + + + + + Previous + + + No Nav + + + Next + + + + \ No newline at end of file diff --git a/test/W3C_SVG_12_TinyTestSuite_beta/svgHarness/animate-elem-34-t.svg b/test/W3C_SVG_12_TinyTestSuite_beta/svgHarness/animate-elem-34-t.svg new file mode 100755 index 00000000..b80d742b --- /dev/null +++ b/test/W3C_SVG_12_TinyTestSuite_beta/svgHarness/animate-elem-34-t.svg @@ -0,0 +1,43 @@ + + + + + + + + + + + + + + + + + + + + + + + animate-elem-34-t + + SVG Image + + PNG Image + + + + + + Previous + + + No Nav + + + Next + + + + \ No newline at end of file diff --git a/test/W3C_SVG_12_TinyTestSuite_beta/svgHarness/animate-elem-35-t.svg b/test/W3C_SVG_12_TinyTestSuite_beta/svgHarness/animate-elem-35-t.svg new file mode 100755 index 00000000..7051fe02 --- /dev/null +++ b/test/W3C_SVG_12_TinyTestSuite_beta/svgHarness/animate-elem-35-t.svg @@ -0,0 +1,43 @@ + + + + + + + + + + + + + + + + + + + + + + + animate-elem-35-t + + SVG Image + + PNG Image + + + + + + Previous + + + No Nav + + + Next + + + + \ No newline at end of file diff --git a/test/W3C_SVG_12_TinyTestSuite_beta/svgHarness/animate-elem-36-t.svg b/test/W3C_SVG_12_TinyTestSuite_beta/svgHarness/animate-elem-36-t.svg new file mode 100755 index 00000000..a1e7feb0 --- /dev/null +++ b/test/W3C_SVG_12_TinyTestSuite_beta/svgHarness/animate-elem-36-t.svg @@ -0,0 +1,43 @@ + + + + + + + + + + + + + + + + + + + + + + + animate-elem-36-t + + SVG Image + + PNG Image + + + + + + Previous + + + No Nav + + + Next + + + + \ No newline at end of file diff --git a/test/W3C_SVG_12_TinyTestSuite_beta/svgHarness/animate-elem-37-t.svg b/test/W3C_SVG_12_TinyTestSuite_beta/svgHarness/animate-elem-37-t.svg new file mode 100755 index 00000000..e3604b22 --- /dev/null +++ b/test/W3C_SVG_12_TinyTestSuite_beta/svgHarness/animate-elem-37-t.svg @@ -0,0 +1,43 @@ + + + + + + + + + + + + + + + + + + + + + + + animate-elem-37-t + + SVG Image + + PNG Image + + + + + + Previous + + + No Nav + + + Next + + + + \ No newline at end of file diff --git a/test/W3C_SVG_12_TinyTestSuite_beta/svgHarness/animate-elem-38-t.svg b/test/W3C_SVG_12_TinyTestSuite_beta/svgHarness/animate-elem-38-t.svg new file mode 100755 index 00000000..88ac1c19 --- /dev/null +++ b/test/W3C_SVG_12_TinyTestSuite_beta/svgHarness/animate-elem-38-t.svg @@ -0,0 +1,43 @@ + + + + + + + + + + + + + + + + + + + + + + + animate-elem-38-t + + SVG Image + + PNG Image + + + + + + Previous + + + No Nav + + + Next + + + + \ No newline at end of file diff --git a/test/W3C_SVG_12_TinyTestSuite_beta/svgHarness/animate-elem-39-t.svg b/test/W3C_SVG_12_TinyTestSuite_beta/svgHarness/animate-elem-39-t.svg new file mode 100755 index 00000000..24d8e4e1 --- /dev/null +++ b/test/W3C_SVG_12_TinyTestSuite_beta/svgHarness/animate-elem-39-t.svg @@ -0,0 +1,43 @@ + + + + + + + + + + + + + + + + + + + + + + + animate-elem-39-t + + SVG Image + + PNG Image + + + + + + Previous + + + No Nav + + + Next + + + + \ No newline at end of file diff --git a/test/W3C_SVG_12_TinyTestSuite_beta/svgHarness/animate-elem-40-t.svg b/test/W3C_SVG_12_TinyTestSuite_beta/svgHarness/animate-elem-40-t.svg new file mode 100755 index 00000000..a82a54d7 --- /dev/null +++ b/test/W3C_SVG_12_TinyTestSuite_beta/svgHarness/animate-elem-40-t.svg @@ -0,0 +1,43 @@ + + + + + + + + + + + + + + + + + + + + + + + animate-elem-40-t + + SVG Image + + PNG Image + + + + + + Previous + + + No Nav + + + Next + + + + \ No newline at end of file diff --git a/test/W3C_SVG_12_TinyTestSuite_beta/svgHarness/animate-elem-41-t.svg b/test/W3C_SVG_12_TinyTestSuite_beta/svgHarness/animate-elem-41-t.svg new file mode 100755 index 00000000..58fcba49 --- /dev/null +++ b/test/W3C_SVG_12_TinyTestSuite_beta/svgHarness/animate-elem-41-t.svg @@ -0,0 +1,43 @@ + + + + + + + + + + + + + + + + + + + + + + + animate-elem-41-t + + SVG Image + + PNG Image + + + + + + Previous + + + No Nav + + + Next + + + + \ No newline at end of file diff --git a/test/W3C_SVG_12_TinyTestSuite_beta/svgHarness/animate-elem-44-t.svg b/test/W3C_SVG_12_TinyTestSuite_beta/svgHarness/animate-elem-44-t.svg new file mode 100755 index 00000000..9c35fab2 --- /dev/null +++ b/test/W3C_SVG_12_TinyTestSuite_beta/svgHarness/animate-elem-44-t.svg @@ -0,0 +1,43 @@ + + + + + + + + + + + + + + + + + + + + + + + animate-elem-44-t + + SVG Image + + PNG Image + + + + + + Previous + + + No Nav + + + Next + + + + \ No newline at end of file diff --git a/test/W3C_SVG_12_TinyTestSuite_beta/svgHarness/animate-elem-46-t.svg b/test/W3C_SVG_12_TinyTestSuite_beta/svgHarness/animate-elem-46-t.svg new file mode 100755 index 00000000..9f7edd81 --- /dev/null +++ b/test/W3C_SVG_12_TinyTestSuite_beta/svgHarness/animate-elem-46-t.svg @@ -0,0 +1,43 @@ + + + + + + + + + + + + + + + + + + + + + + + animate-elem-46-t + + SVG Image + + PNG Image + + + + + + Previous + + + No Nav + + + Next + + + + \ No newline at end of file diff --git a/test/W3C_SVG_12_TinyTestSuite_beta/svgHarness/animate-elem-52-t.svg b/test/W3C_SVG_12_TinyTestSuite_beta/svgHarness/animate-elem-52-t.svg new file mode 100755 index 00000000..d9b19215 --- /dev/null +++ b/test/W3C_SVG_12_TinyTestSuite_beta/svgHarness/animate-elem-52-t.svg @@ -0,0 +1,43 @@ + + + + + + + + + + + + + + + + + + + + + + + animate-elem-52-t + + SVG Image + + PNG Image + + + + + + Previous + + + No Nav + + + Next + + + + \ No newline at end of file diff --git a/test/W3C_SVG_12_TinyTestSuite_beta/svgHarness/animate-elem-53-t.svg b/test/W3C_SVG_12_TinyTestSuite_beta/svgHarness/animate-elem-53-t.svg new file mode 100755 index 00000000..1f5049c4 --- /dev/null +++ b/test/W3C_SVG_12_TinyTestSuite_beta/svgHarness/animate-elem-53-t.svg @@ -0,0 +1,43 @@ + + + + + + + + + + + + + + + + + + + + + + + animate-elem-53-t + + SVG Image + + PNG Image + + + + + + Previous + + + No Nav + + + Next + + + + \ No newline at end of file diff --git a/test/W3C_SVG_12_TinyTestSuite_beta/svgHarness/animate-elem-61-t.svg b/test/W3C_SVG_12_TinyTestSuite_beta/svgHarness/animate-elem-61-t.svg new file mode 100755 index 00000000..aaa2aa7d --- /dev/null +++ b/test/W3C_SVG_12_TinyTestSuite_beta/svgHarness/animate-elem-61-t.svg @@ -0,0 +1,43 @@ + + + + + + + + + + + + + + + + + + + + + + + animate-elem-61-t + + SVG Image + + PNG Image + + + + + + Previous + + + No Nav + + + Next + + + + \ No newline at end of file diff --git a/test/W3C_SVG_12_TinyTestSuite_beta/svgHarness/animate-elem-64-t.svg b/test/W3C_SVG_12_TinyTestSuite_beta/svgHarness/animate-elem-64-t.svg new file mode 100755 index 00000000..ba9a3b83 --- /dev/null +++ b/test/W3C_SVG_12_TinyTestSuite_beta/svgHarness/animate-elem-64-t.svg @@ -0,0 +1,43 @@ + + + + + + + + + + + + + + + + + + + + + + + animate-elem-64-t + + SVG Image + + PNG Image + + + + + + Previous + + + No Nav + + + Next + + + + \ No newline at end of file diff --git a/test/W3C_SVG_12_TinyTestSuite_beta/svgHarness/animate-elem-65-t.svg b/test/W3C_SVG_12_TinyTestSuite_beta/svgHarness/animate-elem-65-t.svg new file mode 100755 index 00000000..fd02ac77 --- /dev/null +++ b/test/W3C_SVG_12_TinyTestSuite_beta/svgHarness/animate-elem-65-t.svg @@ -0,0 +1,43 @@ + + + + + + + + + + + + + + + + + + + + + + + animate-elem-65-t + + SVG Image + + PNG Image + + + + + + Previous + + + No Nav + + + Next + + + + \ No newline at end of file diff --git a/test/W3C_SVG_12_TinyTestSuite_beta/svgHarness/animate-elem-66-t.svg b/test/W3C_SVG_12_TinyTestSuite_beta/svgHarness/animate-elem-66-t.svg new file mode 100755 index 00000000..8ed956d5 --- /dev/null +++ b/test/W3C_SVG_12_TinyTestSuite_beta/svgHarness/animate-elem-66-t.svg @@ -0,0 +1,43 @@ + + + + + + + + + + + + + + + + + + + + + + + animate-elem-66-t + + SVG Image + + PNG Image + + + + + + Previous + + + No Nav + + + Next + + + + \ No newline at end of file diff --git a/test/W3C_SVG_12_TinyTestSuite_beta/svgHarness/animate-elem-67-t.svg b/test/W3C_SVG_12_TinyTestSuite_beta/svgHarness/animate-elem-67-t.svg new file mode 100755 index 00000000..c9df0549 --- /dev/null +++ b/test/W3C_SVG_12_TinyTestSuite_beta/svgHarness/animate-elem-67-t.svg @@ -0,0 +1,43 @@ + + + + + + + + + + + + + + + + + + + + + + + animate-elem-67-t + + SVG Image + + PNG Image + + + + + + Previous + + + No Nav + + + Next + + + + \ No newline at end of file diff --git a/test/W3C_SVG_12_TinyTestSuite_beta/svgHarness/animate-elem-68-t.svg b/test/W3C_SVG_12_TinyTestSuite_beta/svgHarness/animate-elem-68-t.svg new file mode 100755 index 00000000..e542e310 --- /dev/null +++ b/test/W3C_SVG_12_TinyTestSuite_beta/svgHarness/animate-elem-68-t.svg @@ -0,0 +1,43 @@ + + + + + + + + + + + + + + + + + + + + + + + animate-elem-68-t + + SVG Image + + PNG Image + + + + + + Previous + + + No Nav + + + Next + + + + \ No newline at end of file diff --git a/test/W3C_SVG_12_TinyTestSuite_beta/svgHarness/animate-elem-69-t.svg b/test/W3C_SVG_12_TinyTestSuite_beta/svgHarness/animate-elem-69-t.svg new file mode 100755 index 00000000..4cf21649 --- /dev/null +++ b/test/W3C_SVG_12_TinyTestSuite_beta/svgHarness/animate-elem-69-t.svg @@ -0,0 +1,43 @@ + + + + + + + + + + + + + + + + + + + + + + + animate-elem-69-t + + SVG Image + + PNG Image + + + + + + Previous + + + No Nav + + + Next + + + + \ No newline at end of file diff --git a/test/W3C_SVG_12_TinyTestSuite_beta/svgHarness/animate-elem-70-t.svg b/test/W3C_SVG_12_TinyTestSuite_beta/svgHarness/animate-elem-70-t.svg new file mode 100755 index 00000000..78404c35 --- /dev/null +++ b/test/W3C_SVG_12_TinyTestSuite_beta/svgHarness/animate-elem-70-t.svg @@ -0,0 +1,43 @@ + + + + + + + + + + + + + + + + + + + + + + + animate-elem-70-t + + SVG Image + + PNG Image + + + + + + Previous + + + No Nav + + + Next + + + + \ No newline at end of file diff --git a/test/W3C_SVG_12_TinyTestSuite_beta/svgHarness/animate-elem-77-t.svg b/test/W3C_SVG_12_TinyTestSuite_beta/svgHarness/animate-elem-77-t.svg new file mode 100755 index 00000000..18379114 --- /dev/null +++ b/test/W3C_SVG_12_TinyTestSuite_beta/svgHarness/animate-elem-77-t.svg @@ -0,0 +1,43 @@ + + + + + + + + + + + + + + + + + + + + + + + animate-elem-77-t + + SVG Image + + PNG Image + + + + + + Previous + + + No Nav + + + Next + + + + \ No newline at end of file diff --git a/test/W3C_SVG_12_TinyTestSuite_beta/svgHarness/animate-elem-78-t.svg b/test/W3C_SVG_12_TinyTestSuite_beta/svgHarness/animate-elem-78-t.svg new file mode 100755 index 00000000..bdf7b402 --- /dev/null +++ b/test/W3C_SVG_12_TinyTestSuite_beta/svgHarness/animate-elem-78-t.svg @@ -0,0 +1,43 @@ + + + + + + + + + + + + + + + + + + + + + + + animate-elem-78-t + + SVG Image + + PNG Image + + + + + + Previous + + + No Nav + + + Next + + + + \ No newline at end of file diff --git a/test/W3C_SVG_12_TinyTestSuite_beta/svgHarness/animate-elem-80-t.svg b/test/W3C_SVG_12_TinyTestSuite_beta/svgHarness/animate-elem-80-t.svg new file mode 100755 index 00000000..c3e9c1f8 --- /dev/null +++ b/test/W3C_SVG_12_TinyTestSuite_beta/svgHarness/animate-elem-80-t.svg @@ -0,0 +1,43 @@ + + + + + + + + + + + + + + + + + + + + + + + animate-elem-80-t + + SVG Image + + PNG Image + + + + + + Previous + + + No Nav + + + Next + + + + \ No newline at end of file diff --git a/test/W3C_SVG_12_TinyTestSuite_beta/svgHarness/animate-elem-81-t.svg b/test/W3C_SVG_12_TinyTestSuite_beta/svgHarness/animate-elem-81-t.svg new file mode 100755 index 00000000..43083f26 --- /dev/null +++ b/test/W3C_SVG_12_TinyTestSuite_beta/svgHarness/animate-elem-81-t.svg @@ -0,0 +1,43 @@ + + + + + + + + + + + + + + + + + + + + + + + animate-elem-81-t + + SVG Image + + PNG Image + + + + + + Previous + + + No Nav + + + Next + + + + \ No newline at end of file diff --git a/test/W3C_SVG_12_TinyTestSuite_beta/svgHarness/animate-elem-82-t.svg b/test/W3C_SVG_12_TinyTestSuite_beta/svgHarness/animate-elem-82-t.svg new file mode 100755 index 00000000..a14ac93e --- /dev/null +++ b/test/W3C_SVG_12_TinyTestSuite_beta/svgHarness/animate-elem-82-t.svg @@ -0,0 +1,43 @@ + + + + + + + + + + + + + + + + + + + + + + + animate-elem-82-t + + SVG Image + + PNG Image + + + + + + Previous + + + No Nav + + + Next + + + + \ No newline at end of file diff --git a/test/W3C_SVG_12_TinyTestSuite_beta/svgHarness/animate-elem-83-t.svg b/test/W3C_SVG_12_TinyTestSuite_beta/svgHarness/animate-elem-83-t.svg new file mode 100755 index 00000000..5fed2274 --- /dev/null +++ b/test/W3C_SVG_12_TinyTestSuite_beta/svgHarness/animate-elem-83-t.svg @@ -0,0 +1,43 @@ + + + + + + + + + + + + + + + + + + + + + + + animate-elem-83-t + + SVG Image + + PNG Image + + + + + + Previous + + + No Nav + + + Next + + + + \ No newline at end of file diff --git a/test/W3C_SVG_12_TinyTestSuite_beta/svgHarness/animate-elem-84-t.svg b/test/W3C_SVG_12_TinyTestSuite_beta/svgHarness/animate-elem-84-t.svg new file mode 100755 index 00000000..5f1bf5ab --- /dev/null +++ b/test/W3C_SVG_12_TinyTestSuite_beta/svgHarness/animate-elem-84-t.svg @@ -0,0 +1,43 @@ + + + + + + + + + + + + + + + + + + + + + + + animate-elem-84-t + + SVG Image + + PNG Image + + + + + + Previous + + + No Nav + + + Next + + + + \ No newline at end of file diff --git a/test/W3C_SVG_12_TinyTestSuite_beta/svgHarness/animate-elem-85-t.svg b/test/W3C_SVG_12_TinyTestSuite_beta/svgHarness/animate-elem-85-t.svg new file mode 100755 index 00000000..16888fe1 --- /dev/null +++ b/test/W3C_SVG_12_TinyTestSuite_beta/svgHarness/animate-elem-85-t.svg @@ -0,0 +1,43 @@ + + + + + + + + + + + + + + + + + + + + + + + animate-elem-85-t + + SVG Image + + PNG Image + + + + + + Previous + + + No Nav + + + Next + + + + \ No newline at end of file diff --git a/test/W3C_SVG_12_TinyTestSuite_beta/svgHarness/animate-elem-86-t.svg b/test/W3C_SVG_12_TinyTestSuite_beta/svgHarness/animate-elem-86-t.svg new file mode 100755 index 00000000..a7d80fa3 --- /dev/null +++ b/test/W3C_SVG_12_TinyTestSuite_beta/svgHarness/animate-elem-86-t.svg @@ -0,0 +1,43 @@ + + + + + + + + + + + + + + + + + + + + + + + animate-elem-86-t + + SVG Image + + PNG Image + + + + + + Previous + + + No Nav + + + Next + + + + \ No newline at end of file diff --git a/test/W3C_SVG_12_TinyTestSuite_beta/svgHarness/conf-reader-201-t.svg b/test/W3C_SVG_12_TinyTestSuite_beta/svgHarness/conf-reader-201-t.svg new file mode 100755 index 00000000..af4a7083 --- /dev/null +++ b/test/W3C_SVG_12_TinyTestSuite_beta/svgHarness/conf-reader-201-t.svg @@ -0,0 +1,43 @@ + + + + + + + + + + + + + + + + + + + + + + + conf-reader-201-t + + SVG Image + + PNG Image + + + + + + Previous + + + No Nav + + + Next + + + + \ No newline at end of file diff --git a/test/W3C_SVG_12_TinyTestSuite_beta/svgHarness/coords-constr-201-t.svg b/test/W3C_SVG_12_TinyTestSuite_beta/svgHarness/coords-constr-201-t.svg new file mode 100755 index 00000000..c03e673d --- /dev/null +++ b/test/W3C_SVG_12_TinyTestSuite_beta/svgHarness/coords-constr-201-t.svg @@ -0,0 +1,43 @@ + + + + + + + + + + + + + + + + + + + + + + + coords-constr-201-t + + SVG Image + + PNG Image + + + + + + Previous + + + No Nav + + + Next + + + + \ No newline at end of file diff --git a/test/W3C_SVG_12_TinyTestSuite_beta/svgHarness/coords-constr-202-t.svg b/test/W3C_SVG_12_TinyTestSuite_beta/svgHarness/coords-constr-202-t.svg new file mode 100755 index 00000000..7d9b7c45 --- /dev/null +++ b/test/W3C_SVG_12_TinyTestSuite_beta/svgHarness/coords-constr-202-t.svg @@ -0,0 +1,43 @@ + + + + + + + + + + + + + + + + + + + + + + + coords-constr-202-t + + SVG Image + + PNG Image + + + + + + Previous + + + No Nav + + + Next + + + + \ No newline at end of file diff --git a/test/W3C_SVG_12_TinyTestSuite_beta/svgHarness/coords-constr-203-t.svg b/test/W3C_SVG_12_TinyTestSuite_beta/svgHarness/coords-constr-203-t.svg new file mode 100755 index 00000000..228bdc87 --- /dev/null +++ b/test/W3C_SVG_12_TinyTestSuite_beta/svgHarness/coords-constr-203-t.svg @@ -0,0 +1,43 @@ + + + + + + + + + + + + + + + + + + + + + + + coords-constr-203-t + + SVG Image + + PNG Image + + + + + + Previous + + + No Nav + + + Next + + + + \ No newline at end of file diff --git a/test/W3C_SVG_12_TinyTestSuite_beta/svgHarness/coords-constr-204-t.svg b/test/W3C_SVG_12_TinyTestSuite_beta/svgHarness/coords-constr-204-t.svg new file mode 100755 index 00000000..00038439 --- /dev/null +++ b/test/W3C_SVG_12_TinyTestSuite_beta/svgHarness/coords-constr-204-t.svg @@ -0,0 +1,43 @@ + + + + + + + + + + + + + + + + + + + + + + + coords-constr-204-t + + SVG Image + + PNG Image + + + + + + Previous + + + No Nav + + + Next + + + + \ No newline at end of file diff --git a/test/W3C_SVG_12_TinyTestSuite_beta/svgHarness/coords-coord-01-t.svg b/test/W3C_SVG_12_TinyTestSuite_beta/svgHarness/coords-coord-01-t.svg new file mode 100755 index 00000000..c94e0031 --- /dev/null +++ b/test/W3C_SVG_12_TinyTestSuite_beta/svgHarness/coords-coord-01-t.svg @@ -0,0 +1,43 @@ + + + + + + + + + + + + + + + + + + + + + + + coords-coord-01-t + + SVG Image + + PNG Image + + + + + + Previous + + + No Nav + + + Next + + + + \ No newline at end of file diff --git a/test/W3C_SVG_12_TinyTestSuite_beta/svgHarness/coords-pAR-201-t.svg b/test/W3C_SVG_12_TinyTestSuite_beta/svgHarness/coords-pAR-201-t.svg new file mode 100755 index 00000000..5ff0a17d --- /dev/null +++ b/test/W3C_SVG_12_TinyTestSuite_beta/svgHarness/coords-pAR-201-t.svg @@ -0,0 +1,43 @@ + + + + + + + + + + + + + + + + + + + + + + + coords-pAR-201-t + + SVG Image + + PNG Image + + + + + + Previous + + + No Nav + + + Next + + + + \ No newline at end of file diff --git a/test/W3C_SVG_12_TinyTestSuite_beta/svgHarness/coords-trans-01-t.svg b/test/W3C_SVG_12_TinyTestSuite_beta/svgHarness/coords-trans-01-t.svg new file mode 100755 index 00000000..77dcad31 --- /dev/null +++ b/test/W3C_SVG_12_TinyTestSuite_beta/svgHarness/coords-trans-01-t.svg @@ -0,0 +1,43 @@ + + + + + + + + + + + + + + + + + + + + + + + coords-trans-01-t + + SVG Image + + PNG Image + + + + + + Previous + + + No Nav + + + Next + + + + \ No newline at end of file diff --git a/test/W3C_SVG_12_TinyTestSuite_beta/svgHarness/coords-trans-02-t.svg b/test/W3C_SVG_12_TinyTestSuite_beta/svgHarness/coords-trans-02-t.svg new file mode 100755 index 00000000..e731a2f7 --- /dev/null +++ b/test/W3C_SVG_12_TinyTestSuite_beta/svgHarness/coords-trans-02-t.svg @@ -0,0 +1,43 @@ + + + + + + + + + + + + + + + + + + + + + + + coords-trans-02-t + + SVG Image + + PNG Image + + + + + + Previous + + + No Nav + + + Next + + + + \ No newline at end of file diff --git a/test/W3C_SVG_12_TinyTestSuite_beta/svgHarness/coords-trans-03-t.svg b/test/W3C_SVG_12_TinyTestSuite_beta/svgHarness/coords-trans-03-t.svg new file mode 100755 index 00000000..46156e9d --- /dev/null +++ b/test/W3C_SVG_12_TinyTestSuite_beta/svgHarness/coords-trans-03-t.svg @@ -0,0 +1,43 @@ + + + + + + + + + + + + + + + + + + + + + + + coords-trans-03-t + + SVG Image + + PNG Image + + + + + + Previous + + + No Nav + + + Next + + + + \ No newline at end of file diff --git a/test/W3C_SVG_12_TinyTestSuite_beta/svgHarness/coords-trans-04-t.svg b/test/W3C_SVG_12_TinyTestSuite_beta/svgHarness/coords-trans-04-t.svg new file mode 100755 index 00000000..0527e961 --- /dev/null +++ b/test/W3C_SVG_12_TinyTestSuite_beta/svgHarness/coords-trans-04-t.svg @@ -0,0 +1,43 @@ + + + + + + + + + + + + + + + + + + + + + + + coords-trans-04-t + + SVG Image + + PNG Image + + + + + + Previous + + + No Nav + + + Next + + + + \ No newline at end of file diff --git a/test/W3C_SVG_12_TinyTestSuite_beta/svgHarness/coords-trans-05-t.svg b/test/W3C_SVG_12_TinyTestSuite_beta/svgHarness/coords-trans-05-t.svg new file mode 100755 index 00000000..b363d6c7 --- /dev/null +++ b/test/W3C_SVG_12_TinyTestSuite_beta/svgHarness/coords-trans-05-t.svg @@ -0,0 +1,43 @@ + + + + + + + + + + + + + + + + + + + + + + + coords-trans-05-t + + SVG Image + + PNG Image + + + + + + Previous + + + No Nav + + + Next + + + + \ No newline at end of file diff --git a/test/W3C_SVG_12_TinyTestSuite_beta/svgHarness/coords-trans-06-t.svg b/test/W3C_SVG_12_TinyTestSuite_beta/svgHarness/coords-trans-06-t.svg new file mode 100755 index 00000000..444e36d5 --- /dev/null +++ b/test/W3C_SVG_12_TinyTestSuite_beta/svgHarness/coords-trans-06-t.svg @@ -0,0 +1,43 @@ + + + + + + + + + + + + + + + + + + + + + + + coords-trans-06-t + + SVG Image + + PNG Image + + + + + + Previous + + + No Nav + + + Next + + + + \ No newline at end of file diff --git a/test/W3C_SVG_12_TinyTestSuite_beta/svgHarness/coords-trans-07-t.svg b/test/W3C_SVG_12_TinyTestSuite_beta/svgHarness/coords-trans-07-t.svg new file mode 100755 index 00000000..faa43661 --- /dev/null +++ b/test/W3C_SVG_12_TinyTestSuite_beta/svgHarness/coords-trans-07-t.svg @@ -0,0 +1,43 @@ + + + + + + + + + + + + + + + + + + + + + + + coords-trans-07-t + + SVG Image + + PNG Image + + + + + + Previous + + + No Nav + + + Next + + + + \ No newline at end of file diff --git a/test/W3C_SVG_12_TinyTestSuite_beta/svgHarness/coords-trans-08-t.svg b/test/W3C_SVG_12_TinyTestSuite_beta/svgHarness/coords-trans-08-t.svg new file mode 100755 index 00000000..094e23f9 --- /dev/null +++ b/test/W3C_SVG_12_TinyTestSuite_beta/svgHarness/coords-trans-08-t.svg @@ -0,0 +1,43 @@ + + + + + + + + + + + + + + + + + + + + + + + coords-trans-08-t + + SVG Image + + PNG Image + + + + + + Previous + + + No Nav + + + Next + + + + \ No newline at end of file diff --git a/test/W3C_SVG_12_TinyTestSuite_beta/svgHarness/coords-trans-09-t.svg b/test/W3C_SVG_12_TinyTestSuite_beta/svgHarness/coords-trans-09-t.svg new file mode 100755 index 00000000..c05d0685 --- /dev/null +++ b/test/W3C_SVG_12_TinyTestSuite_beta/svgHarness/coords-trans-09-t.svg @@ -0,0 +1,43 @@ + + + + + + + + + + + + + + + + + + + + + + + coords-trans-09-t + + SVG Image + + PNG Image + + + + + + Previous + + + No Nav + + + Next + + + + \ No newline at end of file diff --git a/test/W3C_SVG_12_TinyTestSuite_beta/svgHarness/coords-units-01-t.svg b/test/W3C_SVG_12_TinyTestSuite_beta/svgHarness/coords-units-01-t.svg new file mode 100755 index 00000000..d6383746 --- /dev/null +++ b/test/W3C_SVG_12_TinyTestSuite_beta/svgHarness/coords-units-01-t.svg @@ -0,0 +1,43 @@ + + + + + + + + + + + + + + + + + + + + + + + coords-units-01-t + + SVG Image + + PNG Image + + + + + + Previous + + + No Nav + + + Next + + + + \ No newline at end of file diff --git a/test/W3C_SVG_12_TinyTestSuite_beta/svgHarness/coords-viewattr-05-t.svg b/test/W3C_SVG_12_TinyTestSuite_beta/svgHarness/coords-viewattr-05-t.svg new file mode 100755 index 00000000..a425a6f3 --- /dev/null +++ b/test/W3C_SVG_12_TinyTestSuite_beta/svgHarness/coords-viewattr-05-t.svg @@ -0,0 +1,43 @@ + + + + + + + + + + + + + + + + + + + + + + + coords-viewattr-05-t + + SVG Image + + PNG Image + + + + + + Previous + + + No Nav + + + Next + + + + \ No newline at end of file diff --git a/test/W3C_SVG_12_TinyTestSuite_beta/svgHarness/extend-namespace-02-t.svg b/test/W3C_SVG_12_TinyTestSuite_beta/svgHarness/extend-namespace-02-t.svg new file mode 100755 index 00000000..6ef12aeb --- /dev/null +++ b/test/W3C_SVG_12_TinyTestSuite_beta/svgHarness/extend-namespace-02-t.svg @@ -0,0 +1,43 @@ + + + + + + + + + + + + + + + + + + + + + + + extend-namespace-02-t + + SVG Image + + PNG Image + + + + + + Previous + + + No Nav + + + Next + + + + \ No newline at end of file diff --git a/test/W3C_SVG_12_TinyTestSuite_beta/svgHarness/fonts-desc-02-t.svg b/test/W3C_SVG_12_TinyTestSuite_beta/svgHarness/fonts-desc-02-t.svg new file mode 100755 index 00000000..6ee90897 --- /dev/null +++ b/test/W3C_SVG_12_TinyTestSuite_beta/svgHarness/fonts-desc-02-t.svg @@ -0,0 +1,43 @@ + + + + + + + + + + + + + + + + + + + + + + + fonts-desc-02-t + + SVG Image + + PNG Image + + + + + + Previous + + + No Nav + + + Next + + + + \ No newline at end of file diff --git a/test/W3C_SVG_12_TinyTestSuite_beta/svgHarness/fonts-elem-01-t.svg b/test/W3C_SVG_12_TinyTestSuite_beta/svgHarness/fonts-elem-01-t.svg new file mode 100755 index 00000000..db0ace50 --- /dev/null +++ b/test/W3C_SVG_12_TinyTestSuite_beta/svgHarness/fonts-elem-01-t.svg @@ -0,0 +1,43 @@ + + + + + + + + + + + + + + + + + + + + + + + fonts-elem-01-t + + SVG Image + + PNG Image + + + + + + Previous + + + No Nav + + + Next + + + + \ No newline at end of file diff --git a/test/W3C_SVG_12_TinyTestSuite_beta/svgHarness/fonts-elem-02-t.svg b/test/W3C_SVG_12_TinyTestSuite_beta/svgHarness/fonts-elem-02-t.svg new file mode 100755 index 00000000..0d566619 --- /dev/null +++ b/test/W3C_SVG_12_TinyTestSuite_beta/svgHarness/fonts-elem-02-t.svg @@ -0,0 +1,43 @@ + + + + + + + + + + + + + + + + + + + + + + + fonts-elem-02-t + + SVG Image + + PNG Image + + + + + + Previous + + + No Nav + + + Next + + + + \ No newline at end of file diff --git a/test/W3C_SVG_12_TinyTestSuite_beta/svgHarness/fonts-elem-03-t.svg b/test/W3C_SVG_12_TinyTestSuite_beta/svgHarness/fonts-elem-03-t.svg new file mode 100755 index 00000000..559baec7 --- /dev/null +++ b/test/W3C_SVG_12_TinyTestSuite_beta/svgHarness/fonts-elem-03-t.svg @@ -0,0 +1,43 @@ + + + + + + + + + + + + + + + + + + + + + + + fonts-elem-03-t + + SVG Image + + PNG Image + + + + + + Previous + + + No Nav + + + Next + + + + \ No newline at end of file diff --git a/test/W3C_SVG_12_TinyTestSuite_beta/svgHarness/fonts-elem-06-t.svg b/test/W3C_SVG_12_TinyTestSuite_beta/svgHarness/fonts-elem-06-t.svg new file mode 100755 index 00000000..cf071274 --- /dev/null +++ b/test/W3C_SVG_12_TinyTestSuite_beta/svgHarness/fonts-elem-06-t.svg @@ -0,0 +1,43 @@ + + + + + + + + + + + + + + + + + + + + + + + fonts-elem-06-t + + SVG Image + + PNG Image + + + + + + Previous + + + No Nav + + + Next + + + + \ No newline at end of file diff --git a/test/W3C_SVG_12_TinyTestSuite_beta/svgHarness/fonts-glyph-02-t.svg b/test/W3C_SVG_12_TinyTestSuite_beta/svgHarness/fonts-glyph-02-t.svg new file mode 100755 index 00000000..5b9452de --- /dev/null +++ b/test/W3C_SVG_12_TinyTestSuite_beta/svgHarness/fonts-glyph-02-t.svg @@ -0,0 +1,43 @@ + + + + + + + + + + + + + + + + + + + + + + + fonts-glyph-02-t + + SVG Image + + PNG Image + + + + + + Previous + + + No Nav + + + Next + + + + \ No newline at end of file diff --git a/test/W3C_SVG_12_TinyTestSuite_beta/svgHarness/fonts-glyph-03-t.svg b/test/W3C_SVG_12_TinyTestSuite_beta/svgHarness/fonts-glyph-03-t.svg new file mode 100755 index 00000000..a613f92e --- /dev/null +++ b/test/W3C_SVG_12_TinyTestSuite_beta/svgHarness/fonts-glyph-03-t.svg @@ -0,0 +1,43 @@ + + + + + + + + + + + + + + + + + + + + + + + fonts-glyph-03-t + + SVG Image + + PNG Image + + + + + + Previous + + + No Nav + + + Next + + + + \ No newline at end of file diff --git a/test/W3C_SVG_12_TinyTestSuite_beta/svgHarness/fonts-glyph-04-t.svg b/test/W3C_SVG_12_TinyTestSuite_beta/svgHarness/fonts-glyph-04-t.svg new file mode 100755 index 00000000..39217228 --- /dev/null +++ b/test/W3C_SVG_12_TinyTestSuite_beta/svgHarness/fonts-glyph-04-t.svg @@ -0,0 +1,43 @@ + + + + + + + + + + + + + + + + + + + + + + + fonts-glyph-04-t + + SVG Image + + PNG Image + + + + + + Previous + + + No Nav + + + Next + + + + \ No newline at end of file diff --git a/test/W3C_SVG_12_TinyTestSuite_beta/svgHarness/fonts-glyph-201-t.svg b/test/W3C_SVG_12_TinyTestSuite_beta/svgHarness/fonts-glyph-201-t.svg new file mode 100755 index 00000000..9bee2836 --- /dev/null +++ b/test/W3C_SVG_12_TinyTestSuite_beta/svgHarness/fonts-glyph-201-t.svg @@ -0,0 +1,43 @@ + + + + + + + + + + + + + + + + + + + + + + + fonts-glyph-201-t + + SVG Image + + PNG Image + + + + + + Previous + + + No Nav + + + Next + + + + \ No newline at end of file diff --git a/test/W3C_SVG_12_TinyTestSuite_beta/svgHarness/fonts-glyph-202-t.svg b/test/W3C_SVG_12_TinyTestSuite_beta/svgHarness/fonts-glyph-202-t.svg new file mode 100755 index 00000000..7e7f601c --- /dev/null +++ b/test/W3C_SVG_12_TinyTestSuite_beta/svgHarness/fonts-glyph-202-t.svg @@ -0,0 +1,43 @@ + + + + + + + + + + + + + + + + + + + + + + + fonts-glyph-202-t + + SVG Image + + PNG Image + + + + + + Previous + + + No Nav + + + Next + + + + \ No newline at end of file diff --git a/test/W3C_SVG_12_TinyTestSuite_beta/svgHarness/fonts-glyph-203-t.svg b/test/W3C_SVG_12_TinyTestSuite_beta/svgHarness/fonts-glyph-203-t.svg new file mode 100755 index 00000000..082c99ff --- /dev/null +++ b/test/W3C_SVG_12_TinyTestSuite_beta/svgHarness/fonts-glyph-203-t.svg @@ -0,0 +1,43 @@ + + + + + + + + + + + + + + + + + + + + + + + fonts-glyph-203-t + + SVG Image + + PNG Image + + + + + + Previous + + + No Nav + + + Next + + + + \ No newline at end of file diff --git a/test/W3C_SVG_12_TinyTestSuite_beta/svgHarness/fonts-kern-01-t.svg b/test/W3C_SVG_12_TinyTestSuite_beta/svgHarness/fonts-kern-01-t.svg new file mode 100755 index 00000000..35780e1f --- /dev/null +++ b/test/W3C_SVG_12_TinyTestSuite_beta/svgHarness/fonts-kern-01-t.svg @@ -0,0 +1,43 @@ + + + + + + + + + + + + + + + + + + + + + + + fonts-kern-01-t + + SVG Image + + PNG Image + + + + + + Previous + + + No Nav + + + Next + + + + \ No newline at end of file diff --git a/test/W3C_SVG_12_TinyTestSuite_beta/svgHarness/fonts-overview-201-t.svg b/test/W3C_SVG_12_TinyTestSuite_beta/svgHarness/fonts-overview-201-t.svg new file mode 100755 index 00000000..30f91d48 --- /dev/null +++ b/test/W3C_SVG_12_TinyTestSuite_beta/svgHarness/fonts-overview-201-t.svg @@ -0,0 +1,43 @@ + + + + + + + + + + + + + + + + + + + + + + + fonts-overview-201-t + + SVG Image + + PNG Image + + + + + + Previous + + + No Nav + + + Next + + + + \ No newline at end of file diff --git a/test/W3C_SVG_12_TinyTestSuite_beta/svgHarness/interact-dom-02-t.svg b/test/W3C_SVG_12_TinyTestSuite_beta/svgHarness/interact-dom-02-t.svg new file mode 100755 index 00000000..ebea5224 --- /dev/null +++ b/test/W3C_SVG_12_TinyTestSuite_beta/svgHarness/interact-dom-02-t.svg @@ -0,0 +1,43 @@ + + + + + + + + + + + + + + + + + + + + + + + interact-dom-02-t + + SVG Image + + PNG Image + + + + + + Previous + + + No Nav + + + Next + + + + \ No newline at end of file diff --git a/test/W3C_SVG_12_TinyTestSuite_beta/svgHarness/interact-event-201-t.svg b/test/W3C_SVG_12_TinyTestSuite_beta/svgHarness/interact-event-201-t.svg new file mode 100755 index 00000000..fb59f613 --- /dev/null +++ b/test/W3C_SVG_12_TinyTestSuite_beta/svgHarness/interact-event-201-t.svg @@ -0,0 +1,43 @@ + + + + + + + + + + + + + + + + + + + + + + + interact-event-201-t + + SVG Image + + PNG Image + + + + + + Previous + + + No Nav + + + Next + + + + \ No newline at end of file diff --git a/test/W3C_SVG_12_TinyTestSuite_beta/svgHarness/interact-event-202-t.svg b/test/W3C_SVG_12_TinyTestSuite_beta/svgHarness/interact-event-202-t.svg new file mode 100755 index 00000000..a536891a --- /dev/null +++ b/test/W3C_SVG_12_TinyTestSuite_beta/svgHarness/interact-event-202-t.svg @@ -0,0 +1,43 @@ + + + + + + + + + + + + + + + + + + + + + + + interact-event-202-t + + SVG Image + + PNG Image + + + + + + Previous + + + No Nav + + + Next + + + + \ No newline at end of file diff --git a/test/W3C_SVG_12_TinyTestSuite_beta/svgHarness/interact-event-203-t.svg b/test/W3C_SVG_12_TinyTestSuite_beta/svgHarness/interact-event-203-t.svg new file mode 100755 index 00000000..42df3dc3 --- /dev/null +++ b/test/W3C_SVG_12_TinyTestSuite_beta/svgHarness/interact-event-203-t.svg @@ -0,0 +1,43 @@ + + + + + + + + + + + + + + + + + + + + + + + interact-event-203-t + + SVG Image + + PNG Image + + + + + + Previous + + + No Nav + + + Next + + + + \ No newline at end of file diff --git a/test/W3C_SVG_12_TinyTestSuite_beta/svgHarness/interact-focus-201-t.svg b/test/W3C_SVG_12_TinyTestSuite_beta/svgHarness/interact-focus-201-t.svg new file mode 100755 index 00000000..15f47423 --- /dev/null +++ b/test/W3C_SVG_12_TinyTestSuite_beta/svgHarness/interact-focus-201-t.svg @@ -0,0 +1,43 @@ + + + + + + + + + + + + + + + + + + + + + + + interact-focus-201-t + + SVG Image + + PNG Image + + + + + + Previous + + + No Nav + + + Next + + + + \ No newline at end of file diff --git a/test/W3C_SVG_12_TinyTestSuite_beta/svgHarness/interact-focus-202-t.svg b/test/W3C_SVG_12_TinyTestSuite_beta/svgHarness/interact-focus-202-t.svg new file mode 100755 index 00000000..67801b1b --- /dev/null +++ b/test/W3C_SVG_12_TinyTestSuite_beta/svgHarness/interact-focus-202-t.svg @@ -0,0 +1,43 @@ + + + + + + + + + + + + + + + + + + + + + + + interact-focus-202-t + + SVG Image + + PNG Image + + + + + + Previous + + + No Nav + + + Next + + + + \ No newline at end of file diff --git a/test/W3C_SVG_12_TinyTestSuite_beta/svgHarness/interact-focus-203-t.svg b/test/W3C_SVG_12_TinyTestSuite_beta/svgHarness/interact-focus-203-t.svg new file mode 100755 index 00000000..525f44ab --- /dev/null +++ b/test/W3C_SVG_12_TinyTestSuite_beta/svgHarness/interact-focus-203-t.svg @@ -0,0 +1,43 @@ + + + + + + + + + + + + + + + + + + + + + + + interact-focus-203-t + + SVG Image + + PNG Image + + + + + + Previous + + + No Nav + + + Next + + + + \ No newline at end of file diff --git a/test/W3C_SVG_12_TinyTestSuite_beta/svgHarness/interact-focus-204-t.svg b/test/W3C_SVG_12_TinyTestSuite_beta/svgHarness/interact-focus-204-t.svg new file mode 100755 index 00000000..d2edcb11 --- /dev/null +++ b/test/W3C_SVG_12_TinyTestSuite_beta/svgHarness/interact-focus-204-t.svg @@ -0,0 +1,43 @@ + + + + + + + + + + + + + + + + + + + + + + + interact-focus-204-t + + SVG Image + + PNG Image + + + + + + Previous + + + No Nav + + + Next + + + + \ No newline at end of file diff --git a/test/W3C_SVG_12_TinyTestSuite_beta/svgHarness/interact-focus-205-t.svg b/test/W3C_SVG_12_TinyTestSuite_beta/svgHarness/interact-focus-205-t.svg new file mode 100755 index 00000000..4693015c --- /dev/null +++ b/test/W3C_SVG_12_TinyTestSuite_beta/svgHarness/interact-focus-205-t.svg @@ -0,0 +1,43 @@ + + + + + + + + + + + + + + + + + + + + + + + interact-focus-205-t + + SVG Image + + PNG Image + + + + + + Previous + + + No Nav + + + Next + + + + \ No newline at end of file diff --git a/test/W3C_SVG_12_TinyTestSuite_beta/svgHarness/interact-focus-206-t.svg b/test/W3C_SVG_12_TinyTestSuite_beta/svgHarness/interact-focus-206-t.svg new file mode 100755 index 00000000..d9a9206f --- /dev/null +++ b/test/W3C_SVG_12_TinyTestSuite_beta/svgHarness/interact-focus-206-t.svg @@ -0,0 +1,43 @@ + + + + + + + + + + + + + + + + + + + + + + + interact-focus-206-t + + SVG Image + + PNG Image + + + + + + Previous + + + No Nav + + + Next + + + + \ No newline at end of file diff --git a/test/W3C_SVG_12_TinyTestSuite_beta/svgHarness/interact-focus-207-t.svg b/test/W3C_SVG_12_TinyTestSuite_beta/svgHarness/interact-focus-207-t.svg new file mode 100755 index 00000000..5a123e10 --- /dev/null +++ b/test/W3C_SVG_12_TinyTestSuite_beta/svgHarness/interact-focus-207-t.svg @@ -0,0 +1,43 @@ + + + + + + + + + + + + + + + + + + + + + + + interact-focus-207-t + + SVG Image + + PNG Image + + + + + + Previous + + + No Nav + + + Next + + + + \ No newline at end of file diff --git a/test/W3C_SVG_12_TinyTestSuite_beta/svgHarness/interact-focus-208-t.svg b/test/W3C_SVG_12_TinyTestSuite_beta/svgHarness/interact-focus-208-t.svg new file mode 100755 index 00000000..44a40755 --- /dev/null +++ b/test/W3C_SVG_12_TinyTestSuite_beta/svgHarness/interact-focus-208-t.svg @@ -0,0 +1,43 @@ + + + + + + + + + + + + + + + + + + + + + + + interact-focus-208-t + + SVG Image + + PNG Image + + + + + + Previous + + + No Nav + + + Next + + + + \ No newline at end of file diff --git a/test/W3C_SVG_12_TinyTestSuite_beta/svgHarness/interact-focus-209-t.svg b/test/W3C_SVG_12_TinyTestSuite_beta/svgHarness/interact-focus-209-t.svg new file mode 100755 index 00000000..4806b758 --- /dev/null +++ b/test/W3C_SVG_12_TinyTestSuite_beta/svgHarness/interact-focus-209-t.svg @@ -0,0 +1,43 @@ + + + + + + + + + + + + + + + + + + + + + + + interact-focus-209-t + + SVG Image + + PNG Image + + + + + + Previous + + + No Nav + + + Next + + + + \ No newline at end of file diff --git a/test/W3C_SVG_12_TinyTestSuite_beta/svgHarness/interact-focus-210-t.svg b/test/W3C_SVG_12_TinyTestSuite_beta/svgHarness/interact-focus-210-t.svg new file mode 100755 index 00000000..4ca20797 --- /dev/null +++ b/test/W3C_SVG_12_TinyTestSuite_beta/svgHarness/interact-focus-210-t.svg @@ -0,0 +1,43 @@ + + + + + + + + + + + + + + + + + + + + + + + interact-focus-210-t + + SVG Image + + PNG Image + + + + + + Previous + + + No Nav + + + Next + + + + \ No newline at end of file diff --git a/test/W3C_SVG_12_TinyTestSuite_beta/svgHarness/interact-focus-211-t.svg b/test/W3C_SVG_12_TinyTestSuite_beta/svgHarness/interact-focus-211-t.svg new file mode 100755 index 00000000..ec550585 --- /dev/null +++ b/test/W3C_SVG_12_TinyTestSuite_beta/svgHarness/interact-focus-211-t.svg @@ -0,0 +1,43 @@ + + + + + + + + + + + + + + + + + + + + + + + interact-focus-211-t + + SVG Image + + PNG Image + + + + + + Previous + + + No Nav + + + Next + + + + \ No newline at end of file diff --git a/test/W3C_SVG_12_TinyTestSuite_beta/svgHarness/interact-focus-212-t.svg b/test/W3C_SVG_12_TinyTestSuite_beta/svgHarness/interact-focus-212-t.svg new file mode 100755 index 00000000..c15b7085 --- /dev/null +++ b/test/W3C_SVG_12_TinyTestSuite_beta/svgHarness/interact-focus-212-t.svg @@ -0,0 +1,43 @@ + + + + + + + + + + + + + + + + + + + + + + + interact-focus-212-t + + SVG Image + + PNG Image + + + + + + Previous + + + No Nav + + + Next + + + + \ No newline at end of file diff --git a/test/W3C_SVG_12_TinyTestSuite_beta/svgHarness/interact-order-04-t.svg b/test/W3C_SVG_12_TinyTestSuite_beta/svgHarness/interact-order-04-t.svg new file mode 100755 index 00000000..ffc01c40 --- /dev/null +++ b/test/W3C_SVG_12_TinyTestSuite_beta/svgHarness/interact-order-04-t.svg @@ -0,0 +1,43 @@ + + + + + + + + + + + + + + + + + + + + + + + interact-order-04-t + + SVG Image + + PNG Image + + + + + + Previous + + + No Nav + + + Next + + + + \ No newline at end of file diff --git a/test/W3C_SVG_12_TinyTestSuite_beta/svgHarness/interact-order-05-t.svg b/test/W3C_SVG_12_TinyTestSuite_beta/svgHarness/interact-order-05-t.svg new file mode 100755 index 00000000..0cbb6166 --- /dev/null +++ b/test/W3C_SVG_12_TinyTestSuite_beta/svgHarness/interact-order-05-t.svg @@ -0,0 +1,43 @@ + + + + + + + + + + + + + + + + + + + + + + + interact-order-05-t + + SVG Image + + PNG Image + + + + + + Previous + + + No Nav + + + Next + + + + \ No newline at end of file diff --git a/test/W3C_SVG_12_TinyTestSuite_beta/svgHarness/interact-order-06-t.svg b/test/W3C_SVG_12_TinyTestSuite_beta/svgHarness/interact-order-06-t.svg new file mode 100755 index 00000000..1ea6df76 --- /dev/null +++ b/test/W3C_SVG_12_TinyTestSuite_beta/svgHarness/interact-order-06-t.svg @@ -0,0 +1,43 @@ + + + + + + + + + + + + + + + + + + + + + + + interact-order-06-t + + SVG Image + + PNG Image + + + + + + Previous + + + No Nav + + + Next + + + + \ No newline at end of file diff --git a/test/W3C_SVG_12_TinyTestSuite_beta/svgHarness/interact-pevents-02-t.svg b/test/W3C_SVG_12_TinyTestSuite_beta/svgHarness/interact-pevents-02-t.svg new file mode 100755 index 00000000..e56a8573 --- /dev/null +++ b/test/W3C_SVG_12_TinyTestSuite_beta/svgHarness/interact-pevents-02-t.svg @@ -0,0 +1,43 @@ + + + + + + + + + + + + + + + + + + + + + + + interact-pevents-02-t + + SVG Image + + PNG Image + + + + + + Previous + + + No Nav + + + Next + + + + \ No newline at end of file diff --git a/test/W3C_SVG_12_TinyTestSuite_beta/svgHarness/interact-pevents-05-t.svg b/test/W3C_SVG_12_TinyTestSuite_beta/svgHarness/interact-pevents-05-t.svg new file mode 100755 index 00000000..bda2c627 --- /dev/null +++ b/test/W3C_SVG_12_TinyTestSuite_beta/svgHarness/interact-pevents-05-t.svg @@ -0,0 +1,43 @@ + + + + + + + + + + + + + + + + + + + + + + + interact-pevents-05-t + + SVG Image + + PNG Image + + + + + + Previous + + + No Nav + + + Next + + + + \ No newline at end of file diff --git a/test/W3C_SVG_12_TinyTestSuite_beta/svgHarness/interact-pevents-06-t.svg b/test/W3C_SVG_12_TinyTestSuite_beta/svgHarness/interact-pevents-06-t.svg new file mode 100755 index 00000000..f6eacfa5 --- /dev/null +++ b/test/W3C_SVG_12_TinyTestSuite_beta/svgHarness/interact-pevents-06-t.svg @@ -0,0 +1,43 @@ + + + + + + + + + + + + + + + + + + + + + + + interact-pevents-06-t + + SVG Image + + PNG Image + + + + + + Previous + + + No Nav + + + Next + + + + \ No newline at end of file diff --git a/test/W3C_SVG_12_TinyTestSuite_beta/svgHarness/interact-pevents-07-t.svg b/test/W3C_SVG_12_TinyTestSuite_beta/svgHarness/interact-pevents-07-t.svg new file mode 100755 index 00000000..2dc6930b --- /dev/null +++ b/test/W3C_SVG_12_TinyTestSuite_beta/svgHarness/interact-pevents-07-t.svg @@ -0,0 +1,43 @@ + + + + + + + + + + + + + + + + + + + + + + + interact-pevents-07-t + + SVG Image + + PNG Image + + + + + + Previous + + + No Nav + + + Next + + + + \ No newline at end of file diff --git a/test/W3C_SVG_12_TinyTestSuite_beta/svgHarness/interact-pevents-08-t.svg b/test/W3C_SVG_12_TinyTestSuite_beta/svgHarness/interact-pevents-08-t.svg new file mode 100755 index 00000000..e9fc7449 --- /dev/null +++ b/test/W3C_SVG_12_TinyTestSuite_beta/svgHarness/interact-pevents-08-t.svg @@ -0,0 +1,43 @@ + + + + + + + + + + + + + + + + + + + + + + + interact-pevents-08-t + + SVG Image + + PNG Image + + + + + + Previous + + + No Nav + + + Next + + + + \ No newline at end of file diff --git a/test/W3C_SVG_12_TinyTestSuite_beta/svgHarness/interact-zoom-01-t.svg b/test/W3C_SVG_12_TinyTestSuite_beta/svgHarness/interact-zoom-01-t.svg new file mode 100755 index 00000000..e6de7e37 --- /dev/null +++ b/test/W3C_SVG_12_TinyTestSuite_beta/svgHarness/interact-zoom-01-t.svg @@ -0,0 +1,43 @@ + + + + + + + + + + + + + + + + + + + + + + + interact-zoom-01-t + + SVG Image + + PNG Image + + + + + + Previous + + + No Nav + + + Next + + + + \ No newline at end of file diff --git a/test/W3C_SVG_12_TinyTestSuite_beta/svgHarness/interact-zoom-02-t.svg b/test/W3C_SVG_12_TinyTestSuite_beta/svgHarness/interact-zoom-02-t.svg new file mode 100755 index 00000000..25dab0ab --- /dev/null +++ b/test/W3C_SVG_12_TinyTestSuite_beta/svgHarness/interact-zoom-02-t.svg @@ -0,0 +1,43 @@ + + + + + + + + + + + + + + + + + + + + + + + interact-zoom-02-t + + SVG Image + + PNG Image + + + + + + Previous + + + No Nav + + + Next + + + + \ No newline at end of file diff --git a/test/W3C_SVG_12_TinyTestSuite_beta/svgHarness/interact-zoom-03-t.svg b/test/W3C_SVG_12_TinyTestSuite_beta/svgHarness/interact-zoom-03-t.svg new file mode 100755 index 00000000..fae449d7 --- /dev/null +++ b/test/W3C_SVG_12_TinyTestSuite_beta/svgHarness/interact-zoom-03-t.svg @@ -0,0 +1,43 @@ + + + + + + + + + + + + + + + + + + + + + + + interact-zoom-03-t + + SVG Image + + PNG Image + + + + + + Previous + + + No Nav + + + Next + + + + \ No newline at end of file diff --git a/test/W3C_SVG_12_TinyTestSuite_beta/svgHarness/intro-compat-201-t.svg b/test/W3C_SVG_12_TinyTestSuite_beta/svgHarness/intro-compat-201-t.svg new file mode 100755 index 00000000..9c069206 --- /dev/null +++ b/test/W3C_SVG_12_TinyTestSuite_beta/svgHarness/intro-compat-201-t.svg @@ -0,0 +1,43 @@ + + + + + + + + + + + + + + + + + + + + + + + intro-compat-201-t + + SVG Image + + PNG Image + + + + + + Previous + + + No Nav + + + Next + + + + \ No newline at end of file diff --git a/test/W3C_SVG_12_TinyTestSuite_beta/svgHarness/jpeg-required-201-t.svg b/test/W3C_SVG_12_TinyTestSuite_beta/svgHarness/jpeg-required-201-t.svg new file mode 100755 index 00000000..a4d6973b --- /dev/null +++ b/test/W3C_SVG_12_TinyTestSuite_beta/svgHarness/jpeg-required-201-t.svg @@ -0,0 +1,43 @@ + + + + + + + + + + + + + + + + + + + + + + + jpeg-required-201-t + + SVG Image + + PNG Image + + + + + + Previous + + + No Nav + + + Next + + + + \ No newline at end of file diff --git a/test/W3C_SVG_12_TinyTestSuite_beta/svgHarness/jpeg-required-202-t.svg b/test/W3C_SVG_12_TinyTestSuite_beta/svgHarness/jpeg-required-202-t.svg new file mode 100755 index 00000000..ad678246 --- /dev/null +++ b/test/W3C_SVG_12_TinyTestSuite_beta/svgHarness/jpeg-required-202-t.svg @@ -0,0 +1,43 @@ + + + + + + + + + + + + + + + + + + + + + + + jpeg-required-202-t + + SVG Image + + PNG Image + + + + + + Previous + + + No Nav + + + Next + + + + \ No newline at end of file diff --git a/test/W3C_SVG_12_TinyTestSuite_beta/svgHarness/jpeg-required-203-t.svg b/test/W3C_SVG_12_TinyTestSuite_beta/svgHarness/jpeg-required-203-t.svg new file mode 100755 index 00000000..6cf06fae --- /dev/null +++ b/test/W3C_SVG_12_TinyTestSuite_beta/svgHarness/jpeg-required-203-t.svg @@ -0,0 +1,43 @@ + + + + + + + + + + + + + + + + + + + + + + + jpeg-required-203-t + + SVG Image + + PNG Image + + + + + + Previous + + + No Nav + + + Next + + + + \ No newline at end of file diff --git a/test/W3C_SVG_12_TinyTestSuite_beta/svgHarness/jpeg-required-204-t.svg b/test/W3C_SVG_12_TinyTestSuite_beta/svgHarness/jpeg-required-204-t.svg new file mode 100755 index 00000000..074419e0 --- /dev/null +++ b/test/W3C_SVG_12_TinyTestSuite_beta/svgHarness/jpeg-required-204-t.svg @@ -0,0 +1,43 @@ + + + + + + + + + + + + + + + + + + + + + + + jpeg-required-204-t + + SVG Image + + PNG Image + + + + + + Previous + + + No Nav + + + Next + + + + \ No newline at end of file diff --git a/test/W3C_SVG_12_TinyTestSuite_beta/svgHarness/jpeg-required-205-t.svg b/test/W3C_SVG_12_TinyTestSuite_beta/svgHarness/jpeg-required-205-t.svg new file mode 100755 index 00000000..2e23eaa0 --- /dev/null +++ b/test/W3C_SVG_12_TinyTestSuite_beta/svgHarness/jpeg-required-205-t.svg @@ -0,0 +1,43 @@ + + + + + + + + + + + + + + + + + + + + + + + jpeg-required-205-t + + SVG Image + + PNG Image + + + + + + Previous + + + No Nav + + + Next + + + + \ No newline at end of file diff --git a/test/W3C_SVG_12_TinyTestSuite_beta/svgHarness/jpeg-required-206-t.svg b/test/W3C_SVG_12_TinyTestSuite_beta/svgHarness/jpeg-required-206-t.svg new file mode 100755 index 00000000..c3890fb5 --- /dev/null +++ b/test/W3C_SVG_12_TinyTestSuite_beta/svgHarness/jpeg-required-206-t.svg @@ -0,0 +1,43 @@ + + + + + + + + + + + + + + + + + + + + + + + jpeg-required-206-t + + SVG Image + + PNG Image + + + + + + Previous + + + No Nav + + + Next + + + + \ No newline at end of file diff --git a/test/W3C_SVG_12_TinyTestSuite_beta/svgHarness/jpeg-required-207-t.svg b/test/W3C_SVG_12_TinyTestSuite_beta/svgHarness/jpeg-required-207-t.svg new file mode 100755 index 00000000..6032cdce --- /dev/null +++ b/test/W3C_SVG_12_TinyTestSuite_beta/svgHarness/jpeg-required-207-t.svg @@ -0,0 +1,43 @@ + + + + + + + + + + + + + + + + + + + + + + + jpeg-required-207-t + + SVG Image + + PNG Image + + + + + + Previous + + + No Nav + + + Next + + + + \ No newline at end of file diff --git a/test/W3C_SVG_12_TinyTestSuite_beta/svgHarness/jpeg-required-208-t.svg b/test/W3C_SVG_12_TinyTestSuite_beta/svgHarness/jpeg-required-208-t.svg new file mode 100755 index 00000000..2b444055 --- /dev/null +++ b/test/W3C_SVG_12_TinyTestSuite_beta/svgHarness/jpeg-required-208-t.svg @@ -0,0 +1,43 @@ + + + + + + + + + + + + + + + + + + + + + + + jpeg-required-208-t + + SVG Image + + PNG Image + + + + + + Previous + + + No Nav + + + Next + + + + \ No newline at end of file diff --git a/test/W3C_SVG_12_TinyTestSuite_beta/svgHarness/jpeg-required-209-t.svg b/test/W3C_SVG_12_TinyTestSuite_beta/svgHarness/jpeg-required-209-t.svg new file mode 100755 index 00000000..a541cedd --- /dev/null +++ b/test/W3C_SVG_12_TinyTestSuite_beta/svgHarness/jpeg-required-209-t.svg @@ -0,0 +1,43 @@ + + + + + + + + + + + + + + + + + + + + + + + jpeg-required-209-t + + SVG Image + + PNG Image + + + + + + Previous + + + No Nav + + + Next + + + + \ No newline at end of file diff --git a/test/W3C_SVG_12_TinyTestSuite_beta/svgHarness/linking-a-03-t.svg b/test/W3C_SVG_12_TinyTestSuite_beta/svgHarness/linking-a-03-t.svg new file mode 100755 index 00000000..d42ef499 --- /dev/null +++ b/test/W3C_SVG_12_TinyTestSuite_beta/svgHarness/linking-a-03-t.svg @@ -0,0 +1,43 @@ + + + + + + + + + + + + + + + + + + + + + + + linking-a-03-t + + SVG Image + + PNG Image + + + + + + Previous + + + No Nav + + + Next + + + + \ No newline at end of file diff --git a/test/W3C_SVG_12_TinyTestSuite_beta/svgHarness/linking-a-08-t.svg b/test/W3C_SVG_12_TinyTestSuite_beta/svgHarness/linking-a-08-t.svg new file mode 100755 index 00000000..fb9be547 --- /dev/null +++ b/test/W3C_SVG_12_TinyTestSuite_beta/svgHarness/linking-a-08-t.svg @@ -0,0 +1,43 @@ + + + + + + + + + + + + + + + + + + + + + + + linking-a-08-t + + SVG Image + + PNG Image + + + + + + Previous + + + No Nav + + + Next + + + + \ No newline at end of file diff --git a/test/W3C_SVG_12_TinyTestSuite_beta/svgHarness/linking-a-201-t.svg b/test/W3C_SVG_12_TinyTestSuite_beta/svgHarness/linking-a-201-t.svg new file mode 100755 index 00000000..f89cd99d --- /dev/null +++ b/test/W3C_SVG_12_TinyTestSuite_beta/svgHarness/linking-a-201-t.svg @@ -0,0 +1,43 @@ + + + + + + + + + + + + + + + + + + + + + + + linking-a-201-t + + SVG Image + + PNG Image + + + + + + Previous + + + No Nav + + + Next + + + + \ No newline at end of file diff --git a/test/W3C_SVG_12_TinyTestSuite_beta/svgHarness/linking-frag-201-t.svg b/test/W3C_SVG_12_TinyTestSuite_beta/svgHarness/linking-frag-201-t.svg new file mode 100755 index 00000000..228ae425 --- /dev/null +++ b/test/W3C_SVG_12_TinyTestSuite_beta/svgHarness/linking-frag-201-t.svg @@ -0,0 +1,43 @@ + + + + + + + + + + + + + + + + + + + + + + + linking-frag-201-t + + SVG Image + + PNG Image + + + + + + Previous + + + No Nav + + + Next + + + + \ No newline at end of file diff --git a/test/W3C_SVG_12_TinyTestSuite_beta/svgHarness/linking-frag-202-t.svg b/test/W3C_SVG_12_TinyTestSuite_beta/svgHarness/linking-frag-202-t.svg new file mode 100755 index 00000000..e4d5debb --- /dev/null +++ b/test/W3C_SVG_12_TinyTestSuite_beta/svgHarness/linking-frag-202-t.svg @@ -0,0 +1,43 @@ + + + + + + + + + + + + + + + + + + + + + + + linking-frag-202-t + + SVG Image + + PNG Image + + + + + + Previous + + + No Nav + + + Next + + + + \ No newline at end of file diff --git a/test/W3C_SVG_12_TinyTestSuite_beta/svgHarness/linking-frag-203-t.svg b/test/W3C_SVG_12_TinyTestSuite_beta/svgHarness/linking-frag-203-t.svg new file mode 100755 index 00000000..8318cbcc --- /dev/null +++ b/test/W3C_SVG_12_TinyTestSuite_beta/svgHarness/linking-frag-203-t.svg @@ -0,0 +1,43 @@ + + + + + + + + + + + + + + + + + + + + + + + linking-frag-203-t + + SVG Image + + PNG Image + + + + + + Previous + + + No Nav + + + Next + + + + \ No newline at end of file diff --git a/test/W3C_SVG_12_TinyTestSuite_beta/svgHarness/linking-frag-204-t.svg b/test/W3C_SVG_12_TinyTestSuite_beta/svgHarness/linking-frag-204-t.svg new file mode 100755 index 00000000..eb127dba --- /dev/null +++ b/test/W3C_SVG_12_TinyTestSuite_beta/svgHarness/linking-frag-204-t.svg @@ -0,0 +1,43 @@ + + + + + + + + + + + + + + + + + + + + + + + linking-frag-204-t + + SVG Image + + PNG Image + + + + + + Previous + + + No Nav + + + Next + + + + \ No newline at end of file diff --git a/test/W3C_SVG_12_TinyTestSuite_beta/svgHarness/linking-refs-201-t.svg b/test/W3C_SVG_12_TinyTestSuite_beta/svgHarness/linking-refs-201-t.svg new file mode 100755 index 00000000..1e123180 --- /dev/null +++ b/test/W3C_SVG_12_TinyTestSuite_beta/svgHarness/linking-refs-201-t.svg @@ -0,0 +1,43 @@ + + + + + + + + + + + + + + + + + + + + + + + linking-refs-201-t + + SVG Image + + PNG Image + + + + + + Previous + + + No Nav + + + Next + + + + \ No newline at end of file diff --git a/test/W3C_SVG_12_TinyTestSuite_beta/svgHarness/linking-refs-202-t.svg b/test/W3C_SVG_12_TinyTestSuite_beta/svgHarness/linking-refs-202-t.svg new file mode 100755 index 00000000..1c6139c7 --- /dev/null +++ b/test/W3C_SVG_12_TinyTestSuite_beta/svgHarness/linking-refs-202-t.svg @@ -0,0 +1,43 @@ + + + + + + + + + + + + + + + + + + + + + + + linking-refs-202-t + + SVG Image + + PNG Image + + + + + + Previous + + + No Nav + + + Next + + + + \ No newline at end of file diff --git a/test/W3C_SVG_12_TinyTestSuite_beta/svgHarness/linking-refs-203-t.svg b/test/W3C_SVG_12_TinyTestSuite_beta/svgHarness/linking-refs-203-t.svg new file mode 100755 index 00000000..3ca9d235 --- /dev/null +++ b/test/W3C_SVG_12_TinyTestSuite_beta/svgHarness/linking-refs-203-t.svg @@ -0,0 +1,43 @@ + + + + + + + + + + + + + + + + + + + + + + + linking-refs-203-t + + SVG Image + + PNG Image + + + + + + Previous + + + No Nav + + + Next + + + + \ No newline at end of file diff --git a/test/W3C_SVG_12_TinyTestSuite_beta/svgHarness/linking-refs-204-t.svg b/test/W3C_SVG_12_TinyTestSuite_beta/svgHarness/linking-refs-204-t.svg new file mode 100755 index 00000000..e195b745 --- /dev/null +++ b/test/W3C_SVG_12_TinyTestSuite_beta/svgHarness/linking-refs-204-t.svg @@ -0,0 +1,43 @@ + + + + + + + + + + + + + + + + + + + + + + + linking-refs-204-t + + SVG Image + + PNG Image + + + + + + Previous + + + No Nav + + + Next + + + + \ No newline at end of file diff --git a/test/W3C_SVG_12_TinyTestSuite_beta/svgHarness/linking-refs-205-t.svg b/test/W3C_SVG_12_TinyTestSuite_beta/svgHarness/linking-refs-205-t.svg new file mode 100755 index 00000000..9ad9bc5d --- /dev/null +++ b/test/W3C_SVG_12_TinyTestSuite_beta/svgHarness/linking-refs-205-t.svg @@ -0,0 +1,43 @@ + + + + + + + + + + + + + + + + + + + + + + + linking-refs-205-t + + SVG Image + + PNG Image + + + + + + Previous + + + No Nav + + + Next + + + + \ No newline at end of file diff --git a/test/W3C_SVG_12_TinyTestSuite_beta/svgHarness/linking-refs-206-t.svg b/test/W3C_SVG_12_TinyTestSuite_beta/svgHarness/linking-refs-206-t.svg new file mode 100755 index 00000000..aaa24cfc --- /dev/null +++ b/test/W3C_SVG_12_TinyTestSuite_beta/svgHarness/linking-refs-206-t.svg @@ -0,0 +1,43 @@ + + + + + + + + + + + + + + + + + + + + + + + linking-refs-206-t + + SVG Image + + PNG Image + + + + + + Previous + + + No Nav + + + Next + + + + \ No newline at end of file diff --git a/test/W3C_SVG_12_TinyTestSuite_beta/svgHarness/linking-uri-03-t.svg b/test/W3C_SVG_12_TinyTestSuite_beta/svgHarness/linking-uri-03-t.svg new file mode 100755 index 00000000..fe1506c5 --- /dev/null +++ b/test/W3C_SVG_12_TinyTestSuite_beta/svgHarness/linking-uri-03-t.svg @@ -0,0 +1,43 @@ + + + + + + + + + + + + + + + + + + + + + + + linking-uri-03-t + + SVG Image + + PNG Image + + + + + + Previous + + + No Nav + + + Next + + + + \ No newline at end of file diff --git a/test/W3C_SVG_12_TinyTestSuite_beta/svgHarness/media-alevel-201-t.svg b/test/W3C_SVG_12_TinyTestSuite_beta/svgHarness/media-alevel-201-t.svg new file mode 100755 index 00000000..02c06ef9 --- /dev/null +++ b/test/W3C_SVG_12_TinyTestSuite_beta/svgHarness/media-alevel-201-t.svg @@ -0,0 +1,43 @@ + + + + + + + + + + + + + + + + + + + + + + + media-alevel-201-t + + SVG Image + + PNG Image + + + + + + Previous + + + No Nav + + + Next + + + + \ No newline at end of file diff --git a/test/W3C_SVG_12_TinyTestSuite_beta/svgHarness/media-alevel-202-t.svg b/test/W3C_SVG_12_TinyTestSuite_beta/svgHarness/media-alevel-202-t.svg new file mode 100755 index 00000000..e5cea219 --- /dev/null +++ b/test/W3C_SVG_12_TinyTestSuite_beta/svgHarness/media-alevel-202-t.svg @@ -0,0 +1,43 @@ + + + + + + + + + + + + + + + + + + + + + + + media-alevel-202-t + + SVG Image + + PNG Image + + + + + + Previous + + + No Nav + + + Next + + + + \ No newline at end of file diff --git a/test/W3C_SVG_12_TinyTestSuite_beta/svgHarness/media-alevel-203-t.svg b/test/W3C_SVG_12_TinyTestSuite_beta/svgHarness/media-alevel-203-t.svg new file mode 100755 index 00000000..a30bfd93 --- /dev/null +++ b/test/W3C_SVG_12_TinyTestSuite_beta/svgHarness/media-alevel-203-t.svg @@ -0,0 +1,43 @@ + + + + + + + + + + + + + + + + + + + + + + + media-alevel-203-t + + SVG Image + + PNG Image + + + + + + Previous + + + No Nav + + + Next + + + + \ No newline at end of file diff --git a/test/W3C_SVG_12_TinyTestSuite_beta/svgHarness/media-alevel-204-t.svg b/test/W3C_SVG_12_TinyTestSuite_beta/svgHarness/media-alevel-204-t.svg new file mode 100755 index 00000000..20e3b7ba --- /dev/null +++ b/test/W3C_SVG_12_TinyTestSuite_beta/svgHarness/media-alevel-204-t.svg @@ -0,0 +1,43 @@ + + + + + + + + + + + + + + + + + + + + + + + media-alevel-204-t + + SVG Image + + PNG Image + + + + + + Previous + + + No Nav + + + Next + + + + \ No newline at end of file diff --git a/test/W3C_SVG_12_TinyTestSuite_beta/svgHarness/media-alevel-205-t.svg b/test/W3C_SVG_12_TinyTestSuite_beta/svgHarness/media-alevel-205-t.svg new file mode 100755 index 00000000..bfc8b53b --- /dev/null +++ b/test/W3C_SVG_12_TinyTestSuite_beta/svgHarness/media-alevel-205-t.svg @@ -0,0 +1,43 @@ + + + + + + + + + + + + + + + + + + + + + + + media-alevel-205-t + + SVG Image + + PNG Image + + + + + + Previous + + + No Nav + + + Next + + + + \ No newline at end of file diff --git a/test/W3C_SVG_12_TinyTestSuite_beta/svgHarness/media-alevel-206-t.svg b/test/W3C_SVG_12_TinyTestSuite_beta/svgHarness/media-alevel-206-t.svg new file mode 100755 index 00000000..c38b4373 --- /dev/null +++ b/test/W3C_SVG_12_TinyTestSuite_beta/svgHarness/media-alevel-206-t.svg @@ -0,0 +1,43 @@ + + + + + + + + + + + + + + + + + + + + + + + media-alevel-206-t + + SVG Image + + PNG Image + + + + + + Previous + + + No Nav + + + Next + + + + \ No newline at end of file diff --git a/test/W3C_SVG_12_TinyTestSuite_beta/svgHarness/media-alevel-207-t.svg b/test/W3C_SVG_12_TinyTestSuite_beta/svgHarness/media-alevel-207-t.svg new file mode 100755 index 00000000..86850c1f --- /dev/null +++ b/test/W3C_SVG_12_TinyTestSuite_beta/svgHarness/media-alevel-207-t.svg @@ -0,0 +1,43 @@ + + + + + + + + + + + + + + + + + + + + + + + media-alevel-207-t + + SVG Image + + PNG Image + + + + + + Previous + + + No Nav + + + Next + + + + \ No newline at end of file diff --git a/test/W3C_SVG_12_TinyTestSuite_beta/svgHarness/media-alevel-208-t.svg b/test/W3C_SVG_12_TinyTestSuite_beta/svgHarness/media-alevel-208-t.svg new file mode 100755 index 00000000..f1e7cfda --- /dev/null +++ b/test/W3C_SVG_12_TinyTestSuite_beta/svgHarness/media-alevel-208-t.svg @@ -0,0 +1,43 @@ + + + + + + + + + + + + + + + + + + + + + + + media-alevel-208-t + + SVG Image + + PNG Image + + + + + + Previous + + + No Nav + + + Next + + + + \ No newline at end of file diff --git a/test/W3C_SVG_12_TinyTestSuite_beta/svgHarness/media-anim-201-t.svg b/test/W3C_SVG_12_TinyTestSuite_beta/svgHarness/media-anim-201-t.svg new file mode 100755 index 00000000..6ec4c6fc --- /dev/null +++ b/test/W3C_SVG_12_TinyTestSuite_beta/svgHarness/media-anim-201-t.svg @@ -0,0 +1,43 @@ + + + + + + + + + + + + + + + + + + + + + + + media-anim-201-t + + SVG Image + + PNG Image + + + + + + Previous + + + No Nav + + + Next + + + + \ No newline at end of file diff --git a/test/W3C_SVG_12_TinyTestSuite_beta/svgHarness/media-anim-202-t.svg b/test/W3C_SVG_12_TinyTestSuite_beta/svgHarness/media-anim-202-t.svg new file mode 100755 index 00000000..170d0538 --- /dev/null +++ b/test/W3C_SVG_12_TinyTestSuite_beta/svgHarness/media-anim-202-t.svg @@ -0,0 +1,43 @@ + + + + + + + + + + + + + + + + + + + + + + + media-anim-202-t + + SVG Image + + PNG Image + + + + + + Previous + + + No Nav + + + Next + + + + \ No newline at end of file diff --git a/test/W3C_SVG_12_TinyTestSuite_beta/svgHarness/media-anim-203-t.svg b/test/W3C_SVG_12_TinyTestSuite_beta/svgHarness/media-anim-203-t.svg new file mode 100755 index 00000000..1902fee2 --- /dev/null +++ b/test/W3C_SVG_12_TinyTestSuite_beta/svgHarness/media-anim-203-t.svg @@ -0,0 +1,43 @@ + + + + + + + + + + + + + + + + + + + + + + + media-anim-203-t + + SVG Image + + PNG Image + + + + + + Previous + + + No Nav + + + Next + + + + \ No newline at end of file diff --git a/test/W3C_SVG_12_TinyTestSuite_beta/svgHarness/media-anim-204-t.svg b/test/W3C_SVG_12_TinyTestSuite_beta/svgHarness/media-anim-204-t.svg new file mode 100755 index 00000000..d5db8ce8 --- /dev/null +++ b/test/W3C_SVG_12_TinyTestSuite_beta/svgHarness/media-anim-204-t.svg @@ -0,0 +1,43 @@ + + + + + + + + + + + + + + + + + + + + + + + media-anim-204-t + + SVG Image + + PNG Image + + + + + + Previous + + + No Nav + + + Next + + + + \ No newline at end of file diff --git a/test/W3C_SVG_12_TinyTestSuite_beta/svgHarness/media-anim-205-t.svg b/test/W3C_SVG_12_TinyTestSuite_beta/svgHarness/media-anim-205-t.svg new file mode 100755 index 00000000..5bf332ad --- /dev/null +++ b/test/W3C_SVG_12_TinyTestSuite_beta/svgHarness/media-anim-205-t.svg @@ -0,0 +1,43 @@ + + + + + + + + + + + + + + + + + + + + + + + media-anim-205-t + + SVG Image + + PNG Image + + + + + + Previous + + + No Nav + + + Next + + + + \ No newline at end of file diff --git a/test/W3C_SVG_12_TinyTestSuite_beta/svgHarness/media-anim-206-t.svg b/test/W3C_SVG_12_TinyTestSuite_beta/svgHarness/media-anim-206-t.svg new file mode 100755 index 00000000..0b15d4d2 --- /dev/null +++ b/test/W3C_SVG_12_TinyTestSuite_beta/svgHarness/media-anim-206-t.svg @@ -0,0 +1,43 @@ + + + + + + + + + + + + + + + + + + + + + + + media-anim-206-t + + SVG Image + + PNG Image + + + + + + Previous + + + No Nav + + + Next + + + + \ No newline at end of file diff --git a/test/W3C_SVG_12_TinyTestSuite_beta/svgHarness/media-anim-207-t.svg b/test/W3C_SVG_12_TinyTestSuite_beta/svgHarness/media-anim-207-t.svg new file mode 100755 index 00000000..7b20b499 --- /dev/null +++ b/test/W3C_SVG_12_TinyTestSuite_beta/svgHarness/media-anim-207-t.svg @@ -0,0 +1,43 @@ + + + + + + + + + + + + + + + + + + + + + + + media-anim-207-t + + SVG Image + + PNG Image + + + + + + Previous + + + No Nav + + + Next + + + + \ No newline at end of file diff --git a/test/W3C_SVG_12_TinyTestSuite_beta/svgHarness/media-anim-208-t.svg b/test/W3C_SVG_12_TinyTestSuite_beta/svgHarness/media-anim-208-t.svg new file mode 100755 index 00000000..ecda18c2 --- /dev/null +++ b/test/W3C_SVG_12_TinyTestSuite_beta/svgHarness/media-anim-208-t.svg @@ -0,0 +1,43 @@ + + + + + + + + + + + + + + + + + + + + + + + media-anim-208-t + + SVG Image + + PNG Image + + + + + + Previous + + + No Nav + + + Next + + + + \ No newline at end of file diff --git a/test/W3C_SVG_12_TinyTestSuite_beta/svgHarness/media-anim-209-t.svg b/test/W3C_SVG_12_TinyTestSuite_beta/svgHarness/media-anim-209-t.svg new file mode 100755 index 00000000..2cb495fd --- /dev/null +++ b/test/W3C_SVG_12_TinyTestSuite_beta/svgHarness/media-anim-209-t.svg @@ -0,0 +1,43 @@ + + + + + + + + + + + + + + + + + + + + + + + media-anim-209-t + + SVG Image + + PNG Image + + + + + + Previous + + + No Nav + + + Next + + + + \ No newline at end of file diff --git a/test/W3C_SVG_12_TinyTestSuite_beta/svgHarness/media-anim-210-t.svg b/test/W3C_SVG_12_TinyTestSuite_beta/svgHarness/media-anim-210-t.svg new file mode 100755 index 00000000..19cc406b --- /dev/null +++ b/test/W3C_SVG_12_TinyTestSuite_beta/svgHarness/media-anim-210-t.svg @@ -0,0 +1,43 @@ + + + + + + + + + + + + + + + + + + + + + + + media-anim-210-t + + SVG Image + + PNG Image + + + + + + Previous + + + No Nav + + + Next + + + + \ No newline at end of file diff --git a/test/W3C_SVG_12_TinyTestSuite_beta/svgHarness/media-anim-211-t.svg b/test/W3C_SVG_12_TinyTestSuite_beta/svgHarness/media-anim-211-t.svg new file mode 100755 index 00000000..818696da --- /dev/null +++ b/test/W3C_SVG_12_TinyTestSuite_beta/svgHarness/media-anim-211-t.svg @@ -0,0 +1,43 @@ + + + + + + + + + + + + + + + + + + + + + + + media-anim-211-t + + SVG Image + + PNG Image + + + + + + Previous + + + No Nav + + + Next + + + + \ No newline at end of file diff --git a/test/W3C_SVG_12_TinyTestSuite_beta/svgHarness/media-anim-212-t.svg b/test/W3C_SVG_12_TinyTestSuite_beta/svgHarness/media-anim-212-t.svg new file mode 100755 index 00000000..1a54dccd --- /dev/null +++ b/test/W3C_SVG_12_TinyTestSuite_beta/svgHarness/media-anim-212-t.svg @@ -0,0 +1,43 @@ + + + + + + + + + + + + + + + + + + + + + + + media-anim-212-t + + SVG Image + + PNG Image + + + + + + Previous + + + No Nav + + + Next + + + + \ No newline at end of file diff --git a/test/W3C_SVG_12_TinyTestSuite_beta/svgHarness/media-anim-213-t.svg b/test/W3C_SVG_12_TinyTestSuite_beta/svgHarness/media-anim-213-t.svg new file mode 100755 index 00000000..7a3e0c45 --- /dev/null +++ b/test/W3C_SVG_12_TinyTestSuite_beta/svgHarness/media-anim-213-t.svg @@ -0,0 +1,43 @@ + + + + + + + + + + + + + + + + + + + + + + + media-anim-213-t + + SVG Image + + PNG Image + + + + + + Previous + + + No Nav + + + Next + + + + \ No newline at end of file diff --git a/test/W3C_SVG_12_TinyTestSuite_beta/svgHarness/media-audio-201-t.svg b/test/W3C_SVG_12_TinyTestSuite_beta/svgHarness/media-audio-201-t.svg new file mode 100755 index 00000000..0a887260 --- /dev/null +++ b/test/W3C_SVG_12_TinyTestSuite_beta/svgHarness/media-audio-201-t.svg @@ -0,0 +1,43 @@ + + + + + + + + + + + + + + + + + + + + + + + media-audio-201-t + + SVG Image + + PNG Image + + + + + + Previous + + + No Nav + + + Next + + + + \ No newline at end of file diff --git a/test/W3C_SVG_12_TinyTestSuite_beta/svgHarness/media-audio-202-t.svg b/test/W3C_SVG_12_TinyTestSuite_beta/svgHarness/media-audio-202-t.svg new file mode 100755 index 00000000..2fd2fb61 --- /dev/null +++ b/test/W3C_SVG_12_TinyTestSuite_beta/svgHarness/media-audio-202-t.svg @@ -0,0 +1,43 @@ + + + + + + + + + + + + + + + + + + + + + + + media-audio-202-t + + SVG Image + + PNG Image + + + + + + Previous + + + No Nav + + + Next + + + + \ No newline at end of file diff --git a/test/W3C_SVG_12_TinyTestSuite_beta/svgHarness/media-audio-203-t.svg b/test/W3C_SVG_12_TinyTestSuite_beta/svgHarness/media-audio-203-t.svg new file mode 100755 index 00000000..da1f545a --- /dev/null +++ b/test/W3C_SVG_12_TinyTestSuite_beta/svgHarness/media-audio-203-t.svg @@ -0,0 +1,43 @@ + + + + + + + + + + + + + + + + + + + + + + + media-audio-203-t + + SVG Image + + PNG Image + + + + + + Previous + + + No Nav + + + Next + + + + \ No newline at end of file diff --git a/test/W3C_SVG_12_TinyTestSuite_beta/svgHarness/media-audio-204-t.svg b/test/W3C_SVG_12_TinyTestSuite_beta/svgHarness/media-audio-204-t.svg new file mode 100755 index 00000000..3f76d31c --- /dev/null +++ b/test/W3C_SVG_12_TinyTestSuite_beta/svgHarness/media-audio-204-t.svg @@ -0,0 +1,43 @@ + + + + + + + + + + + + + + + + + + + + + + + media-audio-204-t + + SVG Image + + PNG Image + + + + + + Previous + + + No Nav + + + Next + + + + \ No newline at end of file diff --git a/test/W3C_SVG_12_TinyTestSuite_beta/svgHarness/media-audio-205-t.svg b/test/W3C_SVG_12_TinyTestSuite_beta/svgHarness/media-audio-205-t.svg new file mode 100755 index 00000000..e5fadd78 --- /dev/null +++ b/test/W3C_SVG_12_TinyTestSuite_beta/svgHarness/media-audio-205-t.svg @@ -0,0 +1,43 @@ + + + + + + + + + + + + + + + + + + + + + + + media-audio-205-t + + SVG Image + + PNG Image + + + + + + Previous + + + No Nav + + + Next + + + + \ No newline at end of file diff --git a/test/W3C_SVG_12_TinyTestSuite_beta/svgHarness/media-audio-206-t.svg b/test/W3C_SVG_12_TinyTestSuite_beta/svgHarness/media-audio-206-t.svg new file mode 100755 index 00000000..9f51f2b9 --- /dev/null +++ b/test/W3C_SVG_12_TinyTestSuite_beta/svgHarness/media-audio-206-t.svg @@ -0,0 +1,43 @@ + + + + + + + + + + + + + + + + + + + + + + + media-audio-206-t + + SVG Image + + PNG Image + + + + + + Previous + + + No Nav + + + Next + + + + \ No newline at end of file diff --git a/test/W3C_SVG_12_TinyTestSuite_beta/svgHarness/media-audio-207-t.svg b/test/W3C_SVG_12_TinyTestSuite_beta/svgHarness/media-audio-207-t.svg new file mode 100755 index 00000000..44958331 --- /dev/null +++ b/test/W3C_SVG_12_TinyTestSuite_beta/svgHarness/media-audio-207-t.svg @@ -0,0 +1,43 @@ + + + + + + + + + + + + + + + + + + + + + + + media-audio-207-t + + SVG Image + + PNG Image + + + + + + Previous + + + No Nav + + + Next + + + + \ No newline at end of file diff --git a/test/W3C_SVG_12_TinyTestSuite_beta/svgHarness/media-audio-208-t.svg b/test/W3C_SVG_12_TinyTestSuite_beta/svgHarness/media-audio-208-t.svg new file mode 100755 index 00000000..8b92affc --- /dev/null +++ b/test/W3C_SVG_12_TinyTestSuite_beta/svgHarness/media-audio-208-t.svg @@ -0,0 +1,43 @@ + + + + + + + + + + + + + + + + + + + + + + + media-audio-208-t + + SVG Image + + PNG Image + + + + + + Previous + + + No Nav + + + Next + + + + \ No newline at end of file diff --git a/test/W3C_SVG_12_TinyTestSuite_beta/svgHarness/media-audio-209-t.svg b/test/W3C_SVG_12_TinyTestSuite_beta/svgHarness/media-audio-209-t.svg new file mode 100755 index 00000000..f788a972 --- /dev/null +++ b/test/W3C_SVG_12_TinyTestSuite_beta/svgHarness/media-audio-209-t.svg @@ -0,0 +1,43 @@ + + + + + + + + + + + + + + + + + + + + + + + media-audio-209-t + + SVG Image + + PNG Image + + + + + + Previous + + + No Nav + + + Next + + + + \ No newline at end of file diff --git a/test/W3C_SVG_12_TinyTestSuite_beta/svgHarness/media-audio-210-t.svg b/test/W3C_SVG_12_TinyTestSuite_beta/svgHarness/media-audio-210-t.svg new file mode 100755 index 00000000..fb9f0dd7 --- /dev/null +++ b/test/W3C_SVG_12_TinyTestSuite_beta/svgHarness/media-audio-210-t.svg @@ -0,0 +1,43 @@ + + + + + + + + + + + + + + + + + + + + + + + media-audio-210-t + + SVG Image + + PNG Image + + + + + + Previous + + + No Nav + + + Next + + + + \ No newline at end of file diff --git a/test/W3C_SVG_12_TinyTestSuite_beta/svgHarness/media-audio-211-t.svg b/test/W3C_SVG_12_TinyTestSuite_beta/svgHarness/media-audio-211-t.svg new file mode 100755 index 00000000..b3a95c77 --- /dev/null +++ b/test/W3C_SVG_12_TinyTestSuite_beta/svgHarness/media-audio-211-t.svg @@ -0,0 +1,43 @@ + + + + + + + + + + + + + + + + + + + + + + + media-audio-211-t + + SVG Image + + PNG Image + + + + + + Previous + + + No Nav + + + Next + + + + \ No newline at end of file diff --git a/test/W3C_SVG_12_TinyTestSuite_beta/svgHarness/media-audio-212-t.svg b/test/W3C_SVG_12_TinyTestSuite_beta/svgHarness/media-audio-212-t.svg new file mode 100755 index 00000000..42c88940 --- /dev/null +++ b/test/W3C_SVG_12_TinyTestSuite_beta/svgHarness/media-audio-212-t.svg @@ -0,0 +1,43 @@ + + + + + + + + + + + + + + + + + + + + + + + media-audio-212-t + + SVG Image + + PNG Image + + + + + + Previous + + + No Nav + + + Next + + + + \ No newline at end of file diff --git a/test/W3C_SVG_12_TinyTestSuite_beta/svgHarness/media-audio-213-t.svg b/test/W3C_SVG_12_TinyTestSuite_beta/svgHarness/media-audio-213-t.svg new file mode 100755 index 00000000..a383bfe7 --- /dev/null +++ b/test/W3C_SVG_12_TinyTestSuite_beta/svgHarness/media-audio-213-t.svg @@ -0,0 +1,43 @@ + + + + + + + + + + + + + + + + + + + + + + + media-audio-213-t + + SVG Image + + PNG Image + + + + + + Previous + + + No Nav + + + Next + + + + \ No newline at end of file diff --git a/test/W3C_SVG_12_TinyTestSuite_beta/svgHarness/media-audio-214-t.svg b/test/W3C_SVG_12_TinyTestSuite_beta/svgHarness/media-audio-214-t.svg new file mode 100755 index 00000000..804b19ef --- /dev/null +++ b/test/W3C_SVG_12_TinyTestSuite_beta/svgHarness/media-audio-214-t.svg @@ -0,0 +1,43 @@ + + + + + + + + + + + + + + + + + + + + + + + media-audio-214-t + + SVG Image + + PNG Image + + + + + + Previous + + + No Nav + + + Next + + + + \ No newline at end of file diff --git a/test/W3C_SVG_12_TinyTestSuite_beta/svgHarness/media-audio-215-t.svg b/test/W3C_SVG_12_TinyTestSuite_beta/svgHarness/media-audio-215-t.svg new file mode 100755 index 00000000..3c3e1f2c --- /dev/null +++ b/test/W3C_SVG_12_TinyTestSuite_beta/svgHarness/media-audio-215-t.svg @@ -0,0 +1,43 @@ + + + + + + + + + + + + + + + + + + + + + + + media-audio-215-t + + SVG Image + + PNG Image + + + + + + Previous + + + No Nav + + + Next + + + + \ No newline at end of file diff --git a/test/W3C_SVG_12_TinyTestSuite_beta/svgHarness/media-video-201-t.svg b/test/W3C_SVG_12_TinyTestSuite_beta/svgHarness/media-video-201-t.svg new file mode 100755 index 00000000..194e0056 --- /dev/null +++ b/test/W3C_SVG_12_TinyTestSuite_beta/svgHarness/media-video-201-t.svg @@ -0,0 +1,43 @@ + + + + + + + + + + + + + + + + + + + + + + + media-video-201-t + + SVG Image + + PNG Image + + + + + + Previous + + + No Nav + + + Next + + + + \ No newline at end of file diff --git a/test/W3C_SVG_12_TinyTestSuite_beta/svgHarness/media-video-202-t.svg b/test/W3C_SVG_12_TinyTestSuite_beta/svgHarness/media-video-202-t.svg new file mode 100755 index 00000000..46afa531 --- /dev/null +++ b/test/W3C_SVG_12_TinyTestSuite_beta/svgHarness/media-video-202-t.svg @@ -0,0 +1,43 @@ + + + + + + + + + + + + + + + + + + + + + + + media-video-202-t + + SVG Image + + PNG Image + + + + + + Previous + + + No Nav + + + Next + + + + \ No newline at end of file diff --git a/test/W3C_SVG_12_TinyTestSuite_beta/svgHarness/media-video-203-t.svg b/test/W3C_SVG_12_TinyTestSuite_beta/svgHarness/media-video-203-t.svg new file mode 100755 index 00000000..99bb2d5c --- /dev/null +++ b/test/W3C_SVG_12_TinyTestSuite_beta/svgHarness/media-video-203-t.svg @@ -0,0 +1,43 @@ + + + + + + + + + + + + + + + + + + + + + + + media-video-203-t + + SVG Image + + PNG Image + + + + + + Previous + + + No Nav + + + Next + + + + \ No newline at end of file diff --git a/test/W3C_SVG_12_TinyTestSuite_beta/svgHarness/media-video-204-t.svg b/test/W3C_SVG_12_TinyTestSuite_beta/svgHarness/media-video-204-t.svg new file mode 100755 index 00000000..5939a039 --- /dev/null +++ b/test/W3C_SVG_12_TinyTestSuite_beta/svgHarness/media-video-204-t.svg @@ -0,0 +1,43 @@ + + + + + + + + + + + + + + + + + + + + + + + media-video-204-t + + SVG Image + + PNG Image + + + + + + Previous + + + No Nav + + + Next + + + + \ No newline at end of file diff --git a/test/W3C_SVG_12_TinyTestSuite_beta/svgHarness/media-video-205-t.svg b/test/W3C_SVG_12_TinyTestSuite_beta/svgHarness/media-video-205-t.svg new file mode 100755 index 00000000..3ad1c3f8 --- /dev/null +++ b/test/W3C_SVG_12_TinyTestSuite_beta/svgHarness/media-video-205-t.svg @@ -0,0 +1,43 @@ + + + + + + + + + + + + + + + + + + + + + + + media-video-205-t + + SVG Image + + PNG Image + + + + + + Previous + + + No Nav + + + Next + + + + \ No newline at end of file diff --git a/test/W3C_SVG_12_TinyTestSuite_beta/svgHarness/media-video-206-t.svg b/test/W3C_SVG_12_TinyTestSuite_beta/svgHarness/media-video-206-t.svg new file mode 100755 index 00000000..46144249 --- /dev/null +++ b/test/W3C_SVG_12_TinyTestSuite_beta/svgHarness/media-video-206-t.svg @@ -0,0 +1,43 @@ + + + + + + + + + + + + + + + + + + + + + + + media-video-206-t + + SVG Image + + PNG Image + + + + + + Previous + + + No Nav + + + Next + + + + \ No newline at end of file diff --git a/test/W3C_SVG_12_TinyTestSuite_beta/svgHarness/media-video-207-t.svg b/test/W3C_SVG_12_TinyTestSuite_beta/svgHarness/media-video-207-t.svg new file mode 100755 index 00000000..41d38bc0 --- /dev/null +++ b/test/W3C_SVG_12_TinyTestSuite_beta/svgHarness/media-video-207-t.svg @@ -0,0 +1,43 @@ + + + + + + + + + + + + + + + + + + + + + + + media-video-207-t + + SVG Image + + PNG Image + + + + + + Previous + + + No Nav + + + Next + + + + \ No newline at end of file diff --git a/test/W3C_SVG_12_TinyTestSuite_beta/svgHarness/media-video-208-t.svg b/test/W3C_SVG_12_TinyTestSuite_beta/svgHarness/media-video-208-t.svg new file mode 100755 index 00000000..dc6a532b --- /dev/null +++ b/test/W3C_SVG_12_TinyTestSuite_beta/svgHarness/media-video-208-t.svg @@ -0,0 +1,43 @@ + + + + + + + + + + + + + + + + + + + + + + + media-video-208-t + + SVG Image + + PNG Image + + + + + + Previous + + + No Nav + + + Next + + + + \ No newline at end of file diff --git a/test/W3C_SVG_12_TinyTestSuite_beta/svgHarness/media-video-209-t.svg b/test/W3C_SVG_12_TinyTestSuite_beta/svgHarness/media-video-209-t.svg new file mode 100755 index 00000000..19d44aa7 --- /dev/null +++ b/test/W3C_SVG_12_TinyTestSuite_beta/svgHarness/media-video-209-t.svg @@ -0,0 +1,43 @@ + + + + + + + + + + + + + + + + + + + + + + + media-video-209-t + + SVG Image + + PNG Image + + + + + + Previous + + + No Nav + + + Next + + + + \ No newline at end of file diff --git a/test/W3C_SVG_12_TinyTestSuite_beta/svgHarness/media-video-210-t.svg b/test/W3C_SVG_12_TinyTestSuite_beta/svgHarness/media-video-210-t.svg new file mode 100755 index 00000000..0f4878f6 --- /dev/null +++ b/test/W3C_SVG_12_TinyTestSuite_beta/svgHarness/media-video-210-t.svg @@ -0,0 +1,43 @@ + + + + + + + + + + + + + + + + + + + + + + + media-video-210-t + + SVG Image + + PNG Image + + + + + + Previous + + + No Nav + + + Next + + + + \ No newline at end of file diff --git a/test/W3C_SVG_12_TinyTestSuite_beta/svgHarness/media-video-211-t.svg b/test/W3C_SVG_12_TinyTestSuite_beta/svgHarness/media-video-211-t.svg new file mode 100755 index 00000000..be7c68f8 --- /dev/null +++ b/test/W3C_SVG_12_TinyTestSuite_beta/svgHarness/media-video-211-t.svg @@ -0,0 +1,43 @@ + + + + + + + + + + + + + + + + + + + + + + + media-video-211-t + + SVG Image + + PNG Image + + + + + + Previous + + + No Nav + + + Next + + + + \ No newline at end of file diff --git a/test/W3C_SVG_12_TinyTestSuite_beta/svgHarness/media-video-212-t.svg b/test/W3C_SVG_12_TinyTestSuite_beta/svgHarness/media-video-212-t.svg new file mode 100755 index 00000000..0ee09cfb --- /dev/null +++ b/test/W3C_SVG_12_TinyTestSuite_beta/svgHarness/media-video-212-t.svg @@ -0,0 +1,43 @@ + + + + + + + + + + + + + + + + + + + + + + + media-video-212-t + + SVG Image + + PNG Image + + + + + + Previous + + + No Nav + + + Next + + + + \ No newline at end of file diff --git a/test/W3C_SVG_12_TinyTestSuite_beta/svgHarness/media-video-213-t.svg b/test/W3C_SVG_12_TinyTestSuite_beta/svgHarness/media-video-213-t.svg new file mode 100755 index 00000000..947263a9 --- /dev/null +++ b/test/W3C_SVG_12_TinyTestSuite_beta/svgHarness/media-video-213-t.svg @@ -0,0 +1,43 @@ + + + + + + + + + + + + + + + + + + + + + + + media-video-213-t + + SVG Image + + PNG Image + + + + + + Previous + + + No Nav + + + Next + + + + \ No newline at end of file diff --git a/test/W3C_SVG_12_TinyTestSuite_beta/svgHarness/media-video-214-t.svg b/test/W3C_SVG_12_TinyTestSuite_beta/svgHarness/media-video-214-t.svg new file mode 100755 index 00000000..cb52e015 --- /dev/null +++ b/test/W3C_SVG_12_TinyTestSuite_beta/svgHarness/media-video-214-t.svg @@ -0,0 +1,43 @@ + + + + + + + + + + + + + + + + + + + + + + + media-video-214-t + + SVG Image + + PNG Image + + + + + + Previous + + + No Nav + + + Next + + + + \ No newline at end of file diff --git a/test/W3C_SVG_12_TinyTestSuite_beta/svgHarness/media-video-215-t.svg b/test/W3C_SVG_12_TinyTestSuite_beta/svgHarness/media-video-215-t.svg new file mode 100755 index 00000000..1ed8ec13 --- /dev/null +++ b/test/W3C_SVG_12_TinyTestSuite_beta/svgHarness/media-video-215-t.svg @@ -0,0 +1,43 @@ + + + + + + + + + + + + + + + + + + + + + + + media-video-215-t + + SVG Image + + PNG Image + + + + + + Previous + + + No Nav + + + Next + + + + \ No newline at end of file diff --git a/test/W3C_SVG_12_TinyTestSuite_beta/svgHarness/media-video-216-t.svg b/test/W3C_SVG_12_TinyTestSuite_beta/svgHarness/media-video-216-t.svg new file mode 100755 index 00000000..c59bb8f1 --- /dev/null +++ b/test/W3C_SVG_12_TinyTestSuite_beta/svgHarness/media-video-216-t.svg @@ -0,0 +1,43 @@ + + + + + + + + + + + + + + + + + + + + + + + media-video-216-t + + SVG Image + + PNG Image + + + + + + Previous + + + No Nav + + + Next + + + + \ No newline at end of file diff --git a/test/W3C_SVG_12_TinyTestSuite_beta/svgHarness/media-video-218-t.svg b/test/W3C_SVG_12_TinyTestSuite_beta/svgHarness/media-video-218-t.svg new file mode 100755 index 00000000..68376164 --- /dev/null +++ b/test/W3C_SVG_12_TinyTestSuite_beta/svgHarness/media-video-218-t.svg @@ -0,0 +1,43 @@ + + + + + + + + + + + + + + + + + + + + + + + media-video-218-t + + SVG Image + + PNG Image + + + + + + Previous + + + No Nav + + + Next + + + + \ No newline at end of file diff --git a/test/W3C_SVG_12_TinyTestSuite_beta/svgHarness/media-video-219-t.svg b/test/W3C_SVG_12_TinyTestSuite_beta/svgHarness/media-video-219-t.svg new file mode 100755 index 00000000..ffcb3b44 --- /dev/null +++ b/test/W3C_SVG_12_TinyTestSuite_beta/svgHarness/media-video-219-t.svg @@ -0,0 +1,43 @@ + + + + + + + + + + + + + + + + + + + + + + + media-video-219-t + + SVG Image + + PNG Image + + + + + + Previous + + + No Nav + + + Next + + + + \ No newline at end of file diff --git a/test/W3C_SVG_12_TinyTestSuite_beta/svgHarness/media-video-220-t.svg b/test/W3C_SVG_12_TinyTestSuite_beta/svgHarness/media-video-220-t.svg new file mode 100755 index 00000000..3700cfd5 --- /dev/null +++ b/test/W3C_SVG_12_TinyTestSuite_beta/svgHarness/media-video-220-t.svg @@ -0,0 +1,43 @@ + + + + + + + + + + + + + + + + + + + + + + + media-video-220-t + + SVG Image + + PNG Image + + + + + + Previous + + + No Nav + + + Next + + + + \ No newline at end of file diff --git a/test/W3C_SVG_12_TinyTestSuite_beta/svgHarness/media-video-221-t.svg b/test/W3C_SVG_12_TinyTestSuite_beta/svgHarness/media-video-221-t.svg new file mode 100755 index 00000000..291f48a4 --- /dev/null +++ b/test/W3C_SVG_12_TinyTestSuite_beta/svgHarness/media-video-221-t.svg @@ -0,0 +1,43 @@ + + + + + + + + + + + + + + + + + + + + + + + media-video-221-t + + SVG Image + + PNG Image + + + + + + Previous + + + No Nav + + + Next + + + + \ No newline at end of file diff --git a/test/W3C_SVG_12_TinyTestSuite_beta/svgHarness/media-video-222-t.svg b/test/W3C_SVG_12_TinyTestSuite_beta/svgHarness/media-video-222-t.svg new file mode 100755 index 00000000..336251d8 --- /dev/null +++ b/test/W3C_SVG_12_TinyTestSuite_beta/svgHarness/media-video-222-t.svg @@ -0,0 +1,43 @@ + + + + + + + + + + + + + + + + + + + + + + + media-video-222-t + + SVG Image + + PNG Image + + + + + + Previous + + + No Nav + + + Next + + + + \ No newline at end of file diff --git a/test/W3C_SVG_12_TinyTestSuite_beta/svgHarness/metadata-example-01-t.svg b/test/W3C_SVG_12_TinyTestSuite_beta/svgHarness/metadata-example-01-t.svg new file mode 100755 index 00000000..b96519de --- /dev/null +++ b/test/W3C_SVG_12_TinyTestSuite_beta/svgHarness/metadata-example-01-t.svg @@ -0,0 +1,43 @@ + + + + + + + + + + + + + + + + + + + + + + + metadata-example-01-t + + SVG Image + + PNG Image + + + + + + Previous + + + No Nav + + + Next + + + + \ No newline at end of file diff --git a/test/W3C_SVG_12_TinyTestSuite_beta/svgHarness/paint-color-01-t.svg b/test/W3C_SVG_12_TinyTestSuite_beta/svgHarness/paint-color-01-t.svg new file mode 100755 index 00000000..99caa42d --- /dev/null +++ b/test/W3C_SVG_12_TinyTestSuite_beta/svgHarness/paint-color-01-t.svg @@ -0,0 +1,43 @@ + + + + + + + + + + + + + + + + + + + + + + + paint-color-01-t + + SVG Image + + PNG Image + + + + + + Previous + + + No Nav + + + Next + + + + \ No newline at end of file diff --git a/test/W3C_SVG_12_TinyTestSuite_beta/svgHarness/paint-color-03-t.svg b/test/W3C_SVG_12_TinyTestSuite_beta/svgHarness/paint-color-03-t.svg new file mode 100755 index 00000000..13a456d7 --- /dev/null +++ b/test/W3C_SVG_12_TinyTestSuite_beta/svgHarness/paint-color-03-t.svg @@ -0,0 +1,43 @@ + + + + + + + + + + + + + + + + + + + + + + + paint-color-03-t + + SVG Image + + PNG Image + + + + + + Previous + + + No Nav + + + Next + + + + \ No newline at end of file diff --git a/test/W3C_SVG_12_TinyTestSuite_beta/svgHarness/paint-color-04-t.svg b/test/W3C_SVG_12_TinyTestSuite_beta/svgHarness/paint-color-04-t.svg new file mode 100755 index 00000000..b496cf5a --- /dev/null +++ b/test/W3C_SVG_12_TinyTestSuite_beta/svgHarness/paint-color-04-t.svg @@ -0,0 +1,43 @@ + + + + + + + + + + + + + + + + + + + + + + + paint-color-04-t + + SVG Image + + PNG Image + + + + + + Previous + + + No Nav + + + Next + + + + \ No newline at end of file diff --git a/test/W3C_SVG_12_TinyTestSuite_beta/svgHarness/paint-color-05-t.svg b/test/W3C_SVG_12_TinyTestSuite_beta/svgHarness/paint-color-05-t.svg new file mode 100755 index 00000000..2c5a6b47 --- /dev/null +++ b/test/W3C_SVG_12_TinyTestSuite_beta/svgHarness/paint-color-05-t.svg @@ -0,0 +1,43 @@ + + + + + + + + + + + + + + + + + + + + + + + paint-color-05-t + + SVG Image + + PNG Image + + + + + + Previous + + + No Nav + + + Next + + + + \ No newline at end of file diff --git a/test/W3C_SVG_12_TinyTestSuite_beta/svgHarness/paint-color-201-t.svg b/test/W3C_SVG_12_TinyTestSuite_beta/svgHarness/paint-color-201-t.svg new file mode 100755 index 00000000..00e5d8f1 --- /dev/null +++ b/test/W3C_SVG_12_TinyTestSuite_beta/svgHarness/paint-color-201-t.svg @@ -0,0 +1,43 @@ + + + + + + + + + + + + + + + + + + + + + + + paint-color-201-t + + SVG Image + + PNG Image + + + + + + Previous + + + No Nav + + + Next + + + + \ No newline at end of file diff --git a/test/W3C_SVG_12_TinyTestSuite_beta/svgHarness/paint-fill-01-t.svg b/test/W3C_SVG_12_TinyTestSuite_beta/svgHarness/paint-fill-01-t.svg new file mode 100755 index 00000000..26c51390 --- /dev/null +++ b/test/W3C_SVG_12_TinyTestSuite_beta/svgHarness/paint-fill-01-t.svg @@ -0,0 +1,43 @@ + + + + + + + + + + + + + + + + + + + + + + + paint-fill-01-t + + SVG Image + + PNG Image + + + + + + Previous + + + No Nav + + + Next + + + + \ No newline at end of file diff --git a/test/W3C_SVG_12_TinyTestSuite_beta/svgHarness/paint-fill-02-t.svg b/test/W3C_SVG_12_TinyTestSuite_beta/svgHarness/paint-fill-02-t.svg new file mode 100755 index 00000000..72ae3891 --- /dev/null +++ b/test/W3C_SVG_12_TinyTestSuite_beta/svgHarness/paint-fill-02-t.svg @@ -0,0 +1,43 @@ + + + + + + + + + + + + + + + + + + + + + + + paint-fill-02-t + + SVG Image + + PNG Image + + + + + + Previous + + + No Nav + + + Next + + + + \ No newline at end of file diff --git a/test/W3C_SVG_12_TinyTestSuite_beta/svgHarness/paint-fill-03-t.svg b/test/W3C_SVG_12_TinyTestSuite_beta/svgHarness/paint-fill-03-t.svg new file mode 100755 index 00000000..33283565 --- /dev/null +++ b/test/W3C_SVG_12_TinyTestSuite_beta/svgHarness/paint-fill-03-t.svg @@ -0,0 +1,43 @@ + + + + + + + + + + + + + + + + + + + + + + + paint-fill-03-t + + SVG Image + + PNG Image + + + + + + Previous + + + No Nav + + + Next + + + + \ No newline at end of file diff --git a/test/W3C_SVG_12_TinyTestSuite_beta/svgHarness/paint-fill-04-t.svg b/test/W3C_SVG_12_TinyTestSuite_beta/svgHarness/paint-fill-04-t.svg new file mode 100755 index 00000000..2b27352a --- /dev/null +++ b/test/W3C_SVG_12_TinyTestSuite_beta/svgHarness/paint-fill-04-t.svg @@ -0,0 +1,43 @@ + + + + + + + + + + + + + + + + + + + + + + + paint-fill-04-t + + SVG Image + + PNG Image + + + + + + Previous + + + No Nav + + + Next + + + + \ No newline at end of file diff --git a/test/W3C_SVG_12_TinyTestSuite_beta/svgHarness/paint-fill-05-t.svg b/test/W3C_SVG_12_TinyTestSuite_beta/svgHarness/paint-fill-05-t.svg new file mode 100755 index 00000000..83901137 --- /dev/null +++ b/test/W3C_SVG_12_TinyTestSuite_beta/svgHarness/paint-fill-05-t.svg @@ -0,0 +1,43 @@ + + + + + + + + + + + + + + + + + + + + + + + paint-fill-05-t + + SVG Image + + PNG Image + + + + + + Previous + + + No Nav + + + Next + + + + \ No newline at end of file diff --git a/test/W3C_SVG_12_TinyTestSuite_beta/svgHarness/paint-grad-04-t.svg b/test/W3C_SVG_12_TinyTestSuite_beta/svgHarness/paint-grad-04-t.svg new file mode 100755 index 00000000..bde55c4b --- /dev/null +++ b/test/W3C_SVG_12_TinyTestSuite_beta/svgHarness/paint-grad-04-t.svg @@ -0,0 +1,43 @@ + + + + + + + + + + + + + + + + + + + + + + + paint-grad-04-t + + SVG Image + + PNG Image + + + + + + Previous + + + No Nav + + + Next + + + + \ No newline at end of file diff --git a/test/W3C_SVG_12_TinyTestSuite_beta/svgHarness/paint-grad-05-t.svg b/test/W3C_SVG_12_TinyTestSuite_beta/svgHarness/paint-grad-05-t.svg new file mode 100755 index 00000000..2bf147b0 --- /dev/null +++ b/test/W3C_SVG_12_TinyTestSuite_beta/svgHarness/paint-grad-05-t.svg @@ -0,0 +1,43 @@ + + + + + + + + + + + + + + + + + + + + + + + paint-grad-05-t + + SVG Image + + PNG Image + + + + + + Previous + + + No Nav + + + Next + + + + \ No newline at end of file diff --git a/test/W3C_SVG_12_TinyTestSuite_beta/svgHarness/paint-grad-07-t.svg b/test/W3C_SVG_12_TinyTestSuite_beta/svgHarness/paint-grad-07-t.svg new file mode 100755 index 00000000..f82742b7 --- /dev/null +++ b/test/W3C_SVG_12_TinyTestSuite_beta/svgHarness/paint-grad-07-t.svg @@ -0,0 +1,43 @@ + + + + + + + + + + + + + + + + + + + + + + + paint-grad-07-t + + SVG Image + + PNG Image + + + + + + Previous + + + No Nav + + + Next + + + + \ No newline at end of file diff --git a/test/W3C_SVG_12_TinyTestSuite_beta/svgHarness/paint-grad-08-t.svg b/test/W3C_SVG_12_TinyTestSuite_beta/svgHarness/paint-grad-08-t.svg new file mode 100755 index 00000000..274a4f01 --- /dev/null +++ b/test/W3C_SVG_12_TinyTestSuite_beta/svgHarness/paint-grad-08-t.svg @@ -0,0 +1,43 @@ + + + + + + + + + + + + + + + + + + + + + + + paint-grad-08-t + + SVG Image + + PNG Image + + + + + + Previous + + + No Nav + + + Next + + + + \ No newline at end of file diff --git a/test/W3C_SVG_12_TinyTestSuite_beta/svgHarness/paint-grad-09-t.svg b/test/W3C_SVG_12_TinyTestSuite_beta/svgHarness/paint-grad-09-t.svg new file mode 100755 index 00000000..7c238e4e --- /dev/null +++ b/test/W3C_SVG_12_TinyTestSuite_beta/svgHarness/paint-grad-09-t.svg @@ -0,0 +1,43 @@ + + + + + + + + + + + + + + + + + + + + + + + paint-grad-09-t + + SVG Image + + PNG Image + + + + + + Previous + + + No Nav + + + Next + + + + \ No newline at end of file diff --git a/test/W3C_SVG_12_TinyTestSuite_beta/svgHarness/paint-grad-11-t.svg b/test/W3C_SVG_12_TinyTestSuite_beta/svgHarness/paint-grad-11-t.svg new file mode 100755 index 00000000..0202fecc --- /dev/null +++ b/test/W3C_SVG_12_TinyTestSuite_beta/svgHarness/paint-grad-11-t.svg @@ -0,0 +1,43 @@ + + + + + + + + + + + + + + + + + + + + + + + paint-grad-11-t + + SVG Image + + PNG Image + + + + + + Previous + + + No Nav + + + Next + + + + \ No newline at end of file diff --git a/test/W3C_SVG_12_TinyTestSuite_beta/svgHarness/paint-grad-12-t.svg b/test/W3C_SVG_12_TinyTestSuite_beta/svgHarness/paint-grad-12-t.svg new file mode 100755 index 00000000..73ccc25a --- /dev/null +++ b/test/W3C_SVG_12_TinyTestSuite_beta/svgHarness/paint-grad-12-t.svg @@ -0,0 +1,43 @@ + + + + + + + + + + + + + + + + + + + + + + + paint-grad-12-t + + SVG Image + + PNG Image + + + + + + Previous + + + No Nav + + + Next + + + + \ No newline at end of file diff --git a/test/W3C_SVG_12_TinyTestSuite_beta/svgHarness/paint-grad-15-t.svg b/test/W3C_SVG_12_TinyTestSuite_beta/svgHarness/paint-grad-15-t.svg new file mode 100755 index 00000000..857c1fea --- /dev/null +++ b/test/W3C_SVG_12_TinyTestSuite_beta/svgHarness/paint-grad-15-t.svg @@ -0,0 +1,43 @@ + + + + + + + + + + + + + + + + + + + + + + + paint-grad-15-t + + SVG Image + + PNG Image + + + + + + Previous + + + No Nav + + + Next + + + + \ No newline at end of file diff --git a/test/W3C_SVG_12_TinyTestSuite_beta/svgHarness/paint-grad-16-t.svg b/test/W3C_SVG_12_TinyTestSuite_beta/svgHarness/paint-grad-16-t.svg new file mode 100755 index 00000000..9e1ebf61 --- /dev/null +++ b/test/W3C_SVG_12_TinyTestSuite_beta/svgHarness/paint-grad-16-t.svg @@ -0,0 +1,43 @@ + + + + + + + + + + + + + + + + + + + + + + + paint-grad-16-t + + SVG Image + + PNG Image + + + + + + Previous + + + No Nav + + + Next + + + + \ No newline at end of file diff --git a/test/W3C_SVG_12_TinyTestSuite_beta/svgHarness/paint-grad-17-t.svg b/test/W3C_SVG_12_TinyTestSuite_beta/svgHarness/paint-grad-17-t.svg new file mode 100755 index 00000000..85dc8d86 --- /dev/null +++ b/test/W3C_SVG_12_TinyTestSuite_beta/svgHarness/paint-grad-17-t.svg @@ -0,0 +1,43 @@ + + + + + + + + + + + + + + + + + + + + + + + paint-grad-17-t + + SVG Image + + PNG Image + + + + + + Previous + + + No Nav + + + Next + + + + \ No newline at end of file diff --git a/test/W3C_SVG_12_TinyTestSuite_beta/svgHarness/paint-grad-18-t.svg b/test/W3C_SVG_12_TinyTestSuite_beta/svgHarness/paint-grad-18-t.svg new file mode 100755 index 00000000..78329327 --- /dev/null +++ b/test/W3C_SVG_12_TinyTestSuite_beta/svgHarness/paint-grad-18-t.svg @@ -0,0 +1,43 @@ + + + + + + + + + + + + + + + + + + + + + + + paint-grad-18-t + + SVG Image + + PNG Image + + + + + + Previous + + + No Nav + + + Next + + + + \ No newline at end of file diff --git a/test/W3C_SVG_12_TinyTestSuite_beta/svgHarness/paint-grad-19-t.svg b/test/W3C_SVG_12_TinyTestSuite_beta/svgHarness/paint-grad-19-t.svg new file mode 100755 index 00000000..b3dec0e7 --- /dev/null +++ b/test/W3C_SVG_12_TinyTestSuite_beta/svgHarness/paint-grad-19-t.svg @@ -0,0 +1,43 @@ + + + + + + + + + + + + + + + + + + + + + + + paint-grad-19-t + + SVG Image + + PNG Image + + + + + + Previous + + + No Nav + + + Next + + + + \ No newline at end of file diff --git a/test/W3C_SVG_12_TinyTestSuite_beta/svgHarness/paint-grad-201-t.svg b/test/W3C_SVG_12_TinyTestSuite_beta/svgHarness/paint-grad-201-t.svg new file mode 100755 index 00000000..24f07518 --- /dev/null +++ b/test/W3C_SVG_12_TinyTestSuite_beta/svgHarness/paint-grad-201-t.svg @@ -0,0 +1,43 @@ + + + + + + + + + + + + + + + + + + + + + + + paint-grad-201-t + + SVG Image + + PNG Image + + + + + + Previous + + + No Nav + + + Next + + + + \ No newline at end of file diff --git a/test/W3C_SVG_12_TinyTestSuite_beta/svgHarness/paint-grad-202-t.svg b/test/W3C_SVG_12_TinyTestSuite_beta/svgHarness/paint-grad-202-t.svg new file mode 100755 index 00000000..4c2fffa9 --- /dev/null +++ b/test/W3C_SVG_12_TinyTestSuite_beta/svgHarness/paint-grad-202-t.svg @@ -0,0 +1,43 @@ + + + + + + + + + + + + + + + + + + + + + + + paint-grad-202-t + + SVG Image + + PNG Image + + + + + + Previous + + + No Nav + + + Next + + + + \ No newline at end of file diff --git a/test/W3C_SVG_12_TinyTestSuite_beta/svgHarness/paint-grad-203-t.svg b/test/W3C_SVG_12_TinyTestSuite_beta/svgHarness/paint-grad-203-t.svg new file mode 100755 index 00000000..2f4f852d --- /dev/null +++ b/test/W3C_SVG_12_TinyTestSuite_beta/svgHarness/paint-grad-203-t.svg @@ -0,0 +1,43 @@ + + + + + + + + + + + + + + + + + + + + + + + paint-grad-203-t + + SVG Image + + PNG Image + + + + + + Previous + + + No Nav + + + Next + + + + \ No newline at end of file diff --git a/test/W3C_SVG_12_TinyTestSuite_beta/svgHarness/paint-grad-204-t.svg b/test/W3C_SVG_12_TinyTestSuite_beta/svgHarness/paint-grad-204-t.svg new file mode 100755 index 00000000..e11bc7d7 --- /dev/null +++ b/test/W3C_SVG_12_TinyTestSuite_beta/svgHarness/paint-grad-204-t.svg @@ -0,0 +1,43 @@ + + + + + + + + + + + + + + + + + + + + + + + paint-grad-204-t + + SVG Image + + PNG Image + + + + + + Previous + + + No Nav + + + Next + + + + \ No newline at end of file diff --git a/test/W3C_SVG_12_TinyTestSuite_beta/svgHarness/paint-grad-205-t.svg b/test/W3C_SVG_12_TinyTestSuite_beta/svgHarness/paint-grad-205-t.svg new file mode 100755 index 00000000..7c4898f7 --- /dev/null +++ b/test/W3C_SVG_12_TinyTestSuite_beta/svgHarness/paint-grad-205-t.svg @@ -0,0 +1,43 @@ + + + + + + + + + + + + + + + + + + + + + + + paint-grad-205-t + + SVG Image + + PNG Image + + + + + + Previous + + + No Nav + + + Next + + + + \ No newline at end of file diff --git a/test/W3C_SVG_12_TinyTestSuite_beta/svgHarness/paint-nsstroke-201-t.svg b/test/W3C_SVG_12_TinyTestSuite_beta/svgHarness/paint-nsstroke-201-t.svg new file mode 100755 index 00000000..9760c0e4 --- /dev/null +++ b/test/W3C_SVG_12_TinyTestSuite_beta/svgHarness/paint-nsstroke-201-t.svg @@ -0,0 +1,43 @@ + + + + + + + + + + + + + + + + + + + + + + + paint-nsstroke-201-t + + SVG Image + + PNG Image + + + + + + Previous + + + No Nav + + + Next + + + + \ No newline at end of file diff --git a/test/W3C_SVG_12_TinyTestSuite_beta/svgHarness/paint-nsstroke-203-t.svg b/test/W3C_SVG_12_TinyTestSuite_beta/svgHarness/paint-nsstroke-203-t.svg new file mode 100755 index 00000000..eb105a5f --- /dev/null +++ b/test/W3C_SVG_12_TinyTestSuite_beta/svgHarness/paint-nsstroke-203-t.svg @@ -0,0 +1,43 @@ + + + + + + + + + + + + + + + + + + + + + + + paint-nsstroke-203-t + + SVG Image + + PNG Image + + + + + + Previous + + + No Nav + + + Next + + + + \ No newline at end of file diff --git a/test/W3C_SVG_12_TinyTestSuite_beta/svgHarness/paint-other-201-t.svg b/test/W3C_SVG_12_TinyTestSuite_beta/svgHarness/paint-other-201-t.svg new file mode 100755 index 00000000..ac8c5090 --- /dev/null +++ b/test/W3C_SVG_12_TinyTestSuite_beta/svgHarness/paint-other-201-t.svg @@ -0,0 +1,43 @@ + + + + + + + + + + + + + + + + + + + + + + + paint-other-201-t + + SVG Image + + PNG Image + + + + + + Previous + + + No Nav + + + Next + + + + \ No newline at end of file diff --git a/test/W3C_SVG_12_TinyTestSuite_beta/svgHarness/paint-other-203-t.svg b/test/W3C_SVG_12_TinyTestSuite_beta/svgHarness/paint-other-203-t.svg new file mode 100755 index 00000000..6ab54a22 --- /dev/null +++ b/test/W3C_SVG_12_TinyTestSuite_beta/svgHarness/paint-other-203-t.svg @@ -0,0 +1,43 @@ + + + + + + + + + + + + + + + + + + + + + + + paint-other-203-t + + SVG Image + + PNG Image + + + + + + Previous + + + No Nav + + + Next + + + + \ No newline at end of file diff --git a/test/W3C_SVG_12_TinyTestSuite_beta/svgHarness/paint-stroke-01-t.svg b/test/W3C_SVG_12_TinyTestSuite_beta/svgHarness/paint-stroke-01-t.svg new file mode 100755 index 00000000..d958d2f2 --- /dev/null +++ b/test/W3C_SVG_12_TinyTestSuite_beta/svgHarness/paint-stroke-01-t.svg @@ -0,0 +1,43 @@ + + + + + + + + + + + + + + + + + + + + + + + paint-stroke-01-t + + SVG Image + + PNG Image + + + + + + Previous + + + No Nav + + + Next + + + + \ No newline at end of file diff --git a/test/W3C_SVG_12_TinyTestSuite_beta/svgHarness/paint-stroke-02-t.svg b/test/W3C_SVG_12_TinyTestSuite_beta/svgHarness/paint-stroke-02-t.svg new file mode 100755 index 00000000..74ce91c5 --- /dev/null +++ b/test/W3C_SVG_12_TinyTestSuite_beta/svgHarness/paint-stroke-02-t.svg @@ -0,0 +1,43 @@ + + + + + + + + + + + + + + + + + + + + + + + paint-stroke-02-t + + SVG Image + + PNG Image + + + + + + Previous + + + No Nav + + + Next + + + + \ No newline at end of file diff --git a/test/W3C_SVG_12_TinyTestSuite_beta/svgHarness/paint-stroke-03-t.svg b/test/W3C_SVG_12_TinyTestSuite_beta/svgHarness/paint-stroke-03-t.svg new file mode 100755 index 00000000..a1d7e4c5 --- /dev/null +++ b/test/W3C_SVG_12_TinyTestSuite_beta/svgHarness/paint-stroke-03-t.svg @@ -0,0 +1,43 @@ + + + + + + + + + + + + + + + + + + + + + + + paint-stroke-03-t + + SVG Image + + PNG Image + + + + + + Previous + + + No Nav + + + Next + + + + \ No newline at end of file diff --git a/test/W3C_SVG_12_TinyTestSuite_beta/svgHarness/paint-stroke-04-t.svg b/test/W3C_SVG_12_TinyTestSuite_beta/svgHarness/paint-stroke-04-t.svg new file mode 100755 index 00000000..fae4c10c --- /dev/null +++ b/test/W3C_SVG_12_TinyTestSuite_beta/svgHarness/paint-stroke-04-t.svg @@ -0,0 +1,43 @@ + + + + + + + + + + + + + + + + + + + + + + + paint-stroke-04-t + + SVG Image + + PNG Image + + + + + + Previous + + + No Nav + + + Next + + + + \ No newline at end of file diff --git a/test/W3C_SVG_12_TinyTestSuite_beta/svgHarness/paint-stroke-05-t.svg b/test/W3C_SVG_12_TinyTestSuite_beta/svgHarness/paint-stroke-05-t.svg new file mode 100755 index 00000000..1dd8716a --- /dev/null +++ b/test/W3C_SVG_12_TinyTestSuite_beta/svgHarness/paint-stroke-05-t.svg @@ -0,0 +1,43 @@ + + + + + + + + + + + + + + + + + + + + + + + paint-stroke-05-t + + SVG Image + + PNG Image + + + + + + Previous + + + No Nav + + + Next + + + + \ No newline at end of file diff --git a/test/W3C_SVG_12_TinyTestSuite_beta/svgHarness/paint-stroke-06-t.svg b/test/W3C_SVG_12_TinyTestSuite_beta/svgHarness/paint-stroke-06-t.svg new file mode 100755 index 00000000..4fd28a06 --- /dev/null +++ b/test/W3C_SVG_12_TinyTestSuite_beta/svgHarness/paint-stroke-06-t.svg @@ -0,0 +1,43 @@ + + + + + + + + + + + + + + + + + + + + + + + paint-stroke-06-t + + SVG Image + + PNG Image + + + + + + Previous + + + No Nav + + + Next + + + + \ No newline at end of file diff --git a/test/W3C_SVG_12_TinyTestSuite_beta/svgHarness/paint-stroke-07-t.svg b/test/W3C_SVG_12_TinyTestSuite_beta/svgHarness/paint-stroke-07-t.svg new file mode 100755 index 00000000..a0546a4f --- /dev/null +++ b/test/W3C_SVG_12_TinyTestSuite_beta/svgHarness/paint-stroke-07-t.svg @@ -0,0 +1,43 @@ + + + + + + + + + + + + + + + + + + + + + + + paint-stroke-07-t + + SVG Image + + PNG Image + + + + + + Previous + + + No Nav + + + Next + + + + \ No newline at end of file diff --git a/test/W3C_SVG_12_TinyTestSuite_beta/svgHarness/paint-stroke-08-t.svg b/test/W3C_SVG_12_TinyTestSuite_beta/svgHarness/paint-stroke-08-t.svg new file mode 100755 index 00000000..31619088 --- /dev/null +++ b/test/W3C_SVG_12_TinyTestSuite_beta/svgHarness/paint-stroke-08-t.svg @@ -0,0 +1,43 @@ + + + + + + + + + + + + + + + + + + + + + + + paint-stroke-08-t + + SVG Image + + PNG Image + + + + + + Previous + + + No Nav + + + Next + + + + \ No newline at end of file diff --git a/test/W3C_SVG_12_TinyTestSuite_beta/svgHarness/paint-stroke-201-t.svg b/test/W3C_SVG_12_TinyTestSuite_beta/svgHarness/paint-stroke-201-t.svg new file mode 100755 index 00000000..295bc030 --- /dev/null +++ b/test/W3C_SVG_12_TinyTestSuite_beta/svgHarness/paint-stroke-201-t.svg @@ -0,0 +1,43 @@ + + + + + + + + + + + + + + + + + + + + + + + paint-stroke-201-t + + SVG Image + + PNG Image + + + + + + Previous + + + No Nav + + + Next + + + + \ No newline at end of file diff --git a/test/W3C_SVG_12_TinyTestSuite_beta/svgHarness/paint-stroke-202-t.svg b/test/W3C_SVG_12_TinyTestSuite_beta/svgHarness/paint-stroke-202-t.svg new file mode 100755 index 00000000..223f52d2 --- /dev/null +++ b/test/W3C_SVG_12_TinyTestSuite_beta/svgHarness/paint-stroke-202-t.svg @@ -0,0 +1,43 @@ + + + + + + + + + + + + + + + + + + + + + + + paint-stroke-202-t + + SVG Image + + PNG Image + + + + + + Previous + + + No Nav + + + Next + + + + \ No newline at end of file diff --git a/test/W3C_SVG_12_TinyTestSuite_beta/svgHarness/paint-stroke-204-t.svg b/test/W3C_SVG_12_TinyTestSuite_beta/svgHarness/paint-stroke-204-t.svg new file mode 100755 index 00000000..f58f5031 --- /dev/null +++ b/test/W3C_SVG_12_TinyTestSuite_beta/svgHarness/paint-stroke-204-t.svg @@ -0,0 +1,43 @@ + + + + + + + + + + + + + + + + + + + + + + + paint-stroke-204-t + + SVG Image + + PNG Image + + + + + + Previous + + + No Nav + + + Next + + + + \ No newline at end of file diff --git a/test/W3C_SVG_12_TinyTestSuite_beta/svgHarness/paint-stroke-205-t.svg b/test/W3C_SVG_12_TinyTestSuite_beta/svgHarness/paint-stroke-205-t.svg new file mode 100755 index 00000000..fc874578 --- /dev/null +++ b/test/W3C_SVG_12_TinyTestSuite_beta/svgHarness/paint-stroke-205-t.svg @@ -0,0 +1,43 @@ + + + + + + + + + + + + + + + + + + + + + + + paint-stroke-205-t + + SVG Image + + PNG Image + + + + + + Previous + + + No Nav + + + Next + + + + \ No newline at end of file diff --git a/test/W3C_SVG_12_TinyTestSuite_beta/svgHarness/paint-stroke-207-t.svg b/test/W3C_SVG_12_TinyTestSuite_beta/svgHarness/paint-stroke-207-t.svg new file mode 100755 index 00000000..2899f118 --- /dev/null +++ b/test/W3C_SVG_12_TinyTestSuite_beta/svgHarness/paint-stroke-207-t.svg @@ -0,0 +1,43 @@ + + + + + + + + + + + + + + + + + + + + + + + paint-stroke-207-t + + SVG Image + + PNG Image + + + + + + Previous + + + No Nav + + + Next + + + + \ No newline at end of file diff --git a/test/W3C_SVG_12_TinyTestSuite_beta/svgHarness/paint-vfill-201-t.svg b/test/W3C_SVG_12_TinyTestSuite_beta/svgHarness/paint-vfill-201-t.svg new file mode 100755 index 00000000..3a2429b1 --- /dev/null +++ b/test/W3C_SVG_12_TinyTestSuite_beta/svgHarness/paint-vfill-201-t.svg @@ -0,0 +1,43 @@ + + + + + + + + + + + + + + + + + + + + + + + paint-vfill-201-t + + SVG Image + + PNG Image + + + + + + Previous + + + No Nav + + + Next + + + + \ No newline at end of file diff --git a/test/W3C_SVG_12_TinyTestSuite_beta/svgHarness/paint-vfill-202-t.svg b/test/W3C_SVG_12_TinyTestSuite_beta/svgHarness/paint-vfill-202-t.svg new file mode 100755 index 00000000..9ec3ce99 --- /dev/null +++ b/test/W3C_SVG_12_TinyTestSuite_beta/svgHarness/paint-vfill-202-t.svg @@ -0,0 +1,43 @@ + + + + + + + + + + + + + + + + + + + + + + + paint-vfill-202-t + + SVG Image + + PNG Image + + + + + + Previous + + + No Nav + + + Next + + + + \ No newline at end of file diff --git a/test/W3C_SVG_12_TinyTestSuite_beta/svgHarness/paint-vfill-203-t.svg b/test/W3C_SVG_12_TinyTestSuite_beta/svgHarness/paint-vfill-203-t.svg new file mode 100755 index 00000000..f3f5bb3d --- /dev/null +++ b/test/W3C_SVG_12_TinyTestSuite_beta/svgHarness/paint-vfill-203-t.svg @@ -0,0 +1,43 @@ + + + + + + + + + + + + + + + + + + + + + + + paint-vfill-203-t + + SVG Image + + PNG Image + + + + + + Previous + + + No Nav + + + Next + + + + \ No newline at end of file diff --git a/test/W3C_SVG_12_TinyTestSuite_beta/svgHarness/paint-vfill-204-t.svg b/test/W3C_SVG_12_TinyTestSuite_beta/svgHarness/paint-vfill-204-t.svg new file mode 100755 index 00000000..cb9ddfc3 --- /dev/null +++ b/test/W3C_SVG_12_TinyTestSuite_beta/svgHarness/paint-vfill-204-t.svg @@ -0,0 +1,43 @@ + + + + + + + + + + + + + + + + + + + + + + + paint-vfill-204-t + + SVG Image + + PNG Image + + + + + + Previous + + + No Nav + + + Next + + + + \ No newline at end of file diff --git a/test/W3C_SVG_12_TinyTestSuite_beta/svgHarness/paint-vfill-205-t.svg b/test/W3C_SVG_12_TinyTestSuite_beta/svgHarness/paint-vfill-205-t.svg new file mode 100755 index 00000000..341a725e --- /dev/null +++ b/test/W3C_SVG_12_TinyTestSuite_beta/svgHarness/paint-vfill-205-t.svg @@ -0,0 +1,43 @@ + + + + + + + + + + + + + + + + + + + + + + + paint-vfill-205-t + + SVG Image + + PNG Image + + + + + + Previous + + + No Nav + + + Next + + + + \ No newline at end of file diff --git a/test/W3C_SVG_12_TinyTestSuite_beta/svgHarness/paint-vfill-206-t.svg b/test/W3C_SVG_12_TinyTestSuite_beta/svgHarness/paint-vfill-206-t.svg new file mode 100755 index 00000000..c4ab6253 --- /dev/null +++ b/test/W3C_SVG_12_TinyTestSuite_beta/svgHarness/paint-vfill-206-t.svg @@ -0,0 +1,43 @@ + + + + + + + + + + + + + + + + + + + + + + + paint-vfill-206-t + + SVG Image + + PNG Image + + + + + + Previous + + + No Nav + + + Next + + + + \ No newline at end of file diff --git a/test/W3C_SVG_12_TinyTestSuite_beta/svgHarness/paths-data-01-t.svg b/test/W3C_SVG_12_TinyTestSuite_beta/svgHarness/paths-data-01-t.svg new file mode 100755 index 00000000..6d9455a6 --- /dev/null +++ b/test/W3C_SVG_12_TinyTestSuite_beta/svgHarness/paths-data-01-t.svg @@ -0,0 +1,43 @@ + + + + + + + + + + + + + + + + + + + + + + + paths-data-01-t + + SVG Image + + PNG Image + + + + + + Previous + + + No Nav + + + Next + + + + \ No newline at end of file diff --git a/test/W3C_SVG_12_TinyTestSuite_beta/svgHarness/paths-data-02-t.svg b/test/W3C_SVG_12_TinyTestSuite_beta/svgHarness/paths-data-02-t.svg new file mode 100755 index 00000000..63d4111f --- /dev/null +++ b/test/W3C_SVG_12_TinyTestSuite_beta/svgHarness/paths-data-02-t.svg @@ -0,0 +1,43 @@ + + + + + + + + + + + + + + + + + + + + + + + paths-data-02-t + + SVG Image + + PNG Image + + + + + + Previous + + + No Nav + + + Next + + + + \ No newline at end of file diff --git a/test/W3C_SVG_12_TinyTestSuite_beta/svgHarness/paths-data-04-t.svg b/test/W3C_SVG_12_TinyTestSuite_beta/svgHarness/paths-data-04-t.svg new file mode 100755 index 00000000..383f3e5b --- /dev/null +++ b/test/W3C_SVG_12_TinyTestSuite_beta/svgHarness/paths-data-04-t.svg @@ -0,0 +1,43 @@ + + + + + + + + + + + + + + + + + + + + + + + paths-data-04-t + + SVG Image + + PNG Image + + + + + + Previous + + + No Nav + + + Next + + + + \ No newline at end of file diff --git a/test/W3C_SVG_12_TinyTestSuite_beta/svgHarness/paths-data-05-t.svg b/test/W3C_SVG_12_TinyTestSuite_beta/svgHarness/paths-data-05-t.svg new file mode 100755 index 00000000..a10aca0b --- /dev/null +++ b/test/W3C_SVG_12_TinyTestSuite_beta/svgHarness/paths-data-05-t.svg @@ -0,0 +1,43 @@ + + + + + + + + + + + + + + + + + + + + + + + paths-data-05-t + + SVG Image + + PNG Image + + + + + + Previous + + + No Nav + + + Next + + + + \ No newline at end of file diff --git a/test/W3C_SVG_12_TinyTestSuite_beta/svgHarness/paths-data-06-t.svg b/test/W3C_SVG_12_TinyTestSuite_beta/svgHarness/paths-data-06-t.svg new file mode 100755 index 00000000..0dcaa242 --- /dev/null +++ b/test/W3C_SVG_12_TinyTestSuite_beta/svgHarness/paths-data-06-t.svg @@ -0,0 +1,43 @@ + + + + + + + + + + + + + + + + + + + + + + + paths-data-06-t + + SVG Image + + PNG Image + + + + + + Previous + + + No Nav + + + Next + + + + \ No newline at end of file diff --git a/test/W3C_SVG_12_TinyTestSuite_beta/svgHarness/paths-data-07-t.svg b/test/W3C_SVG_12_TinyTestSuite_beta/svgHarness/paths-data-07-t.svg new file mode 100755 index 00000000..b4611fe0 --- /dev/null +++ b/test/W3C_SVG_12_TinyTestSuite_beta/svgHarness/paths-data-07-t.svg @@ -0,0 +1,43 @@ + + + + + + + + + + + + + + + + + + + + + + + paths-data-07-t + + SVG Image + + PNG Image + + + + + + Previous + + + No Nav + + + Next + + + + \ No newline at end of file diff --git a/test/W3C_SVG_12_TinyTestSuite_beta/svgHarness/paths-data-08-t.svg b/test/W3C_SVG_12_TinyTestSuite_beta/svgHarness/paths-data-08-t.svg new file mode 100755 index 00000000..eabc8b91 --- /dev/null +++ b/test/W3C_SVG_12_TinyTestSuite_beta/svgHarness/paths-data-08-t.svg @@ -0,0 +1,43 @@ + + + + + + + + + + + + + + + + + + + + + + + paths-data-08-t + + SVG Image + + PNG Image + + + + + + Previous + + + No Nav + + + Next + + + + \ No newline at end of file diff --git a/test/W3C_SVG_12_TinyTestSuite_beta/svgHarness/paths-data-09-t.svg b/test/W3C_SVG_12_TinyTestSuite_beta/svgHarness/paths-data-09-t.svg new file mode 100755 index 00000000..618456a3 --- /dev/null +++ b/test/W3C_SVG_12_TinyTestSuite_beta/svgHarness/paths-data-09-t.svg @@ -0,0 +1,43 @@ + + + + + + + + + + + + + + + + + + + + + + + paths-data-09-t + + SVG Image + + PNG Image + + + + + + Previous + + + No Nav + + + Next + + + + \ No newline at end of file diff --git a/test/W3C_SVG_12_TinyTestSuite_beta/svgHarness/paths-data-10-t.svg b/test/W3C_SVG_12_TinyTestSuite_beta/svgHarness/paths-data-10-t.svg new file mode 100755 index 00000000..b4396eea --- /dev/null +++ b/test/W3C_SVG_12_TinyTestSuite_beta/svgHarness/paths-data-10-t.svg @@ -0,0 +1,43 @@ + + + + + + + + + + + + + + + + + + + + + + + paths-data-10-t + + SVG Image + + PNG Image + + + + + + Previous + + + No Nav + + + Next + + + + \ No newline at end of file diff --git a/test/W3C_SVG_12_TinyTestSuite_beta/svgHarness/paths-data-12-t.svg b/test/W3C_SVG_12_TinyTestSuite_beta/svgHarness/paths-data-12-t.svg new file mode 100755 index 00000000..9336bb86 --- /dev/null +++ b/test/W3C_SVG_12_TinyTestSuite_beta/svgHarness/paths-data-12-t.svg @@ -0,0 +1,43 @@ + + + + + + + + + + + + + + + + + + + + + + + paths-data-12-t + + SVG Image + + PNG Image + + + + + + Previous + + + No Nav + + + Next + + + + \ No newline at end of file diff --git a/test/W3C_SVG_12_TinyTestSuite_beta/svgHarness/paths-data-13-t.svg b/test/W3C_SVG_12_TinyTestSuite_beta/svgHarness/paths-data-13-t.svg new file mode 100755 index 00000000..07565696 --- /dev/null +++ b/test/W3C_SVG_12_TinyTestSuite_beta/svgHarness/paths-data-13-t.svg @@ -0,0 +1,43 @@ + + + + + + + + + + + + + + + + + + + + + + + paths-data-13-t + + SVG Image + + PNG Image + + + + + + Previous + + + No Nav + + + Next + + + + \ No newline at end of file diff --git a/test/W3C_SVG_12_TinyTestSuite_beta/svgHarness/paths-data-14-t.svg b/test/W3C_SVG_12_TinyTestSuite_beta/svgHarness/paths-data-14-t.svg new file mode 100755 index 00000000..80ff00bb --- /dev/null +++ b/test/W3C_SVG_12_TinyTestSuite_beta/svgHarness/paths-data-14-t.svg @@ -0,0 +1,43 @@ + + + + + + + + + + + + + + + + + + + + + + + paths-data-14-t + + SVG Image + + PNG Image + + + + + + Previous + + + No Nav + + + Next + + + + \ No newline at end of file diff --git a/test/W3C_SVG_12_TinyTestSuite_beta/svgHarness/paths-data-15-t.svg b/test/W3C_SVG_12_TinyTestSuite_beta/svgHarness/paths-data-15-t.svg new file mode 100755 index 00000000..d11da9ca --- /dev/null +++ b/test/W3C_SVG_12_TinyTestSuite_beta/svgHarness/paths-data-15-t.svg @@ -0,0 +1,43 @@ + + + + + + + + + + + + + + + + + + + + + + + paths-data-15-t + + SVG Image + + PNG Image + + + + + + Previous + + + No Nav + + + Next + + + + \ No newline at end of file diff --git a/test/W3C_SVG_12_TinyTestSuite_beta/svgHarness/render-elems-01-t.svg b/test/W3C_SVG_12_TinyTestSuite_beta/svgHarness/render-elems-01-t.svg new file mode 100755 index 00000000..141f08d1 --- /dev/null +++ b/test/W3C_SVG_12_TinyTestSuite_beta/svgHarness/render-elems-01-t.svg @@ -0,0 +1,43 @@ + + + + + + + + + + + + + + + + + + + + + + + render-elems-01-t + + SVG Image + + PNG Image + + + + + + Previous + + + No Nav + + + Next + + + + \ No newline at end of file diff --git a/test/W3C_SVG_12_TinyTestSuite_beta/svgHarness/render-elems-02-t.svg b/test/W3C_SVG_12_TinyTestSuite_beta/svgHarness/render-elems-02-t.svg new file mode 100755 index 00000000..0c12e6d4 --- /dev/null +++ b/test/W3C_SVG_12_TinyTestSuite_beta/svgHarness/render-elems-02-t.svg @@ -0,0 +1,43 @@ + + + + + + + + + + + + + + + + + + + + + + + render-elems-02-t + + SVG Image + + PNG Image + + + + + + Previous + + + No Nav + + + Next + + + + \ No newline at end of file diff --git a/test/W3C_SVG_12_TinyTestSuite_beta/svgHarness/render-elems-03-t.svg b/test/W3C_SVG_12_TinyTestSuite_beta/svgHarness/render-elems-03-t.svg new file mode 100755 index 00000000..92277e55 --- /dev/null +++ b/test/W3C_SVG_12_TinyTestSuite_beta/svgHarness/render-elems-03-t.svg @@ -0,0 +1,43 @@ + + + + + + + + + + + + + + + + + + + + + + + render-elems-03-t + + SVG Image + + PNG Image + + + + + + Previous + + + No Nav + + + Next + + + + \ No newline at end of file diff --git a/test/W3C_SVG_12_TinyTestSuite_beta/svgHarness/render-elems-06-t.svg b/test/W3C_SVG_12_TinyTestSuite_beta/svgHarness/render-elems-06-t.svg new file mode 100755 index 00000000..df8a800c --- /dev/null +++ b/test/W3C_SVG_12_TinyTestSuite_beta/svgHarness/render-elems-06-t.svg @@ -0,0 +1,43 @@ + + + + + + + + + + + + + + + + + + + + + + + render-elems-06-t + + SVG Image + + PNG Image + + + + + + Previous + + + No Nav + + + Next + + + + \ No newline at end of file diff --git a/test/W3C_SVG_12_TinyTestSuite_beta/svgHarness/render-elems-07-t.svg b/test/W3C_SVG_12_TinyTestSuite_beta/svgHarness/render-elems-07-t.svg new file mode 100755 index 00000000..972cb6a4 --- /dev/null +++ b/test/W3C_SVG_12_TinyTestSuite_beta/svgHarness/render-elems-07-t.svg @@ -0,0 +1,43 @@ + + + + + + + + + + + + + + + + + + + + + + + render-elems-07-t + + SVG Image + + PNG Image + + + + + + Previous + + + No Nav + + + Next + + + + \ No newline at end of file diff --git a/test/W3C_SVG_12_TinyTestSuite_beta/svgHarness/render-elems-08-t.svg b/test/W3C_SVG_12_TinyTestSuite_beta/svgHarness/render-elems-08-t.svg new file mode 100755 index 00000000..f28b21f8 --- /dev/null +++ b/test/W3C_SVG_12_TinyTestSuite_beta/svgHarness/render-elems-08-t.svg @@ -0,0 +1,43 @@ + + + + + + + + + + + + + + + + + + + + + + + render-elems-08-t + + SVG Image + + PNG Image + + + + + + Previous + + + No Nav + + + Next + + + + \ No newline at end of file diff --git a/test/W3C_SVG_12_TinyTestSuite_beta/svgHarness/render-groups-01-t.svg b/test/W3C_SVG_12_TinyTestSuite_beta/svgHarness/render-groups-01-t.svg new file mode 100755 index 00000000..53fe39e1 --- /dev/null +++ b/test/W3C_SVG_12_TinyTestSuite_beta/svgHarness/render-groups-01-t.svg @@ -0,0 +1,43 @@ + + + + + + + + + + + + + + + + + + + + + + + render-groups-01-t + + SVG Image + + PNG Image + + + + + + Previous + + + No Nav + + + Next + + + + \ No newline at end of file diff --git a/test/W3C_SVG_12_TinyTestSuite_beta/svgHarness/render-groups-03-t.svg b/test/W3C_SVG_12_TinyTestSuite_beta/svgHarness/render-groups-03-t.svg new file mode 100755 index 00000000..e63a1237 --- /dev/null +++ b/test/W3C_SVG_12_TinyTestSuite_beta/svgHarness/render-groups-03-t.svg @@ -0,0 +1,43 @@ + + + + + + + + + + + + + + + + + + + + + + + render-groups-03-t + + SVG Image + + PNG Image + + + + + + Previous + + + No Nav + + + Next + + + + \ No newline at end of file diff --git a/test/W3C_SVG_12_TinyTestSuite_beta/svgHarness/script-element-201-t.svg b/test/W3C_SVG_12_TinyTestSuite_beta/svgHarness/script-element-201-t.svg new file mode 100755 index 00000000..dcc6e09a --- /dev/null +++ b/test/W3C_SVG_12_TinyTestSuite_beta/svgHarness/script-element-201-t.svg @@ -0,0 +1,43 @@ + + + + + + + + + + + + + + + + + + + + + + + script-element-201-t + + SVG Image + + PNG Image + + + + + + Previous + + + No Nav + + + Next + + + + \ No newline at end of file diff --git a/test/W3C_SVG_12_TinyTestSuite_beta/svgHarness/script-element-202-t.svg b/test/W3C_SVG_12_TinyTestSuite_beta/svgHarness/script-element-202-t.svg new file mode 100755 index 00000000..dcf9de0c --- /dev/null +++ b/test/W3C_SVG_12_TinyTestSuite_beta/svgHarness/script-element-202-t.svg @@ -0,0 +1,43 @@ + + + + + + + + + + + + + + + + + + + + + + + script-element-202-t + + SVG Image + + PNG Image + + + + + + Previous + + + No Nav + + + Next + + + + \ No newline at end of file diff --git a/test/W3C_SVG_12_TinyTestSuite_beta/svgHarness/script-element-203-t.svg b/test/W3C_SVG_12_TinyTestSuite_beta/svgHarness/script-element-203-t.svg new file mode 100755 index 00000000..8d020d43 --- /dev/null +++ b/test/W3C_SVG_12_TinyTestSuite_beta/svgHarness/script-element-203-t.svg @@ -0,0 +1,43 @@ + + + + + + + + + + + + + + + + + + + + + + + script-element-203-t + + SVG Image + + PNG Image + + + + + + Previous + + + No Nav + + + Next + + + + \ No newline at end of file diff --git a/test/W3C_SVG_12_TinyTestSuite_beta/svgHarness/script-handle-05-t.svg b/test/W3C_SVG_12_TinyTestSuite_beta/svgHarness/script-handle-05-t.svg new file mode 100755 index 00000000..557491f8 --- /dev/null +++ b/test/W3C_SVG_12_TinyTestSuite_beta/svgHarness/script-handle-05-t.svg @@ -0,0 +1,43 @@ + + + + + + + + + + + + + + + + + + + + + + + script-handle-05-t + + SVG Image + + PNG Image + + + + + + Previous + + + No Nav + + + Next + + + + \ No newline at end of file diff --git a/test/W3C_SVG_12_TinyTestSuite_beta/svgHarness/script-handle-06-t.svg b/test/W3C_SVG_12_TinyTestSuite_beta/svgHarness/script-handle-06-t.svg new file mode 100755 index 00000000..5bc019f9 --- /dev/null +++ b/test/W3C_SVG_12_TinyTestSuite_beta/svgHarness/script-handle-06-t.svg @@ -0,0 +1,43 @@ + + + + + + + + + + + + + + + + + + + + + + + script-handle-06-t + + SVG Image + + PNG Image + + + + + + Previous + + + No Nav + + + Next + + + + \ No newline at end of file diff --git a/test/W3C_SVG_12_TinyTestSuite_beta/svgHarness/script-handle-07-t.svg b/test/W3C_SVG_12_TinyTestSuite_beta/svgHarness/script-handle-07-t.svg new file mode 100755 index 00000000..6d7bec9a --- /dev/null +++ b/test/W3C_SVG_12_TinyTestSuite_beta/svgHarness/script-handle-07-t.svg @@ -0,0 +1,43 @@ + + + + + + + + + + + + + + + + + + + + + + + script-handle-07-t + + SVG Image + + PNG Image + + + + + + Previous + + + No Nav + + + Next + + + + \ No newline at end of file diff --git a/test/W3C_SVG_12_TinyTestSuite_beta/svgHarness/script-handle-08-t.svg b/test/W3C_SVG_12_TinyTestSuite_beta/svgHarness/script-handle-08-t.svg new file mode 100755 index 00000000..3c2e13c2 --- /dev/null +++ b/test/W3C_SVG_12_TinyTestSuite_beta/svgHarness/script-handle-08-t.svg @@ -0,0 +1,43 @@ + + + + + + + + + + + + + + + + + + + + + + + script-handle-08-t + + SVG Image + + PNG Image + + + + + + Previous + + + No Nav + + + Next + + + + \ No newline at end of file diff --git a/test/W3C_SVG_12_TinyTestSuite_beta/svgHarness/script-handle-201-t.svg b/test/W3C_SVG_12_TinyTestSuite_beta/svgHarness/script-handle-201-t.svg new file mode 100755 index 00000000..7598ff9b --- /dev/null +++ b/test/W3C_SVG_12_TinyTestSuite_beta/svgHarness/script-handle-201-t.svg @@ -0,0 +1,43 @@ + + + + + + + + + + + + + + + + + + + + + + + script-handle-201-t + + SVG Image + + PNG Image + + + + + + Previous + + + No Nav + + + Next + + + + \ No newline at end of file diff --git a/test/W3C_SVG_12_TinyTestSuite_beta/svgHarness/script-handle-202-t.svg b/test/W3C_SVG_12_TinyTestSuite_beta/svgHarness/script-handle-202-t.svg new file mode 100755 index 00000000..7fe37caa --- /dev/null +++ b/test/W3C_SVG_12_TinyTestSuite_beta/svgHarness/script-handle-202-t.svg @@ -0,0 +1,43 @@ + + + + + + + + + + + + + + + + + + + + + + + script-handle-202-t + + SVG Image + + PNG Image + + + + + + Previous + + + No Nav + + + Next + + + + \ No newline at end of file diff --git a/test/W3C_SVG_12_TinyTestSuite_beta/svgHarness/script-listener-201-t.svg b/test/W3C_SVG_12_TinyTestSuite_beta/svgHarness/script-listener-201-t.svg new file mode 100755 index 00000000..72300771 --- /dev/null +++ b/test/W3C_SVG_12_TinyTestSuite_beta/svgHarness/script-listener-201-t.svg @@ -0,0 +1,43 @@ + + + + + + + + + + + + + + + + + + + + + + + script-listener-201-t + + SVG Image + + PNG Image + + + + + + Previous + + + No Nav + + + Next + + + + \ No newline at end of file diff --git a/test/W3C_SVG_12_TinyTestSuite_beta/svgHarness/script-listener-202-t.svg b/test/W3C_SVG_12_TinyTestSuite_beta/svgHarness/script-listener-202-t.svg new file mode 100755 index 00000000..15f69283 --- /dev/null +++ b/test/W3C_SVG_12_TinyTestSuite_beta/svgHarness/script-listener-202-t.svg @@ -0,0 +1,43 @@ + + + + + + + + + + + + + + + + + + + + + + + script-listener-202-t + + SVG Image + + PNG Image + + + + + + Previous + + + No Nav + + + Next + + + + \ No newline at end of file diff --git a/test/W3C_SVG_12_TinyTestSuite_beta/svgHarness/script-listener-203-t.svg b/test/W3C_SVG_12_TinyTestSuite_beta/svgHarness/script-listener-203-t.svg new file mode 100755 index 00000000..e5b29033 --- /dev/null +++ b/test/W3C_SVG_12_TinyTestSuite_beta/svgHarness/script-listener-203-t.svg @@ -0,0 +1,43 @@ + + + + + + + + + + + + + + + + + + + + + + + script-listener-203-t + + SVG Image + + PNG Image + + + + + + Previous + + + No Nav + + + Next + + + + \ No newline at end of file diff --git a/test/W3C_SVG_12_TinyTestSuite_beta/svgHarness/script-listener-204-t.svg b/test/W3C_SVG_12_TinyTestSuite_beta/svgHarness/script-listener-204-t.svg new file mode 100755 index 00000000..98a69229 --- /dev/null +++ b/test/W3C_SVG_12_TinyTestSuite_beta/svgHarness/script-listener-204-t.svg @@ -0,0 +1,43 @@ + + + + + + + + + + + + + + + + + + + + + + + script-listener-204-t + + SVG Image + + PNG Image + + + + + + Previous + + + No Nav + + + Next + + + + \ No newline at end of file diff --git a/test/W3C_SVG_12_TinyTestSuite_beta/svgHarness/shapes-circle-01-t.svg b/test/W3C_SVG_12_TinyTestSuite_beta/svgHarness/shapes-circle-01-t.svg new file mode 100755 index 00000000..03aed4f8 --- /dev/null +++ b/test/W3C_SVG_12_TinyTestSuite_beta/svgHarness/shapes-circle-01-t.svg @@ -0,0 +1,43 @@ + + + + + + + + + + + + + + + + + + + + + + + shapes-circle-01-t + + SVG Image + + PNG Image + + + + + + Previous + + + No Nav + + + Next + + + + \ No newline at end of file diff --git a/test/W3C_SVG_12_TinyTestSuite_beta/svgHarness/shapes-circle-02-t.svg b/test/W3C_SVG_12_TinyTestSuite_beta/svgHarness/shapes-circle-02-t.svg new file mode 100755 index 00000000..4c1071a8 --- /dev/null +++ b/test/W3C_SVG_12_TinyTestSuite_beta/svgHarness/shapes-circle-02-t.svg @@ -0,0 +1,43 @@ + + + + + + + + + + + + + + + + + + + + + + + shapes-circle-02-t + + SVG Image + + PNG Image + + + + + + Previous + + + No Nav + + + Next + + + + \ No newline at end of file diff --git a/test/W3C_SVG_12_TinyTestSuite_beta/svgHarness/shapes-circle-03-t.svg b/test/W3C_SVG_12_TinyTestSuite_beta/svgHarness/shapes-circle-03-t.svg new file mode 100755 index 00000000..75250fc5 --- /dev/null +++ b/test/W3C_SVG_12_TinyTestSuite_beta/svgHarness/shapes-circle-03-t.svg @@ -0,0 +1,43 @@ + + + + + + + + + + + + + + + + + + + + + + + shapes-circle-03-t + + SVG Image + + PNG Image + + + + + + Previous + + + No Nav + + + Next + + + + \ No newline at end of file diff --git a/test/W3C_SVG_12_TinyTestSuite_beta/svgHarness/shapes-ellipse-01-t.svg b/test/W3C_SVG_12_TinyTestSuite_beta/svgHarness/shapes-ellipse-01-t.svg new file mode 100755 index 00000000..a6c67784 --- /dev/null +++ b/test/W3C_SVG_12_TinyTestSuite_beta/svgHarness/shapes-ellipse-01-t.svg @@ -0,0 +1,43 @@ + + + + + + + + + + + + + + + + + + + + + + + shapes-ellipse-01-t + + SVG Image + + PNG Image + + + + + + Previous + + + No Nav + + + Next + + + + \ No newline at end of file diff --git a/test/W3C_SVG_12_TinyTestSuite_beta/svgHarness/shapes-ellipse-02-t.svg b/test/W3C_SVG_12_TinyTestSuite_beta/svgHarness/shapes-ellipse-02-t.svg new file mode 100755 index 00000000..7ad4c011 --- /dev/null +++ b/test/W3C_SVG_12_TinyTestSuite_beta/svgHarness/shapes-ellipse-02-t.svg @@ -0,0 +1,43 @@ + + + + + + + + + + + + + + + + + + + + + + + shapes-ellipse-02-t + + SVG Image + + PNG Image + + + + + + Previous + + + No Nav + + + Next + + + + \ No newline at end of file diff --git a/test/W3C_SVG_12_TinyTestSuite_beta/svgHarness/shapes-ellipse-03-t.svg b/test/W3C_SVG_12_TinyTestSuite_beta/svgHarness/shapes-ellipse-03-t.svg new file mode 100755 index 00000000..a1edbf28 --- /dev/null +++ b/test/W3C_SVG_12_TinyTestSuite_beta/svgHarness/shapes-ellipse-03-t.svg @@ -0,0 +1,43 @@ + + + + + + + + + + + + + + + + + + + + + + + shapes-ellipse-03-t + + SVG Image + + PNG Image + + + + + + Previous + + + No Nav + + + Next + + + + \ No newline at end of file diff --git a/test/W3C_SVG_12_TinyTestSuite_beta/svgHarness/shapes-intro-01-t.svg b/test/W3C_SVG_12_TinyTestSuite_beta/svgHarness/shapes-intro-01-t.svg new file mode 100755 index 00000000..af328843 --- /dev/null +++ b/test/W3C_SVG_12_TinyTestSuite_beta/svgHarness/shapes-intro-01-t.svg @@ -0,0 +1,43 @@ + + + + + + + + + + + + + + + + + + + + + + + shapes-intro-01-t + + SVG Image + + PNG Image + + + + + + Previous + + + No Nav + + + Next + + + + \ No newline at end of file diff --git a/test/W3C_SVG_12_TinyTestSuite_beta/svgHarness/shapes-line-01-t.svg b/test/W3C_SVG_12_TinyTestSuite_beta/svgHarness/shapes-line-01-t.svg new file mode 100755 index 00000000..3ac8d7fc --- /dev/null +++ b/test/W3C_SVG_12_TinyTestSuite_beta/svgHarness/shapes-line-01-t.svg @@ -0,0 +1,43 @@ + + + + + + + + + + + + + + + + + + + + + + + shapes-line-01-t + + SVG Image + + PNG Image + + + + + + Previous + + + No Nav + + + Next + + + + \ No newline at end of file diff --git a/test/W3C_SVG_12_TinyTestSuite_beta/svgHarness/shapes-line-02-t.svg b/test/W3C_SVG_12_TinyTestSuite_beta/svgHarness/shapes-line-02-t.svg new file mode 100755 index 00000000..6fad4141 --- /dev/null +++ b/test/W3C_SVG_12_TinyTestSuite_beta/svgHarness/shapes-line-02-t.svg @@ -0,0 +1,43 @@ + + + + + + + + + + + + + + + + + + + + + + + shapes-line-02-t + + SVG Image + + PNG Image + + + + + + Previous + + + No Nav + + + Next + + + + \ No newline at end of file diff --git a/test/W3C_SVG_12_TinyTestSuite_beta/svgHarness/shapes-polygon-01-t.svg b/test/W3C_SVG_12_TinyTestSuite_beta/svgHarness/shapes-polygon-01-t.svg new file mode 100755 index 00000000..7e3fdfe3 --- /dev/null +++ b/test/W3C_SVG_12_TinyTestSuite_beta/svgHarness/shapes-polygon-01-t.svg @@ -0,0 +1,43 @@ + + + + + + + + + + + + + + + + + + + + + + + shapes-polygon-01-t + + SVG Image + + PNG Image + + + + + + Previous + + + No Nav + + + Next + + + + \ No newline at end of file diff --git a/test/W3C_SVG_12_TinyTestSuite_beta/svgHarness/shapes-polygon-02-t.svg b/test/W3C_SVG_12_TinyTestSuite_beta/svgHarness/shapes-polygon-02-t.svg new file mode 100755 index 00000000..a9651aa7 --- /dev/null +++ b/test/W3C_SVG_12_TinyTestSuite_beta/svgHarness/shapes-polygon-02-t.svg @@ -0,0 +1,43 @@ + + + + + + + + + + + + + + + + + + + + + + + shapes-polygon-02-t + + SVG Image + + PNG Image + + + + + + Previous + + + No Nav + + + Next + + + + \ No newline at end of file diff --git a/test/W3C_SVG_12_TinyTestSuite_beta/svgHarness/shapes-polyline-01-t.svg b/test/W3C_SVG_12_TinyTestSuite_beta/svgHarness/shapes-polyline-01-t.svg new file mode 100755 index 00000000..3d20364b --- /dev/null +++ b/test/W3C_SVG_12_TinyTestSuite_beta/svgHarness/shapes-polyline-01-t.svg @@ -0,0 +1,43 @@ + + + + + + + + + + + + + + + + + + + + + + + shapes-polyline-01-t + + SVG Image + + PNG Image + + + + + + Previous + + + No Nav + + + Next + + + + \ No newline at end of file diff --git a/test/W3C_SVG_12_TinyTestSuite_beta/svgHarness/shapes-polyline-02-t.svg b/test/W3C_SVG_12_TinyTestSuite_beta/svgHarness/shapes-polyline-02-t.svg new file mode 100755 index 00000000..b2d21516 --- /dev/null +++ b/test/W3C_SVG_12_TinyTestSuite_beta/svgHarness/shapes-polyline-02-t.svg @@ -0,0 +1,43 @@ + + + + + + + + + + + + + + + + + + + + + + + shapes-polyline-02-t + + SVG Image + + PNG Image + + + + + + Previous + + + No Nav + + + Next + + + + \ No newline at end of file diff --git a/test/W3C_SVG_12_TinyTestSuite_beta/svgHarness/shapes-rect-01-t.svg b/test/W3C_SVG_12_TinyTestSuite_beta/svgHarness/shapes-rect-01-t.svg new file mode 100755 index 00000000..80f11c5d --- /dev/null +++ b/test/W3C_SVG_12_TinyTestSuite_beta/svgHarness/shapes-rect-01-t.svg @@ -0,0 +1,43 @@ + + + + + + + + + + + + + + + + + + + + + + + shapes-rect-01-t + + SVG Image + + PNG Image + + + + + + Previous + + + No Nav + + + Next + + + + \ No newline at end of file diff --git a/test/W3C_SVG_12_TinyTestSuite_beta/svgHarness/shapes-rect-02-t.svg b/test/W3C_SVG_12_TinyTestSuite_beta/svgHarness/shapes-rect-02-t.svg new file mode 100755 index 00000000..0ca9bb51 --- /dev/null +++ b/test/W3C_SVG_12_TinyTestSuite_beta/svgHarness/shapes-rect-02-t.svg @@ -0,0 +1,43 @@ + + + + + + + + + + + + + + + + + + + + + + + shapes-rect-02-t + + SVG Image + + PNG Image + + + + + + Previous + + + No Nav + + + Next + + + + \ No newline at end of file diff --git a/test/W3C_SVG_12_TinyTestSuite_beta/svgHarness/shapes-rect-03-t.svg b/test/W3C_SVG_12_TinyTestSuite_beta/svgHarness/shapes-rect-03-t.svg new file mode 100755 index 00000000..72b8ae8d --- /dev/null +++ b/test/W3C_SVG_12_TinyTestSuite_beta/svgHarness/shapes-rect-03-t.svg @@ -0,0 +1,43 @@ + + + + + + + + + + + + + + + + + + + + + + + shapes-rect-03-t + + SVG Image + + PNG Image + + + + + + Previous + + + No Nav + + + Next + + + + \ No newline at end of file diff --git a/test/W3C_SVG_12_TinyTestSuite_beta/svgHarness/struct-class-201-t.svg b/test/W3C_SVG_12_TinyTestSuite_beta/svgHarness/struct-class-201-t.svg new file mode 100755 index 00000000..0c6d399c --- /dev/null +++ b/test/W3C_SVG_12_TinyTestSuite_beta/svgHarness/struct-class-201-t.svg @@ -0,0 +1,43 @@ + + + + + + + + + + + + + + + + + + + + + + + struct-class-201-t + + SVG Image + + PNG Image + + + + + + Previous + + + No Nav + + + Next + + + + \ No newline at end of file diff --git a/test/W3C_SVG_12_TinyTestSuite_beta/svgHarness/struct-common-201-t.svg b/test/W3C_SVG_12_TinyTestSuite_beta/svgHarness/struct-common-201-t.svg new file mode 100755 index 00000000..ceebe72f --- /dev/null +++ b/test/W3C_SVG_12_TinyTestSuite_beta/svgHarness/struct-common-201-t.svg @@ -0,0 +1,43 @@ + + + + + + + + + + + + + + + + + + + + + + + struct-common-201-t + + SVG Image + + PNG Image + + + + + + Previous + + + No Nav + + + Next + + + + \ No newline at end of file diff --git a/test/W3C_SVG_12_TinyTestSuite_beta/svgHarness/struct-cond-01-t.svg b/test/W3C_SVG_12_TinyTestSuite_beta/svgHarness/struct-cond-01-t.svg new file mode 100755 index 00000000..f7251dae --- /dev/null +++ b/test/W3C_SVG_12_TinyTestSuite_beta/svgHarness/struct-cond-01-t.svg @@ -0,0 +1,43 @@ + + + + + + + + + + + + + + + + + + + + + + + struct-cond-01-t + + SVG Image + + PNG Image + + + + + + Previous + + + No Nav + + + Next + + + + \ No newline at end of file diff --git a/test/W3C_SVG_12_TinyTestSuite_beta/svgHarness/struct-cond-02-t.svg b/test/W3C_SVG_12_TinyTestSuite_beta/svgHarness/struct-cond-02-t.svg new file mode 100755 index 00000000..7d4f04a6 --- /dev/null +++ b/test/W3C_SVG_12_TinyTestSuite_beta/svgHarness/struct-cond-02-t.svg @@ -0,0 +1,43 @@ + + + + + + + + + + + + + + + + + + + + + + + struct-cond-02-t + + SVG Image + + PNG Image + + + + + + Previous + + + No Nav + + + Next + + + + \ No newline at end of file diff --git a/test/W3C_SVG_12_TinyTestSuite_beta/svgHarness/struct-cond-03-t.svg b/test/W3C_SVG_12_TinyTestSuite_beta/svgHarness/struct-cond-03-t.svg new file mode 100755 index 00000000..4bd3a276 --- /dev/null +++ b/test/W3C_SVG_12_TinyTestSuite_beta/svgHarness/struct-cond-03-t.svg @@ -0,0 +1,43 @@ + + + + + + + + + + + + + + + + + + + + + + + struct-cond-03-t + + SVG Image + + PNG Image + + + + + + Previous + + + No Nav + + + Next + + + + \ No newline at end of file diff --git a/test/W3C_SVG_12_TinyTestSuite_beta/svgHarness/struct-cond-204-t.svg b/test/W3C_SVG_12_TinyTestSuite_beta/svgHarness/struct-cond-204-t.svg new file mode 100755 index 00000000..241dbd56 --- /dev/null +++ b/test/W3C_SVG_12_TinyTestSuite_beta/svgHarness/struct-cond-204-t.svg @@ -0,0 +1,43 @@ + + + + + + + + + + + + + + + + + + + + + + + struct-cond-204-t + + SVG Image + + PNG Image + + + + + + Previous + + + No Nav + + + Next + + + + \ No newline at end of file diff --git a/test/W3C_SVG_12_TinyTestSuite_beta/svgHarness/struct-cond-205-t.svg b/test/W3C_SVG_12_TinyTestSuite_beta/svgHarness/struct-cond-205-t.svg new file mode 100755 index 00000000..8ca26bb3 --- /dev/null +++ b/test/W3C_SVG_12_TinyTestSuite_beta/svgHarness/struct-cond-205-t.svg @@ -0,0 +1,43 @@ + + + + + + + + + + + + + + + + + + + + + + + struct-cond-205-t + + SVG Image + + PNG Image + + + + + + Previous + + + No Nav + + + Next + + + + \ No newline at end of file diff --git a/test/W3C_SVG_12_TinyTestSuite_beta/svgHarness/struct-cond-209-t.svg b/test/W3C_SVG_12_TinyTestSuite_beta/svgHarness/struct-cond-209-t.svg new file mode 100755 index 00000000..1b021591 --- /dev/null +++ b/test/W3C_SVG_12_TinyTestSuite_beta/svgHarness/struct-cond-209-t.svg @@ -0,0 +1,43 @@ + + + + + + + + + + + + + + + + + + + + + + + struct-cond-209-t + + SVG Image + + PNG Image + + + + + + Previous + + + No Nav + + + Next + + + + \ No newline at end of file diff --git a/test/W3C_SVG_12_TinyTestSuite_beta/svgHarness/struct-cond-210-t.svg b/test/W3C_SVG_12_TinyTestSuite_beta/svgHarness/struct-cond-210-t.svg new file mode 100755 index 00000000..09136a67 --- /dev/null +++ b/test/W3C_SVG_12_TinyTestSuite_beta/svgHarness/struct-cond-210-t.svg @@ -0,0 +1,43 @@ + + + + + + + + + + + + + + + + + + + + + + + struct-cond-210-t + + SVG Image + + PNG Image + + + + + + Previous + + + No Nav + + + Next + + + + \ No newline at end of file diff --git a/test/W3C_SVG_12_TinyTestSuite_beta/svgHarness/struct-defs-01-t.svg b/test/W3C_SVG_12_TinyTestSuite_beta/svgHarness/struct-defs-01-t.svg new file mode 100755 index 00000000..a7339a51 --- /dev/null +++ b/test/W3C_SVG_12_TinyTestSuite_beta/svgHarness/struct-defs-01-t.svg @@ -0,0 +1,43 @@ + + + + + + + + + + + + + + + + + + + + + + + struct-defs-01-t + + SVG Image + + PNG Image + + + + + + Previous + + + No Nav + + + Next + + + + \ No newline at end of file diff --git a/test/W3C_SVG_12_TinyTestSuite_beta/svgHarness/struct-defs-201-t.svg b/test/W3C_SVG_12_TinyTestSuite_beta/svgHarness/struct-defs-201-t.svg new file mode 100755 index 00000000..8b3bc08c --- /dev/null +++ b/test/W3C_SVG_12_TinyTestSuite_beta/svgHarness/struct-defs-201-t.svg @@ -0,0 +1,43 @@ + + + + + + + + + + + + + + + + + + + + + + + struct-defs-201-t + + SVG Image + + PNG Image + + + + + + Previous + + + No Nav + + + Next + + + + \ No newline at end of file diff --git a/test/W3C_SVG_12_TinyTestSuite_beta/svgHarness/struct-discard-201-t.svg b/test/W3C_SVG_12_TinyTestSuite_beta/svgHarness/struct-discard-201-t.svg new file mode 100755 index 00000000..4ab03e37 --- /dev/null +++ b/test/W3C_SVG_12_TinyTestSuite_beta/svgHarness/struct-discard-201-t.svg @@ -0,0 +1,43 @@ + + + + + + + + + + + + + + + + + + + + + + + struct-discard-201-t + + SVG Image + + PNG Image + + + + + + Previous + + + No Nav + + + Next + + + + \ No newline at end of file diff --git a/test/W3C_SVG_12_TinyTestSuite_beta/svgHarness/struct-discard-204-t.svg b/test/W3C_SVG_12_TinyTestSuite_beta/svgHarness/struct-discard-204-t.svg new file mode 100755 index 00000000..133c80ee --- /dev/null +++ b/test/W3C_SVG_12_TinyTestSuite_beta/svgHarness/struct-discard-204-t.svg @@ -0,0 +1,43 @@ + + + + + + + + + + + + + + + + + + + + + + + struct-discard-204-t + + SVG Image + + PNG Image + + + + + + Previous + + + No Nav + + + Next + + + + \ No newline at end of file diff --git a/test/W3C_SVG_12_TinyTestSuite_beta/svgHarness/struct-discard-205-t.svg b/test/W3C_SVG_12_TinyTestSuite_beta/svgHarness/struct-discard-205-t.svg new file mode 100755 index 00000000..21fb1f53 --- /dev/null +++ b/test/W3C_SVG_12_TinyTestSuite_beta/svgHarness/struct-discard-205-t.svg @@ -0,0 +1,43 @@ + + + + + + + + + + + + + + + + + + + + + + + struct-discard-205-t + + SVG Image + + PNG Image + + + + + + Previous + + + No Nav + + + Next + + + + \ No newline at end of file diff --git a/test/W3C_SVG_12_TinyTestSuite_beta/svgHarness/struct-discard-206-t.svg b/test/W3C_SVG_12_TinyTestSuite_beta/svgHarness/struct-discard-206-t.svg new file mode 100755 index 00000000..3812e57c --- /dev/null +++ b/test/W3C_SVG_12_TinyTestSuite_beta/svgHarness/struct-discard-206-t.svg @@ -0,0 +1,43 @@ + + + + + + + + + + + + + + + + + + + + + + + struct-discard-206-t + + SVG Image + + PNG Image + + + + + + Previous + + + No Nav + + + Next + + + + \ No newline at end of file diff --git a/test/W3C_SVG_12_TinyTestSuite_beta/svgHarness/struct-discard-207-t.svg b/test/W3C_SVG_12_TinyTestSuite_beta/svgHarness/struct-discard-207-t.svg new file mode 100755 index 00000000..b3c6f94a --- /dev/null +++ b/test/W3C_SVG_12_TinyTestSuite_beta/svgHarness/struct-discard-207-t.svg @@ -0,0 +1,43 @@ + + + + + + + + + + + + + + + + + + + + + + + struct-discard-207-t + + SVG Image + + PNG Image + + + + + + Previous + + + No Nav + + + Next + + + + \ No newline at end of file diff --git a/test/W3C_SVG_12_TinyTestSuite_beta/svgHarness/struct-frag-02-t.svg b/test/W3C_SVG_12_TinyTestSuite_beta/svgHarness/struct-frag-02-t.svg new file mode 100755 index 00000000..76fa0c67 --- /dev/null +++ b/test/W3C_SVG_12_TinyTestSuite_beta/svgHarness/struct-frag-02-t.svg @@ -0,0 +1,43 @@ + + + + + + + + + + + + + + + + + + + + + + + struct-frag-02-t + + SVG Image + + PNG Image + + + + + + Previous + + + No Nav + + + Next + + + + \ No newline at end of file diff --git a/test/W3C_SVG_12_TinyTestSuite_beta/svgHarness/struct-frag-03-t.svg b/test/W3C_SVG_12_TinyTestSuite_beta/svgHarness/struct-frag-03-t.svg new file mode 100755 index 00000000..f5a26011 --- /dev/null +++ b/test/W3C_SVG_12_TinyTestSuite_beta/svgHarness/struct-frag-03-t.svg @@ -0,0 +1,43 @@ + + + + + + + + + + + + + + + + + + + + + + + struct-frag-03-t + + SVG Image + + PNG Image + + + + + + Previous + + + No Nav + + + Next + + + + \ No newline at end of file diff --git a/test/W3C_SVG_12_TinyTestSuite_beta/svgHarness/struct-frag-04-t.svg b/test/W3C_SVG_12_TinyTestSuite_beta/svgHarness/struct-frag-04-t.svg new file mode 100755 index 00000000..1be13fed --- /dev/null +++ b/test/W3C_SVG_12_TinyTestSuite_beta/svgHarness/struct-frag-04-t.svg @@ -0,0 +1,43 @@ + + + + + + + + + + + + + + + + + + + + + + + struct-frag-04-t + + SVG Image + + PNG Image + + + + + + Previous + + + No Nav + + + Next + + + + \ No newline at end of file diff --git a/test/W3C_SVG_12_TinyTestSuite_beta/svgHarness/struct-frag-05-t.svg b/test/W3C_SVG_12_TinyTestSuite_beta/svgHarness/struct-frag-05-t.svg new file mode 100755 index 00000000..f77fd2e0 --- /dev/null +++ b/test/W3C_SVG_12_TinyTestSuite_beta/svgHarness/struct-frag-05-t.svg @@ -0,0 +1,43 @@ + + + + + + + + + + + + + + + + + + + + + + + struct-frag-05-t + + SVG Image + + PNG Image + + + + + + Previous + + + No Nav + + + Next + + + + \ No newline at end of file diff --git a/test/W3C_SVG_12_TinyTestSuite_beta/svgHarness/struct-frag-06-t.svg b/test/W3C_SVG_12_TinyTestSuite_beta/svgHarness/struct-frag-06-t.svg new file mode 100755 index 00000000..7ba0c640 --- /dev/null +++ b/test/W3C_SVG_12_TinyTestSuite_beta/svgHarness/struct-frag-06-t.svg @@ -0,0 +1,43 @@ + + + + + + + + + + + + + + + + + + + + + + + struct-frag-06-t + + SVG Image + + PNG Image + + + + + + Previous + + + No Nav + + + Next + + + + \ No newline at end of file diff --git a/test/W3C_SVG_12_TinyTestSuite_beta/svgHarness/struct-group-01-t.svg b/test/W3C_SVG_12_TinyTestSuite_beta/svgHarness/struct-group-01-t.svg new file mode 100755 index 00000000..313118c2 --- /dev/null +++ b/test/W3C_SVG_12_TinyTestSuite_beta/svgHarness/struct-group-01-t.svg @@ -0,0 +1,43 @@ + + + + + + + + + + + + + + + + + + + + + + + struct-group-01-t + + SVG Image + + PNG Image + + + + + + Previous + + + No Nav + + + Next + + + + \ No newline at end of file diff --git a/test/W3C_SVG_12_TinyTestSuite_beta/svgHarness/struct-group-03-t.svg b/test/W3C_SVG_12_TinyTestSuite_beta/svgHarness/struct-group-03-t.svg new file mode 100755 index 00000000..373abe17 --- /dev/null +++ b/test/W3C_SVG_12_TinyTestSuite_beta/svgHarness/struct-group-03-t.svg @@ -0,0 +1,43 @@ + + + + + + + + + + + + + + + + + + + + + + + struct-group-03-t + + SVG Image + + PNG Image + + + + + + Previous + + + No Nav + + + Next + + + + \ No newline at end of file diff --git a/test/W3C_SVG_12_TinyTestSuite_beta/svgHarness/struct-image-01-t.svg b/test/W3C_SVG_12_TinyTestSuite_beta/svgHarness/struct-image-01-t.svg new file mode 100755 index 00000000..2bb83a3a --- /dev/null +++ b/test/W3C_SVG_12_TinyTestSuite_beta/svgHarness/struct-image-01-t.svg @@ -0,0 +1,43 @@ + + + + + + + + + + + + + + + + + + + + + + + struct-image-01-t + + SVG Image + + PNG Image + + + + + + Previous + + + No Nav + + + Next + + + + \ No newline at end of file diff --git a/test/W3C_SVG_12_TinyTestSuite_beta/svgHarness/struct-image-03-t.svg b/test/W3C_SVG_12_TinyTestSuite_beta/svgHarness/struct-image-03-t.svg new file mode 100755 index 00000000..635395af --- /dev/null +++ b/test/W3C_SVG_12_TinyTestSuite_beta/svgHarness/struct-image-03-t.svg @@ -0,0 +1,43 @@ + + + + + + + + + + + + + + + + + + + + + + + struct-image-03-t + + SVG Image + + PNG Image + + + + + + Previous + + + No Nav + + + Next + + + + \ No newline at end of file diff --git a/test/W3C_SVG_12_TinyTestSuite_beta/svgHarness/struct-image-04-t.svg b/test/W3C_SVG_12_TinyTestSuite_beta/svgHarness/struct-image-04-t.svg new file mode 100755 index 00000000..8674b956 --- /dev/null +++ b/test/W3C_SVG_12_TinyTestSuite_beta/svgHarness/struct-image-04-t.svg @@ -0,0 +1,43 @@ + + + + + + + + + + + + + + + + + + + + + + + struct-image-04-t + + SVG Image + + PNG Image + + + + + + Previous + + + No Nav + + + Next + + + + \ No newline at end of file diff --git a/test/W3C_SVG_12_TinyTestSuite_beta/svgHarness/struct-image-06-t.svg b/test/W3C_SVG_12_TinyTestSuite_beta/svgHarness/struct-image-06-t.svg new file mode 100755 index 00000000..45ddbf49 --- /dev/null +++ b/test/W3C_SVG_12_TinyTestSuite_beta/svgHarness/struct-image-06-t.svg @@ -0,0 +1,43 @@ + + + + + + + + + + + + + + + + + + + + + + + struct-image-06-t + + SVG Image + + PNG Image + + + + + + Previous + + + No Nav + + + Next + + + + \ No newline at end of file diff --git a/test/W3C_SVG_12_TinyTestSuite_beta/svgHarness/struct-image-07-t.svg b/test/W3C_SVG_12_TinyTestSuite_beta/svgHarness/struct-image-07-t.svg new file mode 100755 index 00000000..6cd1ac46 --- /dev/null +++ b/test/W3C_SVG_12_TinyTestSuite_beta/svgHarness/struct-image-07-t.svg @@ -0,0 +1,43 @@ + + + + + + + + + + + + + + + + + + + + + + + struct-image-07-t + + SVG Image + + PNG Image + + + + + + Previous + + + No Nav + + + Next + + + + \ No newline at end of file diff --git a/test/W3C_SVG_12_TinyTestSuite_beta/svgHarness/struct-image-08-t.svg b/test/W3C_SVG_12_TinyTestSuite_beta/svgHarness/struct-image-08-t.svg new file mode 100755 index 00000000..452180d2 --- /dev/null +++ b/test/W3C_SVG_12_TinyTestSuite_beta/svgHarness/struct-image-08-t.svg @@ -0,0 +1,43 @@ + + + + + + + + + + + + + + + + + + + + + + + struct-image-08-t + + SVG Image + + PNG Image + + + + + + Previous + + + No Nav + + + Next + + + + \ No newline at end of file diff --git a/test/W3C_SVG_12_TinyTestSuite_beta/svgHarness/struct-image-09-t.svg b/test/W3C_SVG_12_TinyTestSuite_beta/svgHarness/struct-image-09-t.svg new file mode 100755 index 00000000..c3d874f8 --- /dev/null +++ b/test/W3C_SVG_12_TinyTestSuite_beta/svgHarness/struct-image-09-t.svg @@ -0,0 +1,43 @@ + + + + + + + + + + + + + + + + + + + + + + + struct-image-09-t + + SVG Image + + PNG Image + + + + + + Previous + + + No Nav + + + Next + + + + \ No newline at end of file diff --git a/test/W3C_SVG_12_TinyTestSuite_beta/svgHarness/struct-image-10-t.svg b/test/W3C_SVG_12_TinyTestSuite_beta/svgHarness/struct-image-10-t.svg new file mode 100755 index 00000000..6ab9f044 --- /dev/null +++ b/test/W3C_SVG_12_TinyTestSuite_beta/svgHarness/struct-image-10-t.svg @@ -0,0 +1,43 @@ + + + + + + + + + + + + + + + + + + + + + + + struct-image-10-t + + SVG Image + + PNG Image + + + + + + Previous + + + No Nav + + + Next + + + + \ No newline at end of file diff --git a/test/W3C_SVG_12_TinyTestSuite_beta/svgHarness/struct-progressive-201-t.svg b/test/W3C_SVG_12_TinyTestSuite_beta/svgHarness/struct-progressive-201-t.svg new file mode 100755 index 00000000..e27e6ce0 --- /dev/null +++ b/test/W3C_SVG_12_TinyTestSuite_beta/svgHarness/struct-progressive-201-t.svg @@ -0,0 +1,43 @@ + + + + + + + + + + + + + + + + + + + + + + + struct-progressive-201-t + + SVG Image + + PNG Image + + + + + + Previous + + + No Nav + + + Next + + + + \ No newline at end of file diff --git a/test/W3C_SVG_12_TinyTestSuite_beta/svgHarness/struct-progressive-202-t.svg b/test/W3C_SVG_12_TinyTestSuite_beta/svgHarness/struct-progressive-202-t.svg new file mode 100755 index 00000000..c5ba49ea --- /dev/null +++ b/test/W3C_SVG_12_TinyTestSuite_beta/svgHarness/struct-progressive-202-t.svg @@ -0,0 +1,43 @@ + + + + + + + + + + + + + + + + + + + + + + + struct-progressive-202-t + + SVG Image + + PNG Image + + + + + + Previous + + + No Nav + + + Next + + + + \ No newline at end of file diff --git a/test/W3C_SVG_12_TinyTestSuite_beta/svgHarness/struct-progressive-203-t.svg b/test/W3C_SVG_12_TinyTestSuite_beta/svgHarness/struct-progressive-203-t.svg new file mode 100755 index 00000000..8704f847 --- /dev/null +++ b/test/W3C_SVG_12_TinyTestSuite_beta/svgHarness/struct-progressive-203-t.svg @@ -0,0 +1,43 @@ + + + + + + + + + + + + + + + + + + + + + + + struct-progressive-203-t + + SVG Image + + PNG Image + + + + + + Previous + + + No Nav + + + Next + + + + \ No newline at end of file diff --git a/test/W3C_SVG_12_TinyTestSuite_beta/svgHarness/struct-progressive-204-t.svg b/test/W3C_SVG_12_TinyTestSuite_beta/svgHarness/struct-progressive-204-t.svg new file mode 100755 index 00000000..103ac4e8 --- /dev/null +++ b/test/W3C_SVG_12_TinyTestSuite_beta/svgHarness/struct-progressive-204-t.svg @@ -0,0 +1,43 @@ + + + + + + + + + + + + + + + + + + + + + + + struct-progressive-204-t + + SVG Image + + PNG Image + + + + + + Previous + + + No Nav + + + Next + + + + \ No newline at end of file diff --git a/test/W3C_SVG_12_TinyTestSuite_beta/svgHarness/struct-svg-201-t.svg b/test/W3C_SVG_12_TinyTestSuite_beta/svgHarness/struct-svg-201-t.svg new file mode 100755 index 00000000..2957f3b5 --- /dev/null +++ b/test/W3C_SVG_12_TinyTestSuite_beta/svgHarness/struct-svg-201-t.svg @@ -0,0 +1,43 @@ + + + + + + + + + + + + + + + + + + + + + + + struct-svg-201-t + + SVG Image + + PNG Image + + + + + + Previous + + + No Nav + + + Next + + + + \ No newline at end of file diff --git a/test/W3C_SVG_12_TinyTestSuite_beta/svgHarness/struct-svg-202-t.svg b/test/W3C_SVG_12_TinyTestSuite_beta/svgHarness/struct-svg-202-t.svg new file mode 100755 index 00000000..16321f31 --- /dev/null +++ b/test/W3C_SVG_12_TinyTestSuite_beta/svgHarness/struct-svg-202-t.svg @@ -0,0 +1,43 @@ + + + + + + + + + + + + + + + + + + + + + + + struct-svg-202-t + + SVG Image + + PNG Image + + + + + + Previous + + + No Nav + + + Next + + + + \ No newline at end of file diff --git a/test/W3C_SVG_12_TinyTestSuite_beta/svgHarness/struct-svg-203-t.svg b/test/W3C_SVG_12_TinyTestSuite_beta/svgHarness/struct-svg-203-t.svg new file mode 100755 index 00000000..ce92387c --- /dev/null +++ b/test/W3C_SVG_12_TinyTestSuite_beta/svgHarness/struct-svg-203-t.svg @@ -0,0 +1,43 @@ + + + + + + + + + + + + + + + + + + + + + + + struct-svg-203-t + + SVG Image + + PNG Image + + + + + + Previous + + + No Nav + + + Next + + + + \ No newline at end of file diff --git a/test/W3C_SVG_12_TinyTestSuite_beta/svgHarness/struct-svg-204-t.svg b/test/W3C_SVG_12_TinyTestSuite_beta/svgHarness/struct-svg-204-t.svg new file mode 100755 index 00000000..2a88b75a --- /dev/null +++ b/test/W3C_SVG_12_TinyTestSuite_beta/svgHarness/struct-svg-204-t.svg @@ -0,0 +1,43 @@ + + + + + + + + + + + + + + + + + + + + + + + struct-svg-204-t + + SVG Image + + PNG Image + + + + + + Previous + + + No Nav + + + Next + + + + \ No newline at end of file diff --git a/test/W3C_SVG_12_TinyTestSuite_beta/svgHarness/struct-use-01-t.svg b/test/W3C_SVG_12_TinyTestSuite_beta/svgHarness/struct-use-01-t.svg new file mode 100755 index 00000000..9e0a9b8c --- /dev/null +++ b/test/W3C_SVG_12_TinyTestSuite_beta/svgHarness/struct-use-01-t.svg @@ -0,0 +1,43 @@ + + + + + + + + + + + + + + + + + + + + + + + struct-use-01-t + + SVG Image + + PNG Image + + + + + + Previous + + + No Nav + + + Next + + + + \ No newline at end of file diff --git a/test/W3C_SVG_12_TinyTestSuite_beta/svgHarness/struct-use-03-t.svg b/test/W3C_SVG_12_TinyTestSuite_beta/svgHarness/struct-use-03-t.svg new file mode 100755 index 00000000..0d2362a3 --- /dev/null +++ b/test/W3C_SVG_12_TinyTestSuite_beta/svgHarness/struct-use-03-t.svg @@ -0,0 +1,43 @@ + + + + + + + + + + + + + + + + + + + + + + + struct-use-03-t + + SVG Image + + PNG Image + + + + + + Previous + + + No Nav + + + Next + + + + \ No newline at end of file diff --git a/test/W3C_SVG_12_TinyTestSuite_beta/svgHarness/struct-use-09-t.svg b/test/W3C_SVG_12_TinyTestSuite_beta/svgHarness/struct-use-09-t.svg new file mode 100755 index 00000000..358945bc --- /dev/null +++ b/test/W3C_SVG_12_TinyTestSuite_beta/svgHarness/struct-use-09-t.svg @@ -0,0 +1,43 @@ + + + + + + + + + + + + + + + + + + + + + + + struct-use-09-t + + SVG Image + + PNG Image + + + + + + Previous + + + No Nav + + + Next + + + + \ No newline at end of file diff --git a/test/W3C_SVG_12_TinyTestSuite_beta/svgHarness/struct-use-201-t.svg b/test/W3C_SVG_12_TinyTestSuite_beta/svgHarness/struct-use-201-t.svg new file mode 100755 index 00000000..7589e6c8 --- /dev/null +++ b/test/W3C_SVG_12_TinyTestSuite_beta/svgHarness/struct-use-201-t.svg @@ -0,0 +1,43 @@ + + + + + + + + + + + + + + + + + + + + + + + struct-use-201-t + + SVG Image + + PNG Image + + + + + + Previous + + + No Nav + + + Next + + + + \ No newline at end of file diff --git a/test/W3C_SVG_12_TinyTestSuite_beta/svgHarness/struct-use-202-t.svg b/test/W3C_SVG_12_TinyTestSuite_beta/svgHarness/struct-use-202-t.svg new file mode 100755 index 00000000..c483ce15 --- /dev/null +++ b/test/W3C_SVG_12_TinyTestSuite_beta/svgHarness/struct-use-202-t.svg @@ -0,0 +1,43 @@ + + + + + + + + + + + + + + + + + + + + + + + struct-use-202-t + + SVG Image + + PNG Image + + + + + + Previous + + + No Nav + + + Next + + + + \ No newline at end of file diff --git a/test/W3C_SVG_12_TinyTestSuite_beta/svgHarness/struct-use-203-t.svg b/test/W3C_SVG_12_TinyTestSuite_beta/svgHarness/struct-use-203-t.svg new file mode 100755 index 00000000..52869458 --- /dev/null +++ b/test/W3C_SVG_12_TinyTestSuite_beta/svgHarness/struct-use-203-t.svg @@ -0,0 +1,43 @@ + + + + + + + + + + + + + + + + + + + + + + + struct-use-203-t + + SVG Image + + PNG Image + + + + + + Previous + + + No Nav + + + Next + + + + \ No newline at end of file diff --git a/test/W3C_SVG_12_TinyTestSuite_beta/svgHarness/struct-use-204-t.svg b/test/W3C_SVG_12_TinyTestSuite_beta/svgHarness/struct-use-204-t.svg new file mode 100755 index 00000000..5092eb82 --- /dev/null +++ b/test/W3C_SVG_12_TinyTestSuite_beta/svgHarness/struct-use-204-t.svg @@ -0,0 +1,43 @@ + + + + + + + + + + + + + + + + + + + + + + + struct-use-204-t + + SVG Image + + PNG Image + + + + + + Previous + + + No Nav + + + Next + + + + \ No newline at end of file diff --git a/test/W3C_SVG_12_TinyTestSuite_beta/svgHarness/struct-use-205-t.svg b/test/W3C_SVG_12_TinyTestSuite_beta/svgHarness/struct-use-205-t.svg new file mode 100755 index 00000000..36702532 --- /dev/null +++ b/test/W3C_SVG_12_TinyTestSuite_beta/svgHarness/struct-use-205-t.svg @@ -0,0 +1,43 @@ + + + + + + + + + + + + + + + + + + + + + + + struct-use-205-t + + SVG Image + + PNG Image + + + + + + Previous + + + No Nav + + + Next + + + + \ No newline at end of file diff --git a/test/W3C_SVG_12_TinyTestSuite_beta/svgHarness/struct-use-206-t.svg b/test/W3C_SVG_12_TinyTestSuite_beta/svgHarness/struct-use-206-t.svg new file mode 100755 index 00000000..b74b3c86 --- /dev/null +++ b/test/W3C_SVG_12_TinyTestSuite_beta/svgHarness/struct-use-206-t.svg @@ -0,0 +1,43 @@ + + + + + + + + + + + + + + + + + + + + + + + struct-use-206-t + + SVG Image + + PNG Image + + + + + + Previous + + + No Nav + + + Next + + + + \ No newline at end of file diff --git a/test/W3C_SVG_12_TinyTestSuite_beta/svgHarness/struct-use-207-t.svg b/test/W3C_SVG_12_TinyTestSuite_beta/svgHarness/struct-use-207-t.svg new file mode 100755 index 00000000..71d83f2c --- /dev/null +++ b/test/W3C_SVG_12_TinyTestSuite_beta/svgHarness/struct-use-207-t.svg @@ -0,0 +1,43 @@ + + + + + + + + + + + + + + + + + + + + + + + struct-use-207-t + + SVG Image + + PNG Image + + + + + + Previous + + + No Nav + + + Next + + + + \ No newline at end of file diff --git a/test/W3C_SVG_12_TinyTestSuite_beta/svgHarness/struct-use-208-t.svg b/test/W3C_SVG_12_TinyTestSuite_beta/svgHarness/struct-use-208-t.svg new file mode 100755 index 00000000..55d69b63 --- /dev/null +++ b/test/W3C_SVG_12_TinyTestSuite_beta/svgHarness/struct-use-208-t.svg @@ -0,0 +1,43 @@ + + + + + + + + + + + + + + + + + + + + + + + struct-use-208-t + + SVG Image + + PNG Image + + + + + + Previous + + + No Nav + + + Next + + + + \ No newline at end of file diff --git a/test/W3C_SVG_12_TinyTestSuite_beta/svgHarness/struct-use-209-t.svg b/test/W3C_SVG_12_TinyTestSuite_beta/svgHarness/struct-use-209-t.svg new file mode 100755 index 00000000..2f830323 --- /dev/null +++ b/test/W3C_SVG_12_TinyTestSuite_beta/svgHarness/struct-use-209-t.svg @@ -0,0 +1,43 @@ + + + + + + + + + + + + + + + + + + + + + + + struct-use-209-t + + SVG Image + + PNG Image + + + + + + Previous + + + No Nav + + + Next + + + + \ No newline at end of file diff --git a/test/W3C_SVG_12_TinyTestSuite_beta/svgHarness/struct-use-recursion-01-t.svg b/test/W3C_SVG_12_TinyTestSuite_beta/svgHarness/struct-use-recursion-01-t.svg new file mode 100755 index 00000000..b708e3fa --- /dev/null +++ b/test/W3C_SVG_12_TinyTestSuite_beta/svgHarness/struct-use-recursion-01-t.svg @@ -0,0 +1,43 @@ + + + + + + + + + + + + + + + + + + + + + + + struct-use-recursion-01-t + + SVG Image + + PNG Image + + + + + + Previous + + + No Nav + + + Next + + + + \ No newline at end of file diff --git a/test/W3C_SVG_12_TinyTestSuite_beta/svgHarness/struct-use-recursion-02-t.svg b/test/W3C_SVG_12_TinyTestSuite_beta/svgHarness/struct-use-recursion-02-t.svg new file mode 100755 index 00000000..4a914d3c --- /dev/null +++ b/test/W3C_SVG_12_TinyTestSuite_beta/svgHarness/struct-use-recursion-02-t.svg @@ -0,0 +1,43 @@ + + + + + + + + + + + + + + + + + + + + + + + struct-use-recursion-02-t + + SVG Image + + PNG Image + + + + + + Previous + + + No Nav + + + Next + + + + \ No newline at end of file diff --git a/test/W3C_SVG_12_TinyTestSuite_beta/svgHarness/struct-use-recursion-03-t.svg b/test/W3C_SVG_12_TinyTestSuite_beta/svgHarness/struct-use-recursion-03-t.svg new file mode 100755 index 00000000..1b68db39 --- /dev/null +++ b/test/W3C_SVG_12_TinyTestSuite_beta/svgHarness/struct-use-recursion-03-t.svg @@ -0,0 +1,43 @@ + + + + + + + + + + + + + + + + + + + + + + + struct-use-recursion-03-t + + SVG Image + + PNG Image + + + + + + Previous + + + No Nav + + + Next + + + + \ No newline at end of file diff --git a/test/W3C_SVG_12_TinyTestSuite_beta/svgHarness/styling-inherit-01-t.svg b/test/W3C_SVG_12_TinyTestSuite_beta/svgHarness/styling-inherit-01-t.svg new file mode 100755 index 00000000..a2a3bc09 --- /dev/null +++ b/test/W3C_SVG_12_TinyTestSuite_beta/svgHarness/styling-inherit-01-t.svg @@ -0,0 +1,43 @@ + + + + + + + + + + + + + + + + + + + + + + + styling-inherit-01-t + + SVG Image + + PNG Image + + + + + + Previous + + + No Nav + + + Next + + + + \ No newline at end of file diff --git a/test/W3C_SVG_12_TinyTestSuite_beta/svgHarness/styling-inherit-02-t.svg b/test/W3C_SVG_12_TinyTestSuite_beta/svgHarness/styling-inherit-02-t.svg new file mode 100755 index 00000000..ce74589a --- /dev/null +++ b/test/W3C_SVG_12_TinyTestSuite_beta/svgHarness/styling-inherit-02-t.svg @@ -0,0 +1,43 @@ + + + + + + + + + + + + + + + + + + + + + + + styling-inherit-02-t + + SVG Image + + PNG Image + + + + + + Previous + + + No Nav + + + Next + + + + \ No newline at end of file diff --git a/test/W3C_SVG_12_TinyTestSuite_beta/svgHarness/styling-inherit-03-t.svg b/test/W3C_SVG_12_TinyTestSuite_beta/svgHarness/styling-inherit-03-t.svg new file mode 100755 index 00000000..cb4b1704 --- /dev/null +++ b/test/W3C_SVG_12_TinyTestSuite_beta/svgHarness/styling-inherit-03-t.svg @@ -0,0 +1,43 @@ + + + + + + + + + + + + + + + + + + + + + + + styling-inherit-03-t + + SVG Image + + PNG Image + + + + + + Previous + + + No Nav + + + Next + + + + \ No newline at end of file diff --git a/test/W3C_SVG_12_TinyTestSuite_beta/svgHarness/styling-pres-01-t.svg b/test/W3C_SVG_12_TinyTestSuite_beta/svgHarness/styling-pres-01-t.svg new file mode 100755 index 00000000..7e726de2 --- /dev/null +++ b/test/W3C_SVG_12_TinyTestSuite_beta/svgHarness/styling-pres-01-t.svg @@ -0,0 +1,43 @@ + + + + + + + + + + + + + + + + + + + + + + + styling-pres-01-t + + SVG Image + + PNG Image + + + + + + Previous + + + No Nav + + + Next + + + + \ No newline at end of file diff --git a/test/W3C_SVG_12_TinyTestSuite_beta/svgHarness/text-align-01-t.svg b/test/W3C_SVG_12_TinyTestSuite_beta/svgHarness/text-align-01-t.svg new file mode 100755 index 00000000..eb8d1324 --- /dev/null +++ b/test/W3C_SVG_12_TinyTestSuite_beta/svgHarness/text-align-01-t.svg @@ -0,0 +1,43 @@ + + + + + + + + + + + + + + + + + + + + + + + text-align-01-t + + SVG Image + + PNG Image + + + + + + Previous + + + No Nav + + + Next + + + + \ No newline at end of file diff --git a/test/W3C_SVG_12_TinyTestSuite_beta/svgHarness/text-align-07-t.svg b/test/W3C_SVG_12_TinyTestSuite_beta/svgHarness/text-align-07-t.svg new file mode 100755 index 00000000..89cd0358 --- /dev/null +++ b/test/W3C_SVG_12_TinyTestSuite_beta/svgHarness/text-align-07-t.svg @@ -0,0 +1,43 @@ + + + + + + + + + + + + + + + + + + + + + + + text-align-07-t + + SVG Image + + PNG Image + + + + + + Previous + + + No Nav + + + Next + + + + \ No newline at end of file diff --git a/test/W3C_SVG_12_TinyTestSuite_beta/svgHarness/text-align-08-t.svg b/test/W3C_SVG_12_TinyTestSuite_beta/svgHarness/text-align-08-t.svg new file mode 100755 index 00000000..9fcd3254 --- /dev/null +++ b/test/W3C_SVG_12_TinyTestSuite_beta/svgHarness/text-align-08-t.svg @@ -0,0 +1,43 @@ + + + + + + + + + + + + + + + + + + + + + + + text-align-08-t + + SVG Image + + PNG Image + + + + + + Previous + + + No Nav + + + Next + + + + \ No newline at end of file diff --git a/test/W3C_SVG_12_TinyTestSuite_beta/svgHarness/text-align-201-t.svg b/test/W3C_SVG_12_TinyTestSuite_beta/svgHarness/text-align-201-t.svg new file mode 100755 index 00000000..23d952fc --- /dev/null +++ b/test/W3C_SVG_12_TinyTestSuite_beta/svgHarness/text-align-201-t.svg @@ -0,0 +1,43 @@ + + + + + + + + + + + + + + + + + + + + + + + text-align-201-t + + SVG Image + + PNG Image + + + + + + Previous + + + No Nav + + + Next + + + + \ No newline at end of file diff --git a/test/W3C_SVG_12_TinyTestSuite_beta/svgHarness/text-align-202-t.svg b/test/W3C_SVG_12_TinyTestSuite_beta/svgHarness/text-align-202-t.svg new file mode 100755 index 00000000..aa3ec371 --- /dev/null +++ b/test/W3C_SVG_12_TinyTestSuite_beta/svgHarness/text-align-202-t.svg @@ -0,0 +1,43 @@ + + + + + + + + + + + + + + + + + + + + + + + text-align-202-t + + SVG Image + + PNG Image + + + + + + Previous + + + No Nav + + + Next + + + + \ No newline at end of file diff --git a/test/W3C_SVG_12_TinyTestSuite_beta/svgHarness/text-area-201-t.svg b/test/W3C_SVG_12_TinyTestSuite_beta/svgHarness/text-area-201-t.svg new file mode 100755 index 00000000..7892d100 --- /dev/null +++ b/test/W3C_SVG_12_TinyTestSuite_beta/svgHarness/text-area-201-t.svg @@ -0,0 +1,43 @@ + + + + + + + + + + + + + + + + + + + + + + + text-area-201-t + + SVG Image + + PNG Image + + + + + + Previous + + + No Nav + + + Next + + + + \ No newline at end of file diff --git a/test/W3C_SVG_12_TinyTestSuite_beta/svgHarness/text-area-202-t.svg b/test/W3C_SVG_12_TinyTestSuite_beta/svgHarness/text-area-202-t.svg new file mode 100755 index 00000000..bbc6bd54 --- /dev/null +++ b/test/W3C_SVG_12_TinyTestSuite_beta/svgHarness/text-area-202-t.svg @@ -0,0 +1,43 @@ + + + + + + + + + + + + + + + + + + + + + + + text-area-202-t + + SVG Image + + PNG Image + + + + + + Previous + + + No Nav + + + Next + + + + \ No newline at end of file diff --git a/test/W3C_SVG_12_TinyTestSuite_beta/svgHarness/text-area-203-t.svg b/test/W3C_SVG_12_TinyTestSuite_beta/svgHarness/text-area-203-t.svg new file mode 100755 index 00000000..165c069c --- /dev/null +++ b/test/W3C_SVG_12_TinyTestSuite_beta/svgHarness/text-area-203-t.svg @@ -0,0 +1,43 @@ + + + + + + + + + + + + + + + + + + + + + + + text-area-203-t + + SVG Image + + PNG Image + + + + + + Previous + + + No Nav + + + Next + + + + \ No newline at end of file diff --git a/test/W3C_SVG_12_TinyTestSuite_beta/svgHarness/text-area-204-t.svg b/test/W3C_SVG_12_TinyTestSuite_beta/svgHarness/text-area-204-t.svg new file mode 100755 index 00000000..f15ecd0c --- /dev/null +++ b/test/W3C_SVG_12_TinyTestSuite_beta/svgHarness/text-area-204-t.svg @@ -0,0 +1,43 @@ + + + + + + + + + + + + + + + + + + + + + + + text-area-204-t + + SVG Image + + PNG Image + + + + + + Previous + + + No Nav + + + Next + + + + \ No newline at end of file diff --git a/test/W3C_SVG_12_TinyTestSuite_beta/svgHarness/text-area-205-t.svg b/test/W3C_SVG_12_TinyTestSuite_beta/svgHarness/text-area-205-t.svg new file mode 100755 index 00000000..11cefc31 --- /dev/null +++ b/test/W3C_SVG_12_TinyTestSuite_beta/svgHarness/text-area-205-t.svg @@ -0,0 +1,43 @@ + + + + + + + + + + + + + + + + + + + + + + + text-area-205-t + + SVG Image + + PNG Image + + + + + + Previous + + + No Nav + + + Next + + + + \ No newline at end of file diff --git a/test/W3C_SVG_12_TinyTestSuite_beta/svgHarness/text-area-206-t.svg b/test/W3C_SVG_12_TinyTestSuite_beta/svgHarness/text-area-206-t.svg new file mode 100755 index 00000000..288e4c95 --- /dev/null +++ b/test/W3C_SVG_12_TinyTestSuite_beta/svgHarness/text-area-206-t.svg @@ -0,0 +1,43 @@ + + + + + + + + + + + + + + + + + + + + + + + text-area-206-t + + SVG Image + + PNG Image + + + + + + Previous + + + No Nav + + + Next + + + + \ No newline at end of file diff --git a/test/W3C_SVG_12_TinyTestSuite_beta/svgHarness/text-area-207-t.svg b/test/W3C_SVG_12_TinyTestSuite_beta/svgHarness/text-area-207-t.svg new file mode 100755 index 00000000..b5ba2b05 --- /dev/null +++ b/test/W3C_SVG_12_TinyTestSuite_beta/svgHarness/text-area-207-t.svg @@ -0,0 +1,43 @@ + + + + + + + + + + + + + + + + + + + + + + + text-area-207-t + + SVG Image + + PNG Image + + + + + + Previous + + + No Nav + + + Next + + + + \ No newline at end of file diff --git a/test/W3C_SVG_12_TinyTestSuite_beta/svgHarness/text-area-208-t.svg b/test/W3C_SVG_12_TinyTestSuite_beta/svgHarness/text-area-208-t.svg new file mode 100755 index 00000000..8aac2703 --- /dev/null +++ b/test/W3C_SVG_12_TinyTestSuite_beta/svgHarness/text-area-208-t.svg @@ -0,0 +1,43 @@ + + + + + + + + + + + + + + + + + + + + + + + text-area-208-t + + SVG Image + + PNG Image + + + + + + Previous + + + No Nav + + + Next + + + + \ No newline at end of file diff --git a/test/W3C_SVG_12_TinyTestSuite_beta/svgHarness/text-area-209-t.svg b/test/W3C_SVG_12_TinyTestSuite_beta/svgHarness/text-area-209-t.svg new file mode 100755 index 00000000..40e1ec3b --- /dev/null +++ b/test/W3C_SVG_12_TinyTestSuite_beta/svgHarness/text-area-209-t.svg @@ -0,0 +1,43 @@ + + + + + + + + + + + + + + + + + + + + + + + text-area-209-t + + SVG Image + + PNG Image + + + + + + Previous + + + No Nav + + + Next + + + + \ No newline at end of file diff --git a/test/W3C_SVG_12_TinyTestSuite_beta/svgHarness/text-area-210-t.svg b/test/W3C_SVG_12_TinyTestSuite_beta/svgHarness/text-area-210-t.svg new file mode 100755 index 00000000..8705c84a --- /dev/null +++ b/test/W3C_SVG_12_TinyTestSuite_beta/svgHarness/text-area-210-t.svg @@ -0,0 +1,43 @@ + + + + + + + + + + + + + + + + + + + + + + + text-area-210-t + + SVG Image + + PNG Image + + + + + + Previous + + + No Nav + + + Next + + + + \ No newline at end of file diff --git a/test/W3C_SVG_12_TinyTestSuite_beta/svgHarness/text-area-211-t.svg b/test/W3C_SVG_12_TinyTestSuite_beta/svgHarness/text-area-211-t.svg new file mode 100755 index 00000000..677e6dcc --- /dev/null +++ b/test/W3C_SVG_12_TinyTestSuite_beta/svgHarness/text-area-211-t.svg @@ -0,0 +1,43 @@ + + + + + + + + + + + + + + + + + + + + + + + text-area-211-t + + SVG Image + + PNG Image + + + + + + Previous + + + No Nav + + + Next + + + + \ No newline at end of file diff --git a/test/W3C_SVG_12_TinyTestSuite_beta/svgHarness/text-area-213-t.svg b/test/W3C_SVG_12_TinyTestSuite_beta/svgHarness/text-area-213-t.svg new file mode 100755 index 00000000..26d415a2 --- /dev/null +++ b/test/W3C_SVG_12_TinyTestSuite_beta/svgHarness/text-area-213-t.svg @@ -0,0 +1,43 @@ + + + + + + + + + + + + + + + + + + + + + + + text-area-213-t + + SVG Image + + PNG Image + + + + + + Previous + + + No Nav + + + Next + + + + \ No newline at end of file diff --git a/test/W3C_SVG_12_TinyTestSuite_beta/svgHarness/text-area-220-t.svg b/test/W3C_SVG_12_TinyTestSuite_beta/svgHarness/text-area-220-t.svg new file mode 100755 index 00000000..46413b15 --- /dev/null +++ b/test/W3C_SVG_12_TinyTestSuite_beta/svgHarness/text-area-220-t.svg @@ -0,0 +1,43 @@ + + + + + + + + + + + + + + + + + + + + + + + text-area-220-t + + SVG Image + + PNG Image + + + + + + Previous + + + No Nav + + + Next + + + + \ No newline at end of file diff --git a/test/W3C_SVG_12_TinyTestSuite_beta/svgHarness/text-area-221-t.svg b/test/W3C_SVG_12_TinyTestSuite_beta/svgHarness/text-area-221-t.svg new file mode 100755 index 00000000..75328e71 --- /dev/null +++ b/test/W3C_SVG_12_TinyTestSuite_beta/svgHarness/text-area-221-t.svg @@ -0,0 +1,43 @@ + + + + + + + + + + + + + + + + + + + + + + + text-area-221-t + + SVG Image + + PNG Image + + + + + + Previous + + + No Nav + + + Next + + + + \ No newline at end of file diff --git a/test/W3C_SVG_12_TinyTestSuite_beta/svgHarness/text-area-222-t.svg b/test/W3C_SVG_12_TinyTestSuite_beta/svgHarness/text-area-222-t.svg new file mode 100755 index 00000000..f11b5568 --- /dev/null +++ b/test/W3C_SVG_12_TinyTestSuite_beta/svgHarness/text-area-222-t.svg @@ -0,0 +1,43 @@ + + + + + + + + + + + + + + + + + + + + + + + text-area-222-t + + SVG Image + + PNG Image + + + + + + Previous + + + No Nav + + + Next + + + + \ No newline at end of file diff --git a/test/W3C_SVG_12_TinyTestSuite_beta/svgHarness/text-edit-201-t.svg b/test/W3C_SVG_12_TinyTestSuite_beta/svgHarness/text-edit-201-t.svg new file mode 100755 index 00000000..650a96b6 --- /dev/null +++ b/test/W3C_SVG_12_TinyTestSuite_beta/svgHarness/text-edit-201-t.svg @@ -0,0 +1,43 @@ + + + + + + + + + + + + + + + + + + + + + + + text-edit-201-t + + SVG Image + + PNG Image + + + + + + Previous + + + No Nav + + + Next + + + + \ No newline at end of file diff --git a/test/W3C_SVG_12_TinyTestSuite_beta/svgHarness/text-fonts-01-t.svg b/test/W3C_SVG_12_TinyTestSuite_beta/svgHarness/text-fonts-01-t.svg new file mode 100755 index 00000000..e1389c77 --- /dev/null +++ b/test/W3C_SVG_12_TinyTestSuite_beta/svgHarness/text-fonts-01-t.svg @@ -0,0 +1,43 @@ + + + + + + + + + + + + + + + + + + + + + + + text-fonts-01-t + + SVG Image + + PNG Image + + + + + + Previous + + + No Nav + + + Next + + + + \ No newline at end of file diff --git a/test/W3C_SVG_12_TinyTestSuite_beta/svgHarness/text-fonts-02-t.svg b/test/W3C_SVG_12_TinyTestSuite_beta/svgHarness/text-fonts-02-t.svg new file mode 100755 index 00000000..5df358a8 --- /dev/null +++ b/test/W3C_SVG_12_TinyTestSuite_beta/svgHarness/text-fonts-02-t.svg @@ -0,0 +1,43 @@ + + + + + + + + + + + + + + + + + + + + + + + text-fonts-02-t + + SVG Image + + PNG Image + + + + + + Previous + + + No Nav + + + Next + + + + \ No newline at end of file diff --git a/test/W3C_SVG_12_TinyTestSuite_beta/svgHarness/text-fonts-03-t.svg b/test/W3C_SVG_12_TinyTestSuite_beta/svgHarness/text-fonts-03-t.svg new file mode 100755 index 00000000..f2403813 --- /dev/null +++ b/test/W3C_SVG_12_TinyTestSuite_beta/svgHarness/text-fonts-03-t.svg @@ -0,0 +1,43 @@ + + + + + + + + + + + + + + + + + + + + + + + text-fonts-03-t + + SVG Image + + PNG Image + + + + + + Previous + + + No Nav + + + Next + + + + \ No newline at end of file diff --git a/test/W3C_SVG_12_TinyTestSuite_beta/svgHarness/text-fonts-04-t.svg b/test/W3C_SVG_12_TinyTestSuite_beta/svgHarness/text-fonts-04-t.svg new file mode 100755 index 00000000..d193858f --- /dev/null +++ b/test/W3C_SVG_12_TinyTestSuite_beta/svgHarness/text-fonts-04-t.svg @@ -0,0 +1,43 @@ + + + + + + + + + + + + + + + + + + + + + + + text-fonts-04-t + + SVG Image + + PNG Image + + + + + + Previous + + + No Nav + + + Next + + + + \ No newline at end of file diff --git a/test/W3C_SVG_12_TinyTestSuite_beta/svgHarness/text-fonts-202-t.svg b/test/W3C_SVG_12_TinyTestSuite_beta/svgHarness/text-fonts-202-t.svg new file mode 100755 index 00000000..37838e38 --- /dev/null +++ b/test/W3C_SVG_12_TinyTestSuite_beta/svgHarness/text-fonts-202-t.svg @@ -0,0 +1,43 @@ + + + + + + + + + + + + + + + + + + + + + + + text-fonts-202-t + + SVG Image + + PNG Image + + + + + + Previous + + + No Nav + + + Next + + + + \ No newline at end of file diff --git a/test/W3C_SVG_12_TinyTestSuite_beta/svgHarness/text-intro-01-t.svg b/test/W3C_SVG_12_TinyTestSuite_beta/svgHarness/text-intro-01-t.svg new file mode 100755 index 00000000..d235ff2d --- /dev/null +++ b/test/W3C_SVG_12_TinyTestSuite_beta/svgHarness/text-intro-01-t.svg @@ -0,0 +1,43 @@ + + + + + + + + + + + + + + + + + + + + + + + text-intro-01-t + + SVG Image + + PNG Image + + + + + + Previous + + + No Nav + + + Next + + + + \ No newline at end of file diff --git a/test/W3C_SVG_12_TinyTestSuite_beta/svgHarness/text-intro-04-t.svg b/test/W3C_SVG_12_TinyTestSuite_beta/svgHarness/text-intro-04-t.svg new file mode 100755 index 00000000..62e8e17c --- /dev/null +++ b/test/W3C_SVG_12_TinyTestSuite_beta/svgHarness/text-intro-04-t.svg @@ -0,0 +1,43 @@ + + + + + + + + + + + + + + + + + + + + + + + text-intro-04-t + + SVG Image + + PNG Image + + + + + + Previous + + + No Nav + + + Next + + + + \ No newline at end of file diff --git a/test/W3C_SVG_12_TinyTestSuite_beta/svgHarness/text-intro-05-t.svg b/test/W3C_SVG_12_TinyTestSuite_beta/svgHarness/text-intro-05-t.svg new file mode 100755 index 00000000..cdd9da13 --- /dev/null +++ b/test/W3C_SVG_12_TinyTestSuite_beta/svgHarness/text-intro-05-t.svg @@ -0,0 +1,43 @@ + + + + + + + + + + + + + + + + + + + + + + + text-intro-05-t + + SVG Image + + PNG Image + + + + + + Previous + + + No Nav + + + Next + + + + \ No newline at end of file diff --git a/test/W3C_SVG_12_TinyTestSuite_beta/svgHarness/text-intro-06-t.svg b/test/W3C_SVG_12_TinyTestSuite_beta/svgHarness/text-intro-06-t.svg new file mode 100755 index 00000000..f4576777 --- /dev/null +++ b/test/W3C_SVG_12_TinyTestSuite_beta/svgHarness/text-intro-06-t.svg @@ -0,0 +1,43 @@ + + + + + + + + + + + + + + + + + + + + + + + text-intro-06-t + + SVG Image + + PNG Image + + + + + + Previous + + + No Nav + + + Next + + + + \ No newline at end of file diff --git a/test/W3C_SVG_12_TinyTestSuite_beta/svgHarness/text-intro-201-t.svg b/test/W3C_SVG_12_TinyTestSuite_beta/svgHarness/text-intro-201-t.svg new file mode 100755 index 00000000..44b1842b --- /dev/null +++ b/test/W3C_SVG_12_TinyTestSuite_beta/svgHarness/text-intro-201-t.svg @@ -0,0 +1,43 @@ + + + + + + + + + + + + + + + + + + + + + + + text-intro-201-t + + SVG Image + + PNG Image + + + + + + Previous + + + No Nav + + + Next + + + + \ No newline at end of file diff --git a/test/W3C_SVG_12_TinyTestSuite_beta/svgHarness/text-text-04-t.svg b/test/W3C_SVG_12_TinyTestSuite_beta/svgHarness/text-text-04-t.svg new file mode 100755 index 00000000..1bb14ce3 --- /dev/null +++ b/test/W3C_SVG_12_TinyTestSuite_beta/svgHarness/text-text-04-t.svg @@ -0,0 +1,43 @@ + + + + + + + + + + + + + + + + + + + + + + + text-text-04-t + + SVG Image + + PNG Image + + + + + + Previous + + + No Nav + + + Next + + + + \ No newline at end of file diff --git a/test/W3C_SVG_12_TinyTestSuite_beta/svgHarness/text-text-06-t.svg b/test/W3C_SVG_12_TinyTestSuite_beta/svgHarness/text-text-06-t.svg new file mode 100755 index 00000000..6d1f45bf --- /dev/null +++ b/test/W3C_SVG_12_TinyTestSuite_beta/svgHarness/text-text-06-t.svg @@ -0,0 +1,43 @@ + + + + + + + + + + + + + + + + + + + + + + + text-text-06-t + + SVG Image + + PNG Image + + + + + + Previous + + + No Nav + + + Next + + + + \ No newline at end of file diff --git a/test/W3C_SVG_12_TinyTestSuite_beta/svgHarness/text-text-07-t.svg b/test/W3C_SVG_12_TinyTestSuite_beta/svgHarness/text-text-07-t.svg new file mode 100755 index 00000000..6b511eb3 --- /dev/null +++ b/test/W3C_SVG_12_TinyTestSuite_beta/svgHarness/text-text-07-t.svg @@ -0,0 +1,43 @@ + + + + + + + + + + + + + + + + + + + + + + + text-text-07-t + + SVG Image + + PNG Image + + + + + + Previous + + + No Nav + + + Next + + + + \ No newline at end of file diff --git a/test/W3C_SVG_12_TinyTestSuite_beta/svgHarness/text-text-08-t.svg b/test/W3C_SVG_12_TinyTestSuite_beta/svgHarness/text-text-08-t.svg new file mode 100755 index 00000000..e290f3d8 --- /dev/null +++ b/test/W3C_SVG_12_TinyTestSuite_beta/svgHarness/text-text-08-t.svg @@ -0,0 +1,43 @@ + + + + + + + + + + + + + + + + + + + + + + + text-text-08-t + + SVG Image + + PNG Image + + + + + + Previous + + + No Nav + + + Next + + + + \ No newline at end of file diff --git a/test/W3C_SVG_12_TinyTestSuite_beta/svgHarness/text-text-09-t.svg b/test/W3C_SVG_12_TinyTestSuite_beta/svgHarness/text-text-09-t.svg new file mode 100755 index 00000000..c05fe9c6 --- /dev/null +++ b/test/W3C_SVG_12_TinyTestSuite_beta/svgHarness/text-text-09-t.svg @@ -0,0 +1,43 @@ + + + + + + + + + + + + + + + + + + + + + + + text-text-09-t + + SVG Image + + PNG Image + + + + + + Previous + + + No Nav + + + Next + + + + \ No newline at end of file diff --git a/test/W3C_SVG_12_TinyTestSuite_beta/svgHarness/text-tselect-03-t.svg b/test/W3C_SVG_12_TinyTestSuite_beta/svgHarness/text-tselect-03-t.svg new file mode 100755 index 00000000..34575155 --- /dev/null +++ b/test/W3C_SVG_12_TinyTestSuite_beta/svgHarness/text-tselect-03-t.svg @@ -0,0 +1,43 @@ + + + + + + + + + + + + + + + + + + + + + + + text-tselect-03-t + + SVG Image + + PNG Image + + + + + + Previous + + + No Nav + + + Next + + + + \ No newline at end of file diff --git a/test/W3C_SVG_12_TinyTestSuite_beta/svgHarness/text-ws-01-t.svg b/test/W3C_SVG_12_TinyTestSuite_beta/svgHarness/text-ws-01-t.svg new file mode 100755 index 00000000..76eaa997 --- /dev/null +++ b/test/W3C_SVG_12_TinyTestSuite_beta/svgHarness/text-ws-01-t.svg @@ -0,0 +1,43 @@ + + + + + + + + + + + + + + + + + + + + + + + text-ws-01-t + + SVG Image + + PNG Image + + + + + + Previous + + + No Nav + + + Next + + + + \ No newline at end of file diff --git a/test/W3C_SVG_12_TinyTestSuite_beta/svgHarness/text-ws-02-t.svg b/test/W3C_SVG_12_TinyTestSuite_beta/svgHarness/text-ws-02-t.svg new file mode 100755 index 00000000..3cc5da0d --- /dev/null +++ b/test/W3C_SVG_12_TinyTestSuite_beta/svgHarness/text-ws-02-t.svg @@ -0,0 +1,43 @@ + + + + + + + + + + + + + + + + + + + + + + + text-ws-02-t + + SVG Image + + PNG Image + + + + + + Previous + + + No Nav + + + Next + + + + \ No newline at end of file diff --git a/test/W3C_SVG_12_TinyTestSuite_beta/svgHarness/udom-conform-201-t.svg b/test/W3C_SVG_12_TinyTestSuite_beta/svgHarness/udom-conform-201-t.svg new file mode 100755 index 00000000..931e8126 --- /dev/null +++ b/test/W3C_SVG_12_TinyTestSuite_beta/svgHarness/udom-conform-201-t.svg @@ -0,0 +1,43 @@ + + + + + + + + + + + + + + + + + + + + + + + udom-conform-201-t + + SVG Image + + PNG Image + + + + + + Previous + + + No Nav + + + Next + + + + \ No newline at end of file diff --git a/test/W3C_SVG_12_TinyTestSuite_beta/svgHarness/udom-dom-201-t.svg b/test/W3C_SVG_12_TinyTestSuite_beta/svgHarness/udom-dom-201-t.svg new file mode 100755 index 00000000..f9bb7f88 --- /dev/null +++ b/test/W3C_SVG_12_TinyTestSuite_beta/svgHarness/udom-dom-201-t.svg @@ -0,0 +1,43 @@ + + + + + + + + + + + + + + + + + + + + + + + udom-dom-201-t + + SVG Image + + PNG Image + + + + + + Previous + + + No Nav + + + Next + + + + \ No newline at end of file diff --git a/test/W3C_SVG_12_TinyTestSuite_beta/svgHarness/udom-dom-202-t.svg b/test/W3C_SVG_12_TinyTestSuite_beta/svgHarness/udom-dom-202-t.svg new file mode 100755 index 00000000..dd982921 --- /dev/null +++ b/test/W3C_SVG_12_TinyTestSuite_beta/svgHarness/udom-dom-202-t.svg @@ -0,0 +1,43 @@ + + + + + + + + + + + + + + + + + + + + + + + udom-dom-202-t + + SVG Image + + PNG Image + + + + + + Previous + + + No Nav + + + Next + + + + \ No newline at end of file diff --git a/test/W3C_SVG_12_TinyTestSuite_beta/svgHarness/udom-dom-203-t.svg b/test/W3C_SVG_12_TinyTestSuite_beta/svgHarness/udom-dom-203-t.svg new file mode 100755 index 00000000..74ce1176 --- /dev/null +++ b/test/W3C_SVG_12_TinyTestSuite_beta/svgHarness/udom-dom-203-t.svg @@ -0,0 +1,43 @@ + + + + + + + + + + + + + + + + + + + + + + + udom-dom-203-t + + SVG Image + + PNG Image + + + + + + Previous + + + No Nav + + + Next + + + + \ No newline at end of file diff --git a/test/W3C_SVG_12_TinyTestSuite_beta/svgHarness/udom-dom-204-t.svg b/test/W3C_SVG_12_TinyTestSuite_beta/svgHarness/udom-dom-204-t.svg new file mode 100755 index 00000000..22c76cc6 --- /dev/null +++ b/test/W3C_SVG_12_TinyTestSuite_beta/svgHarness/udom-dom-204-t.svg @@ -0,0 +1,43 @@ + + + + + + + + + + + + + + + + + + + + + + + udom-dom-204-t + + SVG Image + + PNG Image + + + + + + Previous + + + No Nav + + + Next + + + + \ No newline at end of file diff --git a/test/W3C_SVG_12_TinyTestSuite_beta/svgHarness/udom-dom-206-t.svg b/test/W3C_SVG_12_TinyTestSuite_beta/svgHarness/udom-dom-206-t.svg new file mode 100755 index 00000000..bdc04fa1 --- /dev/null +++ b/test/W3C_SVG_12_TinyTestSuite_beta/svgHarness/udom-dom-206-t.svg @@ -0,0 +1,43 @@ + + + + + + + + + + + + + + + + + + + + + + + udom-dom-206-t + + SVG Image + + PNG Image + + + + + + Previous + + + No Nav + + + Next + + + + \ No newline at end of file diff --git a/test/W3C_SVG_12_TinyTestSuite_beta/svgHarness/udom-dom-207-t.svg b/test/W3C_SVG_12_TinyTestSuite_beta/svgHarness/udom-dom-207-t.svg new file mode 100755 index 00000000..0f17bd51 --- /dev/null +++ b/test/W3C_SVG_12_TinyTestSuite_beta/svgHarness/udom-dom-207-t.svg @@ -0,0 +1,43 @@ + + + + + + + + + + + + + + + + + + + + + + + udom-dom-207-t + + SVG Image + + PNG Image + + + + + + Previous + + + No Nav + + + Next + + + + \ No newline at end of file diff --git a/test/W3C_SVG_12_TinyTestSuite_beta/svgHarness/udom-dom-209-t.svg b/test/W3C_SVG_12_TinyTestSuite_beta/svgHarness/udom-dom-209-t.svg new file mode 100755 index 00000000..67a80aa6 --- /dev/null +++ b/test/W3C_SVG_12_TinyTestSuite_beta/svgHarness/udom-dom-209-t.svg @@ -0,0 +1,43 @@ + + + + + + + + + + + + + + + + + + + + + + + udom-dom-209-t + + SVG Image + + PNG Image + + + + + + Previous + + + No Nav + + + Next + + + + \ No newline at end of file diff --git a/test/W3C_SVG_12_TinyTestSuite_beta/svgHarness/udom-dom-210-t.svg b/test/W3C_SVG_12_TinyTestSuite_beta/svgHarness/udom-dom-210-t.svg new file mode 100755 index 00000000..4c6c70a4 --- /dev/null +++ b/test/W3C_SVG_12_TinyTestSuite_beta/svgHarness/udom-dom-210-t.svg @@ -0,0 +1,43 @@ + + + + + + + + + + + + + + + + + + + + + + + udom-dom-210-t + + SVG Image + + PNG Image + + + + + + Previous + + + No Nav + + + Next + + + + \ No newline at end of file diff --git a/test/W3C_SVG_12_TinyTestSuite_beta/svgHarness/udom-dom-211-t.svg b/test/W3C_SVG_12_TinyTestSuite_beta/svgHarness/udom-dom-211-t.svg new file mode 100755 index 00000000..8580a6a2 --- /dev/null +++ b/test/W3C_SVG_12_TinyTestSuite_beta/svgHarness/udom-dom-211-t.svg @@ -0,0 +1,43 @@ + + + + + + + + + + + + + + + + + + + + + + + udom-dom-211-t + + SVG Image + + PNG Image + + + + + + Previous + + + No Nav + + + Next + + + + \ No newline at end of file diff --git a/test/W3C_SVG_12_TinyTestSuite_beta/svgHarness/udom-dom-213-t.svg b/test/W3C_SVG_12_TinyTestSuite_beta/svgHarness/udom-dom-213-t.svg new file mode 100755 index 00000000..faf8cc56 --- /dev/null +++ b/test/W3C_SVG_12_TinyTestSuite_beta/svgHarness/udom-dom-213-t.svg @@ -0,0 +1,43 @@ + + + + + + + + + + + + + + + + + + + + + + + udom-dom-213-t + + SVG Image + + PNG Image + + + + + + Previous + + + No Nav + + + Next + + + + \ No newline at end of file diff --git a/test/W3C_SVG_12_TinyTestSuite_beta/svgHarness/udom-event-201-t.svg b/test/W3C_SVG_12_TinyTestSuite_beta/svgHarness/udom-event-201-t.svg new file mode 100755 index 00000000..6ce9beda --- /dev/null +++ b/test/W3C_SVG_12_TinyTestSuite_beta/svgHarness/udom-event-201-t.svg @@ -0,0 +1,43 @@ + + + + + + + + + + + + + + + + + + + + + + + udom-event-201-t + + SVG Image + + PNG Image + + + + + + Previous + + + No Nav + + + Next + + + + \ No newline at end of file diff --git a/test/W3C_SVG_12_TinyTestSuite_beta/svgHarness/udom-event-202-t.svg b/test/W3C_SVG_12_TinyTestSuite_beta/svgHarness/udom-event-202-t.svg new file mode 100755 index 00000000..1c7c65ed --- /dev/null +++ b/test/W3C_SVG_12_TinyTestSuite_beta/svgHarness/udom-event-202-t.svg @@ -0,0 +1,43 @@ + + + + + + + + + + + + + + + + + + + + + + + udom-event-202-t + + SVG Image + + PNG Image + + + + + + Previous + + + No Nav + + + Next + + + + \ No newline at end of file diff --git a/test/W3C_SVG_12_TinyTestSuite_beta/svgHarness/udom-event-203-t.svg b/test/W3C_SVG_12_TinyTestSuite_beta/svgHarness/udom-event-203-t.svg new file mode 100755 index 00000000..dd9aa795 --- /dev/null +++ b/test/W3C_SVG_12_TinyTestSuite_beta/svgHarness/udom-event-203-t.svg @@ -0,0 +1,43 @@ + + + + + + + + + + + + + + + + + + + + + + + udom-event-203-t + + SVG Image + + PNG Image + + + + + + Previous + + + No Nav + + + Next + + + + \ No newline at end of file diff --git a/test/W3C_SVG_12_TinyTestSuite_beta/svgHarness/udom-event-204-t.svg b/test/W3C_SVG_12_TinyTestSuite_beta/svgHarness/udom-event-204-t.svg new file mode 100755 index 00000000..8e092c19 --- /dev/null +++ b/test/W3C_SVG_12_TinyTestSuite_beta/svgHarness/udom-event-204-t.svg @@ -0,0 +1,43 @@ + + + + + + + + + + + + + + + + + + + + + + + udom-event-204-t + + SVG Image + + PNG Image + + + + + + Previous + + + No Nav + + + Next + + + + \ No newline at end of file diff --git a/test/W3C_SVG_12_TinyTestSuite_beta/svgHarness/udom-event-205-t.svg b/test/W3C_SVG_12_TinyTestSuite_beta/svgHarness/udom-event-205-t.svg new file mode 100755 index 00000000..3f3e8d91 --- /dev/null +++ b/test/W3C_SVG_12_TinyTestSuite_beta/svgHarness/udom-event-205-t.svg @@ -0,0 +1,43 @@ + + + + + + + + + + + + + + + + + + + + + + + udom-event-205-t + + SVG Image + + PNG Image + + + + + + Previous + + + No Nav + + + Next + + + + \ No newline at end of file diff --git a/test/W3C_SVG_12_TinyTestSuite_beta/svgHarness/udom-event-207-t.svg b/test/W3C_SVG_12_TinyTestSuite_beta/svgHarness/udom-event-207-t.svg new file mode 100755 index 00000000..915d9f5a --- /dev/null +++ b/test/W3C_SVG_12_TinyTestSuite_beta/svgHarness/udom-event-207-t.svg @@ -0,0 +1,43 @@ + + + + + + + + + + + + + + + + + + + + + + + udom-event-207-t + + SVG Image + + PNG Image + + + + + + Previous + + + No Nav + + + Next + + + + \ No newline at end of file diff --git a/test/W3C_SVG_12_TinyTestSuite_beta/svgHarness/udom-event-208-t.svg b/test/W3C_SVG_12_TinyTestSuite_beta/svgHarness/udom-event-208-t.svg new file mode 100755 index 00000000..0c2ed88c --- /dev/null +++ b/test/W3C_SVG_12_TinyTestSuite_beta/svgHarness/udom-event-208-t.svg @@ -0,0 +1,43 @@ + + + + + + + + + + + + + + + + + + + + + + + udom-event-208-t + + SVG Image + + PNG Image + + + + + + Previous + + + No Nav + + + Next + + + + \ No newline at end of file diff --git a/test/W3C_SVG_12_TinyTestSuite_beta/svgHarness/udom-event-209-t.svg b/test/W3C_SVG_12_TinyTestSuite_beta/svgHarness/udom-event-209-t.svg new file mode 100755 index 00000000..f0d7abe7 --- /dev/null +++ b/test/W3C_SVG_12_TinyTestSuite_beta/svgHarness/udom-event-209-t.svg @@ -0,0 +1,43 @@ + + + + + + + + + + + + + + + + + + + + + + + udom-event-209-t + + SVG Image + + PNG Image + + + + + + Previous + + + No Nav + + + Next + + + + \ No newline at end of file diff --git a/test/W3C_SVG_12_TinyTestSuite_beta/svgHarness/udom-event-210-t.svg b/test/W3C_SVG_12_TinyTestSuite_beta/svgHarness/udom-event-210-t.svg new file mode 100755 index 00000000..517c5853 --- /dev/null +++ b/test/W3C_SVG_12_TinyTestSuite_beta/svgHarness/udom-event-210-t.svg @@ -0,0 +1,43 @@ + + + + + + + + + + + + + + + + + + + + + + + udom-event-210-t + + SVG Image + + PNG Image + + + + + + Previous + + + No Nav + + + Next + + + + \ No newline at end of file diff --git a/test/W3C_SVG_12_TinyTestSuite_beta/svgHarness/udom-glob-201-t.svg b/test/W3C_SVG_12_TinyTestSuite_beta/svgHarness/udom-glob-201-t.svg new file mode 100755 index 00000000..9a0a90af --- /dev/null +++ b/test/W3C_SVG_12_TinyTestSuite_beta/svgHarness/udom-glob-201-t.svg @@ -0,0 +1,43 @@ + + + + + + + + + + + + + + + + + + + + + + + udom-glob-201-t + + SVG Image + + PNG Image + + + + + + Previous + + + No Nav + + + Next + + + + \ No newline at end of file diff --git a/test/W3C_SVG_12_TinyTestSuite_beta/svgHarness/udom-glob-202-t.svg b/test/W3C_SVG_12_TinyTestSuite_beta/svgHarness/udom-glob-202-t.svg new file mode 100755 index 00000000..e6174f4a --- /dev/null +++ b/test/W3C_SVG_12_TinyTestSuite_beta/svgHarness/udom-glob-202-t.svg @@ -0,0 +1,43 @@ + + + + + + + + + + + + + + + + + + + + + + + udom-glob-202-t + + SVG Image + + PNG Image + + + + + + Previous + + + No Nav + + + Next + + + + \ No newline at end of file diff --git a/test/W3C_SVG_12_TinyTestSuite_beta/svgHarness/udom-glob-203-t.svg b/test/W3C_SVG_12_TinyTestSuite_beta/svgHarness/udom-glob-203-t.svg new file mode 100755 index 00000000..ac5469ae --- /dev/null +++ b/test/W3C_SVG_12_TinyTestSuite_beta/svgHarness/udom-glob-203-t.svg @@ -0,0 +1,43 @@ + + + + + + + + + + + + + + + + + + + + + + + udom-glob-203-t + + SVG Image + + PNG Image + + + + + + Previous + + + No Nav + + + Next + + + + \ No newline at end of file diff --git a/test/W3C_SVG_12_TinyTestSuite_beta/svgHarness/udom-glob-204-t.svg b/test/W3C_SVG_12_TinyTestSuite_beta/svgHarness/udom-glob-204-t.svg new file mode 100755 index 00000000..695066cb --- /dev/null +++ b/test/W3C_SVG_12_TinyTestSuite_beta/svgHarness/udom-glob-204-t.svg @@ -0,0 +1,43 @@ + + + + + + + + + + + + + + + + + + + + + + + udom-glob-204-t + + SVG Image + + PNG Image + + + + + + Previous + + + No Nav + + + Next + + + + \ No newline at end of file diff --git a/test/W3C_SVG_12_TinyTestSuite_beta/svgHarness/udom-node-201-t.svg b/test/W3C_SVG_12_TinyTestSuite_beta/svgHarness/udom-node-201-t.svg new file mode 100755 index 00000000..9ebae014 --- /dev/null +++ b/test/W3C_SVG_12_TinyTestSuite_beta/svgHarness/udom-node-201-t.svg @@ -0,0 +1,43 @@ + + + + + + + + + + + + + + + + + + + + + + + udom-node-201-t + + SVG Image + + PNG Image + + + + + + Previous + + + No Nav + + + Next + + + + \ No newline at end of file diff --git a/test/W3C_SVG_12_TinyTestSuite_beta/svgHarness/udom-node-202-t.svg b/test/W3C_SVG_12_TinyTestSuite_beta/svgHarness/udom-node-202-t.svg new file mode 100755 index 00000000..780ff46c --- /dev/null +++ b/test/W3C_SVG_12_TinyTestSuite_beta/svgHarness/udom-node-202-t.svg @@ -0,0 +1,43 @@ + + + + + + + + + + + + + + + + + + + + + + + udom-node-202-t + + SVG Image + + PNG Image + + + + + + Previous + + + No Nav + + + Next + + + + \ No newline at end of file diff --git a/test/W3C_SVG_12_TinyTestSuite_beta/svgHarness/udom-node-204-t.svg b/test/W3C_SVG_12_TinyTestSuite_beta/svgHarness/udom-node-204-t.svg new file mode 100755 index 00000000..96fc4fc6 --- /dev/null +++ b/test/W3C_SVG_12_TinyTestSuite_beta/svgHarness/udom-node-204-t.svg @@ -0,0 +1,43 @@ + + + + + + + + + + + + + + + + + + + + + + + udom-node-204-t + + SVG Image + + PNG Image + + + + + + Previous + + + No Nav + + + Next + + + + \ No newline at end of file diff --git a/test/W3C_SVG_12_TinyTestSuite_beta/svgHarness/udom-over-01-t.svg b/test/W3C_SVG_12_TinyTestSuite_beta/svgHarness/udom-over-01-t.svg new file mode 100755 index 00000000..921c33d4 --- /dev/null +++ b/test/W3C_SVG_12_TinyTestSuite_beta/svgHarness/udom-over-01-t.svg @@ -0,0 +1,43 @@ + + + + + + + + + + + + + + + + + + + + + + + udom-over-01-t + + SVG Image + + PNG Image + + + + + + Previous + + + No Nav + + + Next + + + + \ No newline at end of file diff --git a/test/W3C_SVG_12_TinyTestSuite_beta/svgHarness/udom-smil-201-t.svg b/test/W3C_SVG_12_TinyTestSuite_beta/svgHarness/udom-smil-201-t.svg new file mode 100755 index 00000000..4fc816ea --- /dev/null +++ b/test/W3C_SVG_12_TinyTestSuite_beta/svgHarness/udom-smil-201-t.svg @@ -0,0 +1,43 @@ + + + + + + + + + + + + + + + + + + + + + + + udom-smil-201-t + + SVG Image + + PNG Image + + + + + + Previous + + + No Nav + + + Next + + + + \ No newline at end of file diff --git a/test/W3C_SVG_12_TinyTestSuite_beta/svgHarness/udom-smil-202-t.svg b/test/W3C_SVG_12_TinyTestSuite_beta/svgHarness/udom-smil-202-t.svg new file mode 100755 index 00000000..d5576dc7 --- /dev/null +++ b/test/W3C_SVG_12_TinyTestSuite_beta/svgHarness/udom-smil-202-t.svg @@ -0,0 +1,43 @@ + + + + + + + + + + + + + + + + + + + + + + + udom-smil-202-t + + SVG Image + + PNG Image + + + + + + Previous + + + No Nav + + + Next + + + + \ No newline at end of file diff --git a/test/W3C_SVG_12_TinyTestSuite_beta/svgHarness/udom-smil-203-t.svg b/test/W3C_SVG_12_TinyTestSuite_beta/svgHarness/udom-smil-203-t.svg new file mode 100755 index 00000000..8d61a56d --- /dev/null +++ b/test/W3C_SVG_12_TinyTestSuite_beta/svgHarness/udom-smil-203-t.svg @@ -0,0 +1,43 @@ + + + + + + + + + + + + + + + + + + + + + + + udom-smil-203-t + + SVG Image + + PNG Image + + + + + + Previous + + + No Nav + + + Next + + + + \ No newline at end of file diff --git a/test/W3C_SVG_12_TinyTestSuite_beta/svgHarness/udom-svg-201-t.svg b/test/W3C_SVG_12_TinyTestSuite_beta/svgHarness/udom-svg-201-t.svg new file mode 100755 index 00000000..0ba26961 --- /dev/null +++ b/test/W3C_SVG_12_TinyTestSuite_beta/svgHarness/udom-svg-201-t.svg @@ -0,0 +1,43 @@ + + + + + + + + + + + + + + + + + + + + + + + udom-svg-201-t + + SVG Image + + PNG Image + + + + + + Previous + + + No Nav + + + Next + + + + \ No newline at end of file diff --git a/test/W3C_SVG_12_TinyTestSuite_beta/svgHarness/udom-svg-202-t.svg b/test/W3C_SVG_12_TinyTestSuite_beta/svgHarness/udom-svg-202-t.svg new file mode 100755 index 00000000..4902a04c --- /dev/null +++ b/test/W3C_SVG_12_TinyTestSuite_beta/svgHarness/udom-svg-202-t.svg @@ -0,0 +1,43 @@ + + + + + + + + + + + + + + + + + + + + + + + udom-svg-202-t + + SVG Image + + PNG Image + + + + + + Previous + + + No Nav + + + Next + + + + \ No newline at end of file diff --git a/test/W3C_SVG_12_TinyTestSuite_beta/svgHarness/udom-svg-204-t.svg b/test/W3C_SVG_12_TinyTestSuite_beta/svgHarness/udom-svg-204-t.svg new file mode 100755 index 00000000..5bf34529 --- /dev/null +++ b/test/W3C_SVG_12_TinyTestSuite_beta/svgHarness/udom-svg-204-t.svg @@ -0,0 +1,43 @@ + + + + + + + + + + + + + + + + + + + + + + + udom-svg-204-t + + SVG Image + + PNG Image + + + + + + Previous + + + No Nav + + + Next + + + + \ No newline at end of file diff --git a/test/W3C_SVG_12_TinyTestSuite_beta/svgHarness/udom-svg-205-t.svg b/test/W3C_SVG_12_TinyTestSuite_beta/svgHarness/udom-svg-205-t.svg new file mode 100755 index 00000000..39a57784 --- /dev/null +++ b/test/W3C_SVG_12_TinyTestSuite_beta/svgHarness/udom-svg-205-t.svg @@ -0,0 +1,43 @@ + + + + + + + + + + + + + + + + + + + + + + + udom-svg-205-t + + SVG Image + + PNG Image + + + + + + Previous + + + No Nav + + + Next + + + + \ No newline at end of file diff --git a/test/W3C_SVG_12_TinyTestSuite_beta/svgHarness/udom-svg-206-t.svg b/test/W3C_SVG_12_TinyTestSuite_beta/svgHarness/udom-svg-206-t.svg new file mode 100755 index 00000000..be1b5958 --- /dev/null +++ b/test/W3C_SVG_12_TinyTestSuite_beta/svgHarness/udom-svg-206-t.svg @@ -0,0 +1,43 @@ + + + + + + + + + + + + + + + + + + + + + + + udom-svg-206-t + + SVG Image + + PNG Image + + + + + + Previous + + + No Nav + + + Next + + + + \ No newline at end of file diff --git a/test/W3C_SVG_12_TinyTestSuite_beta/svgHarness/udom-svg-208-t.svg b/test/W3C_SVG_12_TinyTestSuite_beta/svgHarness/udom-svg-208-t.svg new file mode 100755 index 00000000..15b36771 --- /dev/null +++ b/test/W3C_SVG_12_TinyTestSuite_beta/svgHarness/udom-svg-208-t.svg @@ -0,0 +1,43 @@ + + + + + + + + + + + + + + + + + + + + + + + udom-svg-208-t + + SVG Image + + PNG Image + + + + + + Previous + + + No Nav + + + Next + + + + \ No newline at end of file diff --git a/test/W3C_SVG_12_TinyTestSuite_beta/svgHarness/udom-svg-209-t.svg b/test/W3C_SVG_12_TinyTestSuite_beta/svgHarness/udom-svg-209-t.svg new file mode 100755 index 00000000..51cbd9ba --- /dev/null +++ b/test/W3C_SVG_12_TinyTestSuite_beta/svgHarness/udom-svg-209-t.svg @@ -0,0 +1,43 @@ + + + + + + + + + + + + + + + + + + + + + + + udom-svg-209-t + + SVG Image + + PNG Image + + + + + + Previous + + + No Nav + + + Next + + + + \ No newline at end of file diff --git a/test/W3C_SVG_12_TinyTestSuite_beta/svgHarness/udom-svg-210-t.svg b/test/W3C_SVG_12_TinyTestSuite_beta/svgHarness/udom-svg-210-t.svg new file mode 100755 index 00000000..aa2a586f --- /dev/null +++ b/test/W3C_SVG_12_TinyTestSuite_beta/svgHarness/udom-svg-210-t.svg @@ -0,0 +1,43 @@ + + + + + + + + + + + + + + + + + + + + + + + udom-svg-210-t + + SVG Image + + PNG Image + + + + + + Previous + + + No Nav + + + Next + + + + \ No newline at end of file diff --git a/test/W3C_SVG_12_TinyTestSuite_beta/svgHarness/udom-svg-211-t.svg b/test/W3C_SVG_12_TinyTestSuite_beta/svgHarness/udom-svg-211-t.svg new file mode 100755 index 00000000..4574eacd --- /dev/null +++ b/test/W3C_SVG_12_TinyTestSuite_beta/svgHarness/udom-svg-211-t.svg @@ -0,0 +1,43 @@ + + + + + + + + + + + + + + + + + + + + + + + udom-svg-211-t + + SVG Image + + PNG Image + + + + + + Previous + + + No Nav + + + Next + + + + \ No newline at end of file diff --git a/test/W3C_SVG_12_TinyTestSuite_beta/svgHarness/udom-svg-213-t.svg b/test/W3C_SVG_12_TinyTestSuite_beta/svgHarness/udom-svg-213-t.svg new file mode 100755 index 00000000..8749d617 --- /dev/null +++ b/test/W3C_SVG_12_TinyTestSuite_beta/svgHarness/udom-svg-213-t.svg @@ -0,0 +1,43 @@ + + + + + + + + + + + + + + + + + + + + + + + udom-svg-213-t + + SVG Image + + PNG Image + + + + + + Previous + + + No Nav + + + Next + + + + \ No newline at end of file diff --git a/test/W3C_SVG_12_TinyTestSuite_beta/svgHarness/udom-svg-216-t.svg b/test/W3C_SVG_12_TinyTestSuite_beta/svgHarness/udom-svg-216-t.svg new file mode 100755 index 00000000..bc25bed8 --- /dev/null +++ b/test/W3C_SVG_12_TinyTestSuite_beta/svgHarness/udom-svg-216-t.svg @@ -0,0 +1,43 @@ + + + + + + + + + + + + + + + + + + + + + + + udom-svg-216-t + + SVG Image + + PNG Image + + + + + + Previous + + + No Nav + + + Next + + + + \ No newline at end of file diff --git a/test/W3C_SVG_12_TinyTestSuite_beta/svgHarness/udom-svg-218-t.svg b/test/W3C_SVG_12_TinyTestSuite_beta/svgHarness/udom-svg-218-t.svg new file mode 100755 index 00000000..879d50f6 --- /dev/null +++ b/test/W3C_SVG_12_TinyTestSuite_beta/svgHarness/udom-svg-218-t.svg @@ -0,0 +1,43 @@ + + + + + + + + + + + + + + + + + + + + + + + udom-svg-218-t + + SVG Image + + PNG Image + + + + + + Previous + + + No Nav + + + Next + + + + \ No newline at end of file diff --git a/test/W3C_SVG_12_TinyTestSuite_beta/svgHarness/udom-svg-220-t.svg b/test/W3C_SVG_12_TinyTestSuite_beta/svgHarness/udom-svg-220-t.svg new file mode 100755 index 00000000..5907211d --- /dev/null +++ b/test/W3C_SVG_12_TinyTestSuite_beta/svgHarness/udom-svg-220-t.svg @@ -0,0 +1,43 @@ + + + + + + + + + + + + + + + + + + + + + + + udom-svg-220-t + + SVG Image + + PNG Image + + + + + + Previous + + + No Nav + + + Next + + + + \ No newline at end of file diff --git a/test/W3C_SVG_12_TinyTestSuite_beta/svgHarness/udom-svg-224-t.svg b/test/W3C_SVG_12_TinyTestSuite_beta/svgHarness/udom-svg-224-t.svg new file mode 100755 index 00000000..cfade673 --- /dev/null +++ b/test/W3C_SVG_12_TinyTestSuite_beta/svgHarness/udom-svg-224-t.svg @@ -0,0 +1,43 @@ + + + + + + + + + + + + + + + + + + + + + + + udom-svg-224-t + + SVG Image + + PNG Image + + + + + + Previous + + + No Nav + + + Next + + + + \ No newline at end of file diff --git a/test/W3C_SVG_12_TinyTestSuite_beta/svgHarness/udom-svg-225-t.svg b/test/W3C_SVG_12_TinyTestSuite_beta/svgHarness/udom-svg-225-t.svg new file mode 100755 index 00000000..89dd1ced --- /dev/null +++ b/test/W3C_SVG_12_TinyTestSuite_beta/svgHarness/udom-svg-225-t.svg @@ -0,0 +1,43 @@ + + + + + + + + + + + + + + + + + + + + + + + udom-svg-225-t + + SVG Image + + PNG Image + + + + + + Previous + + + No Nav + + + Next + + + + \ No newline at end of file diff --git a/test/W3C_SVG_12_TinyTestSuite_beta/svgHarness/udom-svg-226-t.svg b/test/W3C_SVG_12_TinyTestSuite_beta/svgHarness/udom-svg-226-t.svg new file mode 100755 index 00000000..4b9888d4 --- /dev/null +++ b/test/W3C_SVG_12_TinyTestSuite_beta/svgHarness/udom-svg-226-t.svg @@ -0,0 +1,43 @@ + + + + + + + + + + + + + + + + + + + + + + + udom-svg-226-t + + SVG Image + + PNG Image + + + + + + Previous + + + No Nav + + + Next + + + + \ No newline at end of file diff --git a/test/W3C_SVG_12_TinyTestSuite_beta/svgHarness/udom-svg-227-t.svg b/test/W3C_SVG_12_TinyTestSuite_beta/svgHarness/udom-svg-227-t.svg new file mode 100755 index 00000000..3d6bab18 --- /dev/null +++ b/test/W3C_SVG_12_TinyTestSuite_beta/svgHarness/udom-svg-227-t.svg @@ -0,0 +1,43 @@ + + + + + + + + + + + + + + + + + + + + + + + udom-svg-227-t + + SVG Image + + PNG Image + + + + + + Previous + + + No Nav + + + Next + + + + \ No newline at end of file diff --git a/test/W3C_SVG_12_TinyTestSuite_beta/svgHarness/udom-svg-228-t.svg b/test/W3C_SVG_12_TinyTestSuite_beta/svgHarness/udom-svg-228-t.svg new file mode 100755 index 00000000..f38df731 --- /dev/null +++ b/test/W3C_SVG_12_TinyTestSuite_beta/svgHarness/udom-svg-228-t.svg @@ -0,0 +1,43 @@ + + + + + + + + + + + + + + + + + + + + + + + udom-svg-228-t + + SVG Image + + PNG Image + + + + + + Previous + + + No Nav + + + Next + + + + \ No newline at end of file diff --git a/test/W3C_SVG_12_TinyTestSuite_beta/svgHarness/udom-svg-231-t.svg b/test/W3C_SVG_12_TinyTestSuite_beta/svgHarness/udom-svg-231-t.svg new file mode 100755 index 00000000..04a831eb --- /dev/null +++ b/test/W3C_SVG_12_TinyTestSuite_beta/svgHarness/udom-svg-231-t.svg @@ -0,0 +1,43 @@ + + + + + + + + + + + + + + + + + + + + + + + udom-svg-231-t + + SVG Image + + PNG Image + + + + + + Previous + + + No Nav + + + Next + + + + \ No newline at end of file diff --git a/test/W3C_SVG_12_TinyTestSuite_beta/svgHarness/udom-svg-232-t.svg b/test/W3C_SVG_12_TinyTestSuite_beta/svgHarness/udom-svg-232-t.svg new file mode 100755 index 00000000..cfbe299e --- /dev/null +++ b/test/W3C_SVG_12_TinyTestSuite_beta/svgHarness/udom-svg-232-t.svg @@ -0,0 +1,43 @@ + + + + + + + + + + + + + + + + + + + + + + + udom-svg-232-t + + SVG Image + + PNG Image + + + + + + Previous + + + No Nav + + + Next + + + + \ No newline at end of file diff --git a/test/W3C_SVG_12_TinyTestSuite_beta/svgHarness/udom-svg-233-t.svg b/test/W3C_SVG_12_TinyTestSuite_beta/svgHarness/udom-svg-233-t.svg new file mode 100755 index 00000000..b62a070f --- /dev/null +++ b/test/W3C_SVG_12_TinyTestSuite_beta/svgHarness/udom-svg-233-t.svg @@ -0,0 +1,43 @@ + + + + + + + + + + + + + + + + + + + + + + + udom-svg-233-t + + SVG Image + + PNG Image + + + + + + Previous + + + No Nav + + + Next + + + + \ No newline at end of file diff --git a/test/W3C_SVG_12_TinyTestSuite_beta/svgHarness/udom-svg-236-t.svg b/test/W3C_SVG_12_TinyTestSuite_beta/svgHarness/udom-svg-236-t.svg new file mode 100755 index 00000000..b9cf4ce9 --- /dev/null +++ b/test/W3C_SVG_12_TinyTestSuite_beta/svgHarness/udom-svg-236-t.svg @@ -0,0 +1,43 @@ + + + + + + + + + + + + + + + + + + + + + + + udom-svg-236-t + + SVG Image + + PNG Image + + + + + + Previous + + + No Nav + + + Next + + + + \ No newline at end of file diff --git a/test/W3C_SVG_12_TinyTestSuite_beta/svgHarness/udom-svg-237-t.svg b/test/W3C_SVG_12_TinyTestSuite_beta/svgHarness/udom-svg-237-t.svg new file mode 100755 index 00000000..c5369cd7 --- /dev/null +++ b/test/W3C_SVG_12_TinyTestSuite_beta/svgHarness/udom-svg-237-t.svg @@ -0,0 +1,43 @@ + + + + + + + + + + + + + + + + + + + + + + + udom-svg-237-t + + SVG Image + + PNG Image + + + + + + Previous + + + No Nav + + + Next + + + + \ No newline at end of file diff --git a/test/W3C_SVG_12_TinyTestSuite_beta/svgHarness/udom-svgcolor-201-t.svg b/test/W3C_SVG_12_TinyTestSuite_beta/svgHarness/udom-svgcolor-201-t.svg new file mode 100755 index 00000000..b7b4be88 --- /dev/null +++ b/test/W3C_SVG_12_TinyTestSuite_beta/svgHarness/udom-svgcolor-201-t.svg @@ -0,0 +1,43 @@ + + + + + + + + + + + + + + + + + + + + + + + udom-svgcolor-201-t + + SVG Image + + PNG Image + + + + + + Previous + + + No Nav + + + Next + + + + \ No newline at end of file diff --git a/test/W3C_SVG_12_TinyTestSuite_beta/svgHarness/udom-svglocatable-201-t.svg b/test/W3C_SVG_12_TinyTestSuite_beta/svgHarness/udom-svglocatable-201-t.svg new file mode 100755 index 00000000..e961ffe3 --- /dev/null +++ b/test/W3C_SVG_12_TinyTestSuite_beta/svgHarness/udom-svglocatable-201-t.svg @@ -0,0 +1,43 @@ + + + + + + + + + + + + + + + + + + + + + + + udom-svglocatable-201-t + + SVG Image + + PNG Image + + + + + + Previous + + + No Nav + + + Next + + + + \ No newline at end of file diff --git a/test/W3C_SVG_12_TinyTestSuite_beta/svgHarness/udom-svglocatable-202-t.svg b/test/W3C_SVG_12_TinyTestSuite_beta/svgHarness/udom-svglocatable-202-t.svg new file mode 100755 index 00000000..3a99c1a4 --- /dev/null +++ b/test/W3C_SVG_12_TinyTestSuite_beta/svgHarness/udom-svglocatable-202-t.svg @@ -0,0 +1,43 @@ + + + + + + + + + + + + + + + + + + + + + + + udom-svglocatable-202-t + + SVG Image + + PNG Image + + + + + + Previous + + + No Nav + + + Next + + + + \ No newline at end of file diff --git a/test/W3C_SVG_12_TinyTestSuite_beta/svgHarness/udom-svglocatable-203-t.svg b/test/W3C_SVG_12_TinyTestSuite_beta/svgHarness/udom-svglocatable-203-t.svg new file mode 100755 index 00000000..505ca85e --- /dev/null +++ b/test/W3C_SVG_12_TinyTestSuite_beta/svgHarness/udom-svglocatable-203-t.svg @@ -0,0 +1,43 @@ + + + + + + + + + + + + + + + + + + + + + + + udom-svglocatable-203-t + + SVG Image + + PNG Image + + + + + + Previous + + + No Nav + + + Next + + + + \ No newline at end of file diff --git a/test/W3C_SVG_12_TinyTestSuite_beta/svgHarness/udom-svgmatrix-201-t.svg b/test/W3C_SVG_12_TinyTestSuite_beta/svgHarness/udom-svgmatrix-201-t.svg new file mode 100755 index 00000000..ef5260ba --- /dev/null +++ b/test/W3C_SVG_12_TinyTestSuite_beta/svgHarness/udom-svgmatrix-201-t.svg @@ -0,0 +1,43 @@ + + + + + + + + + + + + + + + + + + + + + + + udom-svgmatrix-201-t + + SVG Image + + PNG Image + + + + + + Previous + + + No Nav + + + Next + + + + \ No newline at end of file diff --git a/test/W3C_SVG_12_TinyTestSuite_beta/svgHarness/udom-svgmatrix-202-t.svg b/test/W3C_SVG_12_TinyTestSuite_beta/svgHarness/udom-svgmatrix-202-t.svg new file mode 100755 index 00000000..b60f93d6 --- /dev/null +++ b/test/W3C_SVG_12_TinyTestSuite_beta/svgHarness/udom-svgmatrix-202-t.svg @@ -0,0 +1,43 @@ + + + + + + + + + + + + + + + + + + + + + + + udom-svgmatrix-202-t + + SVG Image + + PNG Image + + + + + + Previous + + + No Nav + + + Next + + + + \ No newline at end of file diff --git a/test/W3C_SVG_12_TinyTestSuite_beta/svgHarness/udom-svgmatrix-203-t.svg b/test/W3C_SVG_12_TinyTestSuite_beta/svgHarness/udom-svgmatrix-203-t.svg new file mode 100755 index 00000000..d9e8ab3e --- /dev/null +++ b/test/W3C_SVG_12_TinyTestSuite_beta/svgHarness/udom-svgmatrix-203-t.svg @@ -0,0 +1,43 @@ + + + + + + + + + + + + + + + + + + + + + + + udom-svgmatrix-203-t + + SVG Image + + PNG Image + + + + + + Previous + + + No Nav + + + Next + + + + \ No newline at end of file diff --git a/test/W3C_SVG_12_TinyTestSuite_beta/svgHarness/udom-svgmatrix-204-t.svg b/test/W3C_SVG_12_TinyTestSuite_beta/svgHarness/udom-svgmatrix-204-t.svg new file mode 100755 index 00000000..6e920570 --- /dev/null +++ b/test/W3C_SVG_12_TinyTestSuite_beta/svgHarness/udom-svgmatrix-204-t.svg @@ -0,0 +1,43 @@ + + + + + + + + + + + + + + + + + + + + + + + udom-svgmatrix-204-t + + SVG Image + + PNG Image + + + + + + Previous + + + No Nav + + + Next + + + + \ No newline at end of file diff --git a/test/W3C_SVG_12_TinyTestSuite_beta/svgHarness/udom-svgmatrix-205-t.svg b/test/W3C_SVG_12_TinyTestSuite_beta/svgHarness/udom-svgmatrix-205-t.svg new file mode 100755 index 00000000..381d14ef --- /dev/null +++ b/test/W3C_SVG_12_TinyTestSuite_beta/svgHarness/udom-svgmatrix-205-t.svg @@ -0,0 +1,43 @@ + + + + + + + + + + + + + + + + + + + + + + + udom-svgmatrix-205-t + + SVG Image + + PNG Image + + + + + + Previous + + + No Nav + + + Next + + + + \ No newline at end of file diff --git a/test/W3C_SVG_12_TinyTestSuite_beta/svgHarness/udom-svgmatrix-206-t.svg b/test/W3C_SVG_12_TinyTestSuite_beta/svgHarness/udom-svgmatrix-206-t.svg new file mode 100755 index 00000000..a2bada54 --- /dev/null +++ b/test/W3C_SVG_12_TinyTestSuite_beta/svgHarness/udom-svgmatrix-206-t.svg @@ -0,0 +1,43 @@ + + + + + + + + + + + + + + + + + + + + + + + udom-svgmatrix-206-t + + SVG Image + + PNG Image + + + + + + Previous + + + No Nav + + + Next + + + + \ No newline at end of file diff --git a/test/W3C_SVG_12_TinyTestSuite_beta/svgHarness/udom-svgpath-201-t.svg b/test/W3C_SVG_12_TinyTestSuite_beta/svgHarness/udom-svgpath-201-t.svg new file mode 100755 index 00000000..fa3364d4 --- /dev/null +++ b/test/W3C_SVG_12_TinyTestSuite_beta/svgHarness/udom-svgpath-201-t.svg @@ -0,0 +1,43 @@ + + + + + + + + + + + + + + + + + + + + + + + udom-svgpath-201-t + + SVG Image + + PNG Image + + + + + + Previous + + + No Nav + + + Next + + + + \ No newline at end of file diff --git a/test/W3C_SVG_12_TinyTestSuite_beta/svgHarness/udom-svgpath-202-t.svg b/test/W3C_SVG_12_TinyTestSuite_beta/svgHarness/udom-svgpath-202-t.svg new file mode 100755 index 00000000..c265ead3 --- /dev/null +++ b/test/W3C_SVG_12_TinyTestSuite_beta/svgHarness/udom-svgpath-202-t.svg @@ -0,0 +1,43 @@ + + + + + + + + + + + + + + + + + + + + + + + udom-svgpath-202-t + + SVG Image + + PNG Image + + + + + + Previous + + + No Nav + + + Next + + + + \ No newline at end of file diff --git a/test/W3C_SVG_12_TinyTestSuite_beta/svgHarness/udom-svgpoint-201-t.svg b/test/W3C_SVG_12_TinyTestSuite_beta/svgHarness/udom-svgpoint-201-t.svg new file mode 100755 index 00000000..c52b10af --- /dev/null +++ b/test/W3C_SVG_12_TinyTestSuite_beta/svgHarness/udom-svgpoint-201-t.svg @@ -0,0 +1,43 @@ + + + + + + + + + + + + + + + + + + + + + + + udom-svgpoint-201-t + + SVG Image + + PNG Image + + + + + + Previous + + + No Nav + + + Next + + + + \ No newline at end of file diff --git a/test/W3C_SVG_12_TinyTestSuite_beta/svgHarness/udom-svgrect-201-t.svg b/test/W3C_SVG_12_TinyTestSuite_beta/svgHarness/udom-svgrect-201-t.svg new file mode 100755 index 00000000..cb84ea63 --- /dev/null +++ b/test/W3C_SVG_12_TinyTestSuite_beta/svgHarness/udom-svgrect-201-t.svg @@ -0,0 +1,43 @@ + + + + + + + + + + + + + + + + + + + + + + + udom-svgrect-201-t + + SVG Image + + PNG Image + + + + + + Previous + + + No Nav + + + Next + + + + \ No newline at end of file diff --git a/test/W3C_SVG_12_TinyTestSuite_beta/svgHarness/udom-textcontent-201-t.svg b/test/W3C_SVG_12_TinyTestSuite_beta/svgHarness/udom-textcontent-201-t.svg new file mode 100755 index 00000000..7879699e --- /dev/null +++ b/test/W3C_SVG_12_TinyTestSuite_beta/svgHarness/udom-textcontent-201-t.svg @@ -0,0 +1,43 @@ + + + + + + + + + + + + + + + + + + + + + + + udom-textcontent-201-t + + SVG Image + + PNG Image + + + + + + Previous + + + No Nav + + + Next + + + + \ No newline at end of file diff --git a/test/W3C_SVG_12_TinyTestSuite_beta/svgHarness/udom-textcontent-202-t.svg b/test/W3C_SVG_12_TinyTestSuite_beta/svgHarness/udom-textcontent-202-t.svg new file mode 100755 index 00000000..5be1a70a --- /dev/null +++ b/test/W3C_SVG_12_TinyTestSuite_beta/svgHarness/udom-textcontent-202-t.svg @@ -0,0 +1,43 @@ + + + + + + + + + + + + + + + + + + + + + + + udom-textcontent-202-t + + SVG Image + + PNG Image + + + + + + Previous + + + No Nav + + + Next + + + + \ No newline at end of file diff --git a/test/W3C_SVG_12_TinyTestSuite_beta/svgHarness/udom-traitaccess-201-t.svg b/test/W3C_SVG_12_TinyTestSuite_beta/svgHarness/udom-traitaccess-201-t.svg new file mode 100755 index 00000000..adbf0d93 --- /dev/null +++ b/test/W3C_SVG_12_TinyTestSuite_beta/svgHarness/udom-traitaccess-201-t.svg @@ -0,0 +1,43 @@ + + + + + + + + + + + + + + + + + + + + + + + udom-traitaccess-201-t + + SVG Image + + PNG Image + + + + + + Previous + + + No Nav + + + Next + + + + \ No newline at end of file diff --git a/test/W3C_SVG_12_TinyTestSuite_beta/svgHarness/udom-traitaccess-202-t.svg b/test/W3C_SVG_12_TinyTestSuite_beta/svgHarness/udom-traitaccess-202-t.svg new file mode 100755 index 00000000..25b0b6f3 --- /dev/null +++ b/test/W3C_SVG_12_TinyTestSuite_beta/svgHarness/udom-traitaccess-202-t.svg @@ -0,0 +1,43 @@ + + + + + + + + + + + + + + + + + + + + + + + udom-traitaccess-202-t + + SVG Image + + PNG Image + + + + + + Previous + + + No Nav + + + Next + + + + \ No newline at end of file diff --git a/test/W3C_SVG_12_TinyTestSuite_beta/svgHarness/udom-traitaccess-203-t.svg b/test/W3C_SVG_12_TinyTestSuite_beta/svgHarness/udom-traitaccess-203-t.svg new file mode 100755 index 00000000..b3cfaecf --- /dev/null +++ b/test/W3C_SVG_12_TinyTestSuite_beta/svgHarness/udom-traitaccess-203-t.svg @@ -0,0 +1,43 @@ + + + + + + + + + + + + + + + + + + + + + + + udom-traitaccess-203-t + + SVG Image + + PNG Image + + + + + + Previous + + + No Nav + + + Next + + + + \ No newline at end of file diff --git a/test/W3C_SVG_12_TinyTestSuite_beta/svgHarness/udom-traitaccess-204-t.svg b/test/W3C_SVG_12_TinyTestSuite_beta/svgHarness/udom-traitaccess-204-t.svg new file mode 100755 index 00000000..4871ed4a --- /dev/null +++ b/test/W3C_SVG_12_TinyTestSuite_beta/svgHarness/udom-traitaccess-204-t.svg @@ -0,0 +1,43 @@ + + + + + + + + + + + + + + + + + + + + + + + udom-traitaccess-204-t + + SVG Image + + PNG Image + + + + + + Previous + + + No Nav + + + Next + + + + \ No newline at end of file diff --git a/test/W3C_SVG_12_TinyTestSuite_beta/svgHarness/udom-traitaccess-205-t.svg b/test/W3C_SVG_12_TinyTestSuite_beta/svgHarness/udom-traitaccess-205-t.svg new file mode 100755 index 00000000..2502fe30 --- /dev/null +++ b/test/W3C_SVG_12_TinyTestSuite_beta/svgHarness/udom-traitaccess-205-t.svg @@ -0,0 +1,43 @@ + + + + + + + + + + + + + + + + + + + + + + + udom-traitaccess-205-t + + SVG Image + + PNG Image + + + + + + Previous + + + No Nav + + + Next + + + + \ No newline at end of file diff --git a/test/W3C_SVG_12_TinyTestSuite_beta/svgHarness/udom-traitaccess-206-t.svg b/test/W3C_SVG_12_TinyTestSuite_beta/svgHarness/udom-traitaccess-206-t.svg new file mode 100755 index 00000000..28446b89 --- /dev/null +++ b/test/W3C_SVG_12_TinyTestSuite_beta/svgHarness/udom-traitaccess-206-t.svg @@ -0,0 +1,43 @@ + + + + + + + + + + + + + + + + + + + + + + + udom-traitaccess-206-t + + SVG Image + + PNG Image + + + + + + Previous + + + No Nav + + + Next + + + + \ No newline at end of file diff --git a/test/W3C_SVG_12_TinyTestSuite_beta/svgHarness/udom-traitaccess-207-t.svg b/test/W3C_SVG_12_TinyTestSuite_beta/svgHarness/udom-traitaccess-207-t.svg new file mode 100755 index 00000000..ea38e358 --- /dev/null +++ b/test/W3C_SVG_12_TinyTestSuite_beta/svgHarness/udom-traitaccess-207-t.svg @@ -0,0 +1,43 @@ + + + + + + + + + + + + + + + + + + + + + + + udom-traitaccess-207-t + + SVG Image + + PNG Image + + + + + + Previous + + + No Nav + + + Next + + + + \ No newline at end of file diff --git a/test/W3C_SVG_12_TinyTestSuite_beta/svggen/animate-elem-02-t.svg b/test/W3C_SVG_12_TinyTestSuite_beta/svggen/animate-elem-02-t.svg new file mode 100755 index 00000000..d74a1faf --- /dev/null +++ b/test/W3C_SVG_12_TinyTestSuite_beta/svggen/animate-elem-02-t.svg @@ -0,0 +1,70 @@ + + + + + + + + + + $RCSfile: animate-elem-02-t.svg,v $ + + + + + + + + + + + + + + + + + anim.5 + + + + + + + + + anim.6 + + + + + + + + + anim.7 + + + + + + + + + anim.8 + + + + + $Revision: 1.10 $ + + + + + diff --git a/test/W3C_SVG_12_TinyTestSuite_beta/svggen/animate-elem-03-t.svg b/test/W3C_SVG_12_TinyTestSuite_beta/svggen/animate-elem-03-t.svg new file mode 100755 index 00000000..cdd3371d --- /dev/null +++ b/test/W3C_SVG_12_TinyTestSuite_beta/svggen/animate-elem-03-t.svg @@ -0,0 +1,57 @@ + + + + + + + + + + $RCSfile: animate-elem-03-t.svg,v $ + + + + + + + + + + + + + + + + + + + + + + + + + + + Sample 123 + Sample 123 + Sample 123 + + + + + + + $Revision: 1.9 $ + + + + + diff --git a/test/W3C_SVG_12_TinyTestSuite_beta/svggen/animate-elem-04-t.svg b/test/W3C_SVG_12_TinyTestSuite_beta/svggen/animate-elem-04-t.svg new file mode 100755 index 00000000..2a1c682c --- /dev/null +++ b/test/W3C_SVG_12_TinyTestSuite_beta/svggen/animate-elem-04-t.svg @@ -0,0 +1,44 @@ + + + + + + + + + + $RCSfile: animate-elem-04-t.svg,v $ + + + + + + + + + + Test a motion path + 'from'/'to' attribute. + + + 0 sec. + + 3+ sec. + + + + + + + $Revision: 1.9 $ + + + + + diff --git a/test/W3C_SVG_12_TinyTestSuite_beta/svggen/animate-elem-05-t.svg b/test/W3C_SVG_12_TinyTestSuite_beta/svggen/animate-elem-05-t.svg new file mode 100755 index 00000000..88a042be --- /dev/null +++ b/test/W3C_SVG_12_TinyTestSuite_beta/svggen/animate-elem-05-t.svg @@ -0,0 +1,46 @@ + + + + + + + + + + $RCSfile: animate-elem-05-t.svg,v $ + + + + + + + + + + Test a motion path + 'values' attribute. + + + 0 sec. + + 3+ + + 6+ + + + + + + + $Revision: 1.9 $ + + + + + diff --git a/test/W3C_SVG_12_TinyTestSuite_beta/svggen/animate-elem-06-t.svg b/test/W3C_SVG_12_TinyTestSuite_beta/svggen/animate-elem-06-t.svg new file mode 100755 index 00000000..022d3cc2 --- /dev/null +++ b/test/W3C_SVG_12_TinyTestSuite_beta/svggen/animate-elem-06-t.svg @@ -0,0 +1,44 @@ + + + + + + + + + + $RCSfile: animate-elem-06-t.svg,v $ + + + + + + + + + + Test a motion path + 'path' attribute. + + + 0 sec. + + 6+ sec. + + + + + + + $Revision: 1.9 $ + + + + + diff --git a/test/W3C_SVG_12_TinyTestSuite_beta/svggen/animate-elem-07-t.svg b/test/W3C_SVG_12_TinyTestSuite_beta/svggen/animate-elem-07-t.svg new file mode 100755 index 00000000..5a3f7919 --- /dev/null +++ b/test/W3C_SVG_12_TinyTestSuite_beta/svggen/animate-elem-07-t.svg @@ -0,0 +1,46 @@ + + + + + + + + + + $RCSfile: animate-elem-07-t.svg,v $ + + + + + + + + + + Test a motion path + 'mpath' element. + + + 0 sec. + + 6+ sec. + + + + + + + + + $Revision: 1.9 $ + + + + + diff --git a/test/W3C_SVG_12_TinyTestSuite_beta/svggen/animate-elem-08-t.svg b/test/W3C_SVG_12_TinyTestSuite_beta/svggen/animate-elem-08-t.svg new file mode 100755 index 00000000..6960b221 --- /dev/null +++ b/test/W3C_SVG_12_TinyTestSuite_beta/svggen/animate-elem-08-t.svg @@ -0,0 +1,53 @@ + + + + + + + + + + $RCSfile: animate-elem-08-t.svg,v $ + + + + + + + + + Test rotate='auto' and rotate='auto-reverse' + + + + 0 sec. + + 6+ sec. + + + + rotate='auto' + + + 0 sec. + + 6+ sec. + + + + rotate='auto-reverse' + + + + $Revision: 1.9 $ + + + + + diff --git a/test/W3C_SVG_12_TinyTestSuite_beta/svggen/animate-elem-09-t.svg b/test/W3C_SVG_12_TinyTestSuite_beta/svggen/animate-elem-09-t.svg new file mode 100755 index 00000000..61128f12 --- /dev/null +++ b/test/W3C_SVG_12_TinyTestSuite_beta/svggen/animate-elem-09-t.svg @@ -0,0 +1,64 @@ + + + + + + + + + + $RCSfile: animate-elem-09-t.svg,v $ + + + + + + + + + + + 0-2 sec. + 2-4 sec. + 4-6 sec. + 6+ sec. + + + + + + + + + + + + 0-2 sec. + 2-4 sec. + 4-6 sec. + 6+ sec. + + + + + + + + + + + + + + $Revision: 1.9 $ + + + + + diff --git a/test/W3C_SVG_12_TinyTestSuite_beta/svggen/animate-elem-10-t.svg b/test/W3C_SVG_12_TinyTestSuite_beta/svggen/animate-elem-10-t.svg new file mode 100755 index 00000000..fd39de68 --- /dev/null +++ b/test/W3C_SVG_12_TinyTestSuite_beta/svggen/animate-elem-10-t.svg @@ -0,0 +1,65 @@ + + + + + + + + + + $RCSfile: animate-elem-10-t.svg,v $ + + + + + + + + + + + at 0 sec. + at 3 sec. + at 6 sec. + 9+ sec. + + + + + + + + + + + + + at 0 sec. + at 3 sec. + at 6 sec. + 9+ sec. + + + + + + + + + + + + + + $Revision: 1.9 $ + + + + + diff --git a/test/W3C_SVG_12_TinyTestSuite_beta/svggen/animate-elem-11-t.svg b/test/W3C_SVG_12_TinyTestSuite_beta/svggen/animate-elem-11-t.svg new file mode 100755 index 00000000..a61365fa --- /dev/null +++ b/test/W3C_SVG_12_TinyTestSuite_beta/svggen/animate-elem-11-t.svg @@ -0,0 +1,64 @@ + + + + + + + + + + $RCSfile: animate-elem-11-t.svg,v $ + + + + + + + + + + + at 0 sec. + at 3 sec. + at 6 sec. + 9+ sec. + + + + + + + + + + + + at 0 sec. + at 3 sec. + at 6 sec. + 9+ sec. + + + + + + + + + + + + + + $Revision: 1.8 $ + + + + + diff --git a/test/W3C_SVG_12_TinyTestSuite_beta/svggen/animate-elem-12-t.svg b/test/W3C_SVG_12_TinyTestSuite_beta/svggen/animate-elem-12-t.svg new file mode 100755 index 00000000..31ffcf7f --- /dev/null +++ b/test/W3C_SVG_12_TinyTestSuite_beta/svggen/animate-elem-12-t.svg @@ -0,0 +1,64 @@ + + + + + + + + + + $RCSfile: animate-elem-12-t.svg,v $ + + + + + + + + + + + at 0 sec. + at 3 sec. + at 6 sec. + 9+ sec. + + + + + + + + + + + + at 0 sec. + at 3 sec. + at 6 sec. + 9+ sec. + + + + + + + + + + + + + + $Revision: 1.8 $ + + + + + diff --git a/test/W3C_SVG_12_TinyTestSuite_beta/svggen/animate-elem-13-t.svg b/test/W3C_SVG_12_TinyTestSuite_beta/svggen/animate-elem-13-t.svg new file mode 100755 index 00000000..19b0610d --- /dev/null +++ b/test/W3C_SVG_12_TinyTestSuite_beta/svggen/animate-elem-13-t.svg @@ -0,0 +1,74 @@ + + + + + + + + + + $RCSfile: animate-elem-13-t.svg,v $ + + + + + + + + + + + + 0-2 sec. + 5+ sec. + + + + + from to + + + + + + from by + + + + + + by + + + + + + to + + + + + + values + + + + + + values + + + + + $Revision: 1.8 $ + + + + + diff --git a/test/W3C_SVG_12_TinyTestSuite_beta/svggen/animate-elem-14-t.svg b/test/W3C_SVG_12_TinyTestSuite_beta/svggen/animate-elem-14-t.svg new file mode 100755 index 00000000..f98d3cab --- /dev/null +++ b/test/W3C_SVG_12_TinyTestSuite_beta/svggen/animate-elem-14-t.svg @@ -0,0 +1,50 @@ + + + + + + + + + + $RCSfile: animate-elem-14-t.svg,v $ + + + + + + + + + calcMode="discrete" + keyTimes="0;.2;.4;.6" + + + Time (s): + 0 + + 2 + + 4 + + 6 + + + + + + + + + $Revision: 1.8 $ + + + + + diff --git a/test/W3C_SVG_12_TinyTestSuite_beta/svggen/animate-elem-15-t.svg b/test/W3C_SVG_12_TinyTestSuite_beta/svggen/animate-elem-15-t.svg new file mode 100755 index 00000000..b3468839 --- /dev/null +++ b/test/W3C_SVG_12_TinyTestSuite_beta/svggen/animate-elem-15-t.svg @@ -0,0 +1,50 @@ + + + + + + + + + + $RCSfile: animate-elem-15-t.svg,v $ + + + + + + + + + calcMode="paced" + keyTimes="0;.25;.5;1" + + + Time (s): + 0 + + 1.5 + + 4 + + 9 + + + + + + + + + $Revision: 1.8 $ + + + + + diff --git a/test/W3C_SVG_12_TinyTestSuite_beta/svggen/animate-elem-17-t.svg b/test/W3C_SVG_12_TinyTestSuite_beta/svggen/animate-elem-17-t.svg new file mode 100755 index 00000000..4905fe7f --- /dev/null +++ b/test/W3C_SVG_12_TinyTestSuite_beta/svggen/animate-elem-17-t.svg @@ -0,0 +1,50 @@ + + + + + + + + + + $RCSfile: animate-elem-17-t.svg,v $ + + + + + + + + + calcMode="spline" + keyTimes="0;.25;.5;1" + + + Time (s): + 0 + + 2 + + 4 + + 8 + + + + + + + + + $Revision: 1.8 $ + + + + + diff --git a/test/W3C_SVG_12_TinyTestSuite_beta/svggen/animate-elem-19-t.svg b/test/W3C_SVG_12_TinyTestSuite_beta/svggen/animate-elem-19-t.svg new file mode 100755 index 00000000..798d48ad --- /dev/null +++ b/test/W3C_SVG_12_TinyTestSuite_beta/svggen/animate-elem-19-t.svg @@ -0,0 +1,50 @@ + + + + + + + + + + $RCSfile: animate-elem-19-t.svg,v $ + + + + + + + + + calcMode="linear" + keyTimes="0;.5;.75;1" + + + Time (s): + 0 + + 4 + + 6 + + 8 + + + + + + + + + $Revision: 1.8 $ + + + + + diff --git a/test/W3C_SVG_12_TinyTestSuite_beta/svggen/animate-elem-20-t.svg b/test/W3C_SVG_12_TinyTestSuite_beta/svggen/animate-elem-20-t.svg new file mode 100755 index 00000000..eb3caac6 --- /dev/null +++ b/test/W3C_SVG_12_TinyTestSuite_beta/svggen/animate-elem-20-t.svg @@ -0,0 +1,47 @@ + + + + + + + + + + $RCSfile: animate-elem-20-t.svg,v $ + + + + + + + + + + + + + + + + + Fade in + + + + Fade out + + + + + $Revision: 1.9 $ + + + + + diff --git a/test/W3C_SVG_12_TinyTestSuite_beta/svggen/animate-elem-201-t.svg b/test/W3C_SVG_12_TinyTestSuite_beta/svggen/animate-elem-201-t.svg new file mode 100755 index 00000000..cc22eeaf --- /dev/null +++ b/test/W3C_SVG_12_TinyTestSuite_beta/svggen/animate-elem-201-t.svg @@ -0,0 +1,121 @@ + + + + + + + + + + $RCSfile: animate-elem-201-t.svg,v $ + + + + + + + + + + animate-elements active intervals + + 0-1s + 2-4s + 6-8s + >10s + + 1-2s + 4-6s + 8-10s + + + + + + + + + + + + + + + Begin-value without matching end-value + + + + + + + + Two begin-values share one end-value + + + + + + + + Second interval will start late + + + + + + + + + + Several sync-dependencies to one sync-base + + + + + + + + + + Intervals are ended by an event-value + + + + + + + + + + + $Revision: 1.5 $ + + + + + diff --git a/test/W3C_SVG_12_TinyTestSuite_beta/svggen/animate-elem-202-t.svg b/test/W3C_SVG_12_TinyTestSuite_beta/svggen/animate-elem-202-t.svg new file mode 100755 index 00000000..0ec585a0 --- /dev/null +++ b/test/W3C_SVG_12_TinyTestSuite_beta/svggen/animate-elem-202-t.svg @@ -0,0 +1,106 @@ + + + + + + + + + + $RCSfile: animate-elem-202-t.svg,v $ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + animateMotion + accumulate + red = wrong + circle not centered + below path = wrong + + + + + + $Revision: 1.4 $ + + + + + diff --git a/test/W3C_SVG_12_TinyTestSuite_beta/svggen/animate-elem-203-t.svg b/test/W3C_SVG_12_TinyTestSuite_beta/svggen/animate-elem-203-t.svg new file mode 100755 index 00000000..4de7085a --- /dev/null +++ b/test/W3C_SVG_12_TinyTestSuite_beta/svggen/animate-elem-203-t.svg @@ -0,0 +1,106 @@ + + + + + + + + + + $RCSfile: animate-elem-203-t.svg,v $ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + animateMotion + additive + red = wrong + motion = wrong + circle not centered + below marker = wrong + timing = circle gray stroked: end of test at 30s + + + + + + $Revision: 1.4 $ + + + + + diff --git a/test/W3C_SVG_12_TinyTestSuite_beta/svggen/animate-elem-205-t.svg b/test/W3C_SVG_12_TinyTestSuite_beta/svggen/animate-elem-205-t.svg new file mode 100755 index 00000000..91998a08 --- /dev/null +++ b/test/W3C_SVG_12_TinyTestSuite_beta/svggen/animate-elem-205-t.svg @@ -0,0 +1,304 @@ + + + + + + + + + + $RCSfile: animate-elem-205-t.svg,v $ + + + + + + + + + + + + + + + + + + + + + + + + + + + + marker + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + red: four times animateMotion using mpath + + + + + + + + + + + + + + + + + + blue: animateMotion calcMode linear using mpath + + + + + + + + + + + + animateMotion + calcMode linear + red = wrong + no animation = wrong + circle not centered + below paths = wrong + timing = lightened markers + + + + + $Revision: 1.4 $ + + + + + diff --git a/test/W3C_SVG_12_TinyTestSuite_beta/svggen/animate-elem-206-t.svg b/test/W3C_SVG_12_TinyTestSuite_beta/svggen/animate-elem-206-t.svg new file mode 100755 index 00000000..ccae8c95 --- /dev/null +++ b/test/W3C_SVG_12_TinyTestSuite_beta/svggen/animate-elem-206-t.svg @@ -0,0 +1,129 @@ + + + + + + + + + + $RCSfile: animate-elem-206-t.svg,v $ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + first test + + + + + + + + + + second test + + + + + + + + + + + + animateMotion + with animated mpath + red = wrong + no animation = wrong + circle and rectangle not + centered below path = wrong + + + + $Revision: 1.4 $ + + + + + diff --git a/test/W3C_SVG_12_TinyTestSuite_beta/svggen/animate-elem-207-t.svg b/test/W3C_SVG_12_TinyTestSuite_beta/svggen/animate-elem-207-t.svg new file mode 100755 index 00000000..d9fbe0ec --- /dev/null +++ b/test/W3C_SVG_12_TinyTestSuite_beta/svggen/animate-elem-207-t.svg @@ -0,0 +1,275 @@ + + + + + + + + + + $RCSfile: animate-elem-207-t.svg,v $ + + + + + + + + + + + + + + + + + + + + + + + + + + marker + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + red: three times animateMotion using mpath, final position with values + + + + + + + + + + + + + + + + blue: animateMotion calcMode paced using mpath + + + + + + + + + + animateMotion + calcMode paced + red = wrong + no animation = wrong + circle not centered + below paths = wrong + timing = lightened markers + + + + + $Revision: 1.6 $ + + + + + diff --git a/test/W3C_SVG_12_TinyTestSuite_beta/svggen/animate-elem-209-t.svg b/test/W3C_SVG_12_TinyTestSuite_beta/svggen/animate-elem-209-t.svg new file mode 100755 index 00000000..8f1caf52 --- /dev/null +++ b/test/W3C_SVG_12_TinyTestSuite_beta/svggen/animate-elem-209-t.svg @@ -0,0 +1,241 @@ + + + + + + + + + + $RCSfile: animate-elem-209-t.svg,v $ + + + + + + + + + + + + + + + + dark red values comparsion for from-to animations - if visible fail + + + + + + + + + + + + + + + + + + + + + + + + red values comparsion for from-to animations - if visible fail + + + + + + + + + + + + + + blue from-to animations + + + + + + + + + + + + + + + + + + + dark red values comparsion for from-by animations - if visible fail + + + + + + + + + + + + + + + + + + + + + + + + + red values comparsion for from-by animations - if visible fail + + + + + + + + + + + + + + blue from-by animations + + + + + + + + + + + + + + + + + + + dark red values comparsion for by animations - if visible fail + + + + + + + + + + + + + + + + + + + + + + + + red values comparsion for by animations - if visible fail + + + + + + + + + + + + + + blue by animations + + + + + + + + + + + + + + + + + compare by, from-by, from-to + with values animations + red=wrong + + + + + $Revision: 1.5 $ + + + + + \ No newline at end of file diff --git a/test/W3C_SVG_12_TinyTestSuite_beta/svggen/animate-elem-21-t.svg b/test/W3C_SVG_12_TinyTestSuite_beta/svggen/animate-elem-21-t.svg new file mode 100755 index 00000000..4d6957c8 --- /dev/null +++ b/test/W3C_SVG_12_TinyTestSuite_beta/svggen/animate-elem-21-t.svg @@ -0,0 +1,55 @@ + + + + + + + + + + $RCSfile: animate-elem-21-t.svg,v $ + + + + + + + + + + + + + + + + + + + + + + + + + Fade in + + + + Fade out + + + + + $Revision: 1.9 $ + + + + + diff --git a/test/W3C_SVG_12_TinyTestSuite_beta/svggen/animate-elem-210-t.svg b/test/W3C_SVG_12_TinyTestSuite_beta/svggen/animate-elem-210-t.svg new file mode 100755 index 00000000..80948f38 --- /dev/null +++ b/test/W3C_SVG_12_TinyTestSuite_beta/svggen/animate-elem-210-t.svg @@ -0,0 +1,278 @@ + + + + + + + + + + $RCSfile: animate-elem-210-t.svg,v $ + + + + + + + + + + + + from-to animation for fill compared with values for stroke + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + from-by animation for fill compared with values for stroke + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + by animation for fill compared with values for stroke + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + compare from-to, from-by, by + with values animate, animateColor + different colored rings in circle=wrong + + attributes noted: + attributes noted: + + cumulative + additive + + cumulative + not additive + + not cumulative + additive + + not cumulative + not additive + + cumulative + additive + + cumulative + not additive + + not cumulative + additive + + not cumulative + not additive + + + + + $Revision: 1.5 $ + + + + + \ No newline at end of file diff --git a/test/W3C_SVG_12_TinyTestSuite_beta/svggen/animate-elem-211-t.svg b/test/W3C_SVG_12_TinyTestSuite_beta/svggen/animate-elem-211-t.svg new file mode 100755 index 00000000..f69ad8c9 --- /dev/null +++ b/test/W3C_SVG_12_TinyTestSuite_beta/svggen/animate-elem-211-t.svg @@ -0,0 +1,239 @@ + + + + + + + + + + $RCSfile: animate-elem-211-t.svg,v $ + + + + + + + + + + + + + + + + + + + + + + + + + from-to animateMotion + + dark red values comparsion for from-to animations - if visible fail + + + + + + + + + + + + + + + + + + + + + + red values comparsion for from-to animations - if visible fail + + + + + + + + + + blue from-to animations + + + + + + + + + + + + + + + + from-by animateMotion + + dark red values comparsion for from-by animations - if visible fail + + + + + + + + + + + + + + + + + + + + + + red values comparsion for from-by animations - if visible fail + + + + + + + + + + blue from-by animations + + + + + + + + + + + + + + + by animateMotion + + dark red values comparsion for by animations - if visible fail + + + + + + + + + + + + + + + + + + + + + + red values comparsion for by animations - if visible fail + + + + + + + + + + blue by animations + + + + + + + + + + + + + + + + + compare from-to, from-by, by + with values animateMotion + red=wrong, no animation: wrong + attributes noted: + + cumulative/additive; + cumulative/not additive; + + + not cumulative/additive; + not cumulative/not additive + + + + + + $Revision: 1.5 $ + + + + + \ No newline at end of file diff --git a/test/W3C_SVG_12_TinyTestSuite_beta/svggen/animate-elem-212-t.svg b/test/W3C_SVG_12_TinyTestSuite_beta/svggen/animate-elem-212-t.svg new file mode 100755 index 00000000..43a7c226 --- /dev/null +++ b/test/W3C_SVG_12_TinyTestSuite_beta/svggen/animate-elem-212-t.svg @@ -0,0 +1,248 @@ + + + + + + + + + + $RCSfile: animate-elem-212-t.svg,v $ + + + + + + + + + + + + + + + + + + + + + + + + + from-to animateTransform rotate + + + + + + + + + + + + + + + + + + + + + + dark red values comparsion for from-to animations - if visible fail + + + + + + red values comparsion for from-to animations - if visible fail + + + + + + + + + + blue from-to animations + + + + + + + + + + + + + + + + from-by animateTransform rotate + + + + + + + + + + + + + + + + + + + + + + dark red values comparsion for from-by animations - if visible fail + + + + + + red values comparsion for from-by animations - if visible fail + + + + + + + + + + blue from-by animations + + + + + + + + + + + + + + + by animateTransform rotate + + + + dark red values comparsion for by animations - if visible fail + + + + + + + + + + + + + + + + + + + + + red values comparsion for by animations - if visible fail + + + + + + + + + + blue by animations + + + + + + + + + + + + + + + + animateTransform rotate + compare from-to, from-by, by + with values + red=wrong, no animation: wrong + attributes noted: + + cumulative/additive; + cumulative/not additive; + + + not cumulative/additive; + not cumulative/not additive + + + + + + $Revision: 1.5 $ + + + + + \ No newline at end of file diff --git a/test/W3C_SVG_12_TinyTestSuite_beta/svggen/animate-elem-213-t.svg b/test/W3C_SVG_12_TinyTestSuite_beta/svggen/animate-elem-213-t.svg new file mode 100755 index 00000000..36630ca9 --- /dev/null +++ b/test/W3C_SVG_12_TinyTestSuite_beta/svggen/animate-elem-213-t.svg @@ -0,0 +1,250 @@ + + + + + + + + + + $RCSfile: animate-elem-213-t.svg,v $ + + + + + + + + + + + + + + + + + + + + + + + + + from-to animateTransform rotate + + + + + + + + + + + + + + + + + + + + + + dark red values comparsion for from-to animations - if visible fail + + + + + + red values comparsion for from-to animations - if visible fail + + + + + + + + + + blue from-to animations + + + + + + + + + + + + + + + + from-by animateTransform rotate + + + + + + + + + + + + + + + + + + + + + + dark red values comparsion for from-by animations - if visible fail + + + + + red values comparsion for from-by animations - if visible fail + + + + + + + + + + blue from-by animations + + + + + + + + + + + + + + + by animateTransform rotate + + + + + + + + + + + + + + + + + + + + + + dark red values comparsion for by animations - if visible fail + + + + + + + red values comparsion for by animations - if visible fail + + + + + + + + + blue by animations + + + + + + + + + + + + + + + + animateTransform rotate + compare from-to, from-by, by + with values + red=wrong, no animation: wrong + attributes noted: + + cumulative/additive; + cumulative/not additive; + + + not cumulative/additive; + not cumulative/not additive + + + + + + $Revision: 1.5 $ + + + + + \ No newline at end of file diff --git a/test/W3C_SVG_12_TinyTestSuite_beta/svggen/animate-elem-214-t.svg b/test/W3C_SVG_12_TinyTestSuite_beta/svggen/animate-elem-214-t.svg new file mode 100755 index 00000000..299bf057 --- /dev/null +++ b/test/W3C_SVG_12_TinyTestSuite_beta/svggen/animate-elem-214-t.svg @@ -0,0 +1,248 @@ + + + + + + + + + + $RCSfile: animate-elem-214-t.svg,v $ + + + + + + + + + + + + + + + + + + + + + + + + + from-to animateTransform scale + + + + + + + + + + + + + + + + + + + + + + dark red values comparsion for from-to animations - if visible fail + + + + + red values comparsion for from-to animations - if visible fail + + + + + + + + + + blue from-to animations + + + + + + + + + + + + + + + + from-by animateTransform scale + + + + + + + + + + + + + + + + + + + + + + dark red values comparsion for from-by animations - if visible fail + + + + + + red values comparsion for from-by animations - if visible fail + + + + + + + + + + blue from-by animations + + + + + + + + + + + + + + + by animateTransform scale + + + + + + + + + + + + + + + + + + + + dark red values comparsion for by animations - if visible fail + + + + + red values comparsion for by animations - if visible fail + + + + + + + + + + blue by animations + + + + + + + + + + + + + + + + + animateTransform scale + compare from-to, from-by, by + with values + red=wrong, no animation: wrong + attributes noted: + + cumulative/additive; + cumulative/not additive; + + + not cumulative/additive; + not cumulative/not additive + + + + + + $Revision: 1.5 $ + + + + + \ No newline at end of file diff --git a/test/W3C_SVG_12_TinyTestSuite_beta/svggen/animate-elem-215-t.svg b/test/W3C_SVG_12_TinyTestSuite_beta/svggen/animate-elem-215-t.svg new file mode 100755 index 00000000..8955630a --- /dev/null +++ b/test/W3C_SVG_12_TinyTestSuite_beta/svggen/animate-elem-215-t.svg @@ -0,0 +1,240 @@ + + + + + + + + + + $RCSfile: animate-elem-215-t.svg,v $ + + + + + + + + + + + + + + + + + + + + + + + + + from-to animateTransform translate + + dark red values comparsion for from-to animations - if visible fail + + + + + + + + + + + + + + + + + + + + + + red values comparsion for from-to animations - if visible fail + + + + + + + + + + blue from-to animations + + + + + + + + + + + + + + + + from-by animateTransform translate + + dark red values comparsion for from-by animations - if visible fail + + + + + + + + + + + + + + + + + + + + + + red values comparsion for from-by animations - if visible fail + + + + + + + + + + blue from-by animations + + + + + + + + + + + + + + + by animateTransform translate + + dark red values comparsion for by animations - if visible fail + + + + + + + + + + + + + + + + + + + + + + red values comparsion for by animations - if visible fail + + + + + + + + + + blue by animations + + + + + + + + + + + + + + + + + animateTransform translate + compare from-to, from-by, by + with values and animateMotion + red=wrong, no animation: wrong + attributes noted: + + cumulative/additive; + cumulative/not additive; + + + not cumulative/additive; + not cumulative/not additive + + + + + + $Revision: 1.5 $ + + + + + \ No newline at end of file diff --git a/test/W3C_SVG_12_TinyTestSuite_beta/svggen/animate-elem-216-t.svg b/test/W3C_SVG_12_TinyTestSuite_beta/svggen/animate-elem-216-t.svg new file mode 100755 index 00000000..f8975c85 --- /dev/null +++ b/test/W3C_SVG_12_TinyTestSuite_beta/svggen/animate-elem-216-t.svg @@ -0,0 +1,259 @@ + + + + + + + + + + $RCSfile: animate-elem-216-t.svg,v $ + + + + + + + + + + + + + + + + + + + + + + + + + from-to animateTransform skewX + + + + + + + + + + + + + + + + + + + + + + + + + dark red values comparsion for from-to animations - if visible fail + + + + + + red values comparsion for from-to animations - if visible fail + + + + + + + + + + blue from-to animations + + + + + + + + + + + + + + + + from-by animateTransform skewX + + + + + + + + + + + + + + + + + + + + + + + + + dark red values comparsion for from-by animations - if visible fail + + + + + + red values comparsion for from-by animations - if visible fail + + + + + + + + + + blue from-by animations + + + + + + + + + + + + + + + by animateTransform skewX + + + + + + + + + + + + + + + + + + + + + + + + dark red values comparsion for by animations - if visible fail + + + + + red values comparsion for by animations - if visible fail + + + + + + + + + + blue by animations + + + + + + + + + + + + + + + + + animateTransform skewX + compare from-to, from-by, by + with values + red=wrong, no animation: wrong + attributes noted: + + cumulative/additive; + cumulative/not additive; + + + not cumulative/additive; + not cumulative/not additive + + + + + + $Revision: 1.5 $ + + + + + \ No newline at end of file diff --git a/test/W3C_SVG_12_TinyTestSuite_beta/svggen/animate-elem-217-t.svg b/test/W3C_SVG_12_TinyTestSuite_beta/svggen/animate-elem-217-t.svg new file mode 100755 index 00000000..eb1815c1 --- /dev/null +++ b/test/W3C_SVG_12_TinyTestSuite_beta/svggen/animate-elem-217-t.svg @@ -0,0 +1,259 @@ + + + + + + + + + + $RCSfile: animate-elem-217-t.svg,v $ + + + + + + + + + + + + + + + + + + + + + + + + + from-to animateTransform skewY + + + + + + + + + + + + + + + + + + + + + + + + + dark red values comparsion for from-to animations - if visible fail + + + + + + red values comparsion for from-to animations - if visible fail + + + + + + + + + + blue from-to animations + + + + + + + + + + + + + + + + from-by animateTransform skewY + + + + + + + + + + + + + + + + + + + + + + + + + dark red values comparsion for from-by animations - if visible fail + + + + + red values comparsion for from-by animations - if visible fail + + + + + + + + + + blue from-by animations + + + + + + + + + + + + + + + by animateTransform skewY + + + + + + + + + + + + + + + + + + + + + + + + dark red values comparsion for by animations - if visible fail + + + + + + red values comparsion for by animations - if visible fail + + + + + + + + + + blue by animations + + + + + + + + + + + + + + + + + animateTransform skewY + compare from-to, from-by, by + with values + red=wrong, no animation: wrong + attributes noted: + + cumulative/additive; + cumulative/not additive; + + + not cumulative/additive; + not cumulative/not additive + + + + + + $Revision: 1.5 $ + + + + + \ No newline at end of file diff --git a/test/W3C_SVG_12_TinyTestSuite_beta/svggen/animate-elem-218-t.svg b/test/W3C_SVG_12_TinyTestSuite_beta/svggen/animate-elem-218-t.svg new file mode 100755 index 00000000..74698e34 --- /dev/null +++ b/test/W3C_SVG_12_TinyTestSuite_beta/svggen/animate-elem-218-t.svg @@ -0,0 +1,85 @@ + + + + + + + + + + $RCSfile: animate-elem-218-t.svg,v $ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + xml:id or id? + identifiy the animated element + red=wrong + timing: set at 2s + + + + + $Revision: 1.5 $ + + + + + \ No newline at end of file diff --git a/test/W3C_SVG_12_TinyTestSuite_beta/svggen/animate-elem-219-t.svg b/test/W3C_SVG_12_TinyTestSuite_beta/svggen/animate-elem-219-t.svg new file mode 100755 index 00000000..85676159 --- /dev/null +++ b/test/W3C_SVG_12_TinyTestSuite_beta/svggen/animate-elem-219-t.svg @@ -0,0 +1,137 @@ + + + + + + + + + + $RCSfile: animate-elem-219-t.svg,v $ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + attributeType and priority + red=wrong + + + + + $Revision: 1.7 $ + + + + + \ No newline at end of file diff --git a/test/W3C_SVG_12_TinyTestSuite_beta/svggen/animate-elem-22-t.svg b/test/W3C_SVG_12_TinyTestSuite_beta/svggen/animate-elem-22-t.svg new file mode 100755 index 00000000..292124dd --- /dev/null +++ b/test/W3C_SVG_12_TinyTestSuite_beta/svggen/animate-elem-22-t.svg @@ -0,0 +1,47 @@ + + + + + + + + + + $RCSfile: animate-elem-22-t.svg,v $ + + + + + + + + + + + Yellow rect at time 0s + + Yellow rect at time 3s + + Yellow rect at time 9s + + + + + + + + + + + $Revision: 1.11 $ + + + + + diff --git a/test/W3C_SVG_12_TinyTestSuite_beta/svggen/animate-elem-221-t.svg b/test/W3C_SVG_12_TinyTestSuite_beta/svggen/animate-elem-221-t.svg new file mode 100755 index 00000000..3806c063 --- /dev/null +++ b/test/W3C_SVG_12_TinyTestSuite_beta/svggen/animate-elem-221-t.svg @@ -0,0 +1,78 @@ + + + + + + + + + + $RCSfile: animate-elem-221-t.svg,v $ + + + + + + + + + + + + + + + + + + + + + + begin, end, dur, max + red=wrong + circle not centered + below gray path=wrong + no animation=wrong + + + + + + $Revision: 1.6 $ + + + + + diff --git a/test/W3C_SVG_12_TinyTestSuite_beta/svggen/animate-elem-222-t.svg b/test/W3C_SVG_12_TinyTestSuite_beta/svggen/animate-elem-222-t.svg new file mode 100755 index 00000000..ce91dbec --- /dev/null +++ b/test/W3C_SVG_12_TinyTestSuite_beta/svggen/animate-elem-222-t.svg @@ -0,0 +1,113 @@ + + + + + + + + + + $RCSfile: animate-elem-222-t.svg,v $ + + + + + + + + + + + + + red comparison using animateMotion + + + + + + + + + + + + + blue test using from-to animate with begin, end, dur, min, fill + + + + + + + + + + + + + begin, end, dur, min + red=wrong + + + + + + $Revision: 1.6 $ + + + + + \ No newline at end of file diff --git a/test/W3C_SVG_12_TinyTestSuite_beta/svggen/animate-elem-225-t.svg b/test/W3C_SVG_12_TinyTestSuite_beta/svggen/animate-elem-225-t.svg new file mode 100755 index 00000000..140c90a4 --- /dev/null +++ b/test/W3C_SVG_12_TinyTestSuite_beta/svggen/animate-elem-225-t.svg @@ -0,0 +1,49 @@ + + + + + + + + + + $RCSfile: animate-elem-225-t.svg,v $ + + + + + + + + + + + + + + + + + + + + + + + + + $Revision: 1.5 $ + + + + + diff --git a/test/W3C_SVG_12_TinyTestSuite_beta/svggen/animate-elem-226-t.svg b/test/W3C_SVG_12_TinyTestSuite_beta/svggen/animate-elem-226-t.svg new file mode 100755 index 00000000..f542676b --- /dev/null +++ b/test/W3C_SVG_12_TinyTestSuite_beta/svggen/animate-elem-226-t.svg @@ -0,0 +1,79 @@ + + + + + + + + + + $RCSfile: animate-elem-226-t.svg,v $ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + QName in attributeName + + + + $Revision: 1.4 $ + + + + + \ No newline at end of file diff --git a/test/W3C_SVG_12_TinyTestSuite_beta/svggen/animate-elem-227-t.svg b/test/W3C_SVG_12_TinyTestSuite_beta/svggen/animate-elem-227-t.svg new file mode 100755 index 00000000..7fa3ddd9 --- /dev/null +++ b/test/W3C_SVG_12_TinyTestSuite_beta/svggen/animate-elem-227-t.svg @@ -0,0 +1,58 @@ + + + + + + + + + + $RCSfile: animate-elem-227-t.svg,v $ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + $Revision: 1.4 $ + + + + + diff --git a/test/W3C_SVG_12_TinyTestSuite_beta/svggen/animate-elem-23-t.svg b/test/W3C_SVG_12_TinyTestSuite_beta/svggen/animate-elem-23-t.svg new file mode 100755 index 00000000..6aae69f2 --- /dev/null +++ b/test/W3C_SVG_12_TinyTestSuite_beta/svggen/animate-elem-23-t.svg @@ -0,0 +1,52 @@ + + + + + + + + + + $RCSfile: animate-elem-23-t.svg,v $ + + + + + + + + + + + Color at 3s + + + Color at 6s + + + Color at 9s + + + + + + + + + + + + + + $Revision: 1.9 $ + + + + + diff --git a/test/W3C_SVG_12_TinyTestSuite_beta/svggen/animate-elem-24-t.svg b/test/W3C_SVG_12_TinyTestSuite_beta/svggen/animate-elem-24-t.svg new file mode 100755 index 00000000..f09766c2 --- /dev/null +++ b/test/W3C_SVG_12_TinyTestSuite_beta/svggen/animate-elem-24-t.svg @@ -0,0 +1,69 @@ + + + + + + + + + + $RCSfile: animate-elem-24-t.svg,v $ + + + + + + + + + + + + + + + + + + + + + + + + + + + Text from 0s to 3s + Text at 6s + Text at 9s + + + + It's alive! + It's alive! + It's alive! + + + + + It's alive! + + + + + + + + $Revision: 1.8 $ + + + + + diff --git a/test/W3C_SVG_12_TinyTestSuite_beta/svggen/animate-elem-25-t.svg b/test/W3C_SVG_12_TinyTestSuite_beta/svggen/animate-elem-25-t.svg new file mode 100755 index 00000000..e81aae6d --- /dev/null +++ b/test/W3C_SVG_12_TinyTestSuite_beta/svggen/animate-elem-25-t.svg @@ -0,0 +1,49 @@ + + + + + + + + + + $RCSfile: animate-elem-25-t.svg,v $ + + + + + + + + + Test animation options for specifying the target attribute/property. + + 0-3 sec. + + at 6 sec. + + + + + 0-6 sec. + + at 9 sec. + + + + + + + + $Revision: 1.9 $ + + + + + diff --git a/test/W3C_SVG_12_TinyTestSuite_beta/svggen/animate-elem-26-t.svg b/test/W3C_SVG_12_TinyTestSuite_beta/svggen/animate-elem-26-t.svg new file mode 100755 index 00000000..a6ef9ed0 --- /dev/null +++ b/test/W3C_SVG_12_TinyTestSuite_beta/svggen/animate-elem-26-t.svg @@ -0,0 +1,50 @@ + + + + + + + + + + $RCSfile: animate-elem-26-t.svg,v $ + + + + + + + + + + + + + + + + anim. 1 + + + + + + + + + anim. 2 + + + + $Revision: 1.9 $ + + + + + diff --git a/test/W3C_SVG_12_TinyTestSuite_beta/svggen/animate-elem-27-t.svg b/test/W3C_SVG_12_TinyTestSuite_beta/svggen/animate-elem-27-t.svg new file mode 100755 index 00000000..d9370d2c --- /dev/null +++ b/test/W3C_SVG_12_TinyTestSuite_beta/svggen/animate-elem-27-t.svg @@ -0,0 +1,48 @@ + + + + + + + + + + $RCSfile: animate-elem-27-t.svg,v $ + + + + + + + + + Test animation options for specifying the target element. + + 0 to 3 sec. + + at 6 sec. + + + + 0 to 6 sec. + + at 9 sec. + + + + + + + + $Revision: 1.8 $ + + + + + diff --git a/test/W3C_SVG_12_TinyTestSuite_beta/svggen/animate-elem-28-t.svg b/test/W3C_SVG_12_TinyTestSuite_beta/svggen/animate-elem-28-t.svg new file mode 100755 index 00000000..9d4c8444 --- /dev/null +++ b/test/W3C_SVG_12_TinyTestSuite_beta/svggen/animate-elem-28-t.svg @@ -0,0 +1,42 @@ + + + + + + + + + + $RCSfile: animate-elem-28-t.svg,v $ + + + + + + + + + + + + + + + + + + + + + $Revision: 1.9 $ + + + + + diff --git a/test/W3C_SVG_12_TinyTestSuite_beta/svggen/animate-elem-29-t.svg b/test/W3C_SVG_12_TinyTestSuite_beta/svggen/animate-elem-29-t.svg new file mode 100755 index 00000000..35145fe8 --- /dev/null +++ b/test/W3C_SVG_12_TinyTestSuite_beta/svggen/animate-elem-29-t.svg @@ -0,0 +1,48 @@ + + + + + + + + + + $RCSfile: animate-elem-29-t.svg,v $ + + + + + + + + + + + + + + + + + + Fade in + + + + Fade out + + + + + $Revision: 1.8 $ + + + + + diff --git a/test/W3C_SVG_12_TinyTestSuite_beta/svggen/animate-elem-30-t.svg b/test/W3C_SVG_12_TinyTestSuite_beta/svggen/animate-elem-30-t.svg new file mode 100755 index 00000000..86b13375 --- /dev/null +++ b/test/W3C_SVG_12_TinyTestSuite_beta/svggen/animate-elem-30-t.svg @@ -0,0 +1,117 @@ + + + + + + + + + + $RCSfile: animate-elem-30-t.svg,v $ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + $Revision: 1.7 $ + + + + + diff --git a/test/W3C_SVG_12_TinyTestSuite_beta/svggen/animate-elem-31-t.svg b/test/W3C_SVG_12_TinyTestSuite_beta/svggen/animate-elem-31-t.svg new file mode 100755 index 00000000..145264a7 --- /dev/null +++ b/test/W3C_SVG_12_TinyTestSuite_beta/svggen/animate-elem-31-t.svg @@ -0,0 +1,95 @@ + + + + + + + + + + $RCSfile: animate-elem-31-t.svg,v $ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + display + visibility + Test of display attribute animation. + Circles with same color should be visible at same time. + + + $Revision: 1.7 $ + + + + + diff --git a/test/W3C_SVG_12_TinyTestSuite_beta/svggen/animate-elem-32-t.svg b/test/W3C_SVG_12_TinyTestSuite_beta/svggen/animate-elem-32-t.svg new file mode 100755 index 00000000..5d61a16b --- /dev/null +++ b/test/W3C_SVG_12_TinyTestSuite_beta/svggen/animate-elem-32-t.svg @@ -0,0 +1,122 @@ + + + + + + + + + + $RCSfile: animate-elem-32-t.svg,v $ + + + + + + + + + + + + + Stroked + Unstroked + Zero width rect + Zero height rect + Zero radius circle + Zero x radius ellipse + Zero y radius ellipse + Zero length line + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + $Revision: 1.7 $ + + + + + diff --git a/test/W3C_SVG_12_TinyTestSuite_beta/svggen/animate-elem-33-t.svg b/test/W3C_SVG_12_TinyTestSuite_beta/svggen/animate-elem-33-t.svg new file mode 100755 index 00000000..ebd093cb --- /dev/null +++ b/test/W3C_SVG_12_TinyTestSuite_beta/svggen/animate-elem-33-t.svg @@ -0,0 +1,114 @@ + + + + + + + + + + $RCSfile: animate-elem-33-t.svg,v $ + + + + + + + + + + + 0 + 0.8-3.2 + 4 + + + + + + + + + + + + + + + 0 + 2 + 2 + 4 + + + + + + + + + + + + + + + + + + 3 + 2.6 + 0 + 1 + 4 + 1.4 + + + + + + + + + + + + + + + + 3 + 2.6 + 0 + 1 + 4 + 1.4 + + + + + + + + + + + + + + Test of keyPoints and keyTimes. + Number indicates the circle's passing time in seconds. + + + $Revision: 1.8 $ + + + + + diff --git a/test/W3C_SVG_12_TinyTestSuite_beta/svggen/animate-elem-34-t.svg b/test/W3C_SVG_12_TinyTestSuite_beta/svggen/animate-elem-34-t.svg new file mode 100755 index 00000000..780c6cee --- /dev/null +++ b/test/W3C_SVG_12_TinyTestSuite_beta/svggen/animate-elem-34-t.svg @@ -0,0 +1,71 @@ + + + + + + + + + + $RCSfile: animate-elem-34-t.svg,v $ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + Animation on: 'points' and 'fill-rule'. + Digit should match outline at indicated time. + Filled square should follow morphing digit discretely. + + + $Revision: 1.7 $ + + + + + diff --git a/test/W3C_SVG_12_TinyTestSuite_beta/svggen/animate-elem-35-t.svg b/test/W3C_SVG_12_TinyTestSuite_beta/svggen/animate-elem-35-t.svg new file mode 100755 index 00000000..a9cb0f31 --- /dev/null +++ b/test/W3C_SVG_12_TinyTestSuite_beta/svggen/animate-elem-35-t.svg @@ -0,0 +1,111 @@ + + + + + + + + + + $RCSfile: animate-elem-35-t.svg,v $ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + Animation on: 'stroke-dasharray', 'stroke-dashoffset', + 'stroke-miterlimit', 'stroke-linecap' and 'stroke-linejoin'. + + + $Revision: 1.5 $ + + + + + diff --git a/test/W3C_SVG_12_TinyTestSuite_beta/svggen/animate-elem-36-t.svg b/test/W3C_SVG_12_TinyTestSuite_beta/svggen/animate-elem-36-t.svg new file mode 100755 index 00000000..85dc34e8 --- /dev/null +++ b/test/W3C_SVG_12_TinyTestSuite_beta/svggen/animate-elem-36-t.svg @@ -0,0 +1,105 @@ + + + + + + + + + + $RCSfile: animate-elem-36-t.svg,v $ + + + + + + + + + + + + + + + + + + <animateTransform> on structure, + hyperlinking and text elements + + + + + + + + + + + <g> + + + + + + + + + <use> + + + + + + <image> + + + + + + + + + + + + + + + + <switch> + + + + + + + + + + + + + <a> + + + 123 + + <text> + + + + + $Revision: 1.7 $ + + + + + diff --git a/test/W3C_SVG_12_TinyTestSuite_beta/svggen/animate-elem-37-t.svg b/test/W3C_SVG_12_TinyTestSuite_beta/svggen/animate-elem-37-t.svg new file mode 100755 index 00000000..a0a09c74 --- /dev/null +++ b/test/W3C_SVG_12_TinyTestSuite_beta/svggen/animate-elem-37-t.svg @@ -0,0 +1,70 @@ + + + + + + + + + + $RCSfile: animate-elem-37-t.svg,v $ + + + + + + + + + <animateTransform> shape elements + + + + + <path> + + + + + <rect> + + + + + <circle> + + + + + <ellipse> + + + + + <line> + + + + + <polyline> + + + + + <polygon> + + + + + $Revision: 1.7 $ + + + + + diff --git a/test/W3C_SVG_12_TinyTestSuite_beta/svggen/animate-elem-38-t.svg b/test/W3C_SVG_12_TinyTestSuite_beta/svggen/animate-elem-38-t.svg new file mode 100755 index 00000000..b4b44f49 --- /dev/null +++ b/test/W3C_SVG_12_TinyTestSuite_beta/svggen/animate-elem-38-t.svg @@ -0,0 +1,68 @@ + + + + + + + + + + $RCSfile: animate-elem-38-t.svg,v $ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + Animation on: 'viewBox'. Flashing frame should + only appear at the edges of the SVG element. + + + $Revision: 1.9 $ + + + + + diff --git a/test/W3C_SVG_12_TinyTestSuite_beta/svggen/animate-elem-39-t.svg b/test/W3C_SVG_12_TinyTestSuite_beta/svggen/animate-elem-39-t.svg new file mode 100755 index 00000000..70d837cd --- /dev/null +++ b/test/W3C_SVG_12_TinyTestSuite_beta/svggen/animate-elem-39-t.svg @@ -0,0 +1,92 @@ + + + + + + + + + + $RCSfile: animate-elem-39-t.svg,v $ + + + + + + + + + + Use A + Use B + Use C + + <animate> on xlink:href + + + <set> + + + + + 38 + 02 + + + + + <a> + + + + + + <image> + + + + + + <use> + + + <animate> + + + + + 09 + 03 + + + + + <a> + + + + + + <image> + + + + + + <use> + + + + + $Revision: 1.7 $ + + + + + diff --git a/test/W3C_SVG_12_TinyTestSuite_beta/svggen/animate-elem-40-t.svg b/test/W3C_SVG_12_TinyTestSuite_beta/svggen/animate-elem-40-t.svg new file mode 100755 index 00000000..6f7f2683 --- /dev/null +++ b/test/W3C_SVG_12_TinyTestSuite_beta/svggen/animate-elem-40-t.svg @@ -0,0 +1,151 @@ + + + + + + + + + + $RCSfile: animate-elem-40-t.svg,v $ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + <animate> of x/y/width/height + + + + + + + + x/y on <use> + + + + + + + + x/y on <image> + + + + + + + + x/y on <rect> + + + + + + + + x/y on <rect> + + + 123 + + + + x/y on <text> + + + 12 + + + + + x/y on <text>(2) + + + + + + + + + + + + + + + + width/height + on <image> + + + + + + + + + + + + + + + + width/height + on <rect> + + + + + $Revision: 1.8 $ + + + + + diff --git a/test/W3C_SVG_12_TinyTestSuite_beta/svggen/animate-elem-41-t.svg b/test/W3C_SVG_12_TinyTestSuite_beta/svggen/animate-elem-41-t.svg new file mode 100755 index 00000000..1895d750 --- /dev/null +++ b/test/W3C_SVG_12_TinyTestSuite_beta/svggen/animate-elem-41-t.svg @@ -0,0 +1,332 @@ + + + + + + + + + + $RCSfile: animate-elem-41-t.svg,v $ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + graphics + + + fill + fill-rule + stroke + stroke-width + stroke-linecap + stroke-linejoin + stroke-miterlimit + stroke-dashoffset + display + visibility + color + + + element + <g> + <a> + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + $Revision: 1.7 $ + + + + + diff --git a/test/W3C_SVG_12_TinyTestSuite_beta/svggen/animate-elem-44-t.svg b/test/W3C_SVG_12_TinyTestSuite_beta/svggen/animate-elem-44-t.svg new file mode 100755 index 00000000..b0433f12 --- /dev/null +++ b/test/W3C_SVG_12_TinyTestSuite_beta/svggen/animate-elem-44-t.svg @@ -0,0 +1,55 @@ + + + + + + + + + + $RCSfile: animate-elem-44-t.svg,v $ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + Animation on the 'd' attribute of path. + Digit should match outline at indicated time. + Filled circle should follow morphing digit discretely. + + + $Revision: 1.7 $ + + + + + diff --git a/test/W3C_SVG_12_TinyTestSuite_beta/svggen/animate-elem-46-t.svg b/test/W3C_SVG_12_TinyTestSuite_beta/svggen/animate-elem-46-t.svg new file mode 100755 index 00000000..fead6644 --- /dev/null +++ b/test/W3C_SVG_12_TinyTestSuite_beta/svggen/animate-elem-46-t.svg @@ -0,0 +1,179 @@ + + + + + + + + + + $RCSfile: animate-elem-46-t.svg,v $ + + + + + + + + + + + A + + A + + A + + + + + + + + + A + A + A + + + + + A + A + A + + + + + A + A + A + + + + + A + A + A + + + + + text-anchor + font-size + font-family + font-style + font-weight + + + <text> + <g> + <a> + + + + + + + A + + + + + + A + + + + + A + + + + + + + A + + + + + + A + + + + + A + + + + + + + A + + + + + + A + + + + + A + + + + + + + A + + + + + + A + + + + + A + + + + + + + A + + + + + + A + + + + + A + + + + + + + $Revision: 1.7 $ + + + + + diff --git a/test/W3C_SVG_12_TinyTestSuite_beta/svggen/animate-elem-52-t.svg b/test/W3C_SVG_12_TinyTestSuite_beta/svggen/animate-elem-52-t.svg new file mode 100755 index 00000000..3deea50a --- /dev/null +++ b/test/W3C_SVG_12_TinyTestSuite_beta/svggen/animate-elem-52-t.svg @@ -0,0 +1,61 @@ + + + + + + + + + + $RCSfile: animate-elem-52-t.svg,v $ + + + + + + + + + A + B + C + D + + + + click A + + + + click B+2 + + + + click C+4 + + + + never + + + + + + Test of Eventbase targets. + Note that clicking rect D should give no result. + Clicking a rectangle should change its color at the + time for the click + delay as indicated in each rect. + + + $Revision: 1.10 $ + + + + + diff --git a/test/W3C_SVG_12_TinyTestSuite_beta/svggen/animate-elem-53-t.svg b/test/W3C_SVG_12_TinyTestSuite_beta/svggen/animate-elem-53-t.svg new file mode 100755 index 00000000..15ed3862 --- /dev/null +++ b/test/W3C_SVG_12_TinyTestSuite_beta/svggen/animate-elem-53-t.svg @@ -0,0 +1,79 @@ + + + + + + + + + + $RCSfile: animate-elem-53-t.svg,v $ + + + + + + + + + + + + + + 0s + + 3s + + 6s + + 9s + + + + + + + + + + + + + 0s + + 2.22s + + 6.66s + + 8s + + + + + + + + + + + Animation on: 'points' with 'calc-mode'. + Colored and black squares should match at indicated time. + Same colored squares (green and red) should match at all times + + + $Revision: 1.8 $ + + + + + diff --git a/test/W3C_SVG_12_TinyTestSuite_beta/svggen/animate-elem-61-t.svg b/test/W3C_SVG_12_TinyTestSuite_beta/svggen/animate-elem-61-t.svg new file mode 100755 index 00000000..86e87bc9 --- /dev/null +++ b/test/W3C_SVG_12_TinyTestSuite_beta/svggen/animate-elem-61-t.svg @@ -0,0 +1,101 @@ + + + + + + + + + + $RCSfile: animate-elem-61-t.svg,v $ + + + + + + + + + + + + multiple begin + + + 2 offsets + 2 sync bases + 2 repeat + 2 event base + 2 accessKeys + misc + + + 0-1s + 2s-4s + > 5s + + 1-2s + 4-5s + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + $Revision: 1.9 $ + + + + + diff --git a/test/W3C_SVG_12_TinyTestSuite_beta/svggen/animate-elem-64-t.svg b/test/W3C_SVG_12_TinyTestSuite_beta/svggen/animate-elem-64-t.svg new file mode 100755 index 00000000..7f07b48a --- /dev/null +++ b/test/W3C_SVG_12_TinyTestSuite_beta/svggen/animate-elem-64-t.svg @@ -0,0 +1,78 @@ + + + + + + + + + + $RCSfile: animate-elem-64-t.svg,v $ + + + + + + + + + + + + dur + + + clock value + indefinite + media + + + > 2s + 0s-2s + + never + > 0s + + + never + > 0s + + + + + + + + + + + + + + + + + + + + + + + + + + + + + $Revision: 1.7 $ + + + + + diff --git a/test/W3C_SVG_12_TinyTestSuite_beta/svggen/animate-elem-65-t.svg b/test/W3C_SVG_12_TinyTestSuite_beta/svggen/animate-elem-65-t.svg new file mode 100755 index 00000000..1b688af9 --- /dev/null +++ b/test/W3C_SVG_12_TinyTestSuite_beta/svggen/animate-elem-65-t.svg @@ -0,0 +1,113 @@ + + + + + + + + + + $RCSfile: animate-elem-65-t.svg,v $ + + + + + + + + + + + + min + + + no min / media + invalid min + min < active dur + min > active dur + min < repeat dur + min > repeat dur, remove + min > repeat dur, freeze + + + > 5s + 0s-5s + + never + > 0s + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + $Revision: 1.7 $ + + + + + diff --git a/test/W3C_SVG_12_TinyTestSuite_beta/svggen/animate-elem-66-t.svg b/test/W3C_SVG_12_TinyTestSuite_beta/svggen/animate-elem-66-t.svg new file mode 100755 index 00000000..5a4a84ca --- /dev/null +++ b/test/W3C_SVG_12_TinyTestSuite_beta/svggen/animate-elem-66-t.svg @@ -0,0 +1,117 @@ + + + + + + + + + + $RCSfile: animate-elem-66-t.svg,v $ + + + + + + + + + + + + max + min & max + + + no max / media + invalid max values + max < active dur + max > active dur + min < max + min = max + min > max (both ignored) + + + > 5s + 0s-5s + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + $Revision: 1.7 $ + + + + + diff --git a/test/W3C_SVG_12_TinyTestSuite_beta/svggen/animate-elem-67-t.svg b/test/W3C_SVG_12_TinyTestSuite_beta/svggen/animate-elem-67-t.svg new file mode 100755 index 00000000..93e9a688 --- /dev/null +++ b/test/W3C_SVG_12_TinyTestSuite_beta/svggen/animate-elem-67-t.svg @@ -0,0 +1,93 @@ + + + + + + + + + + $RCSfile: animate-elem-67-t.svg,v $ + + + + + + + + + + + + restart + + + no restart (defaults to always) + restart="always" + restart="whenNotActive" + restart="never" + reference + + + > 5s + 0s-5s + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + $Revision: 1.7 $ + + + + + diff --git a/test/W3C_SVG_12_TinyTestSuite_beta/svggen/animate-elem-68-t.svg b/test/W3C_SVG_12_TinyTestSuite_beta/svggen/animate-elem-68-t.svg new file mode 100755 index 00000000..d5abb93d --- /dev/null +++ b/test/W3C_SVG_12_TinyTestSuite_beta/svggen/animate-elem-68-t.svg @@ -0,0 +1,79 @@ + + + + + + + + + + $RCSfile: animate-elem-68-t.svg,v $ + + + + + + + + + + + + repeatCount + + + dur=5s repeatCount unspecified + dur=1s repeatCount=5 + dur=10s repeatCount=0.5 + dur=1s repeatCount=indefinite + end=5s + + + > 5s + 0s-5s + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + $Revision: 1.8 $ + + + + + diff --git a/test/W3C_SVG_12_TinyTestSuite_beta/svggen/animate-elem-69-t.svg b/test/W3C_SVG_12_TinyTestSuite_beta/svggen/animate-elem-69-t.svg new file mode 100755 index 00000000..c18685dc --- /dev/null +++ b/test/W3C_SVG_12_TinyTestSuite_beta/svggen/animate-elem-69-t.svg @@ -0,0 +1,87 @@ + + + + + + + + + + $RCSfile: animate-elem-69-t.svg,v $ + + + + + + + + + + + + repeatDur + + + dur=5s repeatDur unspecified + dur=1s repeatDur=5s + dur=0.5s repeatDur=5s + dur=1s repeatDur=indefinite + end=5s + dur=0.7s repeatDur=5s + + + > 5s + 0s-5s + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + $Revision: 1.8 $ + + + + + diff --git a/test/W3C_SVG_12_TinyTestSuite_beta/svggen/animate-elem-70-t.svg b/test/W3C_SVG_12_TinyTestSuite_beta/svggen/animate-elem-70-t.svg new file mode 100755 index 00000000..b9416ea7 --- /dev/null +++ b/test/W3C_SVG_12_TinyTestSuite_beta/svggen/animate-elem-70-t.svg @@ -0,0 +1,80 @@ + + + + + + + + + + $RCSfile: animate-elem-70-t.svg,v $ + + + + + + + + + + + + fill + + + fill unspecified (remove) + fill=remove + fill=freeze (with restart) + fill=freeze (no restart) + + + never + here + always + here + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + $Revision: 1.9 $ + + + + + diff --git a/test/W3C_SVG_12_TinyTestSuite_beta/svggen/animate-elem-77-t.svg b/test/W3C_SVG_12_TinyTestSuite_beta/svggen/animate-elem-77-t.svg new file mode 100755 index 00000000..d00db73b --- /dev/null +++ b/test/W3C_SVG_12_TinyTestSuite_beta/svggen/animate-elem-77-t.svg @@ -0,0 +1,208 @@ + + + + + + + + + + $RCSfile: animate-elem-77-t.svg,v $ + + + + + + + + + + + A + A + + + + + A + A + + + + + A + A + + + + + A + A + + + + + A + A + + + + + A + A + + + text + + + transform + text-anchor + font-size + font-family + font-style + font-weight + + + <text> + <g> + <a> + + + A + + + + + A + + + + + A + + + + A + + + + + + + A + + + + + + A + + + + + + A + + + + + + + + + A + + + + + + A + + + + + + A + + + + + + + + + A + + + + + + A + + + + + + A + + + + + + + + + A + + + + + + A + + + + + + A + + + + + + + + + A + + + + + + A + + + + + + A + + + + + + + + + $Revision: 1.7 $ + + + + + diff --git a/test/W3C_SVG_12_TinyTestSuite_beta/svggen/animate-elem-78-t.svg b/test/W3C_SVG_12_TinyTestSuite_beta/svggen/animate-elem-78-t.svg new file mode 100755 index 00000000..cf4a955e --- /dev/null +++ b/test/W3C_SVG_12_TinyTestSuite_beta/svggen/animate-elem-78-t.svg @@ -0,0 +1,353 @@ + + + + + + + + + + $RCSfile: animate-elem-78-t.svg,v $ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + graphics + + + fill + fill-rule + stroke + stroke-width + stroke-linecap + stroke-linejoin + stroke-miterlimit + stroke-dashoffset + display + visibility + color + + + 'Basic Shape' + <g> + <a> + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + $Revision: 1.8 $ + + + + + diff --git a/test/W3C_SVG_12_TinyTestSuite_beta/svggen/animate-elem-80-t.svg b/test/W3C_SVG_12_TinyTestSuite_beta/svggen/animate-elem-80-t.svg new file mode 100755 index 00000000..a41a073e --- /dev/null +++ b/test/W3C_SVG_12_TinyTestSuite_beta/svggen/animate-elem-80-t.svg @@ -0,0 +1,195 @@ + + + + + + + + + + $RCSfile: animate-elem-80-t.svg,v $ + + + + + + + + + + + + + + + + <animateTransform> + + + + + + + + + + + + + + + + + + + type=rotate + + + + + + + + + + + + + + + type=skewX + + + + + + + + + + + + + + + + + type=skewY + + + + + + + + + + + + + + + + + + type=scale + (sx and sy) + + + + + + + + + + + + + + + + + + + type=rotate + (with cx/cy) + + + + + + + + + + + + + + + + + + + + + type=translate + (tx only) + + + + + + + + + + + + + + + + + + + + + type=translate + (tx and ty) + + + + + + + + + + + + + + + + + + type=scale + (sx only) + + + + + $Revision: 1.8 $ + + + + + diff --git a/test/W3C_SVG_12_TinyTestSuite_beta/svggen/animate-elem-81-t.svg b/test/W3C_SVG_12_TinyTestSuite_beta/svggen/animate-elem-81-t.svg new file mode 100755 index 00000000..75fa8b2a --- /dev/null +++ b/test/W3C_SVG_12_TinyTestSuite_beta/svggen/animate-elem-81-t.svg @@ -0,0 +1,90 @@ + + + + + + + + + + $RCSfile: animate-elem-81-t.svg,v $ + + + + + + + + + + + + + + + + <animateTransform> + + + + + + + + additive=replace + + + + + + + + additive=sum + + + + + + + accumulate=none + additive=replace + + + + + + + accumulate=sum + additive=replace + + + + + + + accumulate=none + additive=sum + + + + + + + accumulate=sum + additive=sum + + + + + $Revision: 1.8 $ + + + + + diff --git a/test/W3C_SVG_12_TinyTestSuite_beta/svggen/animate-elem-82-t.svg b/test/W3C_SVG_12_TinyTestSuite_beta/svggen/animate-elem-82-t.svg new file mode 100755 index 00000000..a708c283 --- /dev/null +++ b/test/W3C_SVG_12_TinyTestSuite_beta/svggen/animate-elem-82-t.svg @@ -0,0 +1,164 @@ + + + + + + + + + + $RCSfile: animate-elem-82-t.svg,v $ + + + + + + + + + + + + + + + + <animateTransform> + + + + + + + + + + + + + + + same rotation + center + + + + + + + + + + + + + + + different rotation + centers + + + + + + + + + + + + + + + paced translation + + + + + + + + + + + + + + + linear translation + + + + + + + + + + + + + + + paced scale + + + + + + + + + + + + + + + linear scale + + + + + + + + + + + + + + + paced rotation + + + + + + + + + + + + + + + linear rotation + + + + + $Revision: 1.9 $ + + + + + diff --git a/test/W3C_SVG_12_TinyTestSuite_beta/svggen/animate-elem-83-t.svg b/test/W3C_SVG_12_TinyTestSuite_beta/svggen/animate-elem-83-t.svg new file mode 100755 index 00000000..6703c470 --- /dev/null +++ b/test/W3C_SVG_12_TinyTestSuite_beta/svggen/animate-elem-83-t.svg @@ -0,0 +1,123 @@ + + + + + + + + + + $RCSfile: animate-elem-83-t.svg,v $ + + + + + + + + + + + + + + + + <animate> on <path>'s d attribute + + + + + + + + + + + + #1: from-to animation + + + + + + + + + + + + #2: to animation + + + + + + + + + + + + + + + #3: values animation + + + + + + + + + + + + #4: from-to animation + compatible H/h, V/v, + L/l segments + + + + + + + + + + + + #5: from-to animation + compatible C/c + s/S segments + + + + + + + + + + + + #6: from-to animation + compatible Q/q, T/t + segments + + + + + $Revision: 1.9 $ + + + + + diff --git a/test/W3C_SVG_12_TinyTestSuite_beta/svggen/animate-elem-84-t.svg b/test/W3C_SVG_12_TinyTestSuite_beta/svggen/animate-elem-84-t.svg new file mode 100755 index 00000000..63a89013 --- /dev/null +++ b/test/W3C_SVG_12_TinyTestSuite_beta/svggen/animate-elem-84-t.svg @@ -0,0 +1,58 @@ + + + + + + + + + + $RCSfile: animate-elem-84-t.svg,v $ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + currentColor + green + inherit + + + + + $Revision: 1.7 $ + + + + + diff --git a/test/W3C_SVG_12_TinyTestSuite_beta/svggen/animate-elem-85-t.svg b/test/W3C_SVG_12_TinyTestSuite_beta/svggen/animate-elem-85-t.svg new file mode 100755 index 00000000..dfc54e34 --- /dev/null +++ b/test/W3C_SVG_12_TinyTestSuite_beta/svggen/animate-elem-85-t.svg @@ -0,0 +1,56 @@ + + + + + + + + + + $RCSfile: animate-elem-85-t.svg,v $ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + $Revision: 1.8 $ + + + + + diff --git a/test/W3C_SVG_12_TinyTestSuite_beta/svggen/animate-elem-86-t.svg b/test/W3C_SVG_12_TinyTestSuite_beta/svggen/animate-elem-86-t.svg new file mode 100755 index 00000000..c069e735 --- /dev/null +++ b/test/W3C_SVG_12_TinyTestSuite_beta/svggen/animate-elem-86-t.svg @@ -0,0 +1,66 @@ + + + + + + + + + + $RCSfile: animate-elem-86-t.svg,v $ + + + + + + + + + + fill="freeze" with discrete calcMode + + + + + discrete + + + + never + >= 0s + + + + + + + + + + + + + + + + + + + + + $Revision: 1.8 $ + + + + + diff --git a/test/W3C_SVG_12_TinyTestSuite_beta/svggen/conf-reader-201-t.svg b/test/W3C_SVG_12_TinyTestSuite_beta/svggen/conf-reader-201-t.svg new file mode 100755 index 00000000..97ab71a3 --- /dev/null +++ b/test/W3C_SVG_12_TinyTestSuite_beta/svggen/conf-reader-201-t.svg @@ -0,0 +1,119 @@ + + + + + + + + + + $RCSfile: conf-reader-201-t.svg,v $ + + + + + + + + + + + + + Generated prefix 1: ... + + + Generated prefix 2: ... + + + Status: No exceptions. + + + + + + + + test(); + + + + $Revision: 1.5 $ + + + + + \ No newline at end of file diff --git a/test/W3C_SVG_12_TinyTestSuite_beta/svggen/coords-constr-201-t.svg b/test/W3C_SVG_12_TinyTestSuite_beta/svggen/coords-constr-201-t.svg new file mode 100755 index 00000000..d8aee107 --- /dev/null +++ b/test/W3C_SVG_12_TinyTestSuite_beta/svggen/coords-constr-201-t.svg @@ -0,0 +1,52 @@ + + + + + + + + + + $RCSfile: coords-constr-201-t.svg,v $ + + + + + + + + + + + + Constrained Transformations + + + + Can be panned, rotated and scaled by the user agent transform. + + + + Cannot be transformed by the user agent transform. + + + + Cannot be transformed by the user agent transform. + + + + $Revision: 1.5 $ + + + + + diff --git a/test/W3C_SVG_12_TinyTestSuite_beta/svggen/coords-constr-202-t.svg b/test/W3C_SVG_12_TinyTestSuite_beta/svggen/coords-constr-202-t.svg new file mode 100755 index 00000000..446b440f --- /dev/null +++ b/test/W3C_SVG_12_TinyTestSuite_beta/svggen/coords-constr-202-t.svg @@ -0,0 +1,54 @@ + + + + + + + + + + $RCSfile: coords-constr-202-t.svg,v $ + + + + + + + + + + + + Constrained Transformations + Animation of the viewBox. Nothing should be constrained during the animation. + + + + Can be panned, rotated and scaled by the user agent transform. + + + + Cannot be transformed by the user agent transform. + + + + Cannot be transformed by the user agent transform. + + + + + $Revision: 1.5 $ + + + + + diff --git a/test/W3C_SVG_12_TinyTestSuite_beta/svggen/coords-constr-203-t.svg b/test/W3C_SVG_12_TinyTestSuite_beta/svggen/coords-constr-203-t.svg new file mode 100755 index 00000000..54c8cdc0 --- /dev/null +++ b/test/W3C_SVG_12_TinyTestSuite_beta/svggen/coords-constr-203-t.svg @@ -0,0 +1,59 @@ + + + + + + + + + + $RCSfile: coords-constr-203-t.svg,v $ + + + + + + + + + + + + Constrained Transformations + Animation of the slide's body. Only the first line should be moving during the animation. + + + + Can be panned, rotated and scaled by the user agent transform. + + + + Cannot be transformed by the user agent transform. + + + + Cannot be transformed by the user agent transform. + + + + + + + + + $Revision: 1.5 $ + + + + + + diff --git a/test/W3C_SVG_12_TinyTestSuite_beta/svggen/coords-constr-204-t.svg b/test/W3C_SVG_12_TinyTestSuite_beta/svggen/coords-constr-204-t.svg new file mode 100755 index 00000000..f96356ff --- /dev/null +++ b/test/W3C_SVG_12_TinyTestSuite_beta/svggen/coords-constr-204-t.svg @@ -0,0 +1,43 @@ + + + + + + + + + + $RCSfile: coords-constr-204-t.svg,v $ + + + + + + + + + + + + + + + + + + + $Revision: 1.5 $ + + + + + diff --git a/test/W3C_SVG_12_TinyTestSuite_beta/svggen/coords-coord-01-t.svg b/test/W3C_SVG_12_TinyTestSuite_beta/svggen/coords-coord-01-t.svg new file mode 100755 index 00000000..eca9e26f --- /dev/null +++ b/test/W3C_SVG_12_TinyTestSuite_beta/svggen/coords-coord-01-t.svg @@ -0,0 +1,46 @@ + + + + + + + + + + $RCSfile: coords-coord-01-t.svg,v $ + + + + + + + + + + + + + + + + + + + + + + + + + + $Revision: 1.6 $ + + + + + diff --git a/test/W3C_SVG_12_TinyTestSuite_beta/svggen/coords-pAR-201-t.svg b/test/W3C_SVG_12_TinyTestSuite_beta/svggen/coords-pAR-201-t.svg new file mode 100755 index 00000000..62c28904 --- /dev/null +++ b/test/W3C_SVG_12_TinyTestSuite_beta/svggen/coords-pAR-201-t.svg @@ -0,0 +1,112 @@ + + + + + + + + "> + "> + "> +]> + + + + + + + + + $RCSfile: coords-pAR-201-t.svg,v $ + + + + + + + + + + Example PreserveAspectRatio - demonstrate available options + Test available options of preserveAspectRatio + SVG to fit + &Smile; + Viewport 1 + &Viewport1; + Viewport 2 + &Viewport2; + + ---------- meet -------------------- + + xMin*&Viewport1; + + + + xMid*&Viewport1; + + + + xMax*&Viewport1; + + + + + ---------- meet ------------------------ + + *YMin&Viewport2; + + + + *YMid&Viewport2; + + + + *YMax&Viewport2; + + + + + ---------- defer ------------------------- + + xMin*&Viewport2; + + + + xMid*&Viewport2; + + + + xMax*&Viewport2; + + + + + ---------- defer --------------------- + + *YMin&Viewport1; + + + + *YMid&Viewport1; + + + + *YMax&Viewport1; + + + + + + + $Revision: 1.5 $ + + + + + diff --git a/test/W3C_SVG_12_TinyTestSuite_beta/svggen/coords-trans-01-t.svg b/test/W3C_SVG_12_TinyTestSuite_beta/svggen/coords-trans-01-t.svg new file mode 100755 index 00000000..11468e94 --- /dev/null +++ b/test/W3C_SVG_12_TinyTestSuite_beta/svggen/coords-trans-01-t.svg @@ -0,0 +1,213 @@ + + + + + + + + + + $RCSfile: coords-trans-01-t.svg,v $ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + translate (50, 50) + + + + + rotate(-90) + + + + + skew x (45) + + + + + skew y (45) + + + + + scale (2) + + + + + + + + + + + + + + + + + + + + + + + + + + + scale(25, 95) and translate(2, 2) + + + + + scale(25, 95) then translate(2, 2) + + + + + + + + + + + $Revision: 1.10 $ + + + + + diff --git a/test/W3C_SVG_12_TinyTestSuite_beta/svggen/coords-trans-02-t.svg b/test/W3C_SVG_12_TinyTestSuite_beta/svggen/coords-trans-02-t.svg new file mode 100755 index 00000000..19f91c24 --- /dev/null +++ b/test/W3C_SVG_12_TinyTestSuite_beta/svggen/coords-trans-02-t.svg @@ -0,0 +1,76 @@ + + + + + + + + + + $RCSfile: coords-trans-02-t.svg,v $ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + translate (50, 50) + + + + + rotate(-90) + + + + + + + + + + $Revision: 1.10 $ + + + + + diff --git a/test/W3C_SVG_12_TinyTestSuite_beta/svggen/coords-trans-03-t.svg b/test/W3C_SVG_12_TinyTestSuite_beta/svggen/coords-trans-03-t.svg new file mode 100755 index 00000000..aee0276e --- /dev/null +++ b/test/W3C_SVG_12_TinyTestSuite_beta/svggen/coords-trans-03-t.svg @@ -0,0 +1,73 @@ + + + + + + + + + + $RCSfile: coords-trans-03-t.svg,v $ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + skew x (45) + + + + + skew y (45) + + + + + + + + + + + $Revision: 1.9 $ + + + + + diff --git a/test/W3C_SVG_12_TinyTestSuite_beta/svggen/coords-trans-04-t.svg b/test/W3C_SVG_12_TinyTestSuite_beta/svggen/coords-trans-04-t.svg new file mode 100755 index 00000000..47e92cb8 --- /dev/null +++ b/test/W3C_SVG_12_TinyTestSuite_beta/svggen/coords-trans-04-t.svg @@ -0,0 +1,62 @@ + + + + + + + + + + $RCSfile: coords-trans-04-t.svg,v $ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + scale (2) + + + + + + + + + + $Revision: 1.9 $ + + + + + diff --git a/test/W3C_SVG_12_TinyTestSuite_beta/svggen/coords-trans-05-t.svg b/test/W3C_SVG_12_TinyTestSuite_beta/svggen/coords-trans-05-t.svg new file mode 100755 index 00000000..fcdf5613 --- /dev/null +++ b/test/W3C_SVG_12_TinyTestSuite_beta/svggen/coords-trans-05-t.svg @@ -0,0 +1,62 @@ + + + + + + + + + + $RCSfile: coords-trans-05-t.svg,v $ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + scale(25, 95) - translate(2, 2) + + + + + + + + + + + $Revision: 1.9 $ + + + + + diff --git a/test/W3C_SVG_12_TinyTestSuite_beta/svggen/coords-trans-06-t.svg b/test/W3C_SVG_12_TinyTestSuite_beta/svggen/coords-trans-06-t.svg new file mode 100755 index 00000000..c00f8a95 --- /dev/null +++ b/test/W3C_SVG_12_TinyTestSuite_beta/svggen/coords-trans-06-t.svg @@ -0,0 +1,56 @@ + + + + + + + + + + $RCSfile: coords-trans-06-t.svg,v $ + + + + + + + + + + + + + + + + + + + + + + + + + scale(25, 95) then translate(2, 2) + + + + + + + + + + + $Revision: 1.10 $ + + + + + diff --git a/test/W3C_SVG_12_TinyTestSuite_beta/svggen/coords-trans-07-t.svg b/test/W3C_SVG_12_TinyTestSuite_beta/svggen/coords-trans-07-t.svg new file mode 100755 index 00000000..7e540042 --- /dev/null +++ b/test/W3C_SVG_12_TinyTestSuite_beta/svggen/coords-trans-07-t.svg @@ -0,0 +1,47 @@ + + + + + + + + + + $RCSfile: coords-trans-07-t.svg,v $ + + + + + + + + + + + + + + rotate+translate + + + + + + translate+rotate + + + $Revision: 1.4 $ + + + + + diff --git a/test/W3C_SVG_12_TinyTestSuite_beta/svggen/coords-trans-08-t.svg b/test/W3C_SVG_12_TinyTestSuite_beta/svggen/coords-trans-08-t.svg new file mode 100755 index 00000000..1649ac8e --- /dev/null +++ b/test/W3C_SVG_12_TinyTestSuite_beta/svggen/coords-trans-08-t.svg @@ -0,0 +1,52 @@ + + + + + + + + + + $RCSfile: coords-trans-08-t.svg,v $ + + + + + + + + + + + + + + + + skewX(45)+skewY(45) + + + + + + + + + skewY(45)+skewX(45) + + + $Revision: 1.4 $ + + + + + diff --git a/test/W3C_SVG_12_TinyTestSuite_beta/svggen/coords-trans-09-t.svg b/test/W3C_SVG_12_TinyTestSuite_beta/svggen/coords-trans-09-t.svg new file mode 100755 index 00000000..53b21809 --- /dev/null +++ b/test/W3C_SVG_12_TinyTestSuite_beta/svggen/coords-trans-09-t.svg @@ -0,0 +1,78 @@ + + + + + + + + + + $RCSfile: coords-trans-09-t.svg,v $ + + + + + + + + + + + + + + matrix(0 0 0 0 0 0) + + + + + + matrix(1 0 0 1 100 100) + + + + + + matrix(1.5 0 0 1.5 70 60) + + + + + + matrix(1 0 0.5 1 30 170) + + + + + + matrix(1 0.5 0 1 100 200) + + + + + + matrix(0 1 -1 0 450 0) + + + + + + matrix(1 0.8 0.8 1 300 220) + + + + $Revision: 1.4 $ + + + + + diff --git a/test/W3C_SVG_12_TinyTestSuite_beta/svggen/coords-units-01-t.svg b/test/W3C_SVG_12_TinyTestSuite_beta/svggen/coords-units-01-t.svg new file mode 100755 index 00000000..aa5b4812 --- /dev/null +++ b/test/W3C_SVG_12_TinyTestSuite_beta/svggen/coords-units-01-t.svg @@ -0,0 +1,88 @@ + + + + + + + + + + $RCSfile: coords-units-01-t.svg,v $ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + Bounding box relative coordinates + + + + + + Fraction + User Space + + + + + + + + + + + + + + + + + + + + Bounding box relative length (percentage and fraction) + + + + Fraction + User Space + + + + + $Revision: 1.10 $ + + + + + diff --git a/test/W3C_SVG_12_TinyTestSuite_beta/svggen/coords-viewattr-05-t.svg b/test/W3C_SVG_12_TinyTestSuite_beta/svggen/coords-viewattr-05-t.svg new file mode 100755 index 00000000..e6eaea4c --- /dev/null +++ b/test/W3C_SVG_12_TinyTestSuite_beta/svggen/coords-viewattr-05-t.svg @@ -0,0 +1,77 @@ + +"> + "> +]> + + + + + + + + + $RCSfile: coords-viewattr-05-t.svg,v $ + + + + + + + + + + Example PreserveAspectRatio - demonstrate available options + Test options of preserveAspectRatio on an image element + Raster to fit + + + + Viewport 1 + &Viewport1; + Viewport 2 + &Viewport2; + + ---------- meet -------------------- + + xMin*&Viewport1; + + + + xMid*&Viewport1; + + + + xMax*&Viewport1; + + + + + ---------- meet ------------------------ + + *YMin&Viewport2; + + + + *YMid&Viewport2; + + + + *YMax&Viewport2; + + + + + + + $Revision: 1.12 $ + + + + + diff --git a/test/W3C_SVG_12_TinyTestSuite_beta/svggen/extend-namespace-02-t.svg b/test/W3C_SVG_12_TinyTestSuite_beta/svggen/extend-namespace-02-t.svg new file mode 100755 index 00000000..50e07c1c --- /dev/null +++ b/test/W3C_SVG_12_TinyTestSuite_beta/svggen/extend-namespace-02-t.svg @@ -0,0 +1,194 @@ + + + + + + + + + + $RCSfile: extend-namespace-02-t.svg,v $ + + + + + + + + + + + onLoad(evt); + + + + + + + + + + East + 3 + + + North + 4 + + + West + 5 + + + Central + 3.2 + + + South + 6 + + + Pie chart built from data in a different namespace. + + + Pie chart is built within this 'g' element + + + + $Revision: 1.9 $ + + + + + + DRAFT + + diff --git a/test/W3C_SVG_12_TinyTestSuite_beta/svggen/fonts-desc-02-t.svg b/test/W3C_SVG_12_TinyTestSuite_beta/svggen/fonts-desc-02-t.svg new file mode 100755 index 00000000..d617f94f --- /dev/null +++ b/test/W3C_SVG_12_TinyTestSuite_beta/svggen/fonts-desc-02-t.svg @@ -0,0 +1,87 @@ + + + + + + + + + + $RCSfile: fonts-desc-02-t.svg,v $ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + a + a + + a + a + + a + a + a + a + + a + a + a + a + + + + $Revision: 1.6 $ + + + + + diff --git a/test/W3C_SVG_12_TinyTestSuite_beta/svggen/fonts-elem-01-t.svg b/test/W3C_SVG_12_TinyTestSuite_beta/svggen/fonts-elem-01-t.svg new file mode 100755 index 00000000..eb1d02ce --- /dev/null +++ b/test/W3C_SVG_12_TinyTestSuite_beta/svggen/fonts-elem-01-t.svg @@ -0,0 +1,84 @@ + + + + + + + + + + $RCSfile: fonts-elem-01-t.svg,v $ + + + + + + + + + + + + + + + + + + + + + + + + + + Basic SVG font element + + + + + Placed Glyphs + + + + + + + + + + + + + + + + + + + + + + + + + + SVG Font + + + AyÖ@ç + + + + $Revision: 1.8 $ + + + + + diff --git a/test/W3C_SVG_12_TinyTestSuite_beta/svggen/fonts-elem-02-t.svg b/test/W3C_SVG_12_TinyTestSuite_beta/svggen/fonts-elem-02-t.svg new file mode 100755 index 00000000..cf61b61d --- /dev/null +++ b/test/W3C_SVG_12_TinyTestSuite_beta/svggen/fonts-elem-02-t.svg @@ -0,0 +1,92 @@ + + + + + + + + + + $RCSfile: fonts-elem-02-t.svg,v $ + + + + + + + + + + + + + + + + + + + + + + + + + + SVG font element accuracy + + SVG over Glyphs + + + + + + + + + + + + + + + + + + + AyÖ@ç + + Glyphs over SVG + + AyÖ@ç + + + + + + + + + + + + + + + + + + + + + $Revision: 1.8 $ + + + + + diff --git a/test/W3C_SVG_12_TinyTestSuite_beta/svggen/fonts-elem-03-t.svg b/test/W3C_SVG_12_TinyTestSuite_beta/svggen/fonts-elem-03-t.svg new file mode 100755 index 00000000..edd6e340 --- /dev/null +++ b/test/W3C_SVG_12_TinyTestSuite_beta/svggen/fonts-elem-03-t.svg @@ -0,0 +1,75 @@ + + + + + + + + + + $RCSfile: fonts-elem-03-t.svg,v $ + + + + + + + + + + + + + + + + + External SVG font element (xml) + + + + + Placed Glyphs + + + + + + + + + + + + + + + + + + + + + + + + + + SVG Font + + + AyÖ@ç + + + + $Revision: 1.7 $ + + + + + diff --git a/test/W3C_SVG_12_TinyTestSuite_beta/svggen/fonts-elem-06-t.svg b/test/W3C_SVG_12_TinyTestSuite_beta/svggen/fonts-elem-06-t.svg new file mode 100755 index 00000000..c2426a14 --- /dev/null +++ b/test/W3C_SVG_12_TinyTestSuite_beta/svggen/fonts-elem-06-t.svg @@ -0,0 +1,76 @@ + + + + + + + + + + $RCSfile: fonts-elem-06-t.svg,v $ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + <font> horiz-adv-x + + + horiz-adv-x=1000 + + + 12 + + + horiz-adv-x=2000 + + + 12 + + + horiz-adv-x=1000 but ignored + + + 12 + + + + + $Revision: 1.6 $ + + + + + diff --git a/test/W3C_SVG_12_TinyTestSuite_beta/svggen/fonts-glyph-02-t.svg b/test/W3C_SVG_12_TinyTestSuite_beta/svggen/fonts-glyph-02-t.svg new file mode 100755 index 00000000..f07badb8 --- /dev/null +++ b/test/W3C_SVG_12_TinyTestSuite_beta/svggen/fonts-glyph-02-t.svg @@ -0,0 +1,59 @@ + + + + + + + + + + $RCSfile: fonts-glyph-02-t.svg,v $ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + ښ ښښښ + + + + خ خخخ + + + + $Revision: 1.6 $ + + + + + diff --git a/test/W3C_SVG_12_TinyTestSuite_beta/svggen/fonts-glyph-03-t.svg b/test/W3C_SVG_12_TinyTestSuite_beta/svggen/fonts-glyph-03-t.svg new file mode 100755 index 00000000..55d75871 --- /dev/null +++ b/test/W3C_SVG_12_TinyTestSuite_beta/svggen/fonts-glyph-03-t.svg @@ -0,0 +1,50 @@ + + + + + + + + + + $RCSfile: fonts-glyph-03-t.svg,v $ + + + + + + + + + + + + + + + + + + + + a + + a + + a + + a + + + + $Revision: 1.6 $ + + + + + diff --git a/test/W3C_SVG_12_TinyTestSuite_beta/svggen/fonts-glyph-04-t.svg b/test/W3C_SVG_12_TinyTestSuite_beta/svggen/fonts-glyph-04-t.svg new file mode 100755 index 00000000..744f5bf0 --- /dev/null +++ b/test/W3C_SVG_12_TinyTestSuite_beta/svggen/fonts-glyph-04-t.svg @@ -0,0 +1,45 @@ + + + + + + + + + + $RCSfile: fonts-glyph-04-t.svg,v $ + + + + + + + + + + + + + + + + + + + + + ffl + ffl + + + $Revision: 1.6 $ + + + + + diff --git a/test/W3C_SVG_12_TinyTestSuite_beta/svggen/fonts-glyph-201-t.svg b/test/W3C_SVG_12_TinyTestSuite_beta/svggen/fonts-glyph-201-t.svg new file mode 100755 index 00000000..f0ff532d --- /dev/null +++ b/test/W3C_SVG_12_TinyTestSuite_beta/svggen/fonts-glyph-201-t.svg @@ -0,0 +1,157 @@ + + + + + + + + + + $RCSfile: fonts-glyph-201-t.svg,v $ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + fjord + fjord + + The Fjord fonts + are derived from + Gladiator + by Bert Bos + and are used + by kind permission. + + + + + + $Revision: 1.5 $ + + + + + \ No newline at end of file diff --git a/test/W3C_SVG_12_TinyTestSuite_beta/svggen/fonts-glyph-202-t.svg b/test/W3C_SVG_12_TinyTestSuite_beta/svggen/fonts-glyph-202-t.svg new file mode 100755 index 00000000..268814f7 --- /dev/null +++ b/test/W3C_SVG_12_TinyTestSuite_beta/svggen/fonts-glyph-202-t.svg @@ -0,0 +1,157 @@ + + + + + + + + + + $RCSfile: fonts-glyph-202-t.svg,v $ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + fjord + fjord + + The Fjord fonts + are derived from + Gladiator + by Bert Bos + and are used + by kind permission. + + + + + + $Revision: 1.11 $ + + + + + \ No newline at end of file diff --git a/test/W3C_SVG_12_TinyTestSuite_beta/svggen/fonts-glyph-203-t.svg b/test/W3C_SVG_12_TinyTestSuite_beta/svggen/fonts-glyph-203-t.svg new file mode 100755 index 00000000..d63d8a11 --- /dev/null +++ b/test/W3C_SVG_12_TinyTestSuite_beta/svggen/fonts-glyph-203-t.svg @@ -0,0 +1,81 @@ + + + + + + + + + + $RCSfile: fonts-glyph-203-t.svg,v $ + + + + + + + + + + + + + + + + + + + + BACH + + + + + + + + + + + + + + + + + + + + + + + $Revision: 1.3 $ + + + + + diff --git a/test/W3C_SVG_12_TinyTestSuite_beta/svggen/fonts-kern-01-t.svg b/test/W3C_SVG_12_TinyTestSuite_beta/svggen/fonts-kern-01-t.svg new file mode 100755 index 00000000..da9bf088 --- /dev/null +++ b/test/W3C_SVG_12_TinyTestSuite_beta/svggen/fonts-kern-01-t.svg @@ -0,0 +1,222 @@ + + + + + + + + + + $RCSfile: fonts-kern-01-t.svg,v $ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + <hkern> + + + + + font A + + + u1="1" u2="2" + + + + + + + + 12 + + + + + + font B + + + g1="gl_1" g2="gl_2" + + + + 12 + + + + + + font C + + + u1="1" u2="2" g1="gl_3" g2="gl_4" + + + + + + + + 1234 + + + + + + font D + + + u1="1,3" u2="2,4" + + + + + + 1234 + + + + + + font E + + + g1="gl_1,gl_3" g2="gl_2,gl_4" + + + + + + 1234 + + + + + + font F + + + u1="U+003?" u2="U+0031-34" + + + + + + + + + 1234 + + + + + + font G + + + u1="1" g2="gl_2" + + + + + + + + 12 + + + + + + + $Revision: 1.7 $ + + + + + diff --git a/test/W3C_SVG_12_TinyTestSuite_beta/svggen/fonts-overview-201-t.svg b/test/W3C_SVG_12_TinyTestSuite_beta/svggen/fonts-overview-201-t.svg new file mode 100755 index 00000000..2e500038 --- /dev/null +++ b/test/W3C_SVG_12_TinyTestSuite_beta/svggen/fonts-overview-201-t.svg @@ -0,0 +1,97 @@ + + + + + + + + + + $RCSfile: fonts-overview-201-t.svg,v $ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + β + β + β + + 1,000 + 10 + 10,000 + varying units-per-em values + + + $Revision: 1.6 $ + + + + + \ No newline at end of file diff --git a/test/W3C_SVG_12_TinyTestSuite_beta/svggen/interact-dom-02-t.svg b/test/W3C_SVG_12_TinyTestSuite_beta/svggen/interact-dom-02-t.svg new file mode 100755 index 00000000..3faef7e3 --- /dev/null +++ b/test/W3C_SVG_12_TinyTestSuite_beta/svggen/interact-dom-02-t.svg @@ -0,0 +1,95 @@ + + + + initTest(evt); + + + + + + + + + $RCSfile: interact-dom-02-t.svg,v $ + + + + + + + + + + + + + + + Start Test + + + + $Revision: 1.10 $ + + + + + diff --git a/test/W3C_SVG_12_TinyTestSuite_beta/svggen/interact-event-201-t.svg b/test/W3C_SVG_12_TinyTestSuite_beta/svggen/interact-event-201-t.svg new file mode 100755 index 00000000..6885f404 --- /dev/null +++ b/test/W3C_SVG_12_TinyTestSuite_beta/svggen/interact-event-201-t.svg @@ -0,0 +1,58 @@ + + + + + + + + + + $RCSfile: interact-event-201-t.svg,v $ + + + + + + + + + + + + + + + + + + r1.setTrait("visibility", "visible"); + + + r1.setTrait("visibility", "hidden"); + + + + moving focus should make a red rect visible/invisible + + + $Revision: 1.7 $ + + + + + \ No newline at end of file diff --git a/test/W3C_SVG_12_TinyTestSuite_beta/svggen/interact-event-202-t.svg b/test/W3C_SVG_12_TinyTestSuite_beta/svggen/interact-event-202-t.svg new file mode 100755 index 00000000..aec0dfc7 --- /dev/null +++ b/test/W3C_SVG_12_TinyTestSuite_beta/svggen/interact-event-202-t.svg @@ -0,0 +1,73 @@ + + + + + + + + + + $RCSfile: interact-event-202-t.svg,v $ + + + + + + + + + + + + + + g3.setTrait("visibility", "visible"); + + + g3.setTrait("visibility", "hidden"); + + + + + + + g4.setTrait("visibility", "visible"); + + + g4.setTrait("visibility", "hidden"); + + + + + + + + + + + Moving the mouse over the red rect should make a yellow rect visible underneath it. + Moving the mouse over the green rect should make a purple rect visible underneath it. + Moving the mouse away from the red/green rect should hide + the rect underneath it again. + + + $Revision: 1.6 $ + + + + + \ No newline at end of file diff --git a/test/W3C_SVG_12_TinyTestSuite_beta/svggen/interact-event-203-t.svg b/test/W3C_SVG_12_TinyTestSuite_beta/svggen/interact-event-203-t.svg new file mode 100755 index 00000000..1b0c1c18 --- /dev/null +++ b/test/W3C_SVG_12_TinyTestSuite_beta/svggen/interact-event-203-t.svg @@ -0,0 +1,79 @@ + + + + + + + + + + $RCSfile: interact-event-203-t.svg,v $ + + + + + + + + + + + + + Shadow tree event listener chain + + + + Case 1: on mouseover all squares must turn blue + + + + + + + + + Case 2: on mouseover all squares must turn blue + and a black stroke must appear on reference square + + + + + + + + + + + + Case 3: on mouseover all squares must turn blue + and a black stroke must appear on reference square + + + + + + + + + + Case 4: on mouseover all squares must turn blue + and on mousedown a black stroke must appear on reference square + + + + $Revision: 1.5 $ + + + + + diff --git a/test/W3C_SVG_12_TinyTestSuite_beta/svggen/interact-focus-201-t.svg b/test/W3C_SVG_12_TinyTestSuite_beta/svggen/interact-focus-201-t.svg new file mode 100755 index 00000000..28573357 --- /dev/null +++ b/test/W3C_SVG_12_TinyTestSuite_beta/svggen/interact-focus-201-t.svg @@ -0,0 +1,59 @@ + + + + + + + + + + $RCSfile: interact-focus-201-t.svg,v $ + + + + + + + + + + Test Focusable Property on Animated Elements. + + + + + + + + + + + + + + + + + + + Text has focus by default + + + + + + + $Revision: 1.8 $ + + + + + diff --git a/test/W3C_SVG_12_TinyTestSuite_beta/svggen/interact-focus-202-t.svg b/test/W3C_SVG_12_TinyTestSuite_beta/svggen/interact-focus-202-t.svg new file mode 100755 index 00000000..bb6408c3 --- /dev/null +++ b/test/W3C_SVG_12_TinyTestSuite_beta/svggen/interact-focus-202-t.svg @@ -0,0 +1,139 @@ + + + + + + + + + + $RCSfile: interact-focus-202-t.svg,v $ + + + + + + + + + + + + + + + + Unfocusable (explicit) + + + + + + + Unfocusable (implicit) + + + + + Focusable (red on focus) + + + + + + Focusable (red on activate) + + + + + + + Focusable : <a> (silent) + + + + + + + Unfocusable <a> + + + + + + + Focusable : editable text (silent) + + + + + Focusable : listeners (red on focus) + + + + setRed() + setBlack() + + + + activate to make (0) focusable + + + + + + activate to make (0) unfocusable + + + + + + (0) : red on focus + + + + + + + activate to make (1) focusable + + + + + + activate to make (1) unfocusable + + + + + + + (1) : <a> (silent) + + + + + + $Revision: 1.7 $ + + + + + diff --git a/test/W3C_SVG_12_TinyTestSuite_beta/svggen/interact-focus-203-t.svg b/test/W3C_SVG_12_TinyTestSuite_beta/svggen/interact-focus-203-t.svg new file mode 100755 index 00000000..4113ab64 --- /dev/null +++ b/test/W3C_SVG_12_TinyTestSuite_beta/svggen/interact-focus-203-t.svg @@ -0,0 +1,67 @@ + + + + + + + + + + $RCSfile: interact-focus-203-t.svg,v $ + + + + + + + + + Test Focusable Elements Outside the Viewport + User interaction should navigate focus starting at 1 and go through 5. + This test applies only to user agents which + locate to focus which is outside of the viewport. + + + + + + + + 1 + + + + + 2 + + + + + 3 + + + + + 4 + + + + + 5 + + + + $Revision: 1.7 $ + + + + + diff --git a/test/W3C_SVG_12_TinyTestSuite_beta/svggen/interact-focus-204-t.svg b/test/W3C_SVG_12_TinyTestSuite_beta/svggen/interact-focus-204-t.svg new file mode 100755 index 00000000..99d874dc --- /dev/null +++ b/test/W3C_SVG_12_TinyTestSuite_beta/svggen/interact-focus-204-t.svg @@ -0,0 +1,114 @@ + + + + + + + + + + $RCSfile: interact-focus-204-t.svg,v $ + + + + + + + + + + + + Test Focusable Elements - Focus Direction + + + Focused text should be red. The default focus is the number 5. + + + Cardinal focus changes should work as expected, with wrapping. + + + Next/Previous go to next/prev numerical value. + + + + + 7 + + + + + + + 8 + + + + + + + 9 + + + + + + + 4 + + + + + + + 5 + + + + + + + 6 + + + + + + + 1 + + + + + + + 2 + + + + + + + 3 + + + + + + + + + $Revision: 1.7 $ + + + + + diff --git a/test/W3C_SVG_12_TinyTestSuite_beta/svggen/interact-focus-205-t.svg b/test/W3C_SVG_12_TinyTestSuite_beta/svggen/interact-focus-205-t.svg new file mode 100755 index 00000000..7327b07a --- /dev/null +++ b/test/W3C_SVG_12_TinyTestSuite_beta/svggen/interact-focus-205-t.svg @@ -0,0 +1,64 @@ + + + + + + + + + + $RCSfile: interact-focus-205-t.svg,v $ + + + + + + + + + + Test Focusable Elements - Nested Elements + The circle should first be focused (red), + then each square should stay red, due to bubbling + + + + + + + + + + + + + + + + + + + + + + + + + + + + + $Revision: 1.7 $ + + + + + diff --git a/test/W3C_SVG_12_TinyTestSuite_beta/svggen/interact-focus-206-t.svg b/test/W3C_SVG_12_TinyTestSuite_beta/svggen/interact-focus-206-t.svg new file mode 100755 index 00000000..b045011a --- /dev/null +++ b/test/W3C_SVG_12_TinyTestSuite_beta/svggen/interact-focus-206-t.svg @@ -0,0 +1,62 @@ + + + + + + + + + + $RCSfile: interact-focus-206-t.svg,v $ + + + + + + + + + + Test Focusable Elements - Invisible Items + Lines 1 to 3 should show up when receiving the focus. + Line 4 should never receive the focus. + + 1 + This text is 100% transparent + + + + + 2 + This text is invisible + + + 3 + This text covered by a white rect + + + + + 4 + + This text has display="none" + + + + + + + $Revision: 1.6 $ + + + + + diff --git a/test/W3C_SVG_12_TinyTestSuite_beta/svggen/interact-focus-207-t.svg b/test/W3C_SVG_12_TinyTestSuite_beta/svggen/interact-focus-207-t.svg new file mode 100755 index 00000000..6a7540d0 --- /dev/null +++ b/test/W3C_SVG_12_TinyTestSuite_beta/svggen/interact-focus-207-t.svg @@ -0,0 +1,46 @@ + + + + + + + + + + $RCSfile: interact-focus-207-t.svg,v $ + + + + + + + + + + Test Focusable Elements - Root SVG Element + The poem should be red, + showing that the top-level SVG element has the focus. + + The old pond + A frog jumped in, + Kerplunk! + + + + Frog Haiku by Matsuo Basho (1686), translated by Allen Ginsberg + + + $Revision: 1.6 $ + + + + + diff --git a/test/W3C_SVG_12_TinyTestSuite_beta/svggen/interact-focus-208-t.svg b/test/W3C_SVG_12_TinyTestSuite_beta/svggen/interact-focus-208-t.svg new file mode 100755 index 00000000..0b90b418 --- /dev/null +++ b/test/W3C_SVG_12_TinyTestSuite_beta/svggen/interact-focus-208-t.svg @@ -0,0 +1,79 @@ + + + + + + + + + + $RCSfile: interact-focus-208-t.svg,v $ + + + + + + + + + Test Focusable Elements - tspan Element + + Give focus to each word. + + + + Old + + + + + pond + + + + - + + frogs + + jumped + + + + in + + + + - + + sound + + + + + of + + + + + water + + + + + Frog Haiku by Matsuo Basho (1686), translated by Lafcadio Hearn + + + $Revision: 1.6 $ + + + + + diff --git a/test/W3C_SVG_12_TinyTestSuite_beta/svggen/interact-focus-209-t.svg b/test/W3C_SVG_12_TinyTestSuite_beta/svggen/interact-focus-209-t.svg new file mode 100755 index 00000000..7144b64d --- /dev/null +++ b/test/W3C_SVG_12_TinyTestSuite_beta/svggen/interact-focus-209-t.svg @@ -0,0 +1,123 @@ + + + + + + + + + + $RCSfile: interact-focus-209-t.svg,v $ + + + + + + + + + Test Focusable Elements - tspan in a textArea + + Give focus to each word. + + + Frog Haiku by Matsuo Basho (1686), translated by Curtis Hidden Page + + + $Revision: 1.7 $ + + + + + diff --git a/test/W3C_SVG_12_TinyTestSuite_beta/svggen/interact-focus-210-t.svg b/test/W3C_SVG_12_TinyTestSuite_beta/svggen/interact-focus-210-t.svg new file mode 100755 index 00000000..1ccc33d1 --- /dev/null +++ b/test/W3C_SVG_12_TinyTestSuite_beta/svggen/interact-focus-210-t.svg @@ -0,0 +1,93 @@ + + + + + + + + + + $RCSfile: interact-focus-210-t.svg,v $ + + + + + + + + + + + + + + + Test Focusability with the 'use' Element + + Each rectangle should be able to turn red individually upon receiving focus. + + + The top four test the multiple use of a focusable element + + + The bottom four test 'focusable' property on <use> element + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + $Revision: 1.6 $ + + + + + diff --git a/test/W3C_SVG_12_TinyTestSuite_beta/svggen/interact-focus-211-t.svg b/test/W3C_SVG_12_TinyTestSuite_beta/svggen/interact-focus-211-t.svg new file mode 100755 index 00000000..c786703d --- /dev/null +++ b/test/W3C_SVG_12_TinyTestSuite_beta/svggen/interact-focus-211-t.svg @@ -0,0 +1,62 @@ + + + + + + + + + + $RCSfile: interact-focus-211-t.svg,v $ + + + + + + + + + + Test Focusability with the 'use' Element + + There are three 'use' copies of the poem arranged diagonally. + + + As each poem receives focus it should become highlighted. + + + + + + + + + + + + + + + + + + + + + Frog Haiku by Matsuo Basho (1686), translated by Alfred H. Marks + + + $Revision: 1.8 $ + + + + + diff --git a/test/W3C_SVG_12_TinyTestSuite_beta/svggen/interact-focus-212-t.svg b/test/W3C_SVG_12_TinyTestSuite_beta/svggen/interact-focus-212-t.svg new file mode 100755 index 00000000..234154f0 --- /dev/null +++ b/test/W3C_SVG_12_TinyTestSuite_beta/svggen/interact-focus-212-t.svg @@ -0,0 +1,73 @@ + + + + + + + + + + $RCSfile: interact-focus-212-t.svg,v $ + + + + + + + + + + + + + + + + + + + + + + + text + + + + + + + + use + Test on focus with a use-element. + Focus should move first to the "g" element and + then to its children. When focus is trans- + ferred to the use-element focus is first + set on the use (whole right column) and + then its children. + + + + $Revision: 1.5 $ + + + + + \ No newline at end of file diff --git a/test/W3C_SVG_12_TinyTestSuite_beta/svggen/interact-order-04-t.svg b/test/W3C_SVG_12_TinyTestSuite_beta/svggen/interact-order-04-t.svg new file mode 100755 index 00000000..482be49f --- /dev/null +++ b/test/W3C_SVG_12_TinyTestSuite_beta/svggen/interact-order-04-t.svg @@ -0,0 +1,96 @@ + + + + + + + + + + $RCSfile: interact-order-04-t.svg,v $ + + + + + + + + + + + + Event bubbling - a + + + + + + + + + bubbleYes(evt, '#F00'); + + + bubbleYes(evt, 'inherit'); + + + + + bubbleYes(evt, '#00F'); + + + bubbleYes(evt, 'inherit'); + + + + + + bubbleNo(evt, '#00F'); + + + bubbleNo(evt, 'inherit'); + + + + + Pointer in circle, + circle turns red + Pointer in circle, + circle turns blue + + + + + $Revision: 1.10 $ + + + + + diff --git a/test/W3C_SVG_12_TinyTestSuite_beta/svggen/interact-order-05-t.svg b/test/W3C_SVG_12_TinyTestSuite_beta/svggen/interact-order-05-t.svg new file mode 100755 index 00000000..15a022f3 --- /dev/null +++ b/test/W3C_SVG_12_TinyTestSuite_beta/svggen/interact-order-05-t.svg @@ -0,0 +1,84 @@ + + + + + + + + + + $RCSfile: interact-order-05-t.svg,v $ + + + + + + + + + + + + Event bubbling - b + + + + + + + + + + + bubbleNo(evt, 'red'); + + + bubbleNo(evt, 'inherit'); + + + + + + bubbleYes(evt, 'blue'); + + + bubbleNo(evt, 'inherit'); + + + + Click on circle, + circle turns red + Click on circle, + hyperlink + + + + $Revision: 1.10 $ + + + + + diff --git a/test/W3C_SVG_12_TinyTestSuite_beta/svggen/interact-order-06-t.svg b/test/W3C_SVG_12_TinyTestSuite_beta/svggen/interact-order-06-t.svg new file mode 100755 index 00000000..1c350c26 --- /dev/null +++ b/test/W3C_SVG_12_TinyTestSuite_beta/svggen/interact-order-06-t.svg @@ -0,0 +1,88 @@ + + + + + + + + + + $RCSfile: interact-order-06-t.svg,v $ + + + + + + + + + + + + Event bubbling - c + + + + + + + + + bubbleNo(evt, 'red'); + + + bubbleNo(evt, 'inherit'); + + + String turns red on click + + + + bubbleYes(evt, 'blue'); + + + bubbleYes(evt, 'inherit'); + + String hyperlinks to + interact-order-03-t-targ.svg + + + + bubbleNo(evt, 'inherit'); + + + All strings are selectable. + + + + + + $Revision: 1.9 $ + + + + + diff --git a/test/W3C_SVG_12_TinyTestSuite_beta/svggen/interact-pevents-02-t.svg b/test/W3C_SVG_12_TinyTestSuite_beta/svggen/interact-pevents-02-t.svg new file mode 100755 index 00000000..57e4d1a6 --- /dev/null +++ b/test/W3C_SVG_12_TinyTestSuite_beta/svggen/interact-pevents-02-t.svg @@ -0,0 +1,201 @@ + + + + + + + + + + $RCSfile: interact-pevents-02-t.svg,v $ + + + + + + + + + + Test pointer-events on text + + + O + + + O + + + O + + + O + + + O + + + O + + + O + + + O + + + O + + + O + + + + + + + + + O + + + O + + + O + + + O + + + O + + + O + + + O + + + O + + + O + + + O + + + + + + + + + O + + + + O + + + + O + + + + O + + + + O + + + + O + + + + O + + + + O + + + + O + + + + O + + + + + + + + + + O + + + + O + + + + O + + + + O + + + + O + + + + O + + + + O + + + + O + + + + O + + + + O + + + + + + + + + + + + + + $Revision: 1.9 $ + + + + + diff --git a/test/W3C_SVG_12_TinyTestSuite_beta/svggen/interact-pevents-05-t.svg b/test/W3C_SVG_12_TinyTestSuite_beta/svggen/interact-pevents-05-t.svg new file mode 100755 index 00000000..5efbd7f4 --- /dev/null +++ b/test/W3C_SVG_12_TinyTestSuite_beta/svggen/interact-pevents-05-t.svg @@ -0,0 +1,178 @@ + + + + + + + + + + $RCSfile: interact-pevents-05-t.svg,v $ + + + + + + + + + + + Testing pointer-events - pale RED rect should appear on mouseover. + + + 2nd and 3rd columns represent respectively rects with no fill/stroke and transparent fill/stroke + + + + + + + + + + + + + + + + + + + + + + + + + default : + fill and stroke of rects 1 and 3 must trigger + + + + + + + + + + + + + + + + + + + + + + + + visiblePainted : + fill and stroke of rects 1 and 3 must trigger + + + + + + + + + + + + + + + + + + + + + + + + + + + visibleFill : + only fill of rects 1 to 3 must trigger + + + + + + + + + + + + + + + + + + + + + + + + + + + visibleStroke : + only stroke of rects 1 to 3 must trigger + + + + + + + + + + + + + + + + + + + + + + + + + + + visible : + fill and stroke of rects 1 to 3 must trigger + + + + + + $Revision: 1.6 $ + + + + + diff --git a/test/W3C_SVG_12_TinyTestSuite_beta/svggen/interact-pevents-06-t.svg b/test/W3C_SVG_12_TinyTestSuite_beta/svggen/interact-pevents-06-t.svg new file mode 100755 index 00000000..a1b8b8a7 --- /dev/null +++ b/test/W3C_SVG_12_TinyTestSuite_beta/svggen/interact-pevents-06-t.svg @@ -0,0 +1,169 @@ + + + + + + + + + + $RCSfile: interact-pevents-06-t.svg,v $ + + + + + + + + + + + Testing pointer-events - pale RED rect should appear on mouseover. + + + 2nd and 3rd columns represent respectively rects with no fill/stroke and transparent fill/stroke + + + + + + + + + + + + + + + + + + + + + + + + + painted : + fill and stroke of rects 1, 3 and 4 must trigger + + + + + + + + + + + + + + + + + + + + + + + + fill : + fill of rects 1 to 4 must trigger + + + + + + + + + + + + + + + + + + + + + + + + stroke : + stroke of rects 1 to 4 must trigger + + + + + + + + + + + + + + + + + + + + + + + + all : + stroke and fill of rects 1 to 4 must trigger + + + + + + + + + + + + + + + + + + + + + + + + none : + nothing is to trigger + + + + + + $Revision: 1.6 $ + + + + + diff --git a/test/W3C_SVG_12_TinyTestSuite_beta/svggen/interact-pevents-07-t.svg b/test/W3C_SVG_12_TinyTestSuite_beta/svggen/interact-pevents-07-t.svg new file mode 100755 index 00000000..3a328741 --- /dev/null +++ b/test/W3C_SVG_12_TinyTestSuite_beta/svggen/interact-pevents-07-t.svg @@ -0,0 +1,99 @@ + + + + + + + + + + $RCSfile: interact-pevents-07-t.svg,v $ + + + + + + + + + + + Testing pointer-events and rendering order + Rectangles should turn RED on mouseover + Ovals should turn RED if Pointer-Events are set to "ALL" + + + + Change "Pointer-Events" of + ovals from "ALL" to "NONE" + + + + + Purple ovals have "Pointer-Events" set to "ALL". + Purple ovals have Pointer-Events set to "NONE". + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + $Revision: 1.6 $ + + + + + diff --git a/test/W3C_SVG_12_TinyTestSuite_beta/svggen/interact-pevents-08-t.svg b/test/W3C_SVG_12_TinyTestSuite_beta/svggen/interact-pevents-08-t.svg new file mode 100755 index 00000000..ed75c09c --- /dev/null +++ b/test/W3C_SVG_12_TinyTestSuite_beta/svggen/interact-pevents-08-t.svg @@ -0,0 +1,101 @@ + + + + init(evt); + + + + + + + + + $RCSfile: interact-pevents-08-t.svg,v $ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + Test pointer-events on text + + @AyÖç + + mouseover(evt.target); + + + mouseout(evt.target); + + + @AyÖç + + mouseover(evt.target); + + + mouseout(evt.target); + + + + + + + $Revision: 1.9 $ + + + + + diff --git a/test/W3C_SVG_12_TinyTestSuite_beta/svggen/interact-zoom-01-t.svg b/test/W3C_SVG_12_TinyTestSuite_beta/svggen/interact-zoom-01-t.svg new file mode 100755 index 00000000..63266d62 --- /dev/null +++ b/test/W3C_SVG_12_TinyTestSuite_beta/svggen/interact-zoom-01-t.svg @@ -0,0 +1,42 @@ + + + + + + + + + + $RCSfile: interact-zoom-01-t.svg,v $ + + + + + + + + + + Test default value of + zoomAndPan attribute. + + + + + + + + + + + $Revision: 1.9 $ + + + + + diff --git a/test/W3C_SVG_12_TinyTestSuite_beta/svggen/interact-zoom-02-t.svg b/test/W3C_SVG_12_TinyTestSuite_beta/svggen/interact-zoom-02-t.svg new file mode 100755 index 00000000..90ca60d1 --- /dev/null +++ b/test/W3C_SVG_12_TinyTestSuite_beta/svggen/interact-zoom-02-t.svg @@ -0,0 +1,42 @@ + + + + + + + + + + $RCSfile: interact-zoom-02-t.svg,v $ + + + + + + + + + + Test "magnify" value of + zoomAndPan attribute. + + + + + + + + + + + $Revision: 1.9 $ + + + + + diff --git a/test/W3C_SVG_12_TinyTestSuite_beta/svggen/interact-zoom-03-t.svg b/test/W3C_SVG_12_TinyTestSuite_beta/svggen/interact-zoom-03-t.svg new file mode 100755 index 00000000..90839ba1 --- /dev/null +++ b/test/W3C_SVG_12_TinyTestSuite_beta/svggen/interact-zoom-03-t.svg @@ -0,0 +1,43 @@ + + + + + + + + + + $RCSfile: interact-zoom-03-t.svg,v $ + + + + + + + + + + + Test "disable" value of + zoomAndPan attribute. + + + + + + + + + + + $Revision: 1.10 $ + + + + + diff --git a/test/W3C_SVG_12_TinyTestSuite_beta/svggen/intro-compat-201-t.svg b/test/W3C_SVG_12_TinyTestSuite_beta/svggen/intro-compat-201-t.svg new file mode 100755 index 00000000..ca809176 Binary files /dev/null and b/test/W3C_SVG_12_TinyTestSuite_beta/svggen/intro-compat-201-t.svg differ diff --git a/test/W3C_SVG_12_TinyTestSuite_beta/svggen/jpeg-required-201-t.svg b/test/W3C_SVG_12_TinyTestSuite_beta/svggen/jpeg-required-201-t.svg new file mode 100755 index 00000000..b3f041dc --- /dev/null +++ b/test/W3C_SVG_12_TinyTestSuite_beta/svggen/jpeg-required-201-t.svg @@ -0,0 +1,39 @@ + + + + + + + + + + $RCSfile: jpeg-required-201-t.svg,v $ + + + + + + + + + + + baseline 4:1:1 + sequential + + + $Revision: 1.4 $ + + + + + \ No newline at end of file diff --git a/test/W3C_SVG_12_TinyTestSuite_beta/svggen/jpeg-required-202-t.svg b/test/W3C_SVG_12_TinyTestSuite_beta/svggen/jpeg-required-202-t.svg new file mode 100755 index 00000000..8c6a0b74 --- /dev/null +++ b/test/W3C_SVG_12_TinyTestSuite_beta/svggen/jpeg-required-202-t.svg @@ -0,0 +1,39 @@ + + + + + + + + + + $RCSfile: jpeg-required-202-t.svg,v $ + + + + + + + + + + + optimized 4:1:1 + sequential + + + $Revision: 1.5 $ + + + + + \ No newline at end of file diff --git a/test/W3C_SVG_12_TinyTestSuite_beta/svggen/jpeg-required-203-t.svg b/test/W3C_SVG_12_TinyTestSuite_beta/svggen/jpeg-required-203-t.svg new file mode 100755 index 00000000..a30cdd95 --- /dev/null +++ b/test/W3C_SVG_12_TinyTestSuite_beta/svggen/jpeg-required-203-t.svg @@ -0,0 +1,39 @@ + + + + + + + + + + $RCSfile: jpeg-required-203-t.svg,v $ + + + + + + + + + + + optimized 4:1:1 + progressive + + + $Revision: 1.5 $ + + + + + \ No newline at end of file diff --git a/test/W3C_SVG_12_TinyTestSuite_beta/svggen/jpeg-required-204-t.svg b/test/W3C_SVG_12_TinyTestSuite_beta/svggen/jpeg-required-204-t.svg new file mode 100755 index 00000000..d71d56fd --- /dev/null +++ b/test/W3C_SVG_12_TinyTestSuite_beta/svggen/jpeg-required-204-t.svg @@ -0,0 +1,39 @@ + + + + + + + + + + $RCSfile: jpeg-required-204-t.svg,v $ + + + + + + + + + + + greyscale + sequential + + + $Revision: 1.5 $ + + + + + \ No newline at end of file diff --git a/test/W3C_SVG_12_TinyTestSuite_beta/svggen/jpeg-required-205-t.svg b/test/W3C_SVG_12_TinyTestSuite_beta/svggen/jpeg-required-205-t.svg new file mode 100755 index 00000000..aa9c07d3 --- /dev/null +++ b/test/W3C_SVG_12_TinyTestSuite_beta/svggen/jpeg-required-205-t.svg @@ -0,0 +1,40 @@ + + + + + + + + + + $RCSfile: jpeg-required-205-t.svg,v $ + + + + + + + + + + + optimised 4:1:1 + sequential + multi APP markers + + + $Revision: 1.5 $ + + + + + \ No newline at end of file diff --git a/test/W3C_SVG_12_TinyTestSuite_beta/svggen/jpeg-required-206-t.svg b/test/W3C_SVG_12_TinyTestSuite_beta/svggen/jpeg-required-206-t.svg new file mode 100755 index 00000000..117a4808 --- /dev/null +++ b/test/W3C_SVG_12_TinyTestSuite_beta/svggen/jpeg-required-206-t.svg @@ -0,0 +1,40 @@ + + + + + + + + + + $RCSfile: jpeg-required-206-t.svg,v $ + + + + + + + + + + + optimised 4:1:1 + sequential + float DCT + + + $Revision: 1.5 $ + + + + + \ No newline at end of file diff --git a/test/W3C_SVG_12_TinyTestSuite_beta/svggen/jpeg-required-207-t.svg b/test/W3C_SVG_12_TinyTestSuite_beta/svggen/jpeg-required-207-t.svg new file mode 100755 index 00000000..859cce10 --- /dev/null +++ b/test/W3C_SVG_12_TinyTestSuite_beta/svggen/jpeg-required-207-t.svg @@ -0,0 +1,38 @@ + + + + + + + + + + $RCSfile: jpeg-required-207-t.svg,v $ + + + + + + + + + + optimised 4:4:4 + sequential + + + $Revision: 1.5 $ + + + + + \ No newline at end of file diff --git a/test/W3C_SVG_12_TinyTestSuite_beta/svggen/jpeg-required-208-t.svg b/test/W3C_SVG_12_TinyTestSuite_beta/svggen/jpeg-required-208-t.svg new file mode 100755 index 00000000..2d0f9819 --- /dev/null +++ b/test/W3C_SVG_12_TinyTestSuite_beta/svggen/jpeg-required-208-t.svg @@ -0,0 +1,41 @@ + + + + + + + + + + $RCSfile: jpeg-required-208-t.svg,v $ + + + + + + + + + + + optimised 4:4:2 + sequential + unusual subsampling + 2x2, 4x1, 1x2 + + + $Revision: 1.5 $ + + + + + \ No newline at end of file diff --git a/test/W3C_SVG_12_TinyTestSuite_beta/svggen/jpeg-required-209-t.svg b/test/W3C_SVG_12_TinyTestSuite_beta/svggen/jpeg-required-209-t.svg new file mode 100755 index 00000000..60f360f1 --- /dev/null +++ b/test/W3C_SVG_12_TinyTestSuite_beta/svggen/jpeg-required-209-t.svg @@ -0,0 +1,40 @@ + + + + + + + + + + $RCSfile: jpeg-required-209-t.svg,v $ + + + + + + + + + + + optimised 4:1:1 + sequential + high compression + + + $Revision: 1.5 $ + + + + + \ No newline at end of file diff --git a/test/W3C_SVG_12_TinyTestSuite_beta/svggen/linking-a-03-t.svg b/test/W3C_SVG_12_TinyTestSuite_beta/svggen/linking-a-03-t.svg new file mode 100755 index 00000000..363a4d3b --- /dev/null +++ b/test/W3C_SVG_12_TinyTestSuite_beta/svggen/linking-a-03-t.svg @@ -0,0 +1,31 @@ + + + + + + + + + + $RCSfile: linking-a-03-t.svg,v $ + + + + + + + + + + + + + + + + $Revision: 1.9 $ + + + diff --git a/test/W3C_SVG_12_TinyTestSuite_beta/svggen/linking-a-08-t.svg b/test/W3C_SVG_12_TinyTestSuite_beta/svggen/linking-a-08-t.svg new file mode 100755 index 00000000..434b5360 --- /dev/null +++ b/test/W3C_SVG_12_TinyTestSuite_beta/svggen/linking-a-08-t.svg @@ -0,0 +1,42 @@ + + + + + + + + + + $RCSfile: linking-a-08-t.svg,v $ + + + + + + + + + + + Link inside text + + + Link around text + + + + + $Revision: 1.5 $ + + + + + diff --git a/test/W3C_SVG_12_TinyTestSuite_beta/svggen/linking-a-201-t.svg b/test/W3C_SVG_12_TinyTestSuite_beta/svggen/linking-a-201-t.svg new file mode 100755 index 00000000..8b6154c4 --- /dev/null +++ b/test/W3C_SVG_12_TinyTestSuite_beta/svggen/linking-a-201-t.svg @@ -0,0 +1,44 @@ + + + + + + + + + + $RCSfile: linking-a-201-t.svg,v $ + + + + + + + + + + + + + + + + + + + + + + + + $Revision: 1.3 $ + + + + + diff --git a/test/W3C_SVG_12_TinyTestSuite_beta/svggen/linking-frag-201-t.svg b/test/W3C_SVG_12_TinyTestSuite_beta/svggen/linking-frag-201-t.svg new file mode 100755 index 00000000..2a649ef7 --- /dev/null +++ b/test/W3C_SVG_12_TinyTestSuite_beta/svggen/linking-frag-201-t.svg @@ -0,0 +1,124 @@ + + + + + + + + + + $RCSfile: linking-frag-201-t.svg,v $ + + + + + + + + + + + + Testing Links to External 'svgView' with Transforms + + First line links to an svgView in an external file (linking-frag-202-t.svg) + + + Second line links to an svgView in the local file + + + + + + + + + + + + Rotate + + + + + + Shift + + + + + + Scale + + + + + + skewX + + + + + + skewY + + + + + + identity + + + + + + + Rotate + + + + + + Shift + + + + + + Scale + + + + + + skewX + + + + + + skewY + + + + + + identity + + + + + $Revision: 1.6 $ + + + + + diff --git a/test/W3C_SVG_12_TinyTestSuite_beta/svggen/linking-frag-202-t.svg b/test/W3C_SVG_12_TinyTestSuite_beta/svggen/linking-frag-202-t.svg new file mode 100755 index 00000000..452f9e01 --- /dev/null +++ b/test/W3C_SVG_12_TinyTestSuite_beta/svggen/linking-frag-202-t.svg @@ -0,0 +1,123 @@ + + + + + + + + + + $RCSfile: linking-frag-202-t.svg,v $ + + + + + + + + + + + + Testing Links to External 'svgView' with Transforms + + First line links to an svgView in an external file (linking-frag-201-t.svg) + + + Second line links to an svgView in the local file + + + + + + + + + + + Rotate + + + + + + Shift + + + + + + Scale + + + + + + skewX + + + + + + skewY + + + + + + identity + + + + + + + Rotate + + + + + + Shift + + + + + + Scale + + + + + + skewX + + + + + + skewY + + + + + + identity + + + + + $Revision: 1.6 $ + + + + + diff --git a/test/W3C_SVG_12_TinyTestSuite_beta/svggen/linking-frag-203-t.svg b/test/W3C_SVG_12_TinyTestSuite_beta/svggen/linking-frag-203-t.svg new file mode 100755 index 00000000..d23bf9ab --- /dev/null +++ b/test/W3C_SVG_12_TinyTestSuite_beta/svggen/linking-frag-203-t.svg @@ -0,0 +1,47 @@ + + + + + + + + + + $RCSfile: linking-frag-203-t.svg,v $ + + + + + + + + + + + + + + + + + + + + + + + + $Revision: 1.8 $ + + + + + diff --git a/test/W3C_SVG_12_TinyTestSuite_beta/svggen/linking-frag-204-t.svg b/test/W3C_SVG_12_TinyTestSuite_beta/svggen/linking-frag-204-t.svg new file mode 100755 index 00000000..9a3b5827 --- /dev/null +++ b/test/W3C_SVG_12_TinyTestSuite_beta/svggen/linking-frag-204-t.svg @@ -0,0 +1,40 @@ + + + + + + + + + + $RCSfile: linking-frag-204-t.svg,v $ + + + + + + + + + + + + + + + + $Revision: 1.3 $ + + + + + diff --git a/test/W3C_SVG_12_TinyTestSuite_beta/svggen/linking-refs-201-t.svg b/test/W3C_SVG_12_TinyTestSuite_beta/svggen/linking-refs-201-t.svg new file mode 100755 index 00000000..adcedfe0 --- /dev/null +++ b/test/W3C_SVG_12_TinyTestSuite_beta/svggen/linking-refs-201-t.svg @@ -0,0 +1,66 @@ + + + + + + + + + + $RCSfile: linking-refs-201-t.svg,v $ + + + + + + + + + External Animated Use Elements + + + Two rotating rectangles, blue and black + with animated opacity + + + + + + + + Two rotating rectangles, oscillating in phase + opposition between yellow and red + + + + + + + + + + + + Animated rotation, translation and color at + different 'use' levels, external and internal + + + + + + + + $Revision: 1.7 $ + + + + + diff --git a/test/W3C_SVG_12_TinyTestSuite_beta/svggen/linking-refs-202-t.svg b/test/W3C_SVG_12_TinyTestSuite_beta/svggen/linking-refs-202-t.svg new file mode 100755 index 00000000..21d17cb0 --- /dev/null +++ b/test/W3C_SVG_12_TinyTestSuite_beta/svggen/linking-refs-202-t.svg @@ -0,0 +1,47 @@ + + + + + + + + + + $RCSfile: linking-refs-202-t.svg,v $ + + + + + + + + + + Images with 'use' Element + + The two images must appear identical. + + + + + External PNG image + + + + External base64 image + + + $Revision: 1.7 $ + + + + + diff --git a/test/W3C_SVG_12_TinyTestSuite_beta/svggen/linking-refs-203-t.svg b/test/W3C_SVG_12_TinyTestSuite_beta/svggen/linking-refs-203-t.svg new file mode 100755 index 00000000..d39621cf --- /dev/null +++ b/test/W3C_SVG_12_TinyTestSuite_beta/svggen/linking-refs-203-t.svg @@ -0,0 +1,89 @@ + + + + + + + + + + $RCSfile: linking-refs-203-t.svg,v $ + + + + + + + + + + + + + + + + External Fragments with 'use' Element + + + + Rect using external gradients + for fill and stroke + + + + Rect using external fill gradient + gradient & local stroke gradient + + + + Text using SVG font + + + + Alphabet a to j + + + + + + Group using a rect and + 3 circles using gradients + + + + 2 levels of external <use> A green + rect, yellow circle must appear + + + + Testing id name clash. + Rect must be red + + + + + External circular reference + Two identical rectangles must appear, + proving the circular reference didn't loop + + + + + + + + $Revision: 1.8 $ + + + + + diff --git a/test/W3C_SVG_12_TinyTestSuite_beta/svggen/linking-refs-204-t.svg b/test/W3C_SVG_12_TinyTestSuite_beta/svggen/linking-refs-204-t.svg new file mode 100755 index 00000000..d6975a4a --- /dev/null +++ b/test/W3C_SVG_12_TinyTestSuite_beta/svggen/linking-refs-204-t.svg @@ -0,0 +1,71 @@ + + + + + + + + + + $RCSfile: linking-refs-204-t.svg,v $ + + + + + + + + + + + + + External Fragments with 'use' Element + + + + Red rect, blue stroke + + + + Black rect + + + + Blue-red-blue letters + + + + + + Group, red rect, blue circle + + + + Green rect, + "externally defined in this file" + + + + Test id clash - must show + transparent blue circle & green rect + + + + + + + $Revision: 1.7 $ + + + + + diff --git a/test/W3C_SVG_12_TinyTestSuite_beta/svggen/linking-refs-205-t.svg b/test/W3C_SVG_12_TinyTestSuite_beta/svggen/linking-refs-205-t.svg new file mode 100755 index 00000000..0404370d --- /dev/null +++ b/test/W3C_SVG_12_TinyTestSuite_beta/svggen/linking-refs-205-t.svg @@ -0,0 +1,46 @@ + + + + + + + + + + $RCSfile: linking-refs-205-t.svg,v $ + + + + + + + + + + Images with external 'use' Element + + Testing xml:base. The two images must appear identical. + + + Click to execute link + + + + + + + + $Revision: 1.7 $ + + + + + diff --git a/test/W3C_SVG_12_TinyTestSuite_beta/svggen/linking-refs-206-t.svg b/test/W3C_SVG_12_TinyTestSuite_beta/svggen/linking-refs-206-t.svg new file mode 100755 index 00000000..3ddb87f5 --- /dev/null +++ b/test/W3C_SVG_12_TinyTestSuite_beta/svggen/linking-refs-206-t.svg @@ -0,0 +1,70 @@ + + + + + + + + + + $RCSfile: linking-refs-206-t.svg,v $ + + + + + + + + + + + + + + + + + + + + + + + $Revision: 1.3 $ + + + + + \ No newline at end of file diff --git a/test/W3C_SVG_12_TinyTestSuite_beta/svggen/linking-uri-03-t.svg b/test/W3C_SVG_12_TinyTestSuite_beta/svggen/linking-uri-03-t.svg new file mode 100755 index 00000000..5553e691 --- /dev/null +++ b/test/W3C_SVG_12_TinyTestSuite_beta/svggen/linking-uri-03-t.svg @@ -0,0 +1,46 @@ + + + + + + + + + + $RCSfile: linking-uri-03-t.svg,v $ + + + + + + + + + Simple exercise of xlink attributes on the 'a' element. + + + + Click for TOC + Link to local file + linkingToc-t.svg. + + xlink:type="simple" + xlink:show="replace" + xlink:actuate="onRequest" + xlink:href="linkingToc-t.svg" + xlink:role="figure-out-a-role" + xlink:title="TOC of Linking BE tests." + target="_self" + + + $Revision: 1.9 $ + + + + + diff --git a/test/W3C_SVG_12_TinyTestSuite_beta/svggen/media-alevel-201-t.svg b/test/W3C_SVG_12_TinyTestSuite_beta/svggen/media-alevel-201-t.svg new file mode 100755 index 00000000..406539bd --- /dev/null +++ b/test/W3C_SVG_12_TinyTestSuite_beta/svggen/media-alevel-201-t.svg @@ -0,0 +1,126 @@ + + + + + + + + + + $RCSfile: media-alevel-201-t.svg,v $ + + + + + + + + + + + Audio Level + + + The scale at the bottom uses 'set' to modify the 'audio-level' on the sample audio element. + + + The audio element can be triggered by activating the current focus. + + + + + + + + + + + Boing + 0 + + + + + + + + + + + + + + + + + + + + + + + 0 + volume + 10 + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + $Revision: 1.10 $ + + + + + diff --git a/test/W3C_SVG_12_TinyTestSuite_beta/svggen/media-alevel-202-t.svg b/test/W3C_SVG_12_TinyTestSuite_beta/svggen/media-alevel-202-t.svg new file mode 100755 index 00000000..979f034c --- /dev/null +++ b/test/W3C_SVG_12_TinyTestSuite_beta/svggen/media-alevel-202-t.svg @@ -0,0 +1,124 @@ + + + + + + + + + + $RCSfile: media-alevel-202-t.svg,v $ + + + + + + + + + + + Audio Level + + + The scale at the bottom uses 'set' to modify the 'audio-level' on the sample video element. + + + The video element can be triggered by activating the current focus. + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + 0 + volume + 10 + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + $Revision: 1.10 $ + + + + + diff --git a/test/W3C_SVG_12_TinyTestSuite_beta/svggen/media-alevel-203-t.svg b/test/W3C_SVG_12_TinyTestSuite_beta/svggen/media-alevel-203-t.svg new file mode 100755 index 00000000..6048b2ef --- /dev/null +++ b/test/W3C_SVG_12_TinyTestSuite_beta/svggen/media-alevel-203-t.svg @@ -0,0 +1,54 @@ + + + + + + + + + + $RCSfile: media-alevel-203-t.svg,v $ + + + + + + + + + + + + + + + + + + + + + + + + Animated volume. + + + $Revision: 1.7 $ + + + + + diff --git a/test/W3C_SVG_12_TinyTestSuite_beta/svggen/media-alevel-204-t.svg b/test/W3C_SVG_12_TinyTestSuite_beta/svggen/media-alevel-204-t.svg new file mode 100755 index 00000000..65f949c0 --- /dev/null +++ b/test/W3C_SVG_12_TinyTestSuite_beta/svggen/media-alevel-204-t.svg @@ -0,0 +1,76 @@ + + + + + + + + + + $RCSfile: media-alevel-204-t.svg,v $ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + Animated audio-level + Two sound-clips have their volume animated to different values over 10 seconds. + + + $Revision: 1.6 $ + + + + + diff --git a/test/W3C_SVG_12_TinyTestSuite_beta/svggen/media-alevel-205-t.svg b/test/W3C_SVG_12_TinyTestSuite_beta/svggen/media-alevel-205-t.svg new file mode 100755 index 00000000..0d868956 --- /dev/null +++ b/test/W3C_SVG_12_TinyTestSuite_beta/svggen/media-alevel-205-t.svg @@ -0,0 +1,57 @@ + + + + + + + + + + $RCSfile: media-alevel-205-t.svg,v $ + + + + + + + + + + + + + + + + + + + + + + + + Animated volume + dur="10" + from="0" to="1" + + + + $Revision: 1.6 $ + + + + + diff --git a/test/W3C_SVG_12_TinyTestSuite_beta/svggen/media-alevel-206-t.svg b/test/W3C_SVG_12_TinyTestSuite_beta/svggen/media-alevel-206-t.svg new file mode 100755 index 00000000..76f51a7f --- /dev/null +++ b/test/W3C_SVG_12_TinyTestSuite_beta/svggen/media-alevel-206-t.svg @@ -0,0 +1,62 @@ + + + + + + + + + + $RCSfile: media-alevel-206-t.svg,v $ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + Test on audio-level inheritance in child elements. + An audio file is played four times. Each time the audio-level should be cut in half. + The four audio-level values should be: 0.5 , 0.25 , 0.125 , 0.0625 + A very noticeable difference in audio level should be heard! + + + + $Revision: 1.7 $ + + + + + diff --git a/test/W3C_SVG_12_TinyTestSuite_beta/svggen/media-alevel-207-t.svg b/test/W3C_SVG_12_TinyTestSuite_beta/svggen/media-alevel-207-t.svg new file mode 100755 index 00000000..92036138 --- /dev/null +++ b/test/W3C_SVG_12_TinyTestSuite_beta/svggen/media-alevel-207-t.svg @@ -0,0 +1,45 @@ + + + + + + + + + + $RCSfile: media-alevel-207-t.svg,v $ + + + + + + + + + + Test on audio-level + audio-level="0" + An audio file is repeated for 10 seconds, + should NOT be audible! + + + + + + $Revision: 1.6 $ + + + + + diff --git a/test/W3C_SVG_12_TinyTestSuite_beta/svggen/media-alevel-208-t.svg b/test/W3C_SVG_12_TinyTestSuite_beta/svggen/media-alevel-208-t.svg new file mode 100755 index 00000000..204379dc --- /dev/null +++ b/test/W3C_SVG_12_TinyTestSuite_beta/svggen/media-alevel-208-t.svg @@ -0,0 +1,45 @@ + + + + + + + + + + $RCSfile: media-alevel-208-t.svg,v $ + + + + + + + + + + Test on audio-level + audio-level="1" + An audio file is repeated for 10 seconds, + should be audible! + + + + + + $Revision: 1.6 $ + + + + + diff --git a/test/W3C_SVG_12_TinyTestSuite_beta/svggen/media-anim-201-t.svg b/test/W3C_SVG_12_TinyTestSuite_beta/svggen/media-anim-201-t.svg new file mode 100755 index 00000000..850dc17e --- /dev/null +++ b/test/W3C_SVG_12_TinyTestSuite_beta/svggen/media-anim-201-t.svg @@ -0,0 +1,83 @@ + + + + + + + + + + $RCSfile: media-anim-201-t.svg,v $ + + + + + + + + + + Animation Elements with External References + + + + + + + + + + + Reference Timeline : starts at 0, goes through the scale in 10s. + Squares should rotate indefinetly. + + + 1. + Reference to external dual-chained animation. + Rects should spin alternatively. + + + + + 2. + Reference to focusable circle. Should start as red and + remain red even when an attempt is made to move focus. + + + + 3. + Reference to mouseoverable circle. + Should be grey and turn red on mousover then back to grey. + + + + 4. + Reference to animated rect with gradient fill - twice. + + + + + + 5. + Reference to animated group rect using circles with gradients. + + + + + + + $Revision: 1.11 $ + + + + + diff --git a/test/W3C_SVG_12_TinyTestSuite_beta/svggen/media-anim-202-t.svg b/test/W3C_SVG_12_TinyTestSuite_beta/svggen/media-anim-202-t.svg new file mode 100755 index 00000000..84a72edf --- /dev/null +++ b/test/W3C_SVG_12_TinyTestSuite_beta/svggen/media-anim-202-t.svg @@ -0,0 +1,91 @@ + + + + + + + + + + $RCSfile: media-anim-202-t.svg,v $ + + + + + + + + + + + Animation Elements with External References + + Testing time-base animation control. Every time a scale shows up, its own time should be 0 + + + + + + + + + + + + Reference Timeline : starts at 0, goes through the scale in 10s + + + + 1. + Full Animation : starts at 0, stops at 10 + + + + 2. + Shorter Animation used : appears at 2, stops at 6 + + + + 3. + Longer Animation (14s) : appears at 0, stops at 10 + + + + 4. + Short repeatCount animation : goes 5 times from 0 to 2, + stops at 10 + + + + 5. + Short repeatDur animation : same as above + + + + 6. + Frozen animation : appears at 4, freezes on 4 at 8 + + + + 7. + Interrupted animation : should stop at 4 because of + "end" attribute + + + + + $Revision: 1.11 $ + + + + + diff --git a/test/W3C_SVG_12_TinyTestSuite_beta/svggen/media-anim-203-t.svg b/test/W3C_SVG_12_TinyTestSuite_beta/svggen/media-anim-203-t.svg new file mode 100755 index 00000000..dd889d71 --- /dev/null +++ b/test/W3C_SVG_12_TinyTestSuite_beta/svggen/media-anim-203-t.svg @@ -0,0 +1,79 @@ + + + + + + + + + + $RCSfile: media-anim-203-t.svg,v $ + + + + + + + + + + + Animation Elements with External References + + Testing time-base animation control. Every time a scale shows up, its own time should be 0 + + + + + + + + + + + + Reference Timeline : starts at 0, goes through the scale in 10s, + + + + 1. + Animation events, runs for 2s at time 0 and when (4) ends + + + + 2. + Animation events, runs for 2s when (1) ends + + + + 3. + Animation events, runs for 2s when (2) ends + + + + 4. + Animation events, runs for 2s when (3) ends + + + + 5. + Animation events, starts at 0 and loops every two seconds. + + + + + $Revision: 1.11 $ + + + + + diff --git a/test/W3C_SVG_12_TinyTestSuite_beta/svggen/media-anim-204-t.svg b/test/W3C_SVG_12_TinyTestSuite_beta/svggen/media-anim-204-t.svg new file mode 100755 index 00000000..df53bd1d --- /dev/null +++ b/test/W3C_SVG_12_TinyTestSuite_beta/svggen/media-anim-204-t.svg @@ -0,0 +1,120 @@ + + + + + + + + + + $RCSfile: media-anim-204-t.svg,v $ + + + + + + + + + + + Animation Elements with External References + + Testing time-base animation control. Every time a scale shows up, its own time should be 0 + + + + + + + + + + + + Reference Timeline: starts at 0, goes through the scale in 10s, + + + + + 1. + User event driven animation: appears upon + text focusing, stops after 2s or focus lost + + + + + + + + + 2. + User event driven animation: starts upon + text focusing, stops after 2s or focus lost + + + + + + + + + + 3. + User event driven animation: appears upon + mouseover, stops after 2s or mouseout + + + + + + + + + + 4. + User event driven animation: appears upon + mouseover. Stops after 10s + + + + + + + + + 5. + User event/animation event driven: starts and runs + for 2s when animation (3) or (4) begins. + + + + + + 6. + User event/animation event driven: appears and runs + for 2s when animation (1) through (5) ends. + + + + 7. + Animation events: starts at 0 and loops every two seconds. + + + + + $Revision: 1.13 $ + + + + + diff --git a/test/W3C_SVG_12_TinyTestSuite_beta/svggen/media-anim-205-t.svg b/test/W3C_SVG_12_TinyTestSuite_beta/svggen/media-anim-205-t.svg new file mode 100755 index 00000000..01bf1286 --- /dev/null +++ b/test/W3C_SVG_12_TinyTestSuite_beta/svggen/media-anim-205-t.svg @@ -0,0 +1,69 @@ + + + + + + + + + + $RCSfile: media-anim-205-t.svg,v $ + + + + + + + + + + Animation Elements with External References + Testing 'preserveAspectRatio' attribute values on <animation> + + + + none + + + + + xMidYMid meet + + + + + defer (xMinYMin) + + + + + + + + + + + + + + + + + + + + $Revision: 1.11 $ + + + + + diff --git a/test/W3C_SVG_12_TinyTestSuite_beta/svggen/media-anim-206-t.svg b/test/W3C_SVG_12_TinyTestSuite_beta/svggen/media-anim-206-t.svg new file mode 100755 index 00000000..059ed6b2 --- /dev/null +++ b/test/W3C_SVG_12_TinyTestSuite_beta/svggen/media-anim-206-t.svg @@ -0,0 +1,58 @@ + + + + + + + + + + $RCSfile: media-anim-206-t.svg,v $ + + + + + + + + + + + + Animation Elements with External References + Testing 'viewport-fill' and 'viewport-fill-opacity' defined locally. + + + red background fill + + + + + blue background fill + + + + + transparent + black background + + + + + + + $Revision: 1.10 $ + + + + + diff --git a/test/W3C_SVG_12_TinyTestSuite_beta/svggen/media-anim-207-t.svg b/test/W3C_SVG_12_TinyTestSuite_beta/svggen/media-anim-207-t.svg new file mode 100755 index 00000000..d0fd76cd --- /dev/null +++ b/test/W3C_SVG_12_TinyTestSuite_beta/svggen/media-anim-207-t.svg @@ -0,0 +1,70 @@ + + + + + + + + + + $RCSfile: media-anim-207-t.svg,v $ + $RCSfile: media-anim-207-t.svg,v $ + + + + + + + + + + + Animation Elements with External References + Testing transformations applied to the Animation element. + + + + Skew Y + + + + + + + 10 deg center rotation + + + + + + + Scaled square viewPort + + + + + + + No width/height, + No animation expected + + + + + + + $Revision: 1.8 $ + + + + + diff --git a/test/W3C_SVG_12_TinyTestSuite_beta/svggen/media-anim-208-t.svg b/test/W3C_SVG_12_TinyTestSuite_beta/svggen/media-anim-208-t.svg new file mode 100755 index 00000000..da0fff73 --- /dev/null +++ b/test/W3C_SVG_12_TinyTestSuite_beta/svggen/media-anim-208-t.svg @@ -0,0 +1,122 @@ + + + + + + + + + + $RCSfile: media-anim-208-t.svg,v $ + + + + + + + + + + + Animation Elements testing initialVisibility + + Testing time-base animation control. Every time a scale shows up, its own time should be 0 + + + + + + + + + + + + Reference Timeline: starts at 0, goes through the scale in 10s, + + + + + 1. + User event driven animation: starts upon + text focusing, stops after 2s or focus lost + + + + + + + + + 2. + User event driven animation: starts upon + text focusing, stops after 2s or focus lost + + + + + + + + + + 3. + User event driven animation: starts upon + mouseover, stops after 2s or mouseout + + + + + + + + + + 4. + User event driven animation: starts upon + mouseover. Stops after 10s + + + + + + + + + 5. + User event/animation event driven: runs + for 2s when animation (3) or (4) begins. + + + + + + + + 6. + User event/animation event driven: runs + for 2s when animation (1) through (5) ends. + + + + 7. + Animation events: starts at 0 and loops every two seconds. + + + + + $Revision: 1.12 $ + + + + + diff --git a/test/W3C_SVG_12_TinyTestSuite_beta/svggen/media-anim-209-t.svg b/test/W3C_SVG_12_TinyTestSuite_beta/svggen/media-anim-209-t.svg new file mode 100755 index 00000000..cd04651f --- /dev/null +++ b/test/W3C_SVG_12_TinyTestSuite_beta/svggen/media-anim-209-t.svg @@ -0,0 +1,61 @@ + + + + + + + + + + $RCSfile: media-anim-209-t.svg,v $ + + + + + + + + + + Animation and discard elements + + + + + Discard @ 6s + + + + Discard @ 10s + + + + Discard @ 14s + + + + Discard @ 18s + + + + + + + + + + $Revision: 1.9 $ + + + + + diff --git a/test/W3C_SVG_12_TinyTestSuite_beta/svggen/media-anim-210-t.svg b/test/W3C_SVG_12_TinyTestSuite_beta/svggen/media-anim-210-t.svg new file mode 100755 index 00000000..6730035f --- /dev/null +++ b/test/W3C_SVG_12_TinyTestSuite_beta/svggen/media-anim-210-t.svg @@ -0,0 +1,51 @@ + + + + + + + + + + $RCSfile: media-anim-210-t.svg,v $ + + + + + + + + + + Animation element and primary documents + + + + + + + + + + + + + + + + + $Revision: 1.11 $ + + + + + diff --git a/test/W3C_SVG_12_TinyTestSuite_beta/svggen/media-anim-211-t.svg b/test/W3C_SVG_12_TinyTestSuite_beta/svggen/media-anim-211-t.svg new file mode 100755 index 00000000..6a57aaf0 --- /dev/null +++ b/test/W3C_SVG_12_TinyTestSuite_beta/svggen/media-anim-211-t.svg @@ -0,0 +1,48 @@ + + + + + + + + + + $RCSfile: media-anim-211-t.svg,v $ + + + + + + + + + + Animation element with invalid xlink:href + + + + + + + + + + + + + + $Revision: 1.5 $ + + + + + diff --git a/test/W3C_SVG_12_TinyTestSuite_beta/svggen/media-anim-212-t.svg b/test/W3C_SVG_12_TinyTestSuite_beta/svggen/media-anim-212-t.svg new file mode 100755 index 00000000..ea740f36 --- /dev/null +++ b/test/W3C_SVG_12_TinyTestSuite_beta/svggen/media-anim-212-t.svg @@ -0,0 +1,57 @@ + + + + + + + + + + $RCSfile: media-anim-212-t.svg,v $ + + + + + + + + + + + + Animation Element with animating xlink:href. + This slide tests animating the xlink:href attribute of animation elements. + + + + + + + + Reference Timeline : starts at 0, goes through the scale in 10s. + + + + + + Reference to external animation. + + + + + + $Revision: 1.8 $ + + + + + diff --git a/test/W3C_SVG_12_TinyTestSuite_beta/svggen/media-anim-213-t.svg b/test/W3C_SVG_12_TinyTestSuite_beta/svggen/media-anim-213-t.svg new file mode 100755 index 00000000..a5d5b87a --- /dev/null +++ b/test/W3C_SVG_12_TinyTestSuite_beta/svggen/media-anim-213-t.svg @@ -0,0 +1,32 @@ + + + + + + + + + + $RCSfile: media-anim-213-t.svg,v $ + + + + + + + + + + + + $Revision: 1.4 $ + + + + + diff --git a/test/W3C_SVG_12_TinyTestSuite_beta/svggen/media-audio-201-t.svg b/test/W3C_SVG_12_TinyTestSuite_beta/svggen/media-audio-201-t.svg new file mode 100755 index 00000000..856ccf26 --- /dev/null +++ b/test/W3C_SVG_12_TinyTestSuite_beta/svggen/media-audio-201-t.svg @@ -0,0 +1,40 @@ + + + + + + + + + + $RCSfile: media-audio-201-t.svg,v $ + + + + + + + + + + Two sounds at the same time + + + + + + $Revision: 1.5 $ + + + + + diff --git a/test/W3C_SVG_12_TinyTestSuite_beta/svggen/media-audio-202-t.svg b/test/W3C_SVG_12_TinyTestSuite_beta/svggen/media-audio-202-t.svg new file mode 100755 index 00000000..c5e0994c --- /dev/null +++ b/test/W3C_SVG_12_TinyTestSuite_beta/svggen/media-audio-202-t.svg @@ -0,0 +1,40 @@ + + + + + + + + + + $RCSfile: media-audio-202-t.svg,v $ + + + + + + + + + + + repeatCount="2" + + + + $Revision: 1.5 $ + + + + + \ No newline at end of file diff --git a/test/W3C_SVG_12_TinyTestSuite_beta/svggen/media-audio-203-t.svg b/test/W3C_SVG_12_TinyTestSuite_beta/svggen/media-audio-203-t.svg new file mode 100755 index 00000000..6373c071 --- /dev/null +++ b/test/W3C_SVG_12_TinyTestSuite_beta/svggen/media-audio-203-t.svg @@ -0,0 +1,39 @@ + + + + + + + + + + $RCSfile: media-audio-203-t.svg,v $ + + + + + + + + + + + repeatCount="indefinite" + + + $Revision: 1.5 $ + + + + + diff --git a/test/W3C_SVG_12_TinyTestSuite_beta/svggen/media-audio-204-t.svg b/test/W3C_SVG_12_TinyTestSuite_beta/svggen/media-audio-204-t.svg new file mode 100755 index 00000000..f99c2c54 --- /dev/null +++ b/test/W3C_SVG_12_TinyTestSuite_beta/svggen/media-audio-204-t.svg @@ -0,0 +1,44 @@ + + + + + + + + + + $RCSfile: media-audio-204-t.svg,v $ + + + + + + + + + + + repeatCount="5" end="3" + + + + + + + + $Revision: 1.5 $ + + + + + diff --git a/test/W3C_SVG_12_TinyTestSuite_beta/svggen/media-audio-205-t.svg b/test/W3C_SVG_12_TinyTestSuite_beta/svggen/media-audio-205-t.svg new file mode 100755 index 00000000..0b7b4055 --- /dev/null +++ b/test/W3C_SVG_12_TinyTestSuite_beta/svggen/media-audio-205-t.svg @@ -0,0 +1,40 @@ + + + + + + + + + + $RCSfile: media-audio-205-t.svg,v $ + + + + + + + + + + begin="3s" + + + + + + $Revision: 1.5 $ + + + + + diff --git a/test/W3C_SVG_12_TinyTestSuite_beta/svggen/media-audio-206-t.svg b/test/W3C_SVG_12_TinyTestSuite_beta/svggen/media-audio-206-t.svg new file mode 100755 index 00000000..e821eb97 --- /dev/null +++ b/test/W3C_SVG_12_TinyTestSuite_beta/svggen/media-audio-206-t.svg @@ -0,0 +1,45 @@ + + + + + + + + + + $RCSfile: media-audio-206-t.svg,v $ + + + + + + + + + + + Audio and Animation start and end simultaneously + + + + + + + $Revision: 1.5 $ + + + + + \ No newline at end of file diff --git a/test/W3C_SVG_12_TinyTestSuite_beta/svggen/media-audio-207-t.svg b/test/W3C_SVG_12_TinyTestSuite_beta/svggen/media-audio-207-t.svg new file mode 100755 index 00000000..3cd25b69 --- /dev/null +++ b/test/W3C_SVG_12_TinyTestSuite_beta/svggen/media-audio-207-t.svg @@ -0,0 +1,45 @@ + + + + + + + + + + $RCSfile: media-audio-207-t.svg,v $ + + + + + + + + + + + Audio and Animation start and end simultaneously + + + + + + + $Revision: 1.5 $ + + + + + diff --git a/test/W3C_SVG_12_TinyTestSuite_beta/svggen/media-audio-208-t.svg b/test/W3C_SVG_12_TinyTestSuite_beta/svggen/media-audio-208-t.svg new file mode 100755 index 00000000..599ce00f --- /dev/null +++ b/test/W3C_SVG_12_TinyTestSuite_beta/svggen/media-audio-208-t.svg @@ -0,0 +1,41 @@ + + + + + + + + + + $RCSfile: media-audio-208-t.svg,v $ + + + + + + + + + + Second sound will start when first ends + begin="sound1.end" + + + + + + $Revision: 1.5 $ + + + + + diff --git a/test/W3C_SVG_12_TinyTestSuite_beta/svggen/media-audio-209-t.svg b/test/W3C_SVG_12_TinyTestSuite_beta/svggen/media-audio-209-t.svg new file mode 100755 index 00000000..c9e5590e --- /dev/null +++ b/test/W3C_SVG_12_TinyTestSuite_beta/svggen/media-audio-209-t.svg @@ -0,0 +1,44 @@ + + + + + + + + + + $RCSfile: media-audio-209-t.svg,v $ + + + + + + + + + + + + + + + + The sound will play while the bar is moving + + + $Revision: 1.5 $ + + + + + diff --git a/test/W3C_SVG_12_TinyTestSuite_beta/svggen/media-audio-210-t.svg b/test/W3C_SVG_12_TinyTestSuite_beta/svggen/media-audio-210-t.svg new file mode 100755 index 00000000..b0dada8e --- /dev/null +++ b/test/W3C_SVG_12_TinyTestSuite_beta/svggen/media-audio-210-t.svg @@ -0,0 +1,49 @@ + + + + + + + + + + $RCSfile: media-audio-210-t.svg,v $ + + + + + + + + + + + + + + + + + + Repeat the two sounds 3s of each + + + $Revision: 1.5 $ + + + + + diff --git a/test/W3C_SVG_12_TinyTestSuite_beta/svggen/media-audio-211-t.svg b/test/W3C_SVG_12_TinyTestSuite_beta/svggen/media-audio-211-t.svg new file mode 100755 index 00000000..7cf52132 --- /dev/null +++ b/test/W3C_SVG_12_TinyTestSuite_beta/svggen/media-audio-211-t.svg @@ -0,0 +1,48 @@ + + + + + + + + + + $RCSfile: media-audio-211-t.svg,v $ + + + + + + + + + + + + + + + + + + Test on audio in a def element + There should be no sound ! + + + $Revision: 1.5 $ + + + + + diff --git a/test/W3C_SVG_12_TinyTestSuite_beta/svggen/media-audio-212-t.svg b/test/W3C_SVG_12_TinyTestSuite_beta/svggen/media-audio-212-t.svg new file mode 100755 index 00000000..a53e7cda --- /dev/null +++ b/test/W3C_SVG_12_TinyTestSuite_beta/svggen/media-audio-212-t.svg @@ -0,0 +1,84 @@ + + + + + + + + + + $RCSfile: media-audio-212-t.svg,v $ + + + + + + + + + + + + + Animated display and visibility + + Should be muted at R(2) and audible at R(1), R(3) and R(4) + + + + + + 0-2(s) + Begin + + + + + 2-4(s) + R(1) + + + + + 4-6(s) + R(2) + + + + + 6-8(s) + R(3) + + + + + 8-10(s) + R(4) + + 0123456789(s) + + + + + + + $Revision: 1.5 $ + + + + + diff --git a/test/W3C_SVG_12_TinyTestSuite_beta/svggen/media-audio-213-t.svg b/test/W3C_SVG_12_TinyTestSuite_beta/svggen/media-audio-213-t.svg new file mode 100755 index 00000000..60962a23 --- /dev/null +++ b/test/W3C_SVG_12_TinyTestSuite_beta/svggen/media-audio-213-t.svg @@ -0,0 +1,89 @@ + + + + + + + + + + $RCSfile: media-audio-213-t.svg,v $ + + + + + + + + + + + + + + + + + + + + Animated display and visibility with Use + + Should be muted at R(2) and audible at R(1), R(3) and R(4) + + + + + + 0-2(s) + Begin + + + + + 2-4(s) + R(1) + + + + + 4-6(s) + R(2) + + + + + 6-8(s) + R(3) + + + + + 8-10(s) + R(4) + + 0123456789(s) + + + + + + + $Revision: 1.6 $ + + + + + diff --git a/test/W3C_SVG_12_TinyTestSuite_beta/svggen/media-audio-214-t.svg b/test/W3C_SVG_12_TinyTestSuite_beta/svggen/media-audio-214-t.svg new file mode 100755 index 00000000..4cf258f9 --- /dev/null +++ b/test/W3C_SVG_12_TinyTestSuite_beta/svggen/media-audio-214-t.svg @@ -0,0 +1,46 @@ + + + + + + + + + + $RCSfile: media-audio-214-t.svg,v $ + + + + + + + + + + Audio element with invalid xlink:href. + Each audio element has a xlink:href reference to media + other than a supported audio file. + + + + + + + + + + $Revision: 1.5 $ + + + + + diff --git a/test/W3C_SVG_12_TinyTestSuite_beta/svggen/media-audio-215-t.svg b/test/W3C_SVG_12_TinyTestSuite_beta/svggen/media-audio-215-t.svg new file mode 100755 index 00000000..b18d569f --- /dev/null +++ b/test/W3C_SVG_12_TinyTestSuite_beta/svggen/media-audio-215-t.svg @@ -0,0 +1,190 @@ + + + + + + + + + + $RCSfile: media-audio-215-t.svg,v $ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + checkAudioLevel("audio_test_1", "1", "audio_test_1_result"); + + + + + audio-level = 1 + Volume = System Volume + + + + + + + checkAudioLevel("audio_test_2", "1", "audio_test_2_result"); + + + + + audio-level = clamp(2) + Volume = System Volume + + + + + + + + checkAudioLevel("audio_test_3_begin", "0.5", "audio_test_3_result"); + + + + + audio-level = clamp(2) * 0.5 + Volume = 0.5 System Volume + + + + + + + + checkAudioLevel("audio_test_4_begin", "0.5", "audio_test_4_result"); + + + + + audio-level = 0.5 * clamp(2) + Volume = 0.5 System Volume + + + + + + + + checkAudioLevel("audio_test_5_begin", "0.25", "audio_test_5_result"); + + + + + audio-level = 0.5 * clamp(2) * 0.5 + Volume = 0.25 System Volume + + + + + + + + checkAudioLevel("audio_test_6_begin", "0.25", "audio_test_6_result"); + + + + + audio-level = 0.5 * clamp(2) * 0.5 * clamp(2) + Volume = 0.25 System Volume + + + + + $Revision: 1.6 $ + + + + + \ No newline at end of file diff --git a/test/W3C_SVG_12_TinyTestSuite_beta/svggen/media-video-201-t.svg b/test/W3C_SVG_12_TinyTestSuite_beta/svggen/media-video-201-t.svg new file mode 100755 index 00000000..941e4381 --- /dev/null +++ b/test/W3C_SVG_12_TinyTestSuite_beta/svggen/media-video-201-t.svg @@ -0,0 +1,46 @@ + + + + + + + + + + $RCSfile: media-video-201-t.svg,v $ + + + + + + + + + + + + Video Width and Height + + + The frame contains a video with width and height not specified - these should default + + + to 0 and nothing should be rendered. + + + + + + $Revision: 1.9 $ + + + + + + DRAFT + + diff --git a/test/W3C_SVG_12_TinyTestSuite_beta/svggen/media-video-202-t.svg b/test/W3C_SVG_12_TinyTestSuite_beta/svggen/media-video-202-t.svg new file mode 100755 index 00000000..3efeb4b4 --- /dev/null +++ b/test/W3C_SVG_12_TinyTestSuite_beta/svggen/media-video-202-t.svg @@ -0,0 +1,43 @@ + + + + + + + + + + $RCSfile: media-video-202-t.svg,v $ + + + + + + + + + + + + Video Width and Height + + + The video should play immediately and disappear once complete. + + + + + + $Revision: 1.10 $ + + + + + diff --git a/test/W3C_SVG_12_TinyTestSuite_beta/svggen/media-video-203-t.svg b/test/W3C_SVG_12_TinyTestSuite_beta/svggen/media-video-203-t.svg new file mode 100755 index 00000000..ead599d7 --- /dev/null +++ b/test/W3C_SVG_12_TinyTestSuite_beta/svggen/media-video-203-t.svg @@ -0,0 +1,48 @@ + + + + + + + + + + $RCSfile: media-video-203-t.svg,v $ + + + + + + + + + + + Video with TransformBehavior Set to Pinned + + The video should exactly overlap the two wide crossing lines, proving it is pinned on the blue dot + + + + + + + + + + + + + $Revision: 1.8 $ + + + + + diff --git a/test/W3C_SVG_12_TinyTestSuite_beta/svggen/media-video-204-t.svg b/test/W3C_SVG_12_TinyTestSuite_beta/svggen/media-video-204-t.svg new file mode 100755 index 00000000..8a70ed3a --- /dev/null +++ b/test/W3C_SVG_12_TinyTestSuite_beta/svggen/media-video-204-t.svg @@ -0,0 +1,50 @@ + + + + + + + + + + $RCSfile: media-video-204-t.svg,v $ + + + + + + + + + + + + Video with PreserveAspectRatio Attribute + + + Testing variations of preserveAspectRatio attribute + + + with viewports having different aspect ratios + + + + + none + + + + + $Revision: 1.10 $ + + + + + diff --git a/test/W3C_SVG_12_TinyTestSuite_beta/svggen/media-video-205-t.svg b/test/W3C_SVG_12_TinyTestSuite_beta/svggen/media-video-205-t.svg new file mode 100755 index 00000000..1dfd2159 --- /dev/null +++ b/test/W3C_SVG_12_TinyTestSuite_beta/svggen/media-video-205-t.svg @@ -0,0 +1,48 @@ + + + + + + + + + + $RCSfile: media-video-205-t.svg,v $ + + + + + + + + + + + Video with PreserveAspectRatio Attribute + + + Testing variations of preserveAspectRatio attribute + + + with viewports having different aspect ratios + + + + + xMin* + + + + $Revision: 1.9 $ + + + + + diff --git a/test/W3C_SVG_12_TinyTestSuite_beta/svggen/media-video-206-t.svg b/test/W3C_SVG_12_TinyTestSuite_beta/svggen/media-video-206-t.svg new file mode 100755 index 00000000..228d759e --- /dev/null +++ b/test/W3C_SVG_12_TinyTestSuite_beta/svggen/media-video-206-t.svg @@ -0,0 +1,49 @@ + + + + + + + + + + $RCSfile: media-video-206-t.svg,v $ + + + + + + + + + + + Video with PreserveAspectRatio Attribute + + + Testing variations of preserveAspectRatio attribute + + + with viewports having different aspect ratios + + + + + + xMid* + + + + $Revision: 1.10 $ + + + + + diff --git a/test/W3C_SVG_12_TinyTestSuite_beta/svggen/media-video-207-t.svg b/test/W3C_SVG_12_TinyTestSuite_beta/svggen/media-video-207-t.svg new file mode 100755 index 00000000..ad170fd7 --- /dev/null +++ b/test/W3C_SVG_12_TinyTestSuite_beta/svggen/media-video-207-t.svg @@ -0,0 +1,48 @@ + + + + + + + + + + $RCSfile: media-video-207-t.svg,v $ + + + + + + + + + + + Video with PreserveAspectRatio Attribute + + + Testing variations of preserveAspectRatio attribute + + + with viewports having different aspect ratios + + + + + xMax* + + + + $Revision: 1.10 $ + + + + + diff --git a/test/W3C_SVG_12_TinyTestSuite_beta/svggen/media-video-208-t.svg b/test/W3C_SVG_12_TinyTestSuite_beta/svggen/media-video-208-t.svg new file mode 100755 index 00000000..be90ebd0 --- /dev/null +++ b/test/W3C_SVG_12_TinyTestSuite_beta/svggen/media-video-208-t.svg @@ -0,0 +1,49 @@ + + + + + + + + + + $RCSfile: media-video-208-t.svg,v $ + + + + + + + + + + + Video with PreserveAspectRatio Attribute + + + Testing variations of preserveAspectRatio attribute + + + with viewports having different aspect ratios + + + + + yMin* + + + + + $Revision: 1.8 $ + + + + + diff --git a/test/W3C_SVG_12_TinyTestSuite_beta/svggen/media-video-209-t.svg b/test/W3C_SVG_12_TinyTestSuite_beta/svggen/media-video-209-t.svg new file mode 100755 index 00000000..c90cafbd --- /dev/null +++ b/test/W3C_SVG_12_TinyTestSuite_beta/svggen/media-video-209-t.svg @@ -0,0 +1,48 @@ + + + + + + + + + + $RCSfile: media-video-209-t.svg,v $ + + + + + + + + + + + Video with PreserveAspectRatio Attribute + + + Testing variations of preserveAspectRatio attribute + + + with viewports having different aspect ratios + + + + + yMid* + + + + $Revision: 1.9 $ + + + + + diff --git a/test/W3C_SVG_12_TinyTestSuite_beta/svggen/media-video-210-t.svg b/test/W3C_SVG_12_TinyTestSuite_beta/svggen/media-video-210-t.svg new file mode 100755 index 00000000..d37b47a6 --- /dev/null +++ b/test/W3C_SVG_12_TinyTestSuite_beta/svggen/media-video-210-t.svg @@ -0,0 +1,49 @@ + + + + + + + + + + $RCSfile: media-video-210-t.svg,v $ + + + + + + + + + + + Video with PreserveAspectRatio Attribute + + + Testing variations of preserveAspectRatio attribute + + + with viewports having different aspect ratios + + + + + yMax* + + + + + $Revision: 1.9 $ + + + + + + DRAFT + + diff --git a/test/W3C_SVG_12_TinyTestSuite_beta/svggen/media-video-211-t.svg b/test/W3C_SVG_12_TinyTestSuite_beta/svggen/media-video-211-t.svg new file mode 100755 index 00000000..f0de7f95 --- /dev/null +++ b/test/W3C_SVG_12_TinyTestSuite_beta/svggen/media-video-211-t.svg @@ -0,0 +1,50 @@ + + + + + + + + + + $RCSfile: media-video-211-t.svg,v $ + + + + + + + + + + + Video with PreserveAspectRatio Attribute + + + Testing variations of preserveAspectRatio attribute + + + with viewports having different aspect ratios + + + + + + none + + + + + $Revision: 1.9 $ + + + + + diff --git a/test/W3C_SVG_12_TinyTestSuite_beta/svggen/media-video-212-t.svg b/test/W3C_SVG_12_TinyTestSuite_beta/svggen/media-video-212-t.svg new file mode 100755 index 00000000..5b2ca9e5 --- /dev/null +++ b/test/W3C_SVG_12_TinyTestSuite_beta/svggen/media-video-212-t.svg @@ -0,0 +1,88 @@ + + + + + + + + + + $RCSfile: media-video-212-t.svg,v $ + + + + + + + + + + Video with rendering order + + Colored circles should maintain rendering order as marked on them. Video should freeze at the end + + + Bottom frame contains a jpeg reference image. The jpeg image is rendering order is on the top and the video + rendering order is on the bottom. + + + + + BEHIND + + + + + BEHIND + + + + + + + + + BETWEEN + + + + + BETWEEN + + + + + + + + + + + + + + + ON TOP + + + + + ON TOP + + + + + + $Revision: 1.10 $ + + + + + diff --git a/test/W3C_SVG_12_TinyTestSuite_beta/svggen/media-video-213-t.svg b/test/W3C_SVG_12_TinyTestSuite_beta/svggen/media-video-213-t.svg new file mode 100755 index 00000000..77368489 --- /dev/null +++ b/test/W3C_SVG_12_TinyTestSuite_beta/svggen/media-video-213-t.svg @@ -0,0 +1,60 @@ + + + + + + + + + + $RCSfile: media-video-213-t.svg,v $ + + + + + + + + + + + Rotation with Video and Image + + + + + + + + + + + + + + + + + + + + + + + + + + + $Revision: 1.6 $ + + + + + diff --git a/test/W3C_SVG_12_TinyTestSuite_beta/svggen/media-video-214-t.svg b/test/W3C_SVG_12_TinyTestSuite_beta/svggen/media-video-214-t.svg new file mode 100755 index 00000000..8b312795 --- /dev/null +++ b/test/W3C_SVG_12_TinyTestSuite_beta/svggen/media-video-214-t.svg @@ -0,0 +1,51 @@ + + + + + + + + + + $RCSfile: media-video-214-t.svg,v $ + + + + + + + + + + + Transformation and rendering order on Video + + + + + + + + + + + + + + + + + + $Revision: 1.8 $ + + + + + diff --git a/test/W3C_SVG_12_TinyTestSuite_beta/svggen/media-video-215-t.svg b/test/W3C_SVG_12_TinyTestSuite_beta/svggen/media-video-215-t.svg new file mode 100755 index 00000000..d35fed89 --- /dev/null +++ b/test/W3C_SVG_12_TinyTestSuite_beta/svggen/media-video-215-t.svg @@ -0,0 +1,56 @@ + + + + + + + + + + $RCSfile: media-video-215-t.svg,v $ + + + + + + + + + + Video 1 + + Video 2 + + + document.getElementById("video1").setAttributeNS("http://www.w3.org/1999/xlink", "href", "../images/dogandball.3gp"); + + + + + Change xlink:href on video + + 0123456789(s) + + + + + + + + $Revision: 1.7 $ + + + + + diff --git a/test/W3C_SVG_12_TinyTestSuite_beta/svggen/media-video-216-t.svg b/test/W3C_SVG_12_TinyTestSuite_beta/svggen/media-video-216-t.svg new file mode 100755 index 00000000..15d75058 --- /dev/null +++ b/test/W3C_SVG_12_TinyTestSuite_beta/svggen/media-video-216-t.svg @@ -0,0 +1,53 @@ + + + + + + + + + + $RCSfile: media-video-216-t.svg,v $ + + + + + + + + + + + + + + + + + + Transformed video not supported! + + + + + + + + + + + $Revision: 1.8 $ + + + + + diff --git a/test/W3C_SVG_12_TinyTestSuite_beta/svggen/media-video-218-t.svg b/test/W3C_SVG_12_TinyTestSuite_beta/svggen/media-video-218-t.svg new file mode 100755 index 00000000..21731192 --- /dev/null +++ b/test/W3C_SVG_12_TinyTestSuite_beta/svggen/media-video-218-t.svg @@ -0,0 +1,92 @@ + + + + + + + + + + $RCSfile: media-video-218-t.svg,v $ + + + + + + + + + + + + + + + + + + Video 1 + + + + + + Video 2 + + + + + Animated display and visibility with use + + + Video 1 should be hidden and muted between 4-6s + + + Video 2 should be hidden and muted between 2-6s + + + + + + 0-2(s) + + + + + 2-4(s) + + + + + 4-6(s) + + + + + 6-8(s) + + 0123456789(s) + + + + + + + + $Revision: 1.6 $ + + + + + diff --git a/test/W3C_SVG_12_TinyTestSuite_beta/svggen/media-video-219-t.svg b/test/W3C_SVG_12_TinyTestSuite_beta/svggen/media-video-219-t.svg new file mode 100755 index 00000000..45c4b525 --- /dev/null +++ b/test/W3C_SVG_12_TinyTestSuite_beta/svggen/media-video-219-t.svg @@ -0,0 +1,68 @@ + + + + + + + + + + $RCSfile: media-video-219-t.svg,v $ + + + + + + + + + + + + + + + + + + + The video should be repositioned at 2s and 4s + + + + var oldChild = document.getElementById("welcome"); + document.getElementById("g1").removeChild(oldChild); + document.getElementById("g2").appendChild(oldChild); + + + var oldChild = document.getElementById("welcome"); + document.getElementById("g2").removeChild(oldChild); + document.getElementById("g1").appendChild(oldChild); + + + + 0123456(s) + + + + + + + + $Revision: 1.6 $ + + + + + diff --git a/test/W3C_SVG_12_TinyTestSuite_beta/svggen/media-video-220-t.svg b/test/W3C_SVG_12_TinyTestSuite_beta/svggen/media-video-220-t.svg new file mode 100755 index 00000000..a393ed15 --- /dev/null +++ b/test/W3C_SVG_12_TinyTestSuite_beta/svggen/media-video-220-t.svg @@ -0,0 +1,60 @@ + + + + + + + + + + $RCSfile: media-video-220-t.svg,v $ + + + + + + + + + + + + + + + + The video should be repositioned at 2s + + + + var oldChild = document.getElementById("welcome"); + var myChild = document.getElementById("g1").removeChild(oldChild); + document.getElementById("g2").appendChild(myChild); + + + + 0123456(s) + + + + + + + + $Revision: 1.6 $ + + + + + diff --git a/test/W3C_SVG_12_TinyTestSuite_beta/svggen/media-video-221-t.svg b/test/W3C_SVG_12_TinyTestSuite_beta/svggen/media-video-221-t.svg new file mode 100755 index 00000000..9091bdca --- /dev/null +++ b/test/W3C_SVG_12_TinyTestSuite_beta/svggen/media-video-221-t.svg @@ -0,0 +1,75 @@ + + + + + + + + + + $RCSfile: media-video-221-t.svg,v $ + + + + + + + + + + + + + + + + + + Animated xlink:href on use + + Stream should be switched at 2s and back again at 4s + + + + + + 0-2(s) + Video 1 + + + + + 2-4(s) + Video 2 + + + + + 4-6(s) + Video 1 + + + + + 6-8(s) + End + + + + $Revision: 1.5 $ + + + + + diff --git a/test/W3C_SVG_12_TinyTestSuite_beta/svggen/media-video-222-t.svg b/test/W3C_SVG_12_TinyTestSuite_beta/svggen/media-video-222-t.svg new file mode 100755 index 00000000..8ae7e784 --- /dev/null +++ b/test/W3C_SVG_12_TinyTestSuite_beta/svggen/media-video-222-t.svg @@ -0,0 +1,46 @@ + + + + + + + + + + $RCSfile: media-video-222-t.svg,v $ + + + + + + + + + + Video element with invalid xlink:href + Each video element has a xlink:href reference to media other than a supported video file. + The test will pass if no video is heard or seen. + + + + + + + + + + $Revision: 1.5 $ + + + + + diff --git a/test/W3C_SVG_12_TinyTestSuite_beta/svggen/metadata-example-01-t.svg b/test/W3C_SVG_12_TinyTestSuite_beta/svggen/metadata-example-01-t.svg new file mode 100755 index 00000000..f1409b98 --- /dev/null +++ b/test/W3C_SVG_12_TinyTestSuite_beta/svggen/metadata-example-01-t.svg @@ -0,0 +1,128 @@ + + + + + + + + + + $RCSfile: metadata-example-01-t.svg,v $ + + + + + + + + + + + + + Line drawing of woman in antique attire, which looks legal or perhaps mystical. + image/svg+xml + Sibyll Trelawney + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + http://prismstandard.org/vocabularies/1.0/resourcetype.xml#birdsEye + http://prismstandard.org/vocabularies/1.0/resourcetype.xml#illustration + image/svg+xml + Line drawing of woman in antique attire, ... + online: + Sibyll Trelawney + + + http://purl.org/dc/elements/1.1/type + http://purl.org/dc/elements/1.1/format + http://purl.org/dc/elements/1.1/subject + http://purl.org/dc/elements/1.1/type + http://purl.org/dc/elements/1.1/description + + + + + + $Revision: 1.7 $ + + + + + diff --git a/test/W3C_SVG_12_TinyTestSuite_beta/svggen/paint-color-01-t.svg b/test/W3C_SVG_12_TinyTestSuite_beta/svggen/paint-color-01-t.svg new file mode 100755 index 00000000..ee3d5a03 --- /dev/null +++ b/test/W3C_SVG_12_TinyTestSuite_beta/svggen/paint-color-01-t.svg @@ -0,0 +1,56 @@ + + + + + + + + + + $RCSfile: paint-color-01-t.svg,v $ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + fill + stroke + stop-color + + + + $Revision: 1.8 $ + + + + + diff --git a/test/W3C_SVG_12_TinyTestSuite_beta/svggen/paint-color-03-t.svg b/test/W3C_SVG_12_TinyTestSuite_beta/svggen/paint-color-03-t.svg new file mode 100755 index 00000000..8e2b7da0 --- /dev/null +++ b/test/W3C_SVG_12_TinyTestSuite_beta/svggen/paint-color-03-t.svg @@ -0,0 +1,75 @@ + + + + + + + + + + $RCSfile: paint-color-03-t.svg,v $ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + $Revision: 1.9 $ + + + + + diff --git a/test/W3C_SVG_12_TinyTestSuite_beta/svggen/paint-color-04-t.svg b/test/W3C_SVG_12_TinyTestSuite_beta/svggen/paint-color-04-t.svg new file mode 100755 index 00000000..fff787c8 --- /dev/null +++ b/test/W3C_SVG_12_TinyTestSuite_beta/svggen/paint-color-04-t.svg @@ -0,0 +1,72 @@ + + + + + + + + + + $RCSfile: paint-color-04-t.svg,v $ + + + + + + + + + + + + + + + Lorem ipsum dolor sit amet, consectetuer adipiscing elit. + Vestibulum pulvinar. Duis laoreet, nunc vitae facilisis + tristique, pede sem iaculis mi, non consectetuer lorem + libero et est. Donec imperdiet purus sed odio. Duis + venenatis tortor eu lectus. Suspendisse sed metus at + metus viverra ultricies. Mauris porttitor, justo a vulputate + + + + + Load + + Save + + + + + + + + File + Edit + + + + Lorem + + + + + + + + + + + $Revision: 1.8 $ + + + + + diff --git a/test/W3C_SVG_12_TinyTestSuite_beta/svggen/paint-color-05-t.svg b/test/W3C_SVG_12_TinyTestSuite_beta/svggen/paint-color-05-t.svg new file mode 100755 index 00000000..3b84abf8 --- /dev/null +++ b/test/W3C_SVG_12_TinyTestSuite_beta/svggen/paint-color-05-t.svg @@ -0,0 +1,35 @@ + + + + + + + + + + $RCSfile: paint-color-05-t.svg,v $ + + + + + + + + + + + + + + $Revision: 1.8 $ + + + + + diff --git a/test/W3C_SVG_12_TinyTestSuite_beta/svggen/paint-color-201-t.svg b/test/W3C_SVG_12_TinyTestSuite_beta/svggen/paint-color-201-t.svg new file mode 100755 index 00000000..0a1c3b86 --- /dev/null +++ b/test/W3C_SVG_12_TinyTestSuite_beta/svggen/paint-color-201-t.svg @@ -0,0 +1,99 @@ + + + + + + + + + + $RCSfile: paint-color-201-t.svg,v $ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + black + silver + gray + white + maroon + red + purple + fuchsia + + + + + + + + + + + + + + + + + + + + + + + green + lime + olive + yellow + navy + blue + teal + aqua + + + + $Revision: 1.4 $ + + + + + \ No newline at end of file diff --git a/test/W3C_SVG_12_TinyTestSuite_beta/svggen/paint-fill-01-t.svg b/test/W3C_SVG_12_TinyTestSuite_beta/svggen/paint-fill-01-t.svg new file mode 100755 index 00000000..d80e3be2 --- /dev/null +++ b/test/W3C_SVG_12_TinyTestSuite_beta/svggen/paint-fill-01-t.svg @@ -0,0 +1,40 @@ + + + + + + + + + + $RCSfile: paint-fill-01-t.svg,v $ + + + + + + + + + Basic paint: fill properties. + + + + + + fill="none" + fill="red" + + + $Revision: 1.6 $ + + + + + diff --git a/test/W3C_SVG_12_TinyTestSuite_beta/svggen/paint-fill-02-t.svg b/test/W3C_SVG_12_TinyTestSuite_beta/svggen/paint-fill-02-t.svg new file mode 100755 index 00000000..9e85b36d --- /dev/null +++ b/test/W3C_SVG_12_TinyTestSuite_beta/svggen/paint-fill-02-t.svg @@ -0,0 +1,43 @@ + + + + + + + + + + $RCSfile: paint-fill-02-t.svg,v $ + + + + + + + + + + Basic paint: fill properties. + fill="currentColor" + + + + + + green + blue + + + + $Revision: 1.6 $ + + + + + diff --git a/test/W3C_SVG_12_TinyTestSuite_beta/svggen/paint-fill-03-t.svg b/test/W3C_SVG_12_TinyTestSuite_beta/svggen/paint-fill-03-t.svg new file mode 100755 index 00000000..0a36dec2 --- /dev/null +++ b/test/W3C_SVG_12_TinyTestSuite_beta/svggen/paint-fill-03-t.svg @@ -0,0 +1,40 @@ + + + + + + + + + + $RCSfile: paint-fill-03-t.svg,v $ + + + + + + + + + Basic paint: fill properties. + + + + + + fill-rule="evenodd" + fill-rule="nonzero" + + + $Revision: 1.6 $ + + + + + diff --git a/test/W3C_SVG_12_TinyTestSuite_beta/svggen/paint-fill-04-t.svg b/test/W3C_SVG_12_TinyTestSuite_beta/svggen/paint-fill-04-t.svg new file mode 100755 index 00000000..e530d00a --- /dev/null +++ b/test/W3C_SVG_12_TinyTestSuite_beta/svggen/paint-fill-04-t.svg @@ -0,0 +1,42 @@ + + + + + + + + + + $RCSfile: paint-fill-04-t.svg,v $ + + + + + + + + + + + + + + + + + + + + + $Revision: 1.6 $ + + + + + diff --git a/test/W3C_SVG_12_TinyTestSuite_beta/svggen/paint-fill-05-t.svg b/test/W3C_SVG_12_TinyTestSuite_beta/svggen/paint-fill-05-t.svg new file mode 100755 index 00000000..07e7d66b --- /dev/null +++ b/test/W3C_SVG_12_TinyTestSuite_beta/svggen/paint-fill-05-t.svg @@ -0,0 +1,46 @@ + + + + + + + + + + $RCSfile: paint-fill-05-t.svg,v $ + + + + + + + + + + + + + + + + + + + + + + + + + $Revision: 1.5 $ + + + + + diff --git a/test/W3C_SVG_12_TinyTestSuite_beta/svggen/paint-grad-04-t.svg b/test/W3C_SVG_12_TinyTestSuite_beta/svggen/paint-grad-04-t.svg new file mode 100755 index 00000000..fce8428d --- /dev/null +++ b/test/W3C_SVG_12_TinyTestSuite_beta/svggen/paint-grad-04-t.svg @@ -0,0 +1,58 @@ + + + + + + + + + + $RCSfile: paint-grad-04-t.svg,v $ + + + + + + + + + + + + + + + + + + + + + Multi-color linear gradient. + + + + + + + + + + + + + Multi-color radial gradient. + + + $Revision: 1.8 $ + + + + + diff --git a/test/W3C_SVG_12_TinyTestSuite_beta/svggen/paint-grad-05-t.svg b/test/W3C_SVG_12_TinyTestSuite_beta/svggen/paint-grad-05-t.svg new file mode 100755 index 00000000..5967a1c9 --- /dev/null +++ b/test/W3C_SVG_12_TinyTestSuite_beta/svggen/paint-grad-05-t.svg @@ -0,0 +1,58 @@ + + + + + + + + + + $RCSfile: paint-grad-05-t.svg,v $ + + + + + + + + + + + + Background + + + + + + + + + + + + + Background + + + + + + + + + + + + $Revision: 1.8 $ + + + + + diff --git a/test/W3C_SVG_12_TinyTestSuite_beta/svggen/paint-grad-07-t.svg b/test/W3C_SVG_12_TinyTestSuite_beta/svggen/paint-grad-07-t.svg new file mode 100755 index 00000000..874bc6f0 --- /dev/null +++ b/test/W3C_SVG_12_TinyTestSuite_beta/svggen/paint-grad-07-t.svg @@ -0,0 +1,51 @@ + + + + + + + + + + $RCSfile: paint-grad-07-t.svg,v $ + + + + + + + + + + + + + + + + + + + + + Linear gradient filled rectangle + + + + + Linear gradient on stroke of rectangle + + + + $Revision: 1.8 $ + + + + + diff --git a/test/W3C_SVG_12_TinyTestSuite_beta/svggen/paint-grad-08-t.svg b/test/W3C_SVG_12_TinyTestSuite_beta/svggen/paint-grad-08-t.svg new file mode 100755 index 00000000..19f5c849 --- /dev/null +++ b/test/W3C_SVG_12_TinyTestSuite_beta/svggen/paint-grad-08-t.svg @@ -0,0 +1,69 @@ + + + + + + + + + + $RCSfile: paint-grad-08-t.svg,v $ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + Gradient on fill + Linear gradient on filled text + + + + Gradient on stroke + Linear gradient on stroke of text + + + $Revision: 1.7 $ + + + + + diff --git a/test/W3C_SVG_12_TinyTestSuite_beta/svggen/paint-grad-09-t.svg b/test/W3C_SVG_12_TinyTestSuite_beta/svggen/paint-grad-09-t.svg new file mode 100755 index 00000000..5d503ee3 --- /dev/null +++ b/test/W3C_SVG_12_TinyTestSuite_beta/svggen/paint-grad-09-t.svg @@ -0,0 +1,64 @@ + + + + + + + + + + $RCSfile: paint-grad-09-t.svg,v $ + + + + + + + + + Testing gradientUnits attribute + + + + + + + + + Linear gradient with default attributes (thus, same as objectBoundingBox) + + Gradient is from the object left edge (red) to object right edge (blue) + + + + + + + + + gradientUnits=objectBoundingBox + Gradient is from the object top edge (blue) to object bottom edge (red) + + + + + + + + + gradientUnits=userSpaceOnUse + Gradient is from the object left edge (red) to object right edge (blue) + + + $Revision: 1.7 $ + + + + + diff --git a/test/W3C_SVG_12_TinyTestSuite_beta/svggen/paint-grad-11-t.svg b/test/W3C_SVG_12_TinyTestSuite_beta/svggen/paint-grad-11-t.svg new file mode 100755 index 00000000..3f2bd408 --- /dev/null +++ b/test/W3C_SVG_12_TinyTestSuite_beta/svggen/paint-grad-11-t.svg @@ -0,0 +1,68 @@ + + + + + + + + + + $RCSfile: paint-grad-11-t.svg,v $ + + + + + + + + + + + + + + + + + Radial gradient on fill of rectangle + + + + + + + + + Radial gradient on stroke of rectangle + + + + + + + + Gradient on text fill + Radial gradient on text, black to yellow + + + + + + + + Gradient on text stroke + Radial gradient on stroke of text, black to red + + + $Revision: 1.7 $ + + + + + diff --git a/test/W3C_SVG_12_TinyTestSuite_beta/svggen/paint-grad-12-t.svg b/test/W3C_SVG_12_TinyTestSuite_beta/svggen/paint-grad-12-t.svg new file mode 100755 index 00000000..59e97541 --- /dev/null +++ b/test/W3C_SVG_12_TinyTestSuite_beta/svggen/paint-grad-12-t.svg @@ -0,0 +1,63 @@ + + + + + + + + + + $RCSfile: paint-grad-12-t.svg,v $ + + + + + + + + + Testing gradientUnits attribute + + + + + + + + + Radial gradient with default attributes (from blue to red) + Gradient is blue at the object center and red at the object edges + + + + + + + + + gradientUnits=objectBoundingBox + cx=.2, cy=.2, r=.5 + + + + + + + + + gradientUnits=userSpaceOnUse + Gradient is red to blue radial gradiant from center to horizontal bounds + + + $Revision: 1.7 $ + + + + + diff --git a/test/W3C_SVG_12_TinyTestSuite_beta/svggen/paint-grad-15-t.svg b/test/W3C_SVG_12_TinyTestSuite_beta/svggen/paint-grad-15-t.svg new file mode 100755 index 00000000..8ac79369 --- /dev/null +++ b/test/W3C_SVG_12_TinyTestSuite_beta/svggen/paint-grad-15-t.svg @@ -0,0 +1,44 @@ + + + + + + + + + + $RCSfile: paint-grad-15-t.svg,v $ + + + + + + + + + + + + + + + + + + + + + + + $Revision: 1.8 $ + + + + + diff --git a/test/W3C_SVG_12_TinyTestSuite_beta/svggen/paint-grad-16-t.svg b/test/W3C_SVG_12_TinyTestSuite_beta/svggen/paint-grad-16-t.svg new file mode 100755 index 00000000..15c34d59 --- /dev/null +++ b/test/W3C_SVG_12_TinyTestSuite_beta/svggen/paint-grad-16-t.svg @@ -0,0 +1,49 @@ + + + + + + + + + + $RCSfile: paint-grad-16-t.svg,v $ + + + + + + + + + + + + + + + + + + + + + + + + + + + + $Revision: 1.7 $ + + + + + diff --git a/test/W3C_SVG_12_TinyTestSuite_beta/svggen/paint-grad-17-t.svg b/test/W3C_SVG_12_TinyTestSuite_beta/svggen/paint-grad-17-t.svg new file mode 100755 index 00000000..555976e6 --- /dev/null +++ b/test/W3C_SVG_12_TinyTestSuite_beta/svggen/paint-grad-17-t.svg @@ -0,0 +1,56 @@ + + + + + + + + + + $RCSfile: paint-grad-17-t.svg,v $ + + + + + + + + + + + + + + + + + + + + + + + With fallback + + + + + + + + + Without fallback + + + $Revision: 1.9 $ + + + + + diff --git a/test/W3C_SVG_12_TinyTestSuite_beta/svggen/paint-grad-18-t.svg b/test/W3C_SVG_12_TinyTestSuite_beta/svggen/paint-grad-18-t.svg new file mode 100755 index 00000000..028e5b55 --- /dev/null +++ b/test/W3C_SVG_12_TinyTestSuite_beta/svggen/paint-grad-18-t.svg @@ -0,0 +1,62 @@ + + + + + + + + + + $RCSfile: paint-grad-18-t.svg,v $ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + $Revision: 1.7 $ + + + + + diff --git a/test/W3C_SVG_12_TinyTestSuite_beta/svggen/paint-grad-19-t.svg b/test/W3C_SVG_12_TinyTestSuite_beta/svggen/paint-grad-19-t.svg new file mode 100755 index 00000000..9afdf2c3 --- /dev/null +++ b/test/W3C_SVG_12_TinyTestSuite_beta/svggen/paint-grad-19-t.svg @@ -0,0 +1,74 @@ + + + + + + + + + + $RCSfile: paint-grad-19-t.svg,v $ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + $Revision: 1.8 $ + + + + + diff --git a/test/W3C_SVG_12_TinyTestSuite_beta/svggen/paint-grad-201-t.svg b/test/W3C_SVG_12_TinyTestSuite_beta/svggen/paint-grad-201-t.svg new file mode 100755 index 00000000..f5163a40 --- /dev/null +++ b/test/W3C_SVG_12_TinyTestSuite_beta/svggen/paint-grad-201-t.svg @@ -0,0 +1,60 @@ + + + + + + + + + + $RCSfile: paint-grad-201-t.svg,v $ + + + + + + + + + + Stop Opacity Attribute + + The 'stop-opacity' attribute is animated from 0 to 1 (clear to solid). + + + + + + + + + + + + + + + + + + + + + + $Revision: 1.6 $ + + + + + diff --git a/test/W3C_SVG_12_TinyTestSuite_beta/svggen/paint-grad-202-t.svg b/test/W3C_SVG_12_TinyTestSuite_beta/svggen/paint-grad-202-t.svg new file mode 100755 index 00000000..fca7396c --- /dev/null +++ b/test/W3C_SVG_12_TinyTestSuite_beta/svggen/paint-grad-202-t.svg @@ -0,0 +1,68 @@ + + + + + + + + + + $RCSfile: paint-grad-202-t.svg,v $ + + + + + + + + + + Stop Opacity Attribute with Text + + All three lines of text must have the same transparent gradient - + from green to blue, set at 0.4 'stop-opacity'. The reference rect at + the bottom has a similar gradient but with 'stop-opacity set to 1. + + + + + + + + + + + + + + + + + + + old pond + a frog leaps in - + a moment after, silence + + + + + + Frog Haiku by Matsuo Basho (1686), translated by Ross Figgins + + + $Revision: 1.7 $ + + + + + diff --git a/test/W3C_SVG_12_TinyTestSuite_beta/svggen/paint-grad-203-t.svg b/test/W3C_SVG_12_TinyTestSuite_beta/svggen/paint-grad-203-t.svg new file mode 100755 index 00000000..9ff23fe3 --- /dev/null +++ b/test/W3C_SVG_12_TinyTestSuite_beta/svggen/paint-grad-203-t.svg @@ -0,0 +1,65 @@ + + + + + + + + + + $RCSfile: paint-grad-203-t.svg,v $ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + gradientUnits="objectBoundingBox" (default) + gradientUnits="userSpaceOnUse" + + + $Revision: 1.6 $ + + + + + diff --git a/test/W3C_SVG_12_TinyTestSuite_beta/svggen/paint-grad-204-t.svg b/test/W3C_SVG_12_TinyTestSuite_beta/svggen/paint-grad-204-t.svg new file mode 100755 index 00000000..e6522662 --- /dev/null +++ b/test/W3C_SVG_12_TinyTestSuite_beta/svggen/paint-grad-204-t.svg @@ -0,0 +1,46 @@ + + + + + + + + + + $RCSfile: paint-grad-204-t.svg,v $ + + + + + + + + + + + + + + + + Gradient with one stop + + + Reference + + + $Revision: 1.7 $ + + + + + diff --git a/test/W3C_SVG_12_TinyTestSuite_beta/svggen/paint-grad-205-t.svg b/test/W3C_SVG_12_TinyTestSuite_beta/svggen/paint-grad-205-t.svg new file mode 100755 index 00000000..ff96e608 --- /dev/null +++ b/test/W3C_SVG_12_TinyTestSuite_beta/svggen/paint-grad-205-t.svg @@ -0,0 +1,41 @@ + + + + + + + + + + $RCSfile: paint-grad-205-t.svg,v $ + + + + + + + + + + + + + + + + + $Revision: 1.6 $ + + + + + diff --git a/test/W3C_SVG_12_TinyTestSuite_beta/svggen/paint-nsstroke-201-t.svg b/test/W3C_SVG_12_TinyTestSuite_beta/svggen/paint-nsstroke-201-t.svg new file mode 100755 index 00000000..058addcd --- /dev/null +++ b/test/W3C_SVG_12_TinyTestSuite_beta/svggen/paint-nsstroke-201-t.svg @@ -0,0 +1,68 @@ + + + + + + + + + + $RCSfile: paint-nsstroke-201-t.svg,v $ + + + + + + + + + + As the geometric shapes are zoomed out the outline strokes of the left-hand set of shapes + should remain fixed while the strokes of the right-hand set should scale in proportion to the shapes. + + + + + + + + + + + + + + + + + ABCDE + + ABCDE + + + + + + + + + Non-Scaling Stroke + Scaling Stroke + + + + $Revision: 1.5 $ + + + + + diff --git a/test/W3C_SVG_12_TinyTestSuite_beta/svggen/paint-nsstroke-203-t.svg b/test/W3C_SVG_12_TinyTestSuite_beta/svggen/paint-nsstroke-203-t.svg new file mode 100755 index 00000000..37a9b58c --- /dev/null +++ b/test/W3C_SVG_12_TinyTestSuite_beta/svggen/paint-nsstroke-203-t.svg @@ -0,0 +1,106 @@ + + + + + + + + + + $RCSfile: paint-nsstroke-203-t.svg,v $ + + + + + + + + + + + Non-scaling Stroke + + The 'vector-effect' is set to 'non-scaling' on the geometric shapes used in this kaleidoscope. + + + The animation should run indefinitely. + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + $Revision: 1.5 $ + + + + + diff --git a/test/W3C_SVG_12_TinyTestSuite_beta/svggen/paint-other-201-t.svg b/test/W3C_SVG_12_TinyTestSuite_beta/svggen/paint-other-201-t.svg new file mode 100755 index 00000000..1a3beaa6 --- /dev/null +++ b/test/W3C_SVG_12_TinyTestSuite_beta/svggen/paint-other-201-t.svg @@ -0,0 +1,53 @@ + + + + + + + + + + $RCSfile: paint-other-201-t.svg,v $ + + + + + + + + + + Solid Color Paint Server + + There are three 'solidColor' definitions - red, green, blue. + + + These are used for both the fill and outlines of the rectangle and circle. + + + + + + + + + + + + + + $Revision: 1.5 $ + + + + + diff --git a/test/W3C_SVG_12_TinyTestSuite_beta/svggen/paint-other-203-t.svg b/test/W3C_SVG_12_TinyTestSuite_beta/svggen/paint-other-203-t.svg new file mode 100755 index 00000000..b5e6f752 --- /dev/null +++ b/test/W3C_SVG_12_TinyTestSuite_beta/svggen/paint-other-203-t.svg @@ -0,0 +1,51 @@ + + + + + + + + + + $RCSfile: paint-other-203-t.svg,v $ + + + + + + + + + + + + + + + + + + + + + + + + + + + $Revision: 1.6 $ + + + + + diff --git a/test/W3C_SVG_12_TinyTestSuite_beta/svggen/paint-stroke-01-t.svg b/test/W3C_SVG_12_TinyTestSuite_beta/svggen/paint-stroke-01-t.svg new file mode 100755 index 00000000..30ee5653 --- /dev/null +++ b/test/W3C_SVG_12_TinyTestSuite_beta/svggen/paint-stroke-01-t.svg @@ -0,0 +1,40 @@ + + + + + + + + + + $RCSfile: paint-stroke-01-t.svg,v $ + + + + + + + + + + + + Basic paint: stroke properties. + + + stroke="none" + stroke="red" + + + $Revision: 1.6 $ + + + + + diff --git a/test/W3C_SVG_12_TinyTestSuite_beta/svggen/paint-stroke-02-t.svg b/test/W3C_SVG_12_TinyTestSuite_beta/svggen/paint-stroke-02-t.svg new file mode 100755 index 00000000..20b4bc98 --- /dev/null +++ b/test/W3C_SVG_12_TinyTestSuite_beta/svggen/paint-stroke-02-t.svg @@ -0,0 +1,40 @@ + + + + + + + + + + $RCSfile: paint-stroke-02-t.svg,v $ + + + + + + + + + + + + Basic paint: stroke properties. + + + stroke-width="20" + stroke-linejoin="round" + + + $Revision: 1.6 $ + + + + + diff --git a/test/W3C_SVG_12_TinyTestSuite_beta/svggen/paint-stroke-03-t.svg b/test/W3C_SVG_12_TinyTestSuite_beta/svggen/paint-stroke-03-t.svg new file mode 100755 index 00000000..af03d4dd --- /dev/null +++ b/test/W3C_SVG_12_TinyTestSuite_beta/svggen/paint-stroke-03-t.svg @@ -0,0 +1,40 @@ + + + + + + + + + + $RCSfile: paint-stroke-03-t.svg,v $ + + + + + + + + + + + + Basic paint: stroke properties. + + + stroke-linecap="round" + stroke-miter="1" + + + $Revision: 1.6 $ + + + + + diff --git a/test/W3C_SVG_12_TinyTestSuite_beta/svggen/paint-stroke-04-t.svg b/test/W3C_SVG_12_TinyTestSuite_beta/svggen/paint-stroke-04-t.svg new file mode 100755 index 00000000..64ebe51b --- /dev/null +++ b/test/W3C_SVG_12_TinyTestSuite_beta/svggen/paint-stroke-04-t.svg @@ -0,0 +1,40 @@ + + + + + + + + + + $RCSfile: paint-stroke-04-t.svg,v $ + + + + + + + + + + + + Basic paint: stroke properties. + + + stroke-dasharray="10, 10" + stroke-dashoffset="10" + + + $Revision: 1.6 $ + + + + + diff --git a/test/W3C_SVG_12_TinyTestSuite_beta/svggen/paint-stroke-05-t.svg b/test/W3C_SVG_12_TinyTestSuite_beta/svggen/paint-stroke-05-t.svg new file mode 100755 index 00000000..fb31f688 --- /dev/null +++ b/test/W3C_SVG_12_TinyTestSuite_beta/svggen/paint-stroke-05-t.svg @@ -0,0 +1,64 @@ + + + + + + + + + + painting-stroke-05-t.svg + + + + + + + + + Rendering thin strokes + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + $Revision: 1.6 $ + + + + + diff --git a/test/W3C_SVG_12_TinyTestSuite_beta/svggen/paint-stroke-06-t.svg b/test/W3C_SVG_12_TinyTestSuite_beta/svggen/paint-stroke-06-t.svg new file mode 100755 index 00000000..9bc2bb9e --- /dev/null +++ b/test/W3C_SVG_12_TinyTestSuite_beta/svggen/paint-stroke-06-t.svg @@ -0,0 +1,52 @@ + + + + + + + + + + $RCSfile: paint-stroke-06-t.svg,v $ + + + + + + + + + + + + + + + + + + + + + + + + + + + $Revision: 1.5 $ + + + + + \ No newline at end of file diff --git a/test/W3C_SVG_12_TinyTestSuite_beta/svggen/paint-stroke-07-t.svg b/test/W3C_SVG_12_TinyTestSuite_beta/svggen/paint-stroke-07-t.svg new file mode 100755 index 00000000..a1fd9b34 --- /dev/null +++ b/test/W3C_SVG_12_TinyTestSuite_beta/svggen/paint-stroke-07-t.svg @@ -0,0 +1,41 @@ + + + + + + + + + + $RCSfile: paint-stroke-07-t.svg,v $ + + + + + + + + + + + + + + + + + + + + $Revision: 1.5 $ + + + + + diff --git a/test/W3C_SVG_12_TinyTestSuite_beta/svggen/paint-stroke-08-t.svg b/test/W3C_SVG_12_TinyTestSuite_beta/svggen/paint-stroke-08-t.svg new file mode 100755 index 00000000..426341b3 --- /dev/null +++ b/test/W3C_SVG_12_TinyTestSuite_beta/svggen/paint-stroke-08-t.svg @@ -0,0 +1,59 @@ + + + + + + + + + + $RCSfile: paint-stroke-08-t.svg,v $ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + $Revision: 1.5 $ + + + + + diff --git a/test/W3C_SVG_12_TinyTestSuite_beta/svggen/paint-stroke-201-t.svg b/test/W3C_SVG_12_TinyTestSuite_beta/svggen/paint-stroke-201-t.svg new file mode 100755 index 00000000..49989ce3 --- /dev/null +++ b/test/W3C_SVG_12_TinyTestSuite_beta/svggen/paint-stroke-201-t.svg @@ -0,0 +1,102 @@ + + + + + + + + + + $RCSfile: paint-stroke-201-t.svg,v $ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + stroked circles + red = wrong + white inside blue = wrong + + + + $Revision: 1.5 $ + + + + + diff --git a/test/W3C_SVG_12_TinyTestSuite_beta/svggen/paint-stroke-202-t.svg b/test/W3C_SVG_12_TinyTestSuite_beta/svggen/paint-stroke-202-t.svg new file mode 100755 index 00000000..ac47de79 --- /dev/null +++ b/test/W3C_SVG_12_TinyTestSuite_beta/svggen/paint-stroke-202-t.svg @@ -0,0 +1,148 @@ + + + + + + + + + + $RCSfile: paint-stroke-202-t.svg,v $ + + + + + + + + + + background of filled rectangles indicating stroking areas in gray + + + + + + + + + + + + + testing stroke-dasharray for circle, rectangle with rounded corners, ellipse + + stroke-dasharray on circle without stroke-dashoffset + Note that the pathLength of the circle is exactly 560 + + + stroke-dasharray on rect with rounded corners without stroke-dashoffset + Note that the pathLength of the rect is exactly 560 + + + stroke-dasharray on ellipse without stroke-dashoffset + Note that the pathLength of the ellipse is exactly 560 + + + + + stroke-dasharray on circle without negative stroke-dashoffset + Note that the pathLength of the circle is exactly 560 + + + stroke-dasharray on rect with rounded corners with negative stroke-dashoffset + Note that the pathLength of the rect is exactly 560 + + + stroke-dasharray on ellipse with positive stroke-dashoffset + Note that the pathLength of the ellipse is exactly 560 + + + + + + testing stroke-dasharray for line, polyline, polygon + + + + stroke-dasharray on line with stroke-dashoffset set to 0 + + + stroke-dasharray on polyline with stroke-dashoffset set to 0 + + + stroke-dasharray on polygon with stroke-dashoffset set to 0 + + + + + + + stroke-dasharray on line with stroke-dashoffset + + + stroke-dasharray on polyline with negative stroke-dashoffset + + + stroke-dasharray on polygon with stroke-dashoffset + + + + + + testing stroke-dasharray for rectangles + + stroke-dasharray on rect with positive stroke-dashoffset + + + + stroke-dasharray on rect with rounded corners with positive stroke-dashoffset + Note that the pathLength of the rectangle is exactly 560, the round parts are 2pi*rx + + + + stroke-dasharray on rect with negative stroke-dashoffset + + + + + + position of the dashes: + blue on gray: ok + blue on white: fail + + + + + + + $Revision: 1.5 $ + + + + + diff --git a/test/W3C_SVG_12_TinyTestSuite_beta/svggen/paint-stroke-204-t.svg b/test/W3C_SVG_12_TinyTestSuite_beta/svggen/paint-stroke-204-t.svg new file mode 100755 index 00000000..1150a0ae --- /dev/null +++ b/test/W3C_SVG_12_TinyTestSuite_beta/svggen/paint-stroke-204-t.svg @@ -0,0 +1,156 @@ + + + + + + + + + + $RCSfile: paint-stroke-204-t.svg,v $ + + + + + + + + + + + + + stroke-linejoin round (on top) + + + + + + + + + + + + + + + stroke-linejoin round (below) + + + + + + + + + + + + + + + + + stroke-linejoin miter (on top) + + + + + + + + + + + + + stroke-linejoin miter (below) + + + + + + + + + + + + + stroke-linejoin bevel (on top) + + + + + + + + + + + + + stroke-linejoin bevel (below) + + + + + + + + + + + + inheritance test (on top, round) + + + + + + + + + + inheritance test (below, round) + + + + + + + + + + stroke-linejoin: + red = wrong + + + + + $Revision: 1.5 $ + + + + + diff --git a/test/W3C_SVG_12_TinyTestSuite_beta/svggen/paint-stroke-205-t.svg b/test/W3C_SVG_12_TinyTestSuite_beta/svggen/paint-stroke-205-t.svg new file mode 100755 index 00000000..bb114fff --- /dev/null +++ b/test/W3C_SVG_12_TinyTestSuite_beta/svggen/paint-stroke-205-t.svg @@ -0,0 +1,354 @@ + + + + + + + + + + $RCSfile: paint-stroke-205-t.svg,v $ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + Red comparison - if visible - error + + + Blue testcase covers all red if correct + + + + Red comparison - if visible - error + + + Blue testcase covers all red if correct + + + + Red comparison - if visible - error + + + Blue testcase covers all red if correct + + + + Red comparison - if visible - error + + + Blue testcase covers all red if correct + + + + Red comparison - if visible - error + + + Blue testcase covers all red if correct + + + + + + + + linecap square - zero path visible + + + + Blue testcase 3 + + + + + linecap round - zero path visible + + + + + linecap butt - zero path not visible, blue covers all red + + + + + + + + + linecap square - zero path visible + + + + + + + + + + + + + + + + + + + Red comparison - if visible - error + + + Blue testcase covers all red if correct + + + + Red comparison - if visible - error + + + Blue testcase covers all red if correct + + + + Red comparison - if visible - error + + + Blue testcase covers all red if correct + + + + + Red comparison - if visible - error + + + Blue testcase covers all red if correct + + + + + + + Red comparison - if visible - error + + + Blue testcase covers all red if correct + + + + + Red comparison - if visible - error + + + Blue testcase covers all red if correct + + + + + + stroking of path fragments + with length zero + red = wrong + + + + + $Revision: 1.6 $ + + + + + diff --git a/test/W3C_SVG_12_TinyTestSuite_beta/svggen/paint-stroke-207-t.svg b/test/W3C_SVG_12_TinyTestSuite_beta/svggen/paint-stroke-207-t.svg new file mode 100755 index 00000000..242b358c --- /dev/null +++ b/test/W3C_SVG_12_TinyTestSuite_beta/svggen/paint-stroke-207-t.svg @@ -0,0 +1,76 @@ + + + + + + + + + + $RCSfile: paint-stroke-207-t.svg,v $ + + + + + + + + + + + background of filled rectangles indicating the position of the stroked test rectangles + + + + + + + + + + + + + large blue stroked test rectangle + + + small blue stroked test rectangle with rounded corners looking like a circle + + + + + + + small red stroked test rectangle + + + small blue rectangles to cover the small red stroked test rectangle + + + + + + + + + position of the stroke: + red = wrong + + + + + $Revision: 1.5 $ + + + + + diff --git a/test/W3C_SVG_12_TinyTestSuite_beta/svggen/paint-vfill-201-t.svg b/test/W3C_SVG_12_TinyTestSuite_beta/svggen/paint-vfill-201-t.svg new file mode 100755 index 00000000..14d013c4 --- /dev/null +++ b/test/W3C_SVG_12_TinyTestSuite_beta/svggen/paint-vfill-201-t.svg @@ -0,0 +1,53 @@ + + + + + + + + + + $RCSfile: paint-vfill-201-t.svg,v $ + + + + + + + + + + Viewport Fill Attribute + + The root SVG element of this test slide has a 'viewport-fill' attribute set to 'silver'. + + + At the start the entire background should be a light grey.This should then change to aqua. + + + There are two reference squares in the center - silver and aqua. + + + + + + + + + + $Revision: 1.5 $ + + + + + diff --git a/test/W3C_SVG_12_TinyTestSuite_beta/svggen/paint-vfill-202-t.svg b/test/W3C_SVG_12_TinyTestSuite_beta/svggen/paint-vfill-202-t.svg new file mode 100755 index 00000000..b20ef35b --- /dev/null +++ b/test/W3C_SVG_12_TinyTestSuite_beta/svggen/paint-vfill-202-t.svg @@ -0,0 +1,39 @@ + + + + + + + + + + $RCSfile: paint-vfill-202-t.svg,v $ + + + + + + + + + + + + + + $Revision: 1.6 $ + + + + + diff --git a/test/W3C_SVG_12_TinyTestSuite_beta/svggen/paint-vfill-203-t.svg b/test/W3C_SVG_12_TinyTestSuite_beta/svggen/paint-vfill-203-t.svg new file mode 100755 index 00000000..55a466c4 --- /dev/null +++ b/test/W3C_SVG_12_TinyTestSuite_beta/svggen/paint-vfill-203-t.svg @@ -0,0 +1,39 @@ + + + + + + + + + + $RCSfile: paint-vfill-203-t.svg,v $ + + + + + + + + + + + + + + $Revision: 1.6 $ + + + + + \ No newline at end of file diff --git a/test/W3C_SVG_12_TinyTestSuite_beta/svggen/paint-vfill-204-t.svg b/test/W3C_SVG_12_TinyTestSuite_beta/svggen/paint-vfill-204-t.svg new file mode 100755 index 00000000..93d539bc --- /dev/null +++ b/test/W3C_SVG_12_TinyTestSuite_beta/svggen/paint-vfill-204-t.svg @@ -0,0 +1,38 @@ + + + + + + + + + + $RCSfile: paint-vfill-204-t.svg,v $ + + + + + + + + + + + + + $Revision: 1.6 $ + + + + + \ No newline at end of file diff --git a/test/W3C_SVG_12_TinyTestSuite_beta/svggen/paint-vfill-205-t.svg b/test/W3C_SVG_12_TinyTestSuite_beta/svggen/paint-vfill-205-t.svg new file mode 100755 index 00000000..cb5f5916 --- /dev/null +++ b/test/W3C_SVG_12_TinyTestSuite_beta/svggen/paint-vfill-205-t.svg @@ -0,0 +1,38 @@ + + + + + + + + + + $RCSfile: paint-vfill-205-t.svg,v $ + + + + + + + + + + + + + $Revision: 1.5 $ + + + + + \ No newline at end of file diff --git a/test/W3C_SVG_12_TinyTestSuite_beta/svggen/paint-vfill-206-t.svg b/test/W3C_SVG_12_TinyTestSuite_beta/svggen/paint-vfill-206-t.svg new file mode 100755 index 00000000..e8aad55d --- /dev/null +++ b/test/W3C_SVG_12_TinyTestSuite_beta/svggen/paint-vfill-206-t.svg @@ -0,0 +1,56 @@ + + + + + + + + + + $RCSfile: paint-vfill-206-t.svg,v $ + + + + + + + + + + Viewport Fill Opacity Attribute + + The root SVG element of this test slide has a 'viewport-fill' attribute set to 'yellow' + + + with a 'viewport-fill-opacity' of 1. At the start the entire background should be solid yellow. + + + This should then change to a pale bluish gray. There are two reference squares in the center. + + + + + + + + + + + + + $Revision: 1.9 $ + + + + + diff --git a/test/W3C_SVG_12_TinyTestSuite_beta/svggen/paths-data-01-t.svg b/test/W3C_SVG_12_TinyTestSuite_beta/svggen/paths-data-01-t.svg new file mode 100755 index 00000000..15fc9dbc --- /dev/null +++ b/test/W3C_SVG_12_TinyTestSuite_beta/svggen/paths-data-01-t.svg @@ -0,0 +1,122 @@ + + + + + + + + + + $RCSfile: paths-data-01-t.svg,v $ + + + + + + + + + + + + Cubic bézier curves drawn with commands: + + + + + + + + + + + M,C,S,m,c,s + + + + + + + + + + + + M,c,c,c,C,z + + + + + + + + + + M,C,Z + + + + + + + + + + + M,C,c,Z + + + + + + + + + + + m,c,s + + + + + + + + + + M,C + + + + + + + + + + + + M,c,s,s,s,z + + + + + + + + + + m,c,z + + + $Revision: 1.13 $ + + + + + diff --git a/test/W3C_SVG_12_TinyTestSuite_beta/svggen/paths-data-02-t.svg b/test/W3C_SVG_12_TinyTestSuite_beta/svggen/paths-data-02-t.svg new file mode 100755 index 00000000..95d1bf12 --- /dev/null +++ b/test/W3C_SVG_12_TinyTestSuite_beta/svggen/paths-data-02-t.svg @@ -0,0 +1,95 @@ + + + + + + + + + + $RCSfile: paths-data-02-t.svg,v $ + + + + + + + + + Quadratic bézier curves drawn with commands: + + + + + M,Q,M,q,z + + + + + + + + + m,q,z,m,q,z + + + + + + + + + M,Q,Z + + + + + + + M,Q,T,Q,z + + + + + + + + + M,Q,Q,z + + + + + + + + M,q,t,t,t,t,z + + + + + + + + + + + M,q,Q,q,Q,z + + + + + + + + $Revision: 1.13 $ + + + + + diff --git a/test/W3C_SVG_12_TinyTestSuite_beta/svggen/paths-data-04-t.svg b/test/W3C_SVG_12_TinyTestSuite_beta/svggen/paths-data-04-t.svg new file mode 100755 index 00000000..6aad9334 --- /dev/null +++ b/test/W3C_SVG_12_TinyTestSuite_beta/svggen/paths-data-04-t.svg @@ -0,0 +1,56 @@ + + + + + + + + + + $RCSfile: paths-data-04-t.svg,v $ + + + + + + + + + Lines drawn with commands (absolute coordinates): + + + + + M,L,L,L,Z, + subpath + M,L,L,L,Z + + + + + + + + stroked + + + + + + + + filled + + + + $Revision: 1.12 $ + + + + + diff --git a/test/W3C_SVG_12_TinyTestSuite_beta/svggen/paths-data-05-t.svg b/test/W3C_SVG_12_TinyTestSuite_beta/svggen/paths-data-05-t.svg new file mode 100755 index 00000000..90f9b978 --- /dev/null +++ b/test/W3C_SVG_12_TinyTestSuite_beta/svggen/paths-data-05-t.svg @@ -0,0 +1,54 @@ + + + + + + + + + + $RCSfile: paths-data-05-t.svg,v $ + + + + + + + + + Lines drawn with commands (relative coordinates): + + + + + m,l,l,l,z, + subpath + m,l,l,l,z + + + + + + + + + + + + + + + + + + $Revision: 1.13 $ + + + + + diff --git a/test/W3C_SVG_12_TinyTestSuite_beta/svggen/paths-data-06-t.svg b/test/W3C_SVG_12_TinyTestSuite_beta/svggen/paths-data-06-t.svg new file mode 100755 index 00000000..1770a91b --- /dev/null +++ b/test/W3C_SVG_12_TinyTestSuite_beta/svggen/paths-data-06-t.svg @@ -0,0 +1,59 @@ + + + + + + + + + + $RCSfile: paths-data-06-t.svg,v $ + + + + + + + + + Horizontal and Vertical Lines drawn with commands (absolute coordinates): + + + + + M,H,V,H, + V,H,V,H, + V,Z + + + + + + + + + + + + + + + + + + + + + + + $Revision: 1.12 $ + + + + + diff --git a/test/W3C_SVG_12_TinyTestSuite_beta/svggen/paths-data-07-t.svg b/test/W3C_SVG_12_TinyTestSuite_beta/svggen/paths-data-07-t.svg new file mode 100755 index 00000000..35420877 --- /dev/null +++ b/test/W3C_SVG_12_TinyTestSuite_beta/svggen/paths-data-07-t.svg @@ -0,0 +1,58 @@ + + + + + + + + + + $RCSfile: paths-data-07-t.svg,v $ + + + + + + + + + Horizontal and Vertical Lines drawn with commands (relative coordinates): + + + + + m,h,v,h + v,h,v,h + v,z + + + + + + + + + + + + + + + + + + + + + + $Revision: 1.12 $ + + + + + diff --git a/test/W3C_SVG_12_TinyTestSuite_beta/svggen/paths-data-08-t.svg b/test/W3C_SVG_12_TinyTestSuite_beta/svggen/paths-data-08-t.svg new file mode 100755 index 00000000..295bd9df --- /dev/null +++ b/test/W3C_SVG_12_TinyTestSuite_beta/svggen/paths-data-08-t.svg @@ -0,0 +1,54 @@ + + + + + + + + + + $RCSfile: paths-data-08-t.svg,v $ + + + + + + + + + + + + Lines drawn with commands (testing implicit followup of 'L' commands): + M and Z + + + + + + + + + stroked + + + + + + + + filled + + + + $Revision: 1.9 $ + + + + + diff --git a/test/W3C_SVG_12_TinyTestSuite_beta/svggen/paths-data-09-t.svg b/test/W3C_SVG_12_TinyTestSuite_beta/svggen/paths-data-09-t.svg new file mode 100755 index 00000000..d15fefbe --- /dev/null +++ b/test/W3C_SVG_12_TinyTestSuite_beta/svggen/paths-data-09-t.svg @@ -0,0 +1,52 @@ + + + + + + + + + + $RCSfile: paths-data-09-t.svg,v $ + + + + + + + + + + + + Lines drawn with commands (testing implicit followup of 'l' commands): + m and z + + + + + + + + + + + + + + + + + + + $Revision: 1.9 $ + + + + + diff --git a/test/W3C_SVG_12_TinyTestSuite_beta/svggen/paths-data-10-t.svg b/test/W3C_SVG_12_TinyTestSuite_beta/svggen/paths-data-10-t.svg new file mode 100755 index 00000000..44477d50 --- /dev/null +++ b/test/W3C_SVG_12_TinyTestSuite_beta/svggen/paths-data-10-t.svg @@ -0,0 +1,88 @@ + + + + + + + + + + $RCSfile: paths-data-10-t.svg,v $ + + + + + + + + + Testing correct stroking with open and closed paths + + + open + join=round + cap=butt + M,L + + + + + + open + join=bevel + cap=round + m,l + + + + + + open + join=miter + cap=square + M,L + + + + + + closed + join=round + cap=butt + M,L,Z + + + + + + closed + join=bevel + cap=round + m,l,z + + + + + + closed + join=miter + cap=square + M,L,Z + + + + + + + + $Revision: 1.11 $ + + + + + diff --git a/test/W3C_SVG_12_TinyTestSuite_beta/svggen/paths-data-12-t.svg b/test/W3C_SVG_12_TinyTestSuite_beta/svggen/paths-data-12-t.svg new file mode 100755 index 00000000..49ced73e --- /dev/null +++ b/test/W3C_SVG_12_TinyTestSuite_beta/svggen/paths-data-12-t.svg @@ -0,0 +1,47 @@ + + + + + + + + + + $RCSfile: paths-data-12-t.svg,v $ + + + + + + + + + Testing cubic bézier curves and implicit values for 'S': + M,C,S + M,S + + + + + + + + + + + + + + + + $Revision: 1.11 $ + + + + + diff --git a/test/W3C_SVG_12_TinyTestSuite_beta/svggen/paths-data-13-t.svg b/test/W3C_SVG_12_TinyTestSuite_beta/svggen/paths-data-13-t.svg new file mode 100755 index 00000000..9aede1a9 --- /dev/null +++ b/test/W3C_SVG_12_TinyTestSuite_beta/svggen/paths-data-13-t.svg @@ -0,0 +1,38 @@ + + + + + + + + + + $RCSfile: paths-data-13-t.svg,v $ + + + + + + + + + Testing implicit followup of 'V' and 'H' commands): + M,H + M,V + + + + + + + $Revision: 1.10 $ + + + + + diff --git a/test/W3C_SVG_12_TinyTestSuite_beta/svggen/paths-data-14-t.svg b/test/W3C_SVG_12_TinyTestSuite_beta/svggen/paths-data-14-t.svg new file mode 100755 index 00000000..5aa8aa92 --- /dev/null +++ b/test/W3C_SVG_12_TinyTestSuite_beta/svggen/paths-data-14-t.svg @@ -0,0 +1,40 @@ + + + + + + + + + + $RCSfile: paths-data-14-t.svg,v $ + + + + + + + + + Testing implicit followup of 'l/L' commands succeeding 'm/M', commands: + m,z,m,z + M,Z,M,Z + + + + + + + + + $Revision: 1.10 $ + + + + + diff --git a/test/W3C_SVG_12_TinyTestSuite_beta/svggen/paths-data-15-t.svg b/test/W3C_SVG_12_TinyTestSuite_beta/svggen/paths-data-15-t.svg new file mode 100755 index 00000000..ecff68d8 --- /dev/null +++ b/test/W3C_SVG_12_TinyTestSuite_beta/svggen/paths-data-15-t.svg @@ -0,0 +1,43 @@ + + + + + + + + + + $RCSfile: paths-data-15-t.svg,v $ + + + + + + + + + Testing implement followup of commands for quadratic bézier curves + M,Q + M,T + + + + + + + + + + + + $Revision: 1.10 $ + + + + + diff --git a/test/W3C_SVG_12_TinyTestSuite_beta/svggen/render-elems-01-t.svg b/test/W3C_SVG_12_TinyTestSuite_beta/svggen/render-elems-01-t.svg new file mode 100755 index 00000000..bb87539d --- /dev/null +++ b/test/W3C_SVG_12_TinyTestSuite_beta/svggen/render-elems-01-t.svg @@ -0,0 +1,43 @@ + + + + + + + + + + $RCSfile: render-elems-01-t.svg,v $ + + + + + + + + + + + + + + + + + + + Shape fill + + + + $Revision: 1.8 $ + + + + + diff --git a/test/W3C_SVG_12_TinyTestSuite_beta/svggen/render-elems-02-t.svg b/test/W3C_SVG_12_TinyTestSuite_beta/svggen/render-elems-02-t.svg new file mode 100755 index 00000000..02849cb4 --- /dev/null +++ b/test/W3C_SVG_12_TinyTestSuite_beta/svggen/render-elems-02-t.svg @@ -0,0 +1,46 @@ + +"> +]> + + + + + + + + + $RCSfile: render-elems-02-t.svg,v $ + + + + + + + + + + + + + + + + + + + Shape stroke + + + + $Revision: 1.8 $ + + + + + diff --git a/test/W3C_SVG_12_TinyTestSuite_beta/svggen/render-elems-03-t.svg b/test/W3C_SVG_12_TinyTestSuite_beta/svggen/render-elems-03-t.svg new file mode 100755 index 00000000..94ec309a --- /dev/null +++ b/test/W3C_SVG_12_TinyTestSuite_beta/svggen/render-elems-03-t.svg @@ -0,0 +1,42 @@ + +"> +]> + + + + + + + + + $RCSfile: render-elems-03-t.svg,v $ + + + + + + + + + + + + + &shape; + &shape; + Shape fill and stroke + + + + $Revision: 1.8 $ + + + + + diff --git a/test/W3C_SVG_12_TinyTestSuite_beta/svggen/render-elems-06-t.svg b/test/W3C_SVG_12_TinyTestSuite_beta/svggen/render-elems-06-t.svg new file mode 100755 index 00000000..05e67454 --- /dev/null +++ b/test/W3C_SVG_12_TinyTestSuite_beta/svggen/render-elems-06-t.svg @@ -0,0 +1,47 @@ + + + + + + + + + + $RCSfile: render-elems-06-t.svg,v $ + + + + + + + + + + + + + + + + + + + + Text fill + + A + A + + + + $Revision: 1.8 $ + + + + + diff --git a/test/W3C_SVG_12_TinyTestSuite_beta/svggen/render-elems-07-t.svg b/test/W3C_SVG_12_TinyTestSuite_beta/svggen/render-elems-07-t.svg new file mode 100755 index 00000000..f40af779 --- /dev/null +++ b/test/W3C_SVG_12_TinyTestSuite_beta/svggen/render-elems-07-t.svg @@ -0,0 +1,47 @@ + + + + + + + + + + $RCSfile: render-elems-07-t.svg,v $ + + + + + + + + + + + + + + + + + + + + Text stroke + + A + B + + + + $Revision: 1.8 $ + + + + + diff --git a/test/W3C_SVG_12_TinyTestSuite_beta/svggen/render-elems-08-t.svg b/test/W3C_SVG_12_TinyTestSuite_beta/svggen/render-elems-08-t.svg new file mode 100755 index 00000000..a42e1479 --- /dev/null +++ b/test/W3C_SVG_12_TinyTestSuite_beta/svggen/render-elems-08-t.svg @@ -0,0 +1,47 @@ + + + + + + + + + + $RCSfile: render-elems-08-t.svg,v $ + + + + + + + + + + + + + + + + + + + + Text fill and stroke + + A + B + + + + $Revision: 1.8 $ + + + + + diff --git a/test/W3C_SVG_12_TinyTestSuite_beta/svggen/render-groups-01-t.svg b/test/W3C_SVG_12_TinyTestSuite_beta/svggen/render-groups-01-t.svg new file mode 100755 index 00000000..4f026557 --- /dev/null +++ b/test/W3C_SVG_12_TinyTestSuite_beta/svggen/render-groups-01-t.svg @@ -0,0 +1,63 @@ + + + + + + + + + + $RCSfile: render-groups-01-t.svg,v $ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + SVG + + + + + + + $Revision: 1.9 $ + + + + + diff --git a/test/W3C_SVG_12_TinyTestSuite_beta/svggen/render-groups-03-t.svg b/test/W3C_SVG_12_TinyTestSuite_beta/svggen/render-groups-03-t.svg new file mode 100755 index 00000000..b3177b63 --- /dev/null +++ b/test/W3C_SVG_12_TinyTestSuite_beta/svggen/render-groups-03-t.svg @@ -0,0 +1,65 @@ + + + + + + + + + + $RCSfile: render-groups-03-t.svg,v $ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + SVG + + + + + + $Revision: 1.8 $ + + + + + diff --git a/test/W3C_SVG_12_TinyTestSuite_beta/svggen/script-element-201-t.svg b/test/W3C_SVG_12_TinyTestSuite_beta/svggen/script-element-201-t.svg new file mode 100755 index 00000000..e0552c8a --- /dev/null +++ b/test/W3C_SVG_12_TinyTestSuite_beta/svggen/script-element-201-t.svg @@ -0,0 +1,42 @@ + + + + + + + + + + $RCSfile: script-element-201-t.svg,v $ + + + + + + + + + + + + + + + $Revision: 1.6 $ + + + + + diff --git a/test/W3C_SVG_12_TinyTestSuite_beta/svggen/script-element-202-t.svg b/test/W3C_SVG_12_TinyTestSuite_beta/svggen/script-element-202-t.svg new file mode 100755 index 00000000..f3975947 --- /dev/null +++ b/test/W3C_SVG_12_TinyTestSuite_beta/svggen/script-element-202-t.svg @@ -0,0 +1,58 @@ + + + + + + + + + + $RCSfile: script-element-202-t.svg,v $ + + + + + + + + + + + + + + makeScriptElement(); + + + Click here! + + + $Revision: 1.5 $ + + + + + diff --git a/test/W3C_SVG_12_TinyTestSuite_beta/svggen/script-element-203-t.svg b/test/W3C_SVG_12_TinyTestSuite_beta/svggen/script-element-203-t.svg new file mode 100755 index 00000000..78ed97af --- /dev/null +++ b/test/W3C_SVG_12_TinyTestSuite_beta/svggen/script-element-203-t.svg @@ -0,0 +1,107 @@ + + + + + + + + + + $RCSfile: script-element-203-t.svg,v $ + + + + + + + + + Test script logic + + + + + + + + + + + + + + + + + + + + + + if(document.getElementById("c2").getAttributeNS( null, "fill") != "red") + document.getElementById("c2").setAttributeNS( null, "fill", "green"); + + + + + + + + + + + + document.getElementById("c5").setAttributeNS( null, "fill", "red"); + + + + + + + + + + + + + $Revision: 1.5 $ + + + + + diff --git a/test/W3C_SVG_12_TinyTestSuite_beta/svggen/script-handle-05-t.svg b/test/W3C_SVG_12_TinyTestSuite_beta/svggen/script-handle-05-t.svg new file mode 100755 index 00000000..ab2bdf23 --- /dev/null +++ b/test/W3C_SVG_12_TinyTestSuite_beta/svggen/script-handle-05-t.svg @@ -0,0 +1,65 @@ + + + + + + + + + + $RCSfile: script-handle-05-t.svg,v $ + + + + + + + + + + Event and DOM Access Test + + + + + + + onMouseClick(evt); + + Click on target + + + + + + Scripting Test Passed! + + + + + + $Revision: 1.10 $ + + + + + diff --git a/test/W3C_SVG_12_TinyTestSuite_beta/svggen/script-handle-06-t.svg b/test/W3C_SVG_12_TinyTestSuite_beta/svggen/script-handle-06-t.svg new file mode 100755 index 00000000..1f4c1898 --- /dev/null +++ b/test/W3C_SVG_12_TinyTestSuite_beta/svggen/script-handle-06-t.svg @@ -0,0 +1,90 @@ + + + + + + + + + + $RCSfile: script-handle-06-t.svg,v $ + + + + + + + + + + Mouse event handlers test. + + + + + Use the target to trigger events + + + + + onEvent(evt, 'onfocusin'); + + + onEvent(evt, 'onfocusout'); + + + onEvent(evt, 'onactivate'); + + + + + + Target + + + + + + onfocusin + onfocusout + onactivate + + + + + + + + + + + + + + + + + + + $Revision: 1.9 $ + + + + + diff --git a/test/W3C_SVG_12_TinyTestSuite_beta/svggen/script-handle-07-t.svg b/test/W3C_SVG_12_TinyTestSuite_beta/svggen/script-handle-07-t.svg new file mode 100755 index 00000000..afe3f5e8 --- /dev/null +++ b/test/W3C_SVG_12_TinyTestSuite_beta/svggen/script-handle-07-t.svg @@ -0,0 +1,90 @@ + + + + + + + + + + $RCSfile: script-handle-07-t.svg,v $ + + + + + + + + + + Mouse event handlers test. + + + + + Target + Use the target to trigger events + + + + + onEvent(evt, 'onmousedown'); + + + onEvent(evt, 'onmouseup'); + + + onEvent(evt, 'onclick'); + + + + + + + + + + + onmousedown + onmouseup + onclick + + + + + + + + + + + + + + + + + + + $Revision: 1.9 $ + + + + + diff --git a/test/W3C_SVG_12_TinyTestSuite_beta/svggen/script-handle-08-t.svg b/test/W3C_SVG_12_TinyTestSuite_beta/svggen/script-handle-08-t.svg new file mode 100755 index 00000000..ed9c1d6b --- /dev/null +++ b/test/W3C_SVG_12_TinyTestSuite_beta/svggen/script-handle-08-t.svg @@ -0,0 +1,90 @@ + + + + + + + + + + $RCSfile: script-handle-08-t.svg,v $ + + + + + + + + + + Mouse event handlers test. + + + + + Target + Use the target to trigger events + + + + + onEvent(evt, 'onmouseover'); + + + onEvent(evt, 'onmousemove'); + + + onEvent(evt, 'onmouseout'); + + + + + + + + + + + onmouseover + onmousemove + onmouseout + + + + + + + + + + + + + + + + + + + $Revision: 1.10 $ + + + + + diff --git a/test/W3C_SVG_12_TinyTestSuite_beta/svggen/script-handle-201-t.svg b/test/W3C_SVG_12_TinyTestSuite_beta/svggen/script-handle-201-t.svg new file mode 100755 index 00000000..407ca5ac --- /dev/null +++ b/test/W3C_SVG_12_TinyTestSuite_beta/svggen/script-handle-201-t.svg @@ -0,0 +1,98 @@ + + + + + + + + + + $RCSfile: script-handle-201-t.svg,v $ + + + + + + + + + + + Multiple eventhandlers on one object + + + mouse-over/out events should change visibility of rectangle under the event target rectangle. + + + move mouse over the rect. + + + + + + + + + + + + + + + + + + + + + + flipVisibility(); + + + + florpVisibility(); + + + + + + $Revision: 1.7 $ + + + + + diff --git a/test/W3C_SVG_12_TinyTestSuite_beta/svggen/script-handle-202-t.svg b/test/W3C_SVG_12_TinyTestSuite_beta/svggen/script-handle-202-t.svg new file mode 100755 index 00000000..55d3db20 --- /dev/null +++ b/test/W3C_SVG_12_TinyTestSuite_beta/svggen/script-handle-202-t.svg @@ -0,0 +1,77 @@ + + + + + + + + + + $RCSfile: script-handle-202-t.svg,v $ + + + + + + + + + + + Test of script handlers for SMIL events. A red square should flash on the screen six times. + + + + + + + + + + + + + + + flipVisibility(evt); + + + + + + $Revision: 1.6 $ + + + + + diff --git a/test/W3C_SVG_12_TinyTestSuite_beta/svggen/script-listener-201-t.svg b/test/W3C_SVG_12_TinyTestSuite_beta/svggen/script-listener-201-t.svg new file mode 100755 index 00000000..09a79c89 --- /dev/null +++ b/test/W3C_SVG_12_TinyTestSuite_beta/svggen/script-listener-201-t.svg @@ -0,0 +1,57 @@ + + + + + + + + + + $RCSfile: script-listener-201-t.svg,v $ + + + + + + + + + + + Test failed: handlers not implemented. + + + + + + document.getElementById("status").textContent = "Test passed"; + + + + + + + document.getElementById("status").textContent = "Test failed: magic prefixes!"; + + + + $Revision: 1.7 $ + + + + + diff --git a/test/W3C_SVG_12_TinyTestSuite_beta/svggen/script-listener-202-t.svg b/test/W3C_SVG_12_TinyTestSuite_beta/svggen/script-listener-202-t.svg new file mode 100755 index 00000000..314cb4b3 --- /dev/null +++ b/test/W3C_SVG_12_TinyTestSuite_beta/svggen/script-listener-202-t.svg @@ -0,0 +1,54 @@ + + + + + + + + + + $RCSfile: script-listener-202-t.svg,v $ + + + + + + + + + + + Test passed. + + + + + + + document.getElementById("status").textContent = "Test failed"; + + + + + document.getElementById("test-body-content").removeChild( document.getElementById("impl-xml-events") ); + + + + + + + $Revision: 1.5 $ + + + + + diff --git a/test/W3C_SVG_12_TinyTestSuite_beta/svggen/script-listener-203-t.svg b/test/W3C_SVG_12_TinyTestSuite_beta/svggen/script-listener-203-t.svg new file mode 100755 index 00000000..3241b330 --- /dev/null +++ b/test/W3C_SVG_12_TinyTestSuite_beta/svggen/script-listener-203-t.svg @@ -0,0 +1,57 @@ + + + + + + + + + + $RCSfile: script-listener-203-t.svg,v $ + + + + + + + + + + + + + + + + document.getElementById("r1").setAttributeNS(null, "fill", "green"); + + + + + + + document.getElementById("status").textContent = "Test failed: 'listener' is not an svg element."; + document.getElementById("r2").setAttributeNS(null, "fill", "red"); + + + + + + + + + $Revision: 1.3 $ + + + + + \ No newline at end of file diff --git a/test/W3C_SVG_12_TinyTestSuite_beta/svggen/script-listener-204-t.svg b/test/W3C_SVG_12_TinyTestSuite_beta/svggen/script-listener-204-t.svg new file mode 100755 index 00000000..aa16123f --- /dev/null +++ b/test/W3C_SVG_12_TinyTestSuite_beta/svggen/script-listener-204-t.svg @@ -0,0 +1,80 @@ + + + + + + + + + + $RCSfile: script-listener-204-t.svg,v $ + + + + + + + + + + + + + + + + Click here + + + + + Click here + + + + + + + fail(1); + + + pass(1); + + + + + + pass(2); + + + fail(2); + + + + $Revision: 1.4 $ + + + + + \ No newline at end of file diff --git a/test/W3C_SVG_12_TinyTestSuite_beta/svggen/shapes-circle-01-t.svg b/test/W3C_SVG_12_TinyTestSuite_beta/svggen/shapes-circle-01-t.svg new file mode 100755 index 00000000..11e356e3 --- /dev/null +++ b/test/W3C_SVG_12_TinyTestSuite_beta/svggen/shapes-circle-01-t.svg @@ -0,0 +1,38 @@ + + + + + + + + + + $RCSfile: shapes-circle-01-t.svg,v $ + + + + + + + + + Testing the <circle/> element with different fill, stroke and stroke-width attributes + + + + + + + + + $Revision: 1.10 $ + + + + + diff --git a/test/W3C_SVG_12_TinyTestSuite_beta/svggen/shapes-circle-02-t.svg b/test/W3C_SVG_12_TinyTestSuite_beta/svggen/shapes-circle-02-t.svg new file mode 100755 index 00000000..27109800 --- /dev/null +++ b/test/W3C_SVG_12_TinyTestSuite_beta/svggen/shapes-circle-02-t.svg @@ -0,0 +1,44 @@ + + + + + + + + + + $RCSfile: shapes-circle-02-t.svg,v $ + + + + + + + + + Testing the default attributes on the <circle/> element + + + + + + + + + + + + + + + $Revision: 1.8 $ + + + + + diff --git a/test/W3C_SVG_12_TinyTestSuite_beta/svggen/shapes-circle-03-t.svg b/test/W3C_SVG_12_TinyTestSuite_beta/svggen/shapes-circle-03-t.svg new file mode 100755 index 00000000..9b4daba8 --- /dev/null +++ b/test/W3C_SVG_12_TinyTestSuite_beta/svggen/shapes-circle-03-t.svg @@ -0,0 +1,78 @@ + + + + + + + + + + $RCSfile: shapes-circle-03-t.svg,v $ + + + + + + + + + Testing the correct stroking of the <circle /> element. + 3 'o clock starting point + 3 'o clock starting point + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + $Revision: 1.6 $ + + + + + diff --git a/test/W3C_SVG_12_TinyTestSuite_beta/svggen/shapes-ellipse-01-t.svg b/test/W3C_SVG_12_TinyTestSuite_beta/svggen/shapes-ellipse-01-t.svg new file mode 100755 index 00000000..221e0ad2 --- /dev/null +++ b/test/W3C_SVG_12_TinyTestSuite_beta/svggen/shapes-ellipse-01-t.svg @@ -0,0 +1,51 @@ + + + + + + + + + + $RCSfile: shapes-ellipse-01-t.svg,v $ + + + + + + + + + Testing the <ellipse /> element with various stroke and fill attributes + + + + + + + + + + + + + + + + + + + + + + $Revision: 1.10 $ + + + + + diff --git a/test/W3C_SVG_12_TinyTestSuite_beta/svggen/shapes-ellipse-02-t.svg b/test/W3C_SVG_12_TinyTestSuite_beta/svggen/shapes-ellipse-02-t.svg new file mode 100755 index 00000000..0b98555f --- /dev/null +++ b/test/W3C_SVG_12_TinyTestSuite_beta/svggen/shapes-ellipse-02-t.svg @@ -0,0 +1,42 @@ + + + + + + + + + + $RCSfile: shapes-ellipse-02-t.svg,v $ + + + + + + + + + Testing the default and zero value attributes of the <ellipse /> element. + + + + + + + + + + + + + $Revision: 1.9 $ + + + + + diff --git a/test/W3C_SVG_12_TinyTestSuite_beta/svggen/shapes-ellipse-03-t.svg b/test/W3C_SVG_12_TinyTestSuite_beta/svggen/shapes-ellipse-03-t.svg new file mode 100755 index 00000000..ec5866d3 --- /dev/null +++ b/test/W3C_SVG_12_TinyTestSuite_beta/svggen/shapes-ellipse-03-t.svg @@ -0,0 +1,74 @@ + + + + + + + + + + $RCSfile: shapes-ellipse-03-t.svg,v $ + + + + + + + + + Testing the correct stroking of the <ellipse /> element. + 3 'o clock starting point + 3 'o clock starting point + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + $Revision: 1.6 $ + + + + + diff --git a/test/W3C_SVG_12_TinyTestSuite_beta/svggen/shapes-intro-01-t.svg b/test/W3C_SVG_12_TinyTestSuite_beta/svggen/shapes-intro-01-t.svg new file mode 100755 index 00000000..a325ccee --- /dev/null +++ b/test/W3C_SVG_12_TinyTestSuite_beta/svggen/shapes-intro-01-t.svg @@ -0,0 +1,87 @@ + + + + + + + + + + $RCSfile: shapes-intro-01-t.svg,v $ + + + + + + + + + Testing the degenerate cases of the basic shapes; attribute values set to zero. + + + + + + + + + + + + + + + + + + + + + + Stroked + Unstroked + Zero width rect + Zero height rect + Zero radius circle + Zero x radius ellipse + Zero y radius ellipse + Zero length line + + + + + + + + + + + + + + + + + + + + + + + + + + + + + $Revision: 1.8 $ + + + + + diff --git a/test/W3C_SVG_12_TinyTestSuite_beta/svggen/shapes-line-01-t.svg b/test/W3C_SVG_12_TinyTestSuite_beta/svggen/shapes-line-01-t.svg new file mode 100755 index 00000000..6b59936c --- /dev/null +++ b/test/W3C_SVG_12_TinyTestSuite_beta/svggen/shapes-line-01-t.svg @@ -0,0 +1,60 @@ + + + + + + + + + + $RCSfile: shapes-line-01-t.svg,v $ + + + + + + + + + Testing the <line/> element with different stroke and stroke-width attributes + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + $Revision: 1.9 $ + + + + + diff --git a/test/W3C_SVG_12_TinyTestSuite_beta/svggen/shapes-line-02-t.svg b/test/W3C_SVG_12_TinyTestSuite_beta/svggen/shapes-line-02-t.svg new file mode 100755 index 00000000..23386b01 --- /dev/null +++ b/test/W3C_SVG_12_TinyTestSuite_beta/svggen/shapes-line-02-t.svg @@ -0,0 +1,41 @@ + + + + + + + + + + $RCSfile: shapes-line-02-t.svg,v $ + + + + + + + + + Testing the default attributes of the <line/> element + + + + + + + + + + + + $Revision: 1.4 $ + + + + + diff --git a/test/W3C_SVG_12_TinyTestSuite_beta/svggen/shapes-polygon-01-t.svg b/test/W3C_SVG_12_TinyTestSuite_beta/svggen/shapes-polygon-01-t.svg new file mode 100755 index 00000000..1a09ba3b --- /dev/null +++ b/test/W3C_SVG_12_TinyTestSuite_beta/svggen/shapes-polygon-01-t.svg @@ -0,0 +1,56 @@ + + + + + + + + + + $RCSfile: shapes-polygon-01-t.svg,v $ + + + + + + + + + Testing the <polygon/> element with different fill, stroke and stroke-width attributes + + + + + + + + + + + + + + + + + + + + + + + + + + + $Revision: 1.9 $ + + + + + diff --git a/test/W3C_SVG_12_TinyTestSuite_beta/svggen/shapes-polygon-02-t.svg b/test/W3C_SVG_12_TinyTestSuite_beta/svggen/shapes-polygon-02-t.svg new file mode 100755 index 00000000..e7093949 --- /dev/null +++ b/test/W3C_SVG_12_TinyTestSuite_beta/svggen/shapes-polygon-02-t.svg @@ -0,0 +1,44 @@ + + + + + + + + + + $RCSfile: shapes-polygon-02-t.svg,v $ + + + + + + + + + Test that empty and invalid points attributes don't result in rendering 'polygon' elements. + Only three similar <polygon /> elements should be rendered. + Three different syntaxes in the points attribute. + + + + + + + + + + + + + $Revision: 1.5 $ + + + + + \ No newline at end of file diff --git a/test/W3C_SVG_12_TinyTestSuite_beta/svggen/shapes-polyline-01-t.svg b/test/W3C_SVG_12_TinyTestSuite_beta/svggen/shapes-polyline-01-t.svg new file mode 100755 index 00000000..0553003c --- /dev/null +++ b/test/W3C_SVG_12_TinyTestSuite_beta/svggen/shapes-polyline-01-t.svg @@ -0,0 +1,62 @@ + + + + + + + + + + $RCSfile: shapes-polyline-01-t.svg,v $ + + + + + + + + + Testing the <polyline/> element with different fill, stroke and stroke-width attributes + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + $Revision: 1.9 $ + + + + + diff --git a/test/W3C_SVG_12_TinyTestSuite_beta/svggen/shapes-polyline-02-t.svg b/test/W3C_SVG_12_TinyTestSuite_beta/svggen/shapes-polyline-02-t.svg new file mode 100755 index 00000000..e799bfaa --- /dev/null +++ b/test/W3C_SVG_12_TinyTestSuite_beta/svggen/shapes-polyline-02-t.svg @@ -0,0 +1,45 @@ + + + + + + + + + + $RCSfile: shapes-polyline-02-t.svg,v $ + + + + + + + + + Test that empty and invalid points attributes result in not rendering <polyline /> elements. + Only three similar <polyline /> elements should be rendered. + Two different syntaxes in the points attribute. + + + + + + + + + + + + + $Revision: 1.4 $ + + + + + \ No newline at end of file diff --git a/test/W3C_SVG_12_TinyTestSuite_beta/svggen/shapes-rect-01-t.svg b/test/W3C_SVG_12_TinyTestSuite_beta/svggen/shapes-rect-01-t.svg new file mode 100755 index 00000000..548a5a65 --- /dev/null +++ b/test/W3C_SVG_12_TinyTestSuite_beta/svggen/shapes-rect-01-t.svg @@ -0,0 +1,52 @@ + + + + + + + + + + $RCSfile: shapes-rect-01-t.svg,v $ + + + + + + + + + Testing the <rect/> element with different fill, stroke and rx attributes + + + + + + + + + + + + + + + + + + + + + + + $Revision: 1.10 $ + + + + + diff --git a/test/W3C_SVG_12_TinyTestSuite_beta/svggen/shapes-rect-02-t.svg b/test/W3C_SVG_12_TinyTestSuite_beta/svggen/shapes-rect-02-t.svg new file mode 100755 index 00000000..ab05fba1 --- /dev/null +++ b/test/W3C_SVG_12_TinyTestSuite_beta/svggen/shapes-rect-02-t.svg @@ -0,0 +1,46 @@ + + + + + + + + + + $RCSfile: shapes-rect-02-t.svg,v $ + + + + + + + + + Testing the default values of attributes of the <rect/> element + + + + + + + + + + + + + + + + + $Revision: 1.9 $ + + + + + diff --git a/test/W3C_SVG_12_TinyTestSuite_beta/svggen/shapes-rect-03-t.svg b/test/W3C_SVG_12_TinyTestSuite_beta/svggen/shapes-rect-03-t.svg new file mode 100755 index 00000000..4ae04fc8 --- /dev/null +++ b/test/W3C_SVG_12_TinyTestSuite_beta/svggen/shapes-rect-03-t.svg @@ -0,0 +1,56 @@ + + + + + + + + + + $RCSfile: shapes-rect-03-t.svg,v $ + + + + + + + + + Testing the correct stroking of the <rect/> element + + + + + + + + + + + + + + + + + + + + + + + + + + + $Revision: 1.5 $ + + + + + diff --git a/test/W3C_SVG_12_TinyTestSuite_beta/svggen/struct-class-201-t.svg b/test/W3C_SVG_12_TinyTestSuite_beta/svggen/struct-class-201-t.svg new file mode 100755 index 00000000..4b7e4c48 --- /dev/null +++ b/test/W3C_SVG_12_TinyTestSuite_beta/svggen/struct-class-201-t.svg @@ -0,0 +1,71 @@ + + + + + + + + + + $RCSfile: struct-class-201-t.svg,v $ + + + + + + + + + + + + + + + + + + + + + + $Revision: 1.3 $ + + + + + \ No newline at end of file diff --git a/test/W3C_SVG_12_TinyTestSuite_beta/svggen/struct-common-201-t.svg b/test/W3C_SVG_12_TinyTestSuite_beta/svggen/struct-common-201-t.svg new file mode 100755 index 00000000..c64d23f7 --- /dev/null +++ b/test/W3C_SVG_12_TinyTestSuite_beta/svggen/struct-common-201-t.svg @@ -0,0 +1,94 @@ + + + + initTest(evt); + + + + + + + + + $RCSfile: struct-common-201-t.svg,v $ + + + + + + + + + + + + + + + + + id only + xml:id only + id and + xml:id, same + values + id and + xml:id, different + values + + + + + $Revision: 1.8 $ + + + + + diff --git a/test/W3C_SVG_12_TinyTestSuite_beta/svggen/struct-cond-01-t.svg b/test/W3C_SVG_12_TinyTestSuite_beta/svggen/struct-cond-01-t.svg new file mode 100755 index 00000000..3e3a1901 --- /dev/null +++ b/test/W3C_SVG_12_TinyTestSuite_beta/svggen/struct-cond-01-t.svg @@ -0,0 +1,36 @@ + + + + + + + + + + $RCSfile: struct-cond-01-t.svg,v $ + + + + + + + + + + + + + + + + $Revision: 1.8 $ + + + + + diff --git a/test/W3C_SVG_12_TinyTestSuite_beta/svggen/struct-cond-02-t.svg b/test/W3C_SVG_12_TinyTestSuite_beta/svggen/struct-cond-02-t.svg new file mode 100755 index 00000000..6a9edb6f --- /dev/null +++ b/test/W3C_SVG_12_TinyTestSuite_beta/svggen/struct-cond-02-t.svg @@ -0,0 +1,326 @@ + + + + + + + + + + $RCSfile: struct-cond-02-t.svg,v $ + + + + + + + + + + + + + + Waarom kan hulle nie net doodgewoon Afrikaans praat nie? + Afrikaans + + + ለምንድነው አማርኛ የማይናገሩት፧ + Amharic + + + + لماذا لا يتكلمون اللّغة العربية فحسب؟ + Arabic (SA) + + + Защо те просто не могат да говорят български ? + Bulgarian + + + ওরা েকন বাংলা বলেত পাের না ? + Bengali + + + + Per què no poden simplement parlar en català ? + Catalan + + + Proč prostě nemluví česky ? + Czech + + + Pam dydyn nhw ddim yn siarad Cymraeg ? + Welsh + + + Hvorfor kan de ikke bare tale dansk ? + Danish + + + + Warum sprechen sie nicht einfach Deutsch ? + German (DE) + + + Μα γιατί δεν μπορούν να μιλήσουν Ελληνικά ; + Greek (modern, GR) + + + Why can't they just speak English ? + English (US) + + + ¿Por qué no pueden simplemente hablar en castellano ? + Spanish (ES) + + + Zergatik ezin dute  Euzkeraz bakarrik hitzegin? + Basque + + + خب، چرا فارسى صحبت نمى كنند؟ + Farsi + + + Miksi he eivät yksinkertaisesti puhu suomea ? + Finnish + + + + Pourquoi, tout simplement, ne parlent-ils pas en Français ? + French (FR) + + + Carson nach eil iad a'bruidhinn na Gàidhlige ? + Scots Gaelic + + + બદ્ધા લોકો ગુજરાતી કૅમ નથી બોલતા? + Gujarti (IN) + + + + למה הם פשוט לא מדברים עברית ? + Hebrew (modern) + + + यह लोग हिन्दी क्यों नहीं बोल सकते हैं ? + Hindi + + + Zašto jednostavno ne govore hrvatski ? + Croatian + + + Miért nem beszélnek egyszerűen magyarul ? + Hungarian + + + Ինչու՞ նրանք չեն խոսում Հայերեն + Armenian + + + Mengapa mereka tidak bisa bicara bahasa Indonesia ? + Indonesian + + + Hvers vegna geta þeir ekki réttlátur tala Íslenska ? + Icelandic + + + Perchè non possono semplicemente parlare italiano ? + Italian + + + + ᓱᒻᒪᓂᒃᑯᐊ ᐃᓄᒃᑎᑐ ᑐᐃᓐᓇᔭᙱᓚᑦ + Inuktitut + + + なぜ、みんな日本語を話してくれないのか? + Japanese (JP) + + + Kenapa kok ora nganggo  basa Jawa  wae? + Javanese + + + რატომ არ ლაპარაკობენ ისინი ქართულად ? + Georgian + + + Олар неге қазақ тiлiнде сойлемейдi? + Kazakh + + + ಅವರು ಕನ್ನಡ ಮಾತನಾಡಬಹುದಲ್ಲಾ? + Kannada + + + 세계의 모든 사람들이 한국어 를 이해한다면 얼마나 좋을까? + Korean + + + Емне үчүн алар кыргызча сүйлбйт? + Kirghiz + + + Kodėl gi jie nekalba lietuviškai ? + Lithuanian + + + Зошто тие едноставно не говорат македонски ? + Macedonian + + + लोकांना मराठी का बोलता येत नाही? + Marathi + + + Waarom spreken ze niet gewoon Nederlands ? + Dutch + + + Hvorfor kan de ikke bare snakke norsk ? + Norwegian + + + ସେମାନେ ଉଡିଯା ରେ କହିନ୍କି କହିବେ ନହିଁ? + Oriya + + + Dlaczego oni nie mówią po polsku ? + Polish + + + + Porque é que eles não falam simplesmente em Português ? + Portugese (PT) + + + Porque é que eles não falam em Português (do Brasil) ? + Portugese (BR) + + + Porque é que eles não falam simplesmente em Português ? + Portugese + + + De ce ei nu vorbesc moldoveneşte ? + Romanian + + + Почему же они не говорят по-русски ? + Russian + + + ते किं संस्कृतः माम वदन्ति ? + Sanskrit + + + Zašto jednostavno ne govore srpski ? + Serbian + + + අැයි ඔවුන්ට ඉංගරිස කතා ෛනබ ? + Sinhalese + + + + Zakaj vendar ne govorijo slovensko ? + Slovenian + + + Pse nuk duan të flasin vetëm shqip ? + Albanian + + + Varför pratar dom inte bara svenska ? + Swedish + + + அவர்கள் ஏன் தமிழில் பேசக்கூடாது ? + Tamil + + + తెలుగు లో ఎందుకు మాట్లాడరు? + Telugu + + + Čaro onho ba zaboni točiki gap namezanand? + Tajik + + + ทำไมเขาถึงไม่พูด ภาษาไทย + Thai + + + Bakit hindi na lang sila magsalita ng Tagalog ? + Tagalog (Filipino) + + + Neden Türkçe konuşamıyorlar? + Turkish + + + Нишләп олар татарча сүләша алмыйлар? + Tatar + + + Чому б їм не розмовляти українською ? + Ukranian + + + ﻦﻴﻫ ﻰﺘﻠﻭﺒ ﻦﻴﻬﻨ ﻦﻭﻴﻜ ﻮﺪﺭﺃ بس ﻮﻩ ﻟﻮﮒ؟ + Urdu (IN) + + + ﻦﻴﻫ ﻰﺘﻠﻭﺒ ﻦﻴﻬﻨ ﻦﻭﻴﻜ ﻮﺪﺭﺃ بس ﻮﻩ ﻟﻮﮒ؟ + Urdu (PK) + + + + Nega ular uzbek tilinda gapirmaidilar? + Uzbek + + + Tại sao họ không thể chỉ nói tiếng Việt ? + Vietnamese + + + פֿאַרװאָס רעדט מען ניט פּשוט ייִדיש ? + Yiddish + + + 他们为什么不说中文 (中国) ? + Chinese (CN) + + + 他們爲什麽不說中文(台灣)? + Chinese (TW) + + + + You have no (matching) language preference set + なぜ、みんな日本語を話してくれないのか? + Why can't they just speak English ? + Pourquoi, tout simplement, ne parlent-ils pas en Français ? + + + + + + + $Revision: 1.8 $ + + + + + diff --git a/test/W3C_SVG_12_TinyTestSuite_beta/svggen/struct-cond-03-t.svg b/test/W3C_SVG_12_TinyTestSuite_beta/svggen/struct-cond-03-t.svg new file mode 100755 index 00000000..b8fd5332 --- /dev/null +++ b/test/W3C_SVG_12_TinyTestSuite_beta/svggen/struct-cond-03-t.svg @@ -0,0 +1,60 @@ + + + + + + + + + + $RCSfile: struct-cond-03-t.svg,v $ + + + + + + + + + + + + This viewer does more than SVG Tiny 1.2 + + + + + This viewer + does not implement SVG Full DOM + + + + + + + SVG Basic Text feature supported + + + + Fail: Basic Text feature not supported + + + + + FAIL + + + $Revision: 1.7 $ + + + + + diff --git a/test/W3C_SVG_12_TinyTestSuite_beta/svggen/struct-cond-204-t.svg b/test/W3C_SVG_12_TinyTestSuite_beta/svggen/struct-cond-204-t.svg new file mode 100755 index 00000000..0a1b3566 --- /dev/null +++ b/test/W3C_SVG_12_TinyTestSuite_beta/svggen/struct-cond-204-t.svg @@ -0,0 +1,115 @@ + + + + + + + + + + $RCSfile: struct-cond-204-t.svg,v $ + + + + + + + + + + requiredFormats Attribute + + Supported Internet Media types are determined, using the 'requiredFormats' attribute + + + + + Mandatory Formats + Supported? + image/svg+xml + + Yes (required) + No (fail) + + image/png + + Yes (required) + No (fail) + + image/jpeg + + Yes (required) + No (fail) + + foo/foo + + Yes (fail) + No (expected) + + image/png image/svg+xml foo/foo + + Yes (fail) + No (expected) + + image/svg+xml image/png image/jpeg + + Yes (required) + No (fail) + + + Optional Formats + Supported? + + image/tif + + Yes + No + + image/g3fax + + Yes + No + + + video/mpeg + + Yes + No + + video/3gpp + + Yes + No + + + audio/vnd.wave;codec=1 + + Yes + No + + + audio/3gpp + + Yes + No + + + + + $Revision: 1.4 $ + + + + + diff --git a/test/W3C_SVG_12_TinyTestSuite_beta/svggen/struct-cond-205-t.svg b/test/W3C_SVG_12_TinyTestSuite_beta/svggen/struct-cond-205-t.svg new file mode 100755 index 00000000..2b5943cc --- /dev/null +++ b/test/W3C_SVG_12_TinyTestSuite_beta/svggen/struct-cond-205-t.svg @@ -0,0 +1,239 @@ + + + + + + + + + + $RCSfile: struct-cond-205-t.svg,v $ + + + + + + + + + + Required Features Attribute + + A series of switches are used to determine which 'requiredFeatures' are supported. + + + + Feature + Supported? + + http://www.w3.org/Graphics/SVG/feature/1.2/#SVG-static + + Yes + No + + http://www.w3.org/Graphics/SVG/feature/1.2/#SVG-static-DOM + + Yes + No + + http://www.w3.org/Graphics/SVG/feature/1.2/#SVG-animated + + Yes + No + + http://www.w3.org/Graphics/SVG/feature/1.2/#SVG-all + + Yes + No + + http://www.w3.org/Graphics/SVG/feature/1.2/#CoreAttribute + + Yes + No + + http://www.w3.org/Graphics/SVG/feature/1.2/#NavigationAttribute + + Yes + No + + garbage + + Yes + No (expected) + + http://www.w3.org/Graphics/SVG/feature/1.2/#NavigationAttribute + + Yes + No + + http://www.w3.org/Graphics/SVG/feature/1.2/#Structure + + Yes + No + + http://www.w3.org/Graphics/SVG/feature/1.2/#structure + + Yes + No (expected) + + http://www.w3.org/Graphics/SVG/feature/1.2/#ConditionalProcessing + + Yes + No + + http://www.w3.org/Graphics/SVG/feature/1.2/#ConditionalProcessingAttribute + + Yes + No + + http://www.w3.org/Graphics/SVG/feature/1.2/#Image + + Yes + No + + http://www.w3.org/Graphics/SVG/feature/1.2/#Prefetch + + Yes + No + + http://www.w3.org/Graphics/SVG/feature/1.2/#Discard + + Yes + No + + http://www.w3.org/Graphics/SVG/feature/1.2/#Shape + + Yes + No + + http://www.w3.org/Graphics/SVG/feature/1.2/#Text + + Yes + No + + http://www.w3.org/Graphics/SVG/feature/1.2/#PaintAttribute + + Yes + No + + http://www.w3.org/Graphics/SVG/feature/1.2/#OpacityAttribute + + Yes + No + + http://www.w3.org/Graphics/SVG/feature/1.2/#GraphicsAttribute + + Yes + No + + + + + + $Revision: 1.4 $ + + + + + diff --git a/test/W3C_SVG_12_TinyTestSuite_beta/svggen/struct-cond-209-t.svg b/test/W3C_SVG_12_TinyTestSuite_beta/svggen/struct-cond-209-t.svg new file mode 100755 index 00000000..3fc86f74 --- /dev/null +++ b/test/W3C_SVG_12_TinyTestSuite_beta/svggen/struct-cond-209-t.svg @@ -0,0 +1,45 @@ + + + + + + + + + + $RCSfile: struct-cond-209-t.svg,v $ + + + + + + + + + + + + + + + + + + + + + + + + $Revision: 1.3 $ + + + + + diff --git a/test/W3C_SVG_12_TinyTestSuite_beta/svggen/struct-cond-210-t.svg b/test/W3C_SVG_12_TinyTestSuite_beta/svggen/struct-cond-210-t.svg new file mode 100755 index 00000000..4f46aaf7 --- /dev/null +++ b/test/W3C_SVG_12_TinyTestSuite_beta/svggen/struct-cond-210-t.svg @@ -0,0 +1,51 @@ + + + + + + + + + + $RCSfile: struct-cond-210-t.svg,v $ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + $Revision: 1.3 $ + + + + + diff --git a/test/W3C_SVG_12_TinyTestSuite_beta/svggen/struct-defs-01-t.svg b/test/W3C_SVG_12_TinyTestSuite_beta/svggen/struct-defs-01-t.svg new file mode 100755 index 00000000..b78bca39 --- /dev/null +++ b/test/W3C_SVG_12_TinyTestSuite_beta/svggen/struct-defs-01-t.svg @@ -0,0 +1,38 @@ + + + + + + + + + + $RCSfile: struct-defs-01-t.svg,v $ + + + + + + + + + + + + + + + + + + $Revision: 1.8 $ + + + + + diff --git a/test/W3C_SVG_12_TinyTestSuite_beta/svggen/struct-defs-201-t.svg b/test/W3C_SVG_12_TinyTestSuite_beta/svggen/struct-defs-201-t.svg new file mode 100755 index 00000000..c9936b6f --- /dev/null +++ b/test/W3C_SVG_12_TinyTestSuite_beta/svggen/struct-defs-201-t.svg @@ -0,0 +1,84 @@ + + + + + + + + + + $RCSfile: struct-defs-201-t.svg,v $ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + $Revision: 1.4 $ + + + + + \ No newline at end of file diff --git a/test/W3C_SVG_12_TinyTestSuite_beta/svggen/struct-discard-201-t.svg b/test/W3C_SVG_12_TinyTestSuite_beta/svggen/struct-discard-201-t.svg new file mode 100755 index 00000000..4c541130 --- /dev/null +++ b/test/W3C_SVG_12_TinyTestSuite_beta/svggen/struct-discard-201-t.svg @@ -0,0 +1,88 @@ + + + + + + + + + + $RCSfile: struct-discard-201-t.svg,v $ + + + + + + + + + Progressive rendering example + + Discard Element + + The blue bars are animated then 'discarded' as indicated by comments. + + + + + 0s + 1s + 2s + 3s + 4s + 5s + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + Starts at 0s, Discards at 5s + Starts at 2s, Discards at 4s + Starts at 0s, Discards at 4s + Starts at 0s, No discard. + Starts at 5s. + + + + + $Revision: 1.5 $ + + + + + diff --git a/test/W3C_SVG_12_TinyTestSuite_beta/svggen/struct-discard-204-t.svg b/test/W3C_SVG_12_TinyTestSuite_beta/svggen/struct-discard-204-t.svg new file mode 100755 index 00000000..3bdcec5c --- /dev/null +++ b/test/W3C_SVG_12_TinyTestSuite_beta/svggen/struct-discard-204-t.svg @@ -0,0 +1,56 @@ + + + + + + + + + + $RCSfile: struct-discard-204-t.svg,v $ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + $Revision: 1.6 $ + + + + + \ No newline at end of file diff --git a/test/W3C_SVG_12_TinyTestSuite_beta/svggen/struct-discard-205-t.svg b/test/W3C_SVG_12_TinyTestSuite_beta/svggen/struct-discard-205-t.svg new file mode 100755 index 00000000..b978afc4 --- /dev/null +++ b/test/W3C_SVG_12_TinyTestSuite_beta/svggen/struct-discard-205-t.svg @@ -0,0 +1,59 @@ + + + + + + + + + + $RCSfile: struct-discard-205-t.svg,v $ + + + + + + + + + + + + + + + + + + + + + + + + + var d1 = document.getElementById("discard1"); + var d2 = document.getElementById("discard2"); + var d3 = document.getElementById("discard3"); + + if(d1 || d2 || d3) + document.getElementById("c3").setAttribute("fill", "red"); + + + + + $Revision: 1.4 $ + + + + + \ No newline at end of file diff --git a/test/W3C_SVG_12_TinyTestSuite_beta/svggen/struct-discard-206-t.svg b/test/W3C_SVG_12_TinyTestSuite_beta/svggen/struct-discard-206-t.svg new file mode 100755 index 00000000..2252bdff --- /dev/null +++ b/test/W3C_SVG_12_TinyTestSuite_beta/svggen/struct-discard-206-t.svg @@ -0,0 +1,51 @@ + + + + + + + + + + $RCSfile: struct-discard-206-t.svg,v $ + + + + + + + + + + + + + + + + + + + + + + + + + + + $Revision: 1.5 $ + + + + + \ No newline at end of file diff --git a/test/W3C_SVG_12_TinyTestSuite_beta/svggen/struct-discard-207-t.svg b/test/W3C_SVG_12_TinyTestSuite_beta/svggen/struct-discard-207-t.svg new file mode 100755 index 00000000..9ad39720 --- /dev/null +++ b/test/W3C_SVG_12_TinyTestSuite_beta/svggen/struct-discard-207-t.svg @@ -0,0 +1,68 @@ + + + + + + + + + + $RCSfile: struct-discard-207-t.svg,v $ + + + + + + + + + + + + + + + + + + + + + + + var r2 = document.getElementById("r2"); + var parenta = r2.parentNode; + parenta.removeChild(r2); + + + + + + var r1 = document.getElementById("r1"); + var r2 = document.getElementById("r2"); + var res = document.getElementById("result"); + var str = (r1 || r2) ? "Test failed." : "Test passed."; + res.textContent = str; + + + + + + Test running... + + + $Revision: 1.5 $ + + + + + diff --git a/test/W3C_SVG_12_TinyTestSuite_beta/svggen/struct-frag-02-t.svg b/test/W3C_SVG_12_TinyTestSuite_beta/svggen/struct-frag-02-t.svg new file mode 100755 index 00000000..e1249e6e --- /dev/null +++ b/test/W3C_SVG_12_TinyTestSuite_beta/svggen/struct-frag-02-t.svg @@ -0,0 +1,35 @@ + + + + + + + + + + $RCSfile: struct-frag-02-t.svg,v $ + + + + + + + + + + + + + + + $Revision: 1.6 $ + + + + + diff --git a/test/W3C_SVG_12_TinyTestSuite_beta/svggen/struct-frag-03-t.svg b/test/W3C_SVG_12_TinyTestSuite_beta/svggen/struct-frag-03-t.svg new file mode 100755 index 00000000..453713fc --- /dev/null +++ b/test/W3C_SVG_12_TinyTestSuite_beta/svggen/struct-frag-03-t.svg @@ -0,0 +1,35 @@ + + + + + + + + + + $RCSfile: struct-frag-03-t.svg,v $ + + + + + + + + + + + + + + + $Revision: 1.6 $ + + + + + diff --git a/test/W3C_SVG_12_TinyTestSuite_beta/svggen/struct-frag-04-t.svg b/test/W3C_SVG_12_TinyTestSuite_beta/svggen/struct-frag-04-t.svg new file mode 100755 index 00000000..4a0052c5 --- /dev/null +++ b/test/W3C_SVG_12_TinyTestSuite_beta/svggen/struct-frag-04-t.svg @@ -0,0 +1,35 @@ + + + + + + + + + + $RCSfile: struct-frag-04-t.svg,v $ + + + + + + + + + + + + + + + $Revision: 1.6 $ + + + + + diff --git a/test/W3C_SVG_12_TinyTestSuite_beta/svggen/struct-frag-05-t.svg b/test/W3C_SVG_12_TinyTestSuite_beta/svggen/struct-frag-05-t.svg new file mode 100755 index 00000000..66a56e97 --- /dev/null +++ b/test/W3C_SVG_12_TinyTestSuite_beta/svggen/struct-frag-05-t.svg @@ -0,0 +1,43 @@ + + + + + + + + + + $RCSfile: struct-frag-05-t.svg,v $ + + + + + + + + + + + + + + + Valid + + + Invalid + + + + + $Revision: 1.7 $ + + + + + diff --git a/test/W3C_SVG_12_TinyTestSuite_beta/svggen/struct-frag-06-t.svg b/test/W3C_SVG_12_TinyTestSuite_beta/svggen/struct-frag-06-t.svg new file mode 100755 index 00000000..4dce197d --- /dev/null +++ b/test/W3C_SVG_12_TinyTestSuite_beta/svggen/struct-frag-06-t.svg @@ -0,0 +1,45 @@ + + + + + + + + + + $RCSfile: struct-frag-06-t.svg,v $ + + + + + + + + + Default entities: amp, lt, gt, apos, quot: + &, <, >, ', " + Character references: + A hexadecimal (&#x41)= A + A decimal (&#65)= A + Entity references: + gray + + + + outlined + + + + + + $Revision: 1.6 $ + + + + + diff --git a/test/W3C_SVG_12_TinyTestSuite_beta/svggen/struct-group-01-t.svg b/test/W3C_SVG_12_TinyTestSuite_beta/svggen/struct-group-01-t.svg new file mode 100755 index 00000000..987e40a2 --- /dev/null +++ b/test/W3C_SVG_12_TinyTestSuite_beta/svggen/struct-group-01-t.svg @@ -0,0 +1,45 @@ + + + + + + + + + + $RCSfile: struct-group-01-t.svg,v $ + + + + + + + + + + + + + + + + + + + + + + + + + $Revision: 1.9 $ + + + + + diff --git a/test/W3C_SVG_12_TinyTestSuite_beta/svggen/struct-group-03-t.svg b/test/W3C_SVG_12_TinyTestSuite_beta/svggen/struct-group-03-t.svg new file mode 100755 index 00000000..9ecce48f --- /dev/null +++ b/test/W3C_SVG_12_TinyTestSuite_beta/svggen/struct-group-03-t.svg @@ -0,0 +1,217 @@ + + + + + + + + + + $RCSfile: struct-group-03-t.svg,v $ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + color + display + fill + fill-rule + stroke + stroke-dasharray + stroke-dashoffset + stroke-linecap + stroke-linejoin + stroke-miterlimit + stroke-width + visibility + font-family + font-size + font-style + font-weight + text-anchor + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + A + + + A + + + A + + + A + + + A + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + A + + + A + + + A + + + A + + + A + + + + + $Revision: 1.6 $ + + + + + diff --git a/test/W3C_SVG_12_TinyTestSuite_beta/svggen/struct-image-01-t.svg b/test/W3C_SVG_12_TinyTestSuite_beta/svggen/struct-image-01-t.svg new file mode 100755 index 00000000..240a239f --- /dev/null +++ b/test/W3C_SVG_12_TinyTestSuite_beta/svggen/struct-image-01-t.svg @@ -0,0 +1,33 @@ + + + + + + + + + + $RCSfile: struct-image-01-t.svg,v $ + + + + + + + + + + + + + $Revision: 1.9 $ + + + + + diff --git a/test/W3C_SVG_12_TinyTestSuite_beta/svggen/struct-image-03-t.svg b/test/W3C_SVG_12_TinyTestSuite_beta/svggen/struct-image-03-t.svg new file mode 100755 index 00000000..320bb5c1 --- /dev/null +++ b/test/W3C_SVG_12_TinyTestSuite_beta/svggen/struct-image-03-t.svg @@ -0,0 +1,38 @@ + + + + + + + + + + $RCSfile: struct-image-03-t.svg,v $ + + + + + + + + + + + + + + + Gamma correction + + + $Revision: 1.9 $ + + + + + diff --git a/test/W3C_SVG_12_TinyTestSuite_beta/svggen/struct-image-04-t.svg b/test/W3C_SVG_12_TinyTestSuite_beta/svggen/struct-image-04-t.svg new file mode 100755 index 00000000..0757e6d3 --- /dev/null +++ b/test/W3C_SVG_12_TinyTestSuite_beta/svggen/struct-image-04-t.svg @@ -0,0 +1,33 @@ + + + + + + + + + + $RCSfile: struct-image-04-t.svg,v $ + + + + + + + + + + + + + $Revision: 1.9 $ + + + + + diff --git a/test/W3C_SVG_12_TinyTestSuite_beta/svggen/struct-image-06-t.svg b/test/W3C_SVG_12_TinyTestSuite_beta/svggen/struct-image-06-t.svg new file mode 100755 index 00000000..75d0d0ea --- /dev/null +++ b/test/W3C_SVG_12_TinyTestSuite_beta/svggen/struct-image-06-t.svg @@ -0,0 +1,70 @@ + + + + + + + + + + $RCSfile: struct-image-06-t.svg,v $ + + + + + + + + + + Example PreserveAspectRatio - demonstrate available options + SVG to fit + + + + Viewport 1 + + + + Viewport 2 + + + + + ---------- meet ---------- + + xMid* + + + + + + ---------- meet ---------- + + *YMid + + + + + + ---------- meet ---------- + + *none + + + + + + + + $Revision: 1.6 $ + + + + + diff --git a/test/W3C_SVG_12_TinyTestSuite_beta/svggen/struct-image-07-t.svg b/test/W3C_SVG_12_TinyTestSuite_beta/svggen/struct-image-07-t.svg new file mode 100755 index 00000000..cf5e3a94 --- /dev/null +++ b/test/W3C_SVG_12_TinyTestSuite_beta/svggen/struct-image-07-t.svg @@ -0,0 +1,51 @@ + + + + + + + + + + $RCSfile: struct-image-07-t.svg,v $ + + + + + + + + + + + + no + xml:base + + + + + xml:base + on image + + + + + xml:base + on parent + + + + + + $Revision: 1.6 $ + + + + + diff --git a/test/W3C_SVG_12_TinyTestSuite_beta/svggen/struct-image-08-t.svg b/test/W3C_SVG_12_TinyTestSuite_beta/svggen/struct-image-08-t.svg new file mode 100755 index 00000000..323b9233 --- /dev/null +++ b/test/W3C_SVG_12_TinyTestSuite_beta/svggen/struct-image-08-t.svg @@ -0,0 +1,37 @@ + + + + + + + + + + $RCSfile: struct-image-08-t.svg,v $ + + + + + + + + + + + + + + + + + $Revision: 1.6 $ + + + + + diff --git a/test/W3C_SVG_12_TinyTestSuite_beta/svggen/struct-image-09-t.svg b/test/W3C_SVG_12_TinyTestSuite_beta/svggen/struct-image-09-t.svg new file mode 100755 index 00000000..d994ea12 --- /dev/null +++ b/test/W3C_SVG_12_TinyTestSuite_beta/svggen/struct-image-09-t.svg @@ -0,0 +1,36 @@ + + + + + + + + + + $RCSfile: struct-image-09-t.svg,v $ + + + + + + + + + + + + + + + + $Revision: 1.6 $ + + + + + diff --git a/test/W3C_SVG_12_TinyTestSuite_beta/svggen/struct-image-10-t.svg b/test/W3C_SVG_12_TinyTestSuite_beta/svggen/struct-image-10-t.svg new file mode 100755 index 00000000..ca98df7a --- /dev/null +++ b/test/W3C_SVG_12_TinyTestSuite_beta/svggen/struct-image-10-t.svg @@ -0,0 +1,37 @@ + + + + + + + + + + $RCSfile: struct-image-10-t.svg,v $ + + + + + + + + + + + + + + + + + $Revision: 1.6 $ + + + + + diff --git a/test/W3C_SVG_12_TinyTestSuite_beta/svggen/struct-progressive-201-t.svg b/test/W3C_SVG_12_TinyTestSuite_beta/svggen/struct-progressive-201-t.svg new file mode 100755 index 00000000..7341221d --- /dev/null +++ b/test/W3C_SVG_12_TinyTestSuite_beta/svggen/struct-progressive-201-t.svg @@ -0,0 +1,1867 @@ + + + + + + + + + + $RCSfile: struct-progressive-201-t.svg,v $ + + + + + + + + + + Testing progressive rendering, if supported + The rectangle should be full of circles, + rendered progressively. + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + $Revision: 1.6 $ + + + + + \ No newline at end of file diff --git a/test/W3C_SVG_12_TinyTestSuite_beta/svggen/struct-progressive-202-t.svg b/test/W3C_SVG_12_TinyTestSuite_beta/svggen/struct-progressive-202-t.svg new file mode 100755 index 00000000..92beddef --- /dev/null +++ b/test/W3C_SVG_12_TinyTestSuite_beta/svggen/struct-progressive-202-t.svg @@ -0,0 +1,1874 @@ + + + + + + + + + + $RCSfile: struct-progressive-202-t.svg,v $ + + + + + + + + + + Testing progressive rendering, if supported + The rectangle should be full of circles, + rendered all at once because of forward use with externalResourcesRequired + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + $Revision: 1.4 $ + + + + + \ No newline at end of file diff --git a/test/W3C_SVG_12_TinyTestSuite_beta/svggen/struct-progressive-203-t.svg b/test/W3C_SVG_12_TinyTestSuite_beta/svggen/struct-progressive-203-t.svg new file mode 100755 index 00000000..f4ab2a3a --- /dev/null +++ b/test/W3C_SVG_12_TinyTestSuite_beta/svggen/struct-progressive-203-t.svg @@ -0,0 +1,1384 @@ + + + + + + + + + + $RCSfile: struct-progressive-203-t.svg,v $ + + + + + + + + + + Testing progressive rendering with external references, if supported. + Rectangle should progressively fill up with circles. + Images should appear as the circles pass the yellow dots. + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + $Revision: 1.4 $ + + + + + \ No newline at end of file diff --git a/test/W3C_SVG_12_TinyTestSuite_beta/svggen/struct-progressive-204-t.svg b/test/W3C_SVG_12_TinyTestSuite_beta/svggen/struct-progressive-204-t.svg new file mode 100755 index 00000000..2f0a1a31 --- /dev/null +++ b/test/W3C_SVG_12_TinyTestSuite_beta/svggen/struct-progressive-204-t.svg @@ -0,0 +1,1385 @@ + + + + + + + + + + $RCSfile: struct-progressive-204-t.svg,v $ + + + + + + + + + + Testing progressive rendering with external references, if supported. + Rendered all at once because of forward use with externalResourcesRequired on top-level SVG + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + $Revision: 1.4 $ + + + + + + \ No newline at end of file diff --git a/test/W3C_SVG_12_TinyTestSuite_beta/svggen/struct-svg-201-t.svg b/test/W3C_SVG_12_TinyTestSuite_beta/svggen/struct-svg-201-t.svg new file mode 100755 index 00000000..24ab1d33 --- /dev/null +++ b/test/W3C_SVG_12_TinyTestSuite_beta/svggen/struct-svg-201-t.svg @@ -0,0 +1,76 @@ + + + + + + + + + + $RCSfile: struct-svg-201-t.svg,v $ + + + + + + + + + + + + + + + Get-FloatTrait(snapshotTime) on svg and check value + reference + scripted + + Error! + + + + l8 4 bed + + + + l8 4 bed + + + + + + + + + + + + + $Revision: 1.4 $ + + + + + diff --git a/test/W3C_SVG_12_TinyTestSuite_beta/svggen/struct-svg-202-t.svg b/test/W3C_SVG_12_TinyTestSuite_beta/svggen/struct-svg-202-t.svg new file mode 100755 index 00000000..11e759a3 --- /dev/null +++ b/test/W3C_SVG_12_TinyTestSuite_beta/svggen/struct-svg-202-t.svg @@ -0,0 +1,75 @@ + + + + + + + + + + $RCSfile: struct-svg-202-t.svg,v $ + + + + + + + + + + + + + + GetFloatTrait(snapshotTime) on svg where snapshotTime is default + reference + scripted + + Error! + + + + l8 4 bed + + + + l8 4 bed + + + + + + + + + + + + + + $Revision: 1.4 $ + + + + + diff --git a/test/W3C_SVG_12_TinyTestSuite_beta/svggen/struct-svg-203-t.svg b/test/W3C_SVG_12_TinyTestSuite_beta/svggen/struct-svg-203-t.svg new file mode 100755 index 00000000..328f3d67 --- /dev/null +++ b/test/W3C_SVG_12_TinyTestSuite_beta/svggen/struct-svg-203-t.svg @@ -0,0 +1,43 @@ + + + + + + + + + + $RCSfile: struct-svg-203-t.svg,v $ + + + + + + + + + + This text should be visible if the viewer supports only SVG 1.2 Tiny. + + + + This text should be visible if the viewer supports at least SVG 1.1 Basic. + + + + + $Revision: 1.5 $ + + + + + \ No newline at end of file diff --git a/test/W3C_SVG_12_TinyTestSuite_beta/svggen/struct-svg-204-t.svg b/test/W3C_SVG_12_TinyTestSuite_beta/svggen/struct-svg-204-t.svg new file mode 100755 index 00000000..4f6c4da6 --- /dev/null +++ b/test/W3C_SVG_12_TinyTestSuite_beta/svggen/struct-svg-204-t.svg @@ -0,0 +1,38 @@ + + + + + + + + + + $RCSfile: struct-svg-204-t.svg,v $ + + + + + + + + + + Failed + + + + $Revision: 1.4 $ + + + + + \ No newline at end of file diff --git a/test/W3C_SVG_12_TinyTestSuite_beta/svggen/struct-use-01-t.svg b/test/W3C_SVG_12_TinyTestSuite_beta/svggen/struct-use-01-t.svg new file mode 100755 index 00000000..6190ba09 --- /dev/null +++ b/test/W3C_SVG_12_TinyTestSuite_beta/svggen/struct-use-01-t.svg @@ -0,0 +1,79 @@ + + + + + + + + + + $RCSfile: struct-use-01-t.svg,v $ + + + + + + + + + + + + + + + + + + + + + + + + Text + + + + + <rect> + <circle> + <ellipse> + <line> + <polyline> + <polygon> + <path> + <image> + <text> + + + <g> + <use> + + + + + + + + + + + + + + + + + + $Revision: 1.6 $ + + + + + diff --git a/test/W3C_SVG_12_TinyTestSuite_beta/svggen/struct-use-03-t.svg b/test/W3C_SVG_12_TinyTestSuite_beta/svggen/struct-use-03-t.svg new file mode 100755 index 00000000..70dd5e3e --- /dev/null +++ b/test/W3C_SVG_12_TinyTestSuite_beta/svggen/struct-use-03-t.svg @@ -0,0 +1,44 @@ + + + + + + + + + + $RCSfile: struct-use-03-t.svg,v $ + + + + + + + + + + + + Reference + <use> + + + + + + + + + + + $Revision: 1.6 $ + + + + + diff --git a/test/W3C_SVG_12_TinyTestSuite_beta/svggen/struct-use-09-t.svg b/test/W3C_SVG_12_TinyTestSuite_beta/svggen/struct-use-09-t.svg new file mode 100755 index 00000000..c7933b1d --- /dev/null +++ b/test/W3C_SVG_12_TinyTestSuite_beta/svggen/struct-use-09-t.svg @@ -0,0 +1,68 @@ + + + + + + + + + + $RCSfile: struct-use-09-t.svg,v $ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + $Revision: 1.5 $ + + + + + \ No newline at end of file diff --git a/test/W3C_SVG_12_TinyTestSuite_beta/svggen/struct-use-201-t.svg b/test/W3C_SVG_12_TinyTestSuite_beta/svggen/struct-use-201-t.svg new file mode 100755 index 00000000..db88cd98 --- /dev/null +++ b/test/W3C_SVG_12_TinyTestSuite_beta/svggen/struct-use-201-t.svg @@ -0,0 +1,73 @@ + + + + + + + + + + $RCSfile: struct-use-201-t.svg,v $ + + + + + + + + + Test <use> reference restrictions + + + + + + + A + + + + + + + B + + + + + + + C + + + + + + + D + + + + + + + E + + + + $Revision: 1.5 $ + + + + + \ No newline at end of file diff --git a/test/W3C_SVG_12_TinyTestSuite_beta/svggen/struct-use-202-t.svg b/test/W3C_SVG_12_TinyTestSuite_beta/svggen/struct-use-202-t.svg new file mode 100755 index 00000000..480c5b2e --- /dev/null +++ b/test/W3C_SVG_12_TinyTestSuite_beta/svggen/struct-use-202-t.svg @@ -0,0 +1,44 @@ + + + + + + + + + + $RCSfile: struct-use-202-t.svg,v $ + + + + + + + + + Test <use> reference restriction B + + + + + + + B + + + + $Revision: 1.4 $ + + + + + \ No newline at end of file diff --git a/test/W3C_SVG_12_TinyTestSuite_beta/svggen/struct-use-203-t.svg b/test/W3C_SVG_12_TinyTestSuite_beta/svggen/struct-use-203-t.svg new file mode 100755 index 00000000..379e6137 --- /dev/null +++ b/test/W3C_SVG_12_TinyTestSuite_beta/svggen/struct-use-203-t.svg @@ -0,0 +1,39 @@ + + + + + + + + + + $RCSfile: struct-use-203-t.svg,v $ + + + + + + + + + + + + + + + + External references on <use> + + + $Revision: 1.2 $ + + + + + diff --git a/test/W3C_SVG_12_TinyTestSuite_beta/svggen/struct-use-204-t.svg b/test/W3C_SVG_12_TinyTestSuite_beta/svggen/struct-use-204-t.svg new file mode 100755 index 00000000..559932c7 --- /dev/null +++ b/test/W3C_SVG_12_TinyTestSuite_beta/svggen/struct-use-204-t.svg @@ -0,0 +1,39 @@ + + + + + + + + + + $RCSfile: struct-use-204-t.svg,v $ + + + + + + + + + + + + + + + + External references on <use> + + + $Revision: 1.2 $ + + + + + diff --git a/test/W3C_SVG_12_TinyTestSuite_beta/svggen/struct-use-205-t.svg b/test/W3C_SVG_12_TinyTestSuite_beta/svggen/struct-use-205-t.svg new file mode 100755 index 00000000..d1b03694 --- /dev/null +++ b/test/W3C_SVG_12_TinyTestSuite_beta/svggen/struct-use-205-t.svg @@ -0,0 +1,155 @@ + + + + + + + + + + $RCSfile: struct-use-205-t.svg,v $ + + + + + + + + + + Test SVGElementInstance and events + + + + + Click here + + + + var link = "#fail"; + // The correspondingUseElement is always the outermost use element if use elements are nested + if(event.target.correspondingUseElement == document.getElementById("u3")) + { + // The currentTarget is the 'nesteduse' use element when this event is received, + // and the target is the element where the event originated + if(event.currentTarget.correspondingElement == document.getElementById("nesteduse")) + { + link = "#pass"; + } + } + document.getElementById("nesteduse").setAttributeNS("http://www.w3.org/1999/xlink", "href", link); + + // Remove the handler, so that clicking again does nothing + document.getElementById("nesteduse").removeChild(document.getElementById("nestedhandler")); + + + + + Failed + + + + Passed + + + + + + + var link = "#fail"; + // The currentTarget is this use element, and the target should be the rect element where + // the event originated. Checks these conditions. + // if(event.target != event.currentTarget) + { + if(event.target.correspondingUseElement == event.currentTarget) + { + if(event.target.correspondingElement == document.getElementById("r")) + { + link = "#pass"; + } + } + } + document.getElementById("u1").setAttributeNS("http://www.w3.org/1999/xlink", "href", link); + + // Remove the handler, so that clicking again does nothing + document.getElementById("u1").removeChild(document.getElementById("h1")); + + + + + var link = "#fail"; + // The target element should have a correspondingUseElement that is the element using it. + // In this case it should be 'u2', and the correspondingElement should be the rect with id 'r'. + if(event.target.correspondingUseElement == document.getElementById("u2")) + { + if(event.target.correspondingElement == document.getElementById("r")) + { + link = "#pass"; + } + } + document.getElementById("u2").setAttributeNS("http://www.w3.org/1999/xlink", "href", link); + + // Remove the handler, so that clicking again does nothing + document.getElementById("u2").removeChild(document.getElementById("h2")); + + + + + Click here + + + var status = "Failed"; + // This subtest is included to show the how target and currentTarget works on normal elements. + if(event.target != event.currentTarget) + { + if(event.target == document.getElementById("r3")) + { + if(event.currentTarget == document.getElementById("g3")) + { + status = "Passed"; + } + } + } + document.getElementById("r3").setAttributeNS(null, "fill", status == "Passed" ? "green" : "red"); + document.getElementById("t3").textContent = status; + + // Remove the handler, so that clicking again does nothing + document.getElementById("g3").removeChild(document.getElementById("h3")); + + + + + var link = "#fail"; + // If the nested use handler was executed then the rect element where the event originated has no + // corresponding use element anymore, correspondingUseElement will be null. + if(!event.target.correspondingUseElement) + { + if(event.target.correspondingElement == document.getElementById("r")) + { + link = "#pass"; + } + } + document.getElementById("u3").setAttributeNS("http://www.w3.org/1999/xlink", "href", link); + + // Remove the handler, so that clicking again does nothing + document.getElementById("u3").removeChild(document.getElementById("h4")); + + + + + + $Revision: 1.5 $ + + + + + \ No newline at end of file diff --git a/test/W3C_SVG_12_TinyTestSuite_beta/svggen/struct-use-206-t.svg b/test/W3C_SVG_12_TinyTestSuite_beta/svggen/struct-use-206-t.svg new file mode 100755 index 00000000..a0de2d3d --- /dev/null +++ b/test/W3C_SVG_12_TinyTestSuite_beta/svggen/struct-use-206-t.svg @@ -0,0 +1,38 @@ + + + + + + + + + + $RCSfile: struct-use-206-t.svg,v $ + + + + + + + + + + + + + $Revision: 1.1 $ + + + + + diff --git a/test/W3C_SVG_12_TinyTestSuite_beta/svggen/struct-use-207-t.svg b/test/W3C_SVG_12_TinyTestSuite_beta/svggen/struct-use-207-t.svg new file mode 100755 index 00000000..cdc36755 --- /dev/null +++ b/test/W3C_SVG_12_TinyTestSuite_beta/svggen/struct-use-207-t.svg @@ -0,0 +1,54 @@ + + + + + + + + + + $RCSfile: struct-use-207-t.svg,v $ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + External references and computed values + + + + $Revision: 1.2 $ + + + + + diff --git a/test/W3C_SVG_12_TinyTestSuite_beta/svggen/struct-use-208-t.svg b/test/W3C_SVG_12_TinyTestSuite_beta/svggen/struct-use-208-t.svg new file mode 100755 index 00000000..b345e2b6 --- /dev/null +++ b/test/W3C_SVG_12_TinyTestSuite_beta/svggen/struct-use-208-t.svg @@ -0,0 +1,43 @@ + + + + + + + + + + $RCSfile: struct-use-208-t.svg,v $ + + + + + + + + + + + + + + + + + + + $Revision: 1.3 $ + + + + + diff --git a/test/W3C_SVG_12_TinyTestSuite_beta/svggen/struct-use-209-t.svg b/test/W3C_SVG_12_TinyTestSuite_beta/svggen/struct-use-209-t.svg new file mode 100755 index 00000000..1966aaaf --- /dev/null +++ b/test/W3C_SVG_12_TinyTestSuite_beta/svggen/struct-use-209-t.svg @@ -0,0 +1,48 @@ + + + + + + + + + + $RCSfile: struct-use-209-t.svg,v $ + + + + + + + + + + + + 'use' referencing 'svg' element + + + + + + 'use' referencing 'image' element + + + This text should be visible. + + + $Revision: 1.2 $ + + + + + diff --git a/test/W3C_SVG_12_TinyTestSuite_beta/svggen/struct-use-recursion-01-t.svg b/test/W3C_SVG_12_TinyTestSuite_beta/svggen/struct-use-recursion-01-t.svg new file mode 100755 index 00000000..da88a4b8 --- /dev/null +++ b/test/W3C_SVG_12_TinyTestSuite_beta/svggen/struct-use-recursion-01-t.svg @@ -0,0 +1,47 @@ + + + + + + + + + + $RCSfile: struct-use-recursion-01-t.svg,v $ + + + + + + + + + + + + + + + + + + + This text should be visible. + + + + $Revision: 1.5 $ + + + + + \ No newline at end of file diff --git a/test/W3C_SVG_12_TinyTestSuite_beta/svggen/struct-use-recursion-02-t.svg b/test/W3C_SVG_12_TinyTestSuite_beta/svggen/struct-use-recursion-02-t.svg new file mode 100755 index 00000000..e747faf9 --- /dev/null +++ b/test/W3C_SVG_12_TinyTestSuite_beta/svggen/struct-use-recursion-02-t.svg @@ -0,0 +1,43 @@ + + + + + + + + + + $RCSfile: struct-use-recursion-02-t.svg,v $ + + + + + + + + + + + + + + + This text should be visible. + + + + $Revision: 1.5 $ + + + + + \ No newline at end of file diff --git a/test/W3C_SVG_12_TinyTestSuite_beta/svggen/struct-use-recursion-03-t.svg b/test/W3C_SVG_12_TinyTestSuite_beta/svggen/struct-use-recursion-03-t.svg new file mode 100755 index 00000000..c75de9b7 --- /dev/null +++ b/test/W3C_SVG_12_TinyTestSuite_beta/svggen/struct-use-recursion-03-t.svg @@ -0,0 +1,43 @@ + + + + + + + + + + $RCSfile: struct-use-recursion-03-t.svg,v $ + + + + + + + + + + + + + + + This text should be visible. + + + + $Revision: 1.5 $ + + + + + \ No newline at end of file diff --git a/test/W3C_SVG_12_TinyTestSuite_beta/svggen/styling-inherit-01-t.svg b/test/W3C_SVG_12_TinyTestSuite_beta/svggen/styling-inherit-01-t.svg new file mode 100755 index 00000000..ac16c243 --- /dev/null +++ b/test/W3C_SVG_12_TinyTestSuite_beta/svggen/styling-inherit-01-t.svg @@ -0,0 +1,49 @@ + + + + + + + + + + $RCSfile: styling-inherit-01-t.svg,v $ + + + + + + + + + + + + + + + + + + + + + + + + + + + + $Revision: 1.10 $ + + + + + diff --git a/test/W3C_SVG_12_TinyTestSuite_beta/svggen/styling-inherit-02-t.svg b/test/W3C_SVG_12_TinyTestSuite_beta/svggen/styling-inherit-02-t.svg new file mode 100755 index 00000000..6123238d --- /dev/null +++ b/test/W3C_SVG_12_TinyTestSuite_beta/svggen/styling-inherit-02-t.svg @@ -0,0 +1,66 @@ + + + + + + + + + + $RCSfile: styling-inherit-02-t.svg,v $ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + $Revision: 1.8 $ + + + + + \ No newline at end of file diff --git a/test/W3C_SVG_12_TinyTestSuite_beta/svggen/styling-inherit-03-t.svg b/test/W3C_SVG_12_TinyTestSuite_beta/svggen/styling-inherit-03-t.svg new file mode 100755 index 00000000..1469c714 --- /dev/null +++ b/test/W3C_SVG_12_TinyTestSuite_beta/svggen/styling-inherit-03-t.svg @@ -0,0 +1,72 @@ + + + + + + + + + + $RCSfile: styling-inherit-03-t.svg,v $ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + $Revision: 1.5 $ + + + + + \ No newline at end of file diff --git a/test/W3C_SVG_12_TinyTestSuite_beta/svggen/styling-pres-01-t.svg b/test/W3C_SVG_12_TinyTestSuite_beta/svggen/styling-pres-01-t.svg new file mode 100755 index 00000000..0b63e0ba --- /dev/null +++ b/test/W3C_SVG_12_TinyTestSuite_beta/svggen/styling-pres-01-t.svg @@ -0,0 +1,34 @@ + + + + + + + + + + $RCSfile: styling-pres-01-t.svg,v $ + + + + + + + + + + + + + + $Revision: 1.10 $ + + + + + diff --git a/test/W3C_SVG_12_TinyTestSuite_beta/svggen/text-align-01-t.svg b/test/W3C_SVG_12_TinyTestSuite_beta/svggen/text-align-01-t.svg new file mode 100755 index 00000000..90340c25 --- /dev/null +++ b/test/W3C_SVG_12_TinyTestSuite_beta/svggen/text-align-01-t.svg @@ -0,0 +1,54 @@ + + + + + + + + + + $RCSfile: text-align-01-t.svg,v $ + + + + + + + + + Test 'text-anchor' (horizontal) + + + + + text-anchor:none + + + + + text-anchor:start + + + + + text-anchor:middle + + + + + text-anchor:end + + + + + $Revision: 1.8 $ + + + + + diff --git a/test/W3C_SVG_12_TinyTestSuite_beta/svggen/text-align-07-t.svg b/test/W3C_SVG_12_TinyTestSuite_beta/svggen/text-align-07-t.svg new file mode 100755 index 00000000..8e2b7372 --- /dev/null +++ b/test/W3C_SVG_12_TinyTestSuite_beta/svggen/text-align-07-t.svg @@ -0,0 +1,40 @@ + + + + + + + + + + $RCSfile: text-align-07-t.svg,v $ + + + + + + + + + + + + a犜ण + a犜ण + a犜ण + + + + + + $Revision: 1.7 $ + + + + + diff --git a/test/W3C_SVG_12_TinyTestSuite_beta/svggen/text-align-08-t.svg b/test/W3C_SVG_12_TinyTestSuite_beta/svggen/text-align-08-t.svg new file mode 100755 index 00000000..5bfd6d07 --- /dev/null +++ b/test/W3C_SVG_12_TinyTestSuite_beta/svggen/text-align-08-t.svg @@ -0,0 +1,52 @@ + + + + + + + + + + $RCSfile: text-align-08-t.svg,v $ + + + + + + + + + + + + + + + + + + + + + + a犜ण + a犜ण + a犜ण + + + + + + + + $Revision: 1.7 $ + + + + + diff --git a/test/W3C_SVG_12_TinyTestSuite_beta/svggen/text-align-201-t.svg b/test/W3C_SVG_12_TinyTestSuite_beta/svggen/text-align-201-t.svg new file mode 100755 index 00000000..9de5a74a --- /dev/null +++ b/test/W3C_SVG_12_TinyTestSuite_beta/svggen/text-align-201-t.svg @@ -0,0 +1,37 @@ + + + + + + + + + + $RCSfile: text-align-201-t.svg,v $ + + Test of 'text-anchor' + text-anchor, text and tspan + + + + + start text + red tspan + + + first text first tspan last tspan last text + + + + + $Revision: 1.4 $ + + + + + diff --git a/test/W3C_SVG_12_TinyTestSuite_beta/svggen/text-align-202-t.svg b/test/W3C_SVG_12_TinyTestSuite_beta/svggen/text-align-202-t.svg new file mode 100755 index 00000000..2a87e8ae --- /dev/null +++ b/test/W3C_SVG_12_TinyTestSuite_beta/svggen/text-align-202-t.svg @@ -0,0 +1,884 @@ + + + + + + + + + + $RCSfile: text-align-202-t.svg,v $ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + آلات + آلات + آلات + + + مص + مص + مص + + + + פעילות + פעילות + פעילות + + + + $Revision: 1.10 $ + + + + + + diff --git a/test/W3C_SVG_12_TinyTestSuite_beta/svggen/text-area-201-t.svg b/test/W3C_SVG_12_TinyTestSuite_beta/svggen/text-area-201-t.svg new file mode 100755 index 00000000..4f04ebdc --- /dev/null +++ b/test/W3C_SVG_12_TinyTestSuite_beta/svggen/text-area-201-t.svg @@ -0,0 +1,54 @@ + + + + + + + + + + $RCSfile: text-area-201-t.svg,v $ + + + + + + + + + + TextArea with Fixed Width and Height + + Lines should break at character boundaries if there is not enough room to perform word breaks. + + + The 'height' of the first 'textArea' below (top-right) is less than that of the characters + + + so nothing should appear. + + + + Excerpt from "The Lost Princess of Oz" by Baum, L. Frank (Lyman Frank), 1856-1919 + + + + + + + + + + $Revision: 1.7 $ + + + + + diff --git a/test/W3C_SVG_12_TinyTestSuite_beta/svggen/text-area-202-t.svg b/test/W3C_SVG_12_TinyTestSuite_beta/svggen/text-area-202-t.svg new file mode 100755 index 00000000..d7b09f08 --- /dev/null +++ b/test/W3C_SVG_12_TinyTestSuite_beta/svggen/text-area-202-t.svg @@ -0,0 +1,132 @@ + + + + + + + + + + $RCSfile: text-area-202-t.svg,v $ + + + + + + + + + + TextArea with Fixed Width and Height + + + Excerpt from "The Lost Princess of Oz" by Baum, L. Frank (Lyman Frank), 1856-1919 + + + + + + + + + + $Revision: 1.6 $ + + + + + diff --git a/test/W3C_SVG_12_TinyTestSuite_beta/svggen/text-area-203-t.svg b/test/W3C_SVG_12_TinyTestSuite_beta/svggen/text-area-203-t.svg new file mode 100755 index 00000000..3d706359 --- /dev/null +++ b/test/W3C_SVG_12_TinyTestSuite_beta/svggen/text-area-203-t.svg @@ -0,0 +1,53 @@ + + + + + + + + + + $RCSfile: text-area-203-t.svg,v $ + + + + + + + + + TextArea with Animated Width and Height + + The text should continually rewrap as the 'textArea' decreases and increases in size. + + + Excerpt from "The Lost Princess of Oz" by Baum, L. Frank (Lyman Frank), 1856-1919 + + + + + + + + + + + $Revision: 1.7 $ + + + + + diff --git a/test/W3C_SVG_12_TinyTestSuite_beta/svggen/text-area-204-t.svg b/test/W3C_SVG_12_TinyTestSuite_beta/svggen/text-area-204-t.svg new file mode 100755 index 00000000..39db9145 --- /dev/null +++ b/test/W3C_SVG_12_TinyTestSuite_beta/svggen/text-area-204-t.svg @@ -0,0 +1,51 @@ + + + + + + + + + + $RCSfile: text-area-204-t.svg,v $ + + + + + + + + + TextArea with Animated Font-size + The text should continually rewrap as the 'font-size' decreases and increases in size. + Excerpt from "The Lost Princess of Oz" by Baum, L. Frank (Lyman Frank), 1856-1919 + + + + + $Revision: 1.8 $ + + + + + diff --git a/test/W3C_SVG_12_TinyTestSuite_beta/svggen/text-area-205-t.svg b/test/W3C_SVG_12_TinyTestSuite_beta/svggen/text-area-205-t.svg new file mode 100755 index 00000000..06dbc395 --- /dev/null +++ b/test/W3C_SVG_12_TinyTestSuite_beta/svggen/text-area-205-t.svg @@ -0,0 +1,42 @@ + + + + + + + + + + $RCSfile: text-area-205-t.svg,v $ + + + + + + + + + TextArea with Height Set to Auto + Text should wrap at the right-hand margin and continue to the end of the paragraph. + Excerpt from "The Lost Princess of Oz" by Baum, L. Frank (Lyman Frank), 1856-1919 + + + + + + + $Revision: 1.7 $ + + + + + diff --git a/test/W3C_SVG_12_TinyTestSuite_beta/svggen/text-area-206-t.svg b/test/W3C_SVG_12_TinyTestSuite_beta/svggen/text-area-206-t.svg new file mode 100755 index 00000000..575e93b3 --- /dev/null +++ b/test/W3C_SVG_12_TinyTestSuite_beta/svggen/text-area-206-t.svg @@ -0,0 +1,62 @@ + + + + + + + + + + $RCSfile: text-area-206-t.svg,v $ + + + + + + + + + TextArea with Line-increment and Tbreak + + The blue lines should appear below each of the five text lines in the 'textArea'. + + + + + + + + + + + + + $Revision: 1.7 $ + + + + + diff --git a/test/W3C_SVG_12_TinyTestSuite_beta/svggen/text-area-207-t.svg b/test/W3C_SVG_12_TinyTestSuite_beta/svggen/text-area-207-t.svg new file mode 100755 index 00000000..cc005826 --- /dev/null +++ b/test/W3C_SVG_12_TinyTestSuite_beta/svggen/text-area-207-t.svg @@ -0,0 +1,78 @@ + + + + + + + + + + $RCSfile: text-area-207-t.svg,v $ + + + + + + + + + TextArea Transformed by Rotation + + The three textArea's should be rotated by 35, 90 and 180 degrees. + + + Excerpts from "The Lost Princess of Oz" by Baum, L. Frank (Lyman Frank), 1856-1919 + + + + + + + + + + + + + + + + $Revision: 1.8 $ + + + + + diff --git a/test/W3C_SVG_12_TinyTestSuite_beta/svggen/text-area-208-t.svg b/test/W3C_SVG_12_TinyTestSuite_beta/svggen/text-area-208-t.svg new file mode 100755 index 00000000..9d74519e --- /dev/null +++ b/test/W3C_SVG_12_TinyTestSuite_beta/svggen/text-area-208-t.svg @@ -0,0 +1,61 @@ + + + + + + + + + + $RCSfile: text-area-208-t.svg,v $ + + TextArea with Both Width and Height Set to Auto + + The following eight lines of numbers should not wrap. They have numbers from 0 to 50. + + + Each line increases the 'font-size' by 25%. The 'line-increment' attribute is not used. + + + + + + + $Revision: 1.6 $ + + + + + diff --git a/test/W3C_SVG_12_TinyTestSuite_beta/svggen/text-area-209-t.svg b/test/W3C_SVG_12_TinyTestSuite_beta/svggen/text-area-209-t.svg new file mode 100755 index 00000000..0e09a49e --- /dev/null +++ b/test/W3C_SVG_12_TinyTestSuite_beta/svggen/text-area-209-t.svg @@ -0,0 +1,48 @@ + + + + + + + + + + $RCSfile: text-area-209-t.svg,v $ + + + + + + + + + TextArea Testing Word Breaks and Tbreak + + Each word should break onto a new line. The left-hand 'textArea' has no 'tbreak' elements + + + while the right-hand one uses 'tbreak' after each word. Both should appear the same. + + + + + + + + $Revision: 1.7 $ + + + + + diff --git a/test/W3C_SVG_12_TinyTestSuite_beta/svggen/text-area-210-t.svg b/test/W3C_SVG_12_TinyTestSuite_beta/svggen/text-area-210-t.svg new file mode 100755 index 00000000..624da785 --- /dev/null +++ b/test/W3C_SVG_12_TinyTestSuite_beta/svggen/text-area-210-t.svg @@ -0,0 +1,57 @@ + + + + + + + + + + $RCSfile: text-area-210-t.svg,v $ + + + + + + + + + <tbreak> + This slides tests the behaviour of <tbreak> in various situations + + + + + + $Revision: 1.7 $ + + + + + diff --git a/test/W3C_SVG_12_TinyTestSuite_beta/svggen/text-area-211-t.svg b/test/W3C_SVG_12_TinyTestSuite_beta/svggen/text-area-211-t.svg new file mode 100755 index 00000000..6d0faf5f --- /dev/null +++ b/test/W3C_SVG_12_TinyTestSuite_beta/svggen/text-area-211-t.svg @@ -0,0 +1,55 @@ + + + + + + + + + + $RCSfile: text-area-211-t.svg,v $ + + + + + + + + + + TextArea with Line-increment and Tbreak + + Excerpt from "The Lost Princess of Oz" by Baum, L. Frank (Lyman Frank), 1856-1919 + + + + + $Revision: 1.5 $ + + + + + diff --git a/test/W3C_SVG_12_TinyTestSuite_beta/svggen/text-area-213-t.svg b/test/W3C_SVG_12_TinyTestSuite_beta/svggen/text-area-213-t.svg new file mode 100755 index 00000000..e43b3a35 --- /dev/null +++ b/test/W3C_SVG_12_TinyTestSuite_beta/svggen/text-area-213-t.svg @@ -0,0 +1,77 @@ + + + + + + + + + + $RCSfile: text-area-213-t.svg,v $ + + + + + + + + + TextArea with display-align + + The text should be clipped properly for each display-align value, as height animates + + + Excerpt from "The Lost Princess of Oz" by Baum, L. Frank (Lyman Frank), 1856-1919 + + + + + default + + + + auto + + + + before + + + + center + + + + after + + + + + + + + + + + + $Revision: 1.6 $ + + + + + diff --git a/test/W3C_SVG_12_TinyTestSuite_beta/svggen/text-area-220-t.svg b/test/W3C_SVG_12_TinyTestSuite_beta/svggen/text-area-220-t.svg new file mode 100755 index 00000000..f9b06b6f --- /dev/null +++ b/test/W3C_SVG_12_TinyTestSuite_beta/svggen/text-area-220-t.svg @@ -0,0 +1,48 @@ + + + + + + + + + + $RCSfile: text-area-220-t.svg,v $ + + + + + + + + + 'textArea' with 'text-align' set to 'end' + All text should be right-justified. Each paragraph is terminated with a double 'tbreak'. + Excerpt from "The Lost Princess of Oz" by Baum, L. Frank (Lyman Frank), 1856-1919 + + + + + $Revision: 1.7 $ + + + + + diff --git a/test/W3C_SVG_12_TinyTestSuite_beta/svggen/text-area-221-t.svg b/test/W3C_SVG_12_TinyTestSuite_beta/svggen/text-area-221-t.svg new file mode 100755 index 00000000..a1fe517d --- /dev/null +++ b/test/W3C_SVG_12_TinyTestSuite_beta/svggen/text-area-221-t.svg @@ -0,0 +1,59 @@ + + + + + + + + + + $RCSfile: text-area-221-t.svg,v $ + + + + + + + + + TextArea with line-increment, text-align and display-align + + All text should be centered horizontally and vertically. + + + Excerpt from "The Lost Princess of Oz" by Baum, L. Frank (Lyman Frank), 1856-1919 + + + + + + $Revision: 1.6 $ + + + + + diff --git a/test/W3C_SVG_12_TinyTestSuite_beta/svggen/text-area-222-t.svg b/test/W3C_SVG_12_TinyTestSuite_beta/svggen/text-area-222-t.svg new file mode 100755 index 00000000..d0b274ea --- /dev/null +++ b/test/W3C_SVG_12_TinyTestSuite_beta/svggen/text-area-222-t.svg @@ -0,0 +1,53 @@ + + + + + + + + + + $RCSfile: text-area-222-t.svg,v $ + + + + + + + + + + TextArea with editable attribute + + Activating a textArea element should allow edit of textArea contents. + + + + Excerpt from "The Lost Princess of Oz" by Baum, L. Frank (Lyman Frank), 1856-1919 + + + + + + + + + + + + + + + $Revision: 1.6 $ + + + + + diff --git a/test/W3C_SVG_12_TinyTestSuite_beta/svggen/text-edit-201-t.svg b/test/W3C_SVG_12_TinyTestSuite_beta/svggen/text-edit-201-t.svg new file mode 100755 index 00000000..cf63f122 --- /dev/null +++ b/test/W3C_SVG_12_TinyTestSuite_beta/svggen/text-edit-201-t.svg @@ -0,0 +1,90 @@ + + + + + + + + + + $RCSfile: text-edit-201-t.svg,v $ + + + + + + + + + + Test editable text in textArea + + + Input the string "123 456" (two spaces). + + + + + + + if(document.getElementById("ta1").textContent == "123 456") + document.getElementById("r1").setAttributeNS(null, "stroke-dasharray", "none"); + + + Check #1 + + + Insert two spaces between 3 and 4. + + + + + + + if(document.getElementById("ta2").textContent == "123 456") + document.getElementById("r2").setAttributeNS(null, "stroke-dasharray", "none"); + + + Check #2 + + + Insert an additional linefeed between 3 and 4. + + + + + + + + var ta = document.getElementById("ta3"); + if (ta.textContent == "123456" && + ta.firstElementChild.localName == 'tbreak' && + ta.lastElementChild.localName == 'tbreak' && + ta.firstElementChild != ta.lastElementChild && + ta.firstElementChild.nextElementSibling == ta.lastElementChild) + document.getElementById("r3").setAttributeNS(null, "stroke-dasharray", "none"); + + + + Check #3 + + + + $Revision: 1.5 $ + + + + + \ No newline at end of file diff --git a/test/W3C_SVG_12_TinyTestSuite_beta/svggen/text-fonts-01-t.svg b/test/W3C_SVG_12_TinyTestSuite_beta/svggen/text-fonts-01-t.svg new file mode 100755 index 00000000..b1b2f567 --- /dev/null +++ b/test/W3C_SVG_12_TinyTestSuite_beta/svggen/text-fonts-01-t.svg @@ -0,0 +1,42 @@ + + + + + + + + + + $RCSfile: text-fonts-01-t.svg,v $ + + + + + + + + + + A serifed face 画像 + A sans-serif face 画像 + A mono (iW) face 画像 + + A serifed face 画像 + A sans-serif face 画像 + A mono (iW) face 画像 + + This must be displayed + + + + $Revision: 1.8 $ + + + + + diff --git a/test/W3C_SVG_12_TinyTestSuite_beta/svggen/text-fonts-02-t.svg b/test/W3C_SVG_12_TinyTestSuite_beta/svggen/text-fonts-02-t.svg new file mode 100755 index 00000000..4d461790 --- /dev/null +++ b/test/W3C_SVG_12_TinyTestSuite_beta/svggen/text-fonts-02-t.svg @@ -0,0 +1,50 @@ + + + + + + + + + + $RCSfile: text-fonts-02-t.svg,v $ + + + + + + + + + + 100 + 200 + 300 + 400 + 500 + 600 + 700 + 800 + 900 + This is bold + This is normal + + Blue is bolder + + + Blue is lighter + + + + + $Revision: 1.8 $ + + + + + diff --git a/test/W3C_SVG_12_TinyTestSuite_beta/svggen/text-fonts-03-t.svg b/test/W3C_SVG_12_TinyTestSuite_beta/svggen/text-fonts-03-t.svg new file mode 100755 index 00000000..8524c885 --- /dev/null +++ b/test/W3C_SVG_12_TinyTestSuite_beta/svggen/text-fonts-03-t.svg @@ -0,0 +1,53 @@ + + + + + + + + + + $RCSfile: text-fonts-03-t.svg,v $ + + + + + + + + + + + + + + + + + + + + + + + font-family = "Haettenschweiler" + ABC + font-family = "Charlesworth" + ABC + font-family = "Invalid Name" + ABC + font-family = not specified + ABC + + + $Revision: 1.6 $ + + + + + diff --git a/test/W3C_SVG_12_TinyTestSuite_beta/svggen/text-fonts-04-t.svg b/test/W3C_SVG_12_TinyTestSuite_beta/svggen/text-fonts-04-t.svg new file mode 100755 index 00000000..67d577c4 --- /dev/null +++ b/test/W3C_SVG_12_TinyTestSuite_beta/svggen/text-fonts-04-t.svg @@ -0,0 +1,48 @@ + + + + + + + + + + $RCSfile: text-fonts-04-t.svg,v $ + + + + + + + + + + font-family = "Haettenschweiler" + ABC + + font-family = "Charlesworth" + ABC + + font-family = "Invalid Name" + ABC + + font-family = not specified + ABC + + + + $Revision: 1.4 $ + + + + + diff --git a/test/W3C_SVG_12_TinyTestSuite_beta/svggen/text-fonts-202-t.svg b/test/W3C_SVG_12_TinyTestSuite_beta/svggen/text-fonts-202-t.svg new file mode 100755 index 00000000..dd90bb78 --- /dev/null +++ b/test/W3C_SVG_12_TinyTestSuite_beta/svggen/text-fonts-202-t.svg @@ -0,0 +1,54 @@ + + + + + + + + + + $RCSfile: text-fonts-202-t.svg,v $ + + + + + + + + + + 100 + 200 + 300 + 400 + 500 + 600 + 700 + 800 + 900 + This is bold + This is normal + + Blue is bolder + + + Blue is lighter + + + ZalamanderCaps is an OpenType font + by Tim Ahrens of Just Another Foundry + + + + + $Revision: 1.7 $ + + + + + diff --git a/test/W3C_SVG_12_TinyTestSuite_beta/svggen/text-intro-01-t.svg b/test/W3C_SVG_12_TinyTestSuite_beta/svggen/text-intro-01-t.svg new file mode 100755 index 00000000..ee031866 --- /dev/null +++ b/test/W3C_SVG_12_TinyTestSuite_beta/svggen/text-intro-01-t.svg @@ -0,0 +1,51 @@ + + + + + + + + + + $RCSfile: text-intro-01-t.svg,v $ + + + + + + + + + + + + + + + Test left-to-right text. + + Polish: Mogę jeść szkło, i mi ... + Russian: Я могу есть стекло, ... + Greek: Μπορώ να φάω ... + Hebrew: אני יכול לאכול זכוכית ... + Yiddish: איך קען עסן גלאָז און ... + + + Chinese:我能吞下玻璃而不伤身体。 + + + Japanese: 私はガラスを食べます。 + + + + $Revision: 1.8 $ + + + + + diff --git a/test/W3C_SVG_12_TinyTestSuite_beta/svggen/text-intro-04-t.svg b/test/W3C_SVG_12_TinyTestSuite_beta/svggen/text-intro-04-t.svg new file mode 100755 index 00000000..a97850b0 --- /dev/null +++ b/test/W3C_SVG_12_TinyTestSuite_beta/svggen/text-intro-04-t.svg @@ -0,0 +1,42 @@ + + + + + + + + + + $RCSfile: text-intro-04-t.svg,v $ + + + + + + + + + Test horizontal text. + + Polish: Mogę jeść szkło, i mi nie szkodzi. + Russian: Я могу есть стекло, это мне не вредит. + Greek: Μπορώ να φάω σπασμένα γυαλιά χωρίς να πάθω τίποτα. + + Text "אני יכול לאכול זכוכית וזה לא מזיק לי" is in Hebrew + Yiddish: איך קען עסן גלאָז און עס טוט מיר נישט װײ. + Chinese:我能吞下玻璃而不伤身体。 + Japanese: 私はガラスを食べられます。それは私を傷つけません。 + + + + $Revision: 1.8 $ + + + + + diff --git a/test/W3C_SVG_12_TinyTestSuite_beta/svggen/text-intro-05-t.svg b/test/W3C_SVG_12_TinyTestSuite_beta/svggen/text-intro-05-t.svg new file mode 100755 index 00000000..df192bba --- /dev/null +++ b/test/W3C_SVG_12_TinyTestSuite_beta/svggen/text-intro-05-t.svg @@ -0,0 +1,37 @@ + + + + + + + + + + $RCSfile: text-intro-05-t.svg,v $ + + + + + + + + + لماذا لا يتكلمون اللّغة العربية فحسب؟ + + لماذا لا يتكلمون اللّغة العربية فحسب؟ + + لماذا لا يتكلمون اللّغة العربية فحسب؟ + + + + $Revision: 1.6 $ + + + + + diff --git a/test/W3C_SVG_12_TinyTestSuite_beta/svggen/text-intro-06-t.svg b/test/W3C_SVG_12_TinyTestSuite_beta/svggen/text-intro-06-t.svg new file mode 100755 index 00000000..21f89d89 --- /dev/null +++ b/test/W3C_SVG_12_TinyTestSuite_beta/svggen/text-intro-06-t.svg @@ -0,0 +1,37 @@ + + + + + + + + + + $RCSfile: text-intro-06-t.svg,v $ + + + + + + + + + + + + آلات + ثلاثة + + + + $Revision: 1.8 $ + + + + + diff --git a/test/W3C_SVG_12_TinyTestSuite_beta/svggen/text-intro-201-t.svg b/test/W3C_SVG_12_TinyTestSuite_beta/svggen/text-intro-201-t.svg new file mode 100755 index 00000000..37f6ecad --- /dev/null +++ b/test/W3C_SVG_12_TinyTestSuite_beta/svggen/text-intro-201-t.svg @@ -0,0 +1,45 @@ + + + + + + + + + + $RCSfile: text-intro-201-t.svg,v $ + + + + + + + + + Plain + Italic + Bold + fill only + stroke only + Bold, italic, fill and stroke + + + + Each line of text which flows in a + rectangular box has to be broken + into separated lines. + + + + + $Revision: 1.4 $ + + + + + diff --git a/test/W3C_SVG_12_TinyTestSuite_beta/svggen/text-text-04-t.svg b/test/W3C_SVG_12_TinyTestSuite_beta/svggen/text-text-04-t.svg new file mode 100755 index 00000000..9dec4d86 --- /dev/null +++ b/test/W3C_SVG_12_TinyTestSuite_beta/svggen/text-text-04-t.svg @@ -0,0 +1,156 @@ + + + + + + + + + + $RCSfile: text-text-04-t.svg,v $ + + + + + + + + + + + + + + + + + + + + + + + + Reference + + + + + + 1234 + + + + x all + + + + + + 1234 + + + x more + + + + + + + 1234 + + + x fewer + + + + + + 1234 + + + y all + + + + + 1234 + + + y more + + + + + 1234 + + + y fewer + + + + + 1234 + + + + x/y all + + + + + + 1234 + + + x/y more + + + + + + + 1234 + + + x/y fewer + + + + + + 1234 + + + x all y fewer + + + + + + 1234 + + + x fewer y all + + + + + + 1234 + + + + + + $Revision: 1.6 $ + + + + + diff --git a/test/W3C_SVG_12_TinyTestSuite_beta/svggen/text-text-06-t.svg b/test/W3C_SVG_12_TinyTestSuite_beta/svggen/text-text-06-t.svg new file mode 100755 index 00000000..461f14a4 --- /dev/null +++ b/test/W3C_SVG_12_TinyTestSuite_beta/svggen/text-text-06-t.svg @@ -0,0 +1,84 @@ + + + + + + + + + + $RCSfile: text-text-06-t.svg,v $ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + x positioning + y positioning + x/y positioning + + + + + + + + + fi1234 + + + + + + + + + fi1234 + + + + + + + + + fi1234 + + + + + + $Revision: 1.7 $ + + + + + diff --git a/test/W3C_SVG_12_TinyTestSuite_beta/svggen/text-text-07-t.svg b/test/W3C_SVG_12_TinyTestSuite_beta/svggen/text-text-07-t.svg new file mode 100755 index 00000000..4c6aaad7 --- /dev/null +++ b/test/W3C_SVG_12_TinyTestSuite_beta/svggen/text-text-07-t.svg @@ -0,0 +1,34 @@ + + + + + + + + + + $RCSfile: text-text-07-t.svg,v $ + + + + + + + + + Multi X Y + ROTATE + Both Together + + + $Revision: 1.6 $ + + + + + diff --git a/test/W3C_SVG_12_TinyTestSuite_beta/svggen/text-text-08-t.svg b/test/W3C_SVG_12_TinyTestSuite_beta/svggen/text-text-08-t.svg new file mode 100755 index 00000000..b2091599 --- /dev/null +++ b/test/W3C_SVG_12_TinyTestSuite_beta/svggen/text-text-08-t.svg @@ -0,0 +1,34 @@ + + + + + + + + + + $RCSfile: text-text-08-t.svg,v $ + + + + + + + + + Normal Text + Fill opacity + Stroke opacity + + + $Revision: 1.9 $ + + + + + diff --git a/test/W3C_SVG_12_TinyTestSuite_beta/svggen/text-text-09-t.svg b/test/W3C_SVG_12_TinyTestSuite_beta/svggen/text-text-09-t.svg new file mode 100755 index 00000000..398a2647 --- /dev/null +++ b/test/W3C_SVG_12_TinyTestSuite_beta/svggen/text-text-09-t.svg @@ -0,0 +1,37 @@ + + + + + + + + + $RCSfile: text-text-09-t.svg,v $ + + + + + + + + + Multi X Y + ROTATE + Both Together + + + $Revision: 1.6 $ + + + + + diff --git a/test/W3C_SVG_12_TinyTestSuite_beta/svggen/text-tselect-03-t.svg b/test/W3C_SVG_12_TinyTestSuite_beta/svggen/text-tselect-03-t.svg new file mode 100755 index 00000000..f6bd7833 --- /dev/null +++ b/test/W3C_SVG_12_TinyTestSuite_beta/svggen/text-tselect-03-t.svg @@ -0,0 +1,70 @@ + + + + + + + + + + $RCSfile: text-tselect-03-t.svg,v $ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + Start selecting here + select from 'a' to '1' + + + + abc אבג 123 דהו def + + + $Revision: 1.8 $ + + + + + diff --git a/test/W3C_SVG_12_TinyTestSuite_beta/svggen/text-ws-01-t.svg b/test/W3C_SVG_12_TinyTestSuite_beta/svggen/text-ws-01-t.svg new file mode 100755 index 00000000..319c7d6b --- /dev/null +++ b/test/W3C_SVG_12_TinyTestSuite_beta/svggen/text-ws-01-t.svg @@ -0,0 +1,47 @@ + + + + + + + + + + $RCSfile: text-ws-01-t.svg,v $ + + + + + + + + + Basic: xml:space attribute + & whitespace handling. + + + + WS with indented lines. + WS with indented lines. + + xml:space='default' + + + + WS non-indented lines. + WS non-indented lines. + + xml:space='default' + + + $Revision: 1.7 $ + + + + + diff --git a/test/W3C_SVG_12_TinyTestSuite_beta/svggen/text-ws-02-t.svg b/test/W3C_SVG_12_TinyTestSuite_beta/svggen/text-ws-02-t.svg new file mode 100755 index 00000000..4bcfaf65 --- /dev/null +++ b/test/W3C_SVG_12_TinyTestSuite_beta/svggen/text-ws-02-t.svg @@ -0,0 +1,54 @@ + + + + + + + + + + $RCSfile: text-ws-02-t.svg,v $ + + + + + + + + + Basic: xml:space attribute + & whitespace handling. + + + + +WS + with + indented lines. + + +  WS   with  indented lines. + + xml:space='preserve' + + + + WS +non-indented lines. + + WS non-indented lines. + + xml:space='preserve' + + + $Revision: 1.8 $ + + + + + diff --git a/test/W3C_SVG_12_TinyTestSuite_beta/svggen/udom-conform-201-t.svg b/test/W3C_SVG_12_TinyTestSuite_beta/svggen/udom-conform-201-t.svg new file mode 100755 index 00000000..ff98e0a8 --- /dev/null +++ b/test/W3C_SVG_12_TinyTestSuite_beta/svggen/udom-conform-201-t.svg @@ -0,0 +1,137 @@ + + + + + + + + + + $RCSfile: udom-conform-201-t.svg,v $ + + + + + + + + + #text trait access test + + + This is the desc. + This is the title. + This is the metadata. + + This is the text and this is the tspan. + + + + + + + + + + $Revision: 1.7 $ + + + + + diff --git a/test/W3C_SVG_12_TinyTestSuite_beta/svggen/udom-dom-201-t.svg b/test/W3C_SVG_12_TinyTestSuite_beta/svggen/udom-dom-201-t.svg new file mode 100755 index 00000000..9038ec36 --- /dev/null +++ b/test/W3C_SVG_12_TinyTestSuite_beta/svggen/udom-dom-201-t.svg @@ -0,0 +1,77 @@ + + + + + + + + + + $RCSfile: udom-dom-201-t.svg,v $ + + + + + + + + + DOMException test + + + + + $Revision: 1.5 $ + + + + + diff --git a/test/W3C_SVG_12_TinyTestSuite_beta/svggen/udom-dom-202-t.svg b/test/W3C_SVG_12_TinyTestSuite_beta/svggen/udom-dom-202-t.svg new file mode 100755 index 00000000..b595e1f7 --- /dev/null +++ b/test/W3C_SVG_12_TinyTestSuite_beta/svggen/udom-dom-202-t.svg @@ -0,0 +1,88 @@ + + + + + + + + + + $RCSfile: udom-dom-202-t.svg,v $ + + + + + + + + + Node interface attribute test + + + + + + + + + + + $Revision: 1.5 $ + + + + + diff --git a/test/W3C_SVG_12_TinyTestSuite_beta/svggen/udom-dom-203-t.svg b/test/W3C_SVG_12_TinyTestSuite_beta/svggen/udom-dom-203-t.svg new file mode 100755 index 00000000..c4b6fe70 --- /dev/null +++ b/test/W3C_SVG_12_TinyTestSuite_beta/svggen/udom-dom-203-t.svg @@ -0,0 +1,115 @@ + + + + + + + + + + $RCSfile: udom-dom-203-t.svg,v $ + + + + + + + + + Node.textContent test + + This is the desc. + This is the title. + This is the metadata. + + + This is the text and this is the tspan. + + + + + + + + $Revision: 1.7 $ + + + + + diff --git a/test/W3C_SVG_12_TinyTestSuite_beta/svggen/udom-dom-204-t.svg b/test/W3C_SVG_12_TinyTestSuite_beta/svggen/udom-dom-204-t.svg new file mode 100755 index 00000000..0da09aed --- /dev/null +++ b/test/W3C_SVG_12_TinyTestSuite_beta/svggen/udom-dom-204-t.svg @@ -0,0 +1,105 @@ + + + + + + + + + + $RCSfile: udom-dom-204-t.svg,v $ + + + + + + + + + Node.appendChild test + All six rectangles above must be blue. + + + + + + + + + + + + + + + + + $Revision: 1.6 $ + + + + + diff --git a/test/W3C_SVG_12_TinyTestSuite_beta/svggen/udom-dom-206-t.svg b/test/W3C_SVG_12_TinyTestSuite_beta/svggen/udom-dom-206-t.svg new file mode 100755 index 00000000..dd291704 --- /dev/null +++ b/test/W3C_SVG_12_TinyTestSuite_beta/svggen/udom-dom-206-t.svg @@ -0,0 +1,88 @@ + + + + + + + + + + $RCSfile: udom-dom-206-t.svg,v $ + + + + + + + + + Node.removeChild test + All three rects and three circles must be blue. + + + + remove single element + remove subtree + remove incorrect element + + + removeChild operation + removeChild return value + + + + + + + + + + + + + + + + + $Revision: 1.6 $ + + + + + diff --git a/test/W3C_SVG_12_TinyTestSuite_beta/svggen/udom-dom-207-t.svg b/test/W3C_SVG_12_TinyTestSuite_beta/svggen/udom-dom-207-t.svg new file mode 100755 index 00000000..b6611b4d --- /dev/null +++ b/test/W3C_SVG_12_TinyTestSuite_beta/svggen/udom-dom-207-t.svg @@ -0,0 +1,78 @@ + + + + + + + + + + $RCSfile: udom-dom-207-t.svg,v $ + + + + + + + + + Node.cloneNode test + + + original + deep clone + original + shallow clone + + + + + + + + A + + + + + + + + + + + + + + + $Revision: 1.5 $ + + + + + diff --git a/test/W3C_SVG_12_TinyTestSuite_beta/svggen/udom-dom-209-t.svg b/test/W3C_SVG_12_TinyTestSuite_beta/svggen/udom-dom-209-t.svg new file mode 100755 index 00000000..94545993 --- /dev/null +++ b/test/W3C_SVG_12_TinyTestSuite_beta/svggen/udom-dom-209-t.svg @@ -0,0 +1,91 @@ + + + + + + + + + + $RCSfile: udom-dom-209-t.svg,v $ + + + + + + + + + Element.setAttribute(NS) test + All five rectangles must be blue. + + + + + + + + + + + + + + + + + $Revision: 1.6 $ + + + + + diff --git a/test/W3C_SVG_12_TinyTestSuite_beta/svggen/udom-dom-210-t.svg b/test/W3C_SVG_12_TinyTestSuite_beta/svggen/udom-dom-210-t.svg new file mode 100755 index 00000000..9fcdf96b --- /dev/null +++ b/test/W3C_SVG_12_TinyTestSuite_beta/svggen/udom-dom-210-t.svg @@ -0,0 +1,134 @@ + + + + + + + + + + $RCSfile: udom-dom-210-t.svg,v $ + + + + + + + + + Document.createElement(NS) test + + SVG elements + Unknown element, + no namespace + Unknown element, + SVG namespace + Unknown element, + non-SVG namespace + + All four rectangles must be blue. + + + + + + + + + + $Revision: 1.8 $ + + + + + diff --git a/test/W3C_SVG_12_TinyTestSuite_beta/svggen/udom-dom-211-t.svg b/test/W3C_SVG_12_TinyTestSuite_beta/svggen/udom-dom-211-t.svg new file mode 100755 index 00000000..8a0bdf89 --- /dev/null +++ b/test/W3C_SVG_12_TinyTestSuite_beta/svggen/udom-dom-211-t.svg @@ -0,0 +1,50 @@ + + + + + + + + + + $RCSfile: udom-dom-211-t.svg,v $ + + + + + + + + + Document.documentElement test + + + + + $Revision: 1.5 $ + + + + + diff --git a/test/W3C_SVG_12_TinyTestSuite_beta/svggen/udom-dom-213-t.svg b/test/W3C_SVG_12_TinyTestSuite_beta/svggen/udom-dom-213-t.svg new file mode 100755 index 00000000..ab6858d2 --- /dev/null +++ b/test/W3C_SVG_12_TinyTestSuite_beta/svggen/udom-dom-213-t.svg @@ -0,0 +1,92 @@ + + + + + + + + + + $RCSfile: udom-dom-213-t.svg,v $ + + + + + + + + + + ElementTraversal test + + + + + + + + + + + $Revision: 1.7 $ + + + + + diff --git a/test/W3C_SVG_12_TinyTestSuite_beta/svggen/udom-event-201-t.svg b/test/W3C_SVG_12_TinyTestSuite_beta/svggen/udom-event-201-t.svg new file mode 100755 index 00000000..a7dadabf --- /dev/null +++ b/test/W3C_SVG_12_TinyTestSuite_beta/svggen/udom-event-201-t.svg @@ -0,0 +1,74 @@ + + + + + + + + + + $RCSfile: udom-event-201-t.svg,v $ + + + + + + + + + EventTarget interface test + All three rectangles must be blue. + + + + + + + $Revision: 1.7 $ + + + + + diff --git a/test/W3C_SVG_12_TinyTestSuite_beta/svggen/udom-event-202-t.svg b/test/W3C_SVG_12_TinyTestSuite_beta/svggen/udom-event-202-t.svg new file mode 100755 index 00000000..720b07d3 --- /dev/null +++ b/test/W3C_SVG_12_TinyTestSuite_beta/svggen/udom-event-202-t.svg @@ -0,0 +1,78 @@ + + + + + + + + + + $RCSfile: udom-event-202-t.svg,v $ + + + + + + + + + Event interface attributes test + Click the black rectangle above. + If it turns blue, the test has been passed. + + + + + $Revision: 1.8 $ + + + + + diff --git a/test/W3C_SVG_12_TinyTestSuite_beta/svggen/udom-event-203-t.svg b/test/W3C_SVG_12_TinyTestSuite_beta/svggen/udom-event-203-t.svg new file mode 100755 index 00000000..63266ca8 --- /dev/null +++ b/test/W3C_SVG_12_TinyTestSuite_beta/svggen/udom-event-203-t.svg @@ -0,0 +1,74 @@ + + + + + + + + + + $RCSfile: udom-event-203-t.svg,v $ + + + + + + + + + Event.stopPropagation test + Click the rectangle above. + If it turns blue, the test has been passed. + + + + + + + + + $Revision: 1.8 $ + + + + + diff --git a/test/W3C_SVG_12_TinyTestSuite_beta/svggen/udom-event-204-t.svg b/test/W3C_SVG_12_TinyTestSuite_beta/svggen/udom-event-204-t.svg new file mode 100755 index 00000000..5158d0fe --- /dev/null +++ b/test/W3C_SVG_12_TinyTestSuite_beta/svggen/udom-event-204-t.svg @@ -0,0 +1,97 @@ + + + + + + + + + + $RCSfile: udom-event-204-t.svg,v $ + + + + + + + + + Event interface preventDefault/defaultPrevented test + Click the rectangle above. + If it turns blue, the test has been passed. + + + + + + + + + + + $Revision: 1.7 $ + + + + + diff --git a/test/W3C_SVG_12_TinyTestSuite_beta/svggen/udom-event-205-t.svg b/test/W3C_SVG_12_TinyTestSuite_beta/svggen/udom-event-205-t.svg new file mode 100755 index 00000000..494e87b2 --- /dev/null +++ b/test/W3C_SVG_12_TinyTestSuite_beta/svggen/udom-event-205-t.svg @@ -0,0 +1,134 @@ + + + + + + + + + + $RCSfile: udom-event-205-t.svg,v $ + + + + + + + + + MouseEvent interface test + + For each rectangle below, move the mouse over the + rectangle, click, then move the mouse out of the rectangle. + The text underneath the rectangle indicates which mouse + button to use. + If each rectangle (for which there exists the corresponding + button that the user agent supports) turns blue, the test has been passed. + + + + + + primary + (usually left) + extra + (usually middle) + secondary + (usually right) + + + + + $Revision: 1.6 $ + + + + + diff --git a/test/W3C_SVG_12_TinyTestSuite_beta/svggen/udom-event-207-t.svg b/test/W3C_SVG_12_TinyTestSuite_beta/svggen/udom-event-207-t.svg new file mode 100755 index 00000000..9d3cc06d --- /dev/null +++ b/test/W3C_SVG_12_TinyTestSuite_beta/svggen/udom-event-207-t.svg @@ -0,0 +1,63 @@ + + + + + + + + + + $RCSfile: udom-event-207-t.svg,v $ + + + + + + + + + TextEvent interface test + Input some text. The rectangle below should become blue + to indicate that the test has been passed. + + + Text input: [] + + + + + $Revision: 1.9 $ + + + + + diff --git a/test/W3C_SVG_12_TinyTestSuite_beta/svggen/udom-event-208-t.svg b/test/W3C_SVG_12_TinyTestSuite_beta/svggen/udom-event-208-t.svg new file mode 100755 index 00000000..e345d349 --- /dev/null +++ b/test/W3C_SVG_12_TinyTestSuite_beta/svggen/udom-event-208-t.svg @@ -0,0 +1,85 @@ + + + + + + + + + + $RCSfile: udom-event-208-t.svg,v $ + + + + + + + + + UIEvent interface and mouse event dispatch order test + Triple click the circle. The nine rectangles below should turn blue and the + circle should remain black to indicate that the test has been passed. + + + + + + + + + + + + + + + + $Revision: 1.6 $ + + + + + diff --git a/test/W3C_SVG_12_TinyTestSuite_beta/svggen/udom-event-209-t.svg b/test/W3C_SVG_12_TinyTestSuite_beta/svggen/udom-event-209-t.svg new file mode 100755 index 00000000..b9136397 --- /dev/null +++ b/test/W3C_SVG_12_TinyTestSuite_beta/svggen/udom-event-209-t.svg @@ -0,0 +1,75 @@ + + + + + + + + + + $RCSfile: udom-event-209-t.svg,v $ + + + + + + + + + Event interface attributes test + Click the black rectangle above. + If it turns blue, the test has been passed. + + + + + $Revision: 1.8 $ + + + + + diff --git a/test/W3C_SVG_12_TinyTestSuite_beta/svggen/udom-event-210-t.svg b/test/W3C_SVG_12_TinyTestSuite_beta/svggen/udom-event-210-t.svg new file mode 100755 index 00000000..bc606308 --- /dev/null +++ b/test/W3C_SVG_12_TinyTestSuite_beta/svggen/udom-event-210-t.svg @@ -0,0 +1,62 @@ + + + + + + + + + + $RCSfile: udom-event-210-t.svg,v $ + + + + + + + + + + + + + + document.getElementById("t").textContent = "wheelDelta: " + evt.wheelDelta + " detail: " + evt.detail; + + document.getElementById("r").setAttributeNS(null, "transform", "rotate("+angle+" 50 50)"); + if(evt.wheelDelta > 0) + angle++; + else + angle--; + if(angle<0) + angle=360; + if(angle>360) + angle=0; + + + + Mouseover the rect and use the scrollwheel + + + + + + + + $Revision: 1.6 $ + + + + + \ No newline at end of file diff --git a/test/W3C_SVG_12_TinyTestSuite_beta/svggen/udom-glob-201-t.svg b/test/W3C_SVG_12_TinyTestSuite_beta/svggen/udom-glob-201-t.svg new file mode 100755 index 00000000..8c93f6da --- /dev/null +++ b/test/W3C_SVG_12_TinyTestSuite_beta/svggen/udom-glob-201-t.svg @@ -0,0 +1,72 @@ + + + + + + + + + + $RCSfile: udom-glob-201-t.svg,v $ + + + + + + + + + GlobalException interface test + + + + + $Revision: 1.6 $ + + + + + diff --git a/test/W3C_SVG_12_TinyTestSuite_beta/svggen/udom-glob-202-t.svg b/test/W3C_SVG_12_TinyTestSuite_beta/svggen/udom-glob-202-t.svg new file mode 100755 index 00000000..b96cdc34 --- /dev/null +++ b/test/W3C_SVG_12_TinyTestSuite_beta/svggen/udom-glob-202-t.svg @@ -0,0 +1,41 @@ + + + + + + + + + + $RCSfile: udom-glob-202-t.svg,v $ + + + + + + + + + gotoLocation test + FAIL + + + + + $Revision: 1.4 $ + + + + + diff --git a/test/W3C_SVG_12_TinyTestSuite_beta/svggen/udom-glob-203-t.svg b/test/W3C_SVG_12_TinyTestSuite_beta/svggen/udom-glob-203-t.svg new file mode 100755 index 00000000..2fd29a9e --- /dev/null +++ b/test/W3C_SVG_12_TinyTestSuite_beta/svggen/udom-glob-203-t.svg @@ -0,0 +1,196 @@ + + + + + + + + + + $RCSfile: udom-glob-203-t.svg,v $ + + + + + + + + + + Testing SVGGlobal postURL's callback status + + + expected + actual + + + + + + + no status + + + + status=false + + + + status=true + + + + Callbacks not yet finished + + + $Revision: 1.5 $ + + + + + diff --git a/test/W3C_SVG_12_TinyTestSuite_beta/svggen/udom-glob-204-t.svg b/test/W3C_SVG_12_TinyTestSuite_beta/svggen/udom-glob-204-t.svg new file mode 100755 index 00000000..28f4bf96 --- /dev/null +++ b/test/W3C_SVG_12_TinyTestSuite_beta/svggen/udom-glob-204-t.svg @@ -0,0 +1,190 @@ + + + + + + + + + + $RCSfile: udom-glob-204-t.svg,v $ + + + + + + + + + + Testing SVGGlobal getURL's callback status + + + expected + actual + + + + + + + no status + + + + status=false + + + + status=true + + + + Callbacks not yet finished + + + $Revision: 1.6 $ + + + + + diff --git a/test/W3C_SVG_12_TinyTestSuite_beta/svggen/udom-node-201-t.svg b/test/W3C_SVG_12_TinyTestSuite_beta/svggen/udom-node-201-t.svg new file mode 100755 index 00000000..a26baf92 --- /dev/null +++ b/test/W3C_SVG_12_TinyTestSuite_beta/svggen/udom-node-201-t.svg @@ -0,0 +1,68 @@ + + + + + + + + + + $RCSfile: udom-node-201-t.svg,v $ + + + + + + + + + + + + + + + + + + + + + Test with cloneNode on a use element. + Two red and two yellow rects must be visible! + Rect + Used rect + Clone + Clone + + + $Revision: 1.4 $ + + + + + + diff --git a/test/W3C_SVG_12_TinyTestSuite_beta/svggen/udom-node-202-t.svg b/test/W3C_SVG_12_TinyTestSuite_beta/svggen/udom-node-202-t.svg new file mode 100755 index 00000000..942a9590 --- /dev/null +++ b/test/W3C_SVG_12_TinyTestSuite_beta/svggen/udom-node-202-t.svg @@ -0,0 +1,73 @@ + + + + + + + + + + $RCSfile: udom-node-202-t.svg,v $ + + + + + + + + + + + + + + Non cloned image + + + + Cloned image with Children + + + + Cloned image Only + + + + + + + $Revision: 1.5 $ + + + + + diff --git a/test/W3C_SVG_12_TinyTestSuite_beta/svggen/udom-node-204-t.svg b/test/W3C_SVG_12_TinyTestSuite_beta/svggen/udom-node-204-t.svg new file mode 100755 index 00000000..18543368 --- /dev/null +++ b/test/W3C_SVG_12_TinyTestSuite_beta/svggen/udom-node-204-t.svg @@ -0,0 +1,69 @@ + + + + + + + + + + $RCSfile: udom-node-204-t.svg,v $ + + + + + + + + + + + + + parentNode on Node + reference + scripted + + Error! + + + + + + + + + + $Revision: 1.5 $ + + + + + diff --git a/test/W3C_SVG_12_TinyTestSuite_beta/svggen/udom-over-01-t.svg b/test/W3C_SVG_12_TinyTestSuite_beta/svggen/udom-over-01-t.svg new file mode 100755 index 00000000..451d0f6a --- /dev/null +++ b/test/W3C_SVG_12_TinyTestSuite_beta/svggen/udom-over-01-t.svg @@ -0,0 +1,78 @@ + + + + + + + + + + $RCSfile: udom-over-01-t.svg,v $ + + + + + + + + + + domTest(evt); + + + + + + $Revision: 1.8 $ + + + + + diff --git a/test/W3C_SVG_12_TinyTestSuite_beta/svggen/udom-smil-201-t.svg b/test/W3C_SVG_12_TinyTestSuite_beta/svggen/udom-smil-201-t.svg new file mode 100755 index 00000000..8c5e9d5f --- /dev/null +++ b/test/W3C_SVG_12_TinyTestSuite_beta/svggen/udom-smil-201-t.svg @@ -0,0 +1,83 @@ + + + + + + + + + + $RCSfile: udom-smil-201-t.svg,v $ + + + + + + + + + ElementTimeControl.beginElement(At) test 1 + Click the pink rectangle. + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + $Revision: 1.5 $ + + + + + diff --git a/test/W3C_SVG_12_TinyTestSuite_beta/svggen/udom-smil-202-t.svg b/test/W3C_SVG_12_TinyTestSuite_beta/svggen/udom-smil-202-t.svg new file mode 100755 index 00000000..2e71a5d5 --- /dev/null +++ b/test/W3C_SVG_12_TinyTestSuite_beta/svggen/udom-smil-202-t.svg @@ -0,0 +1,89 @@ + + + + + + + + + + $RCSfile: udom-smil-202-t.svg,v $ + + + + + + + + + ElementTimeControl.beginElement(At) test 2 + Click the pink circle. The test has passed if the rectangles + and the circle become blue one second after clicking the circle. + + + + + + + + + + + + + + + + + + + + + + + + $Revision: 1.7 $ + + + + + diff --git a/test/W3C_SVG_12_TinyTestSuite_beta/svggen/udom-smil-203-t.svg b/test/W3C_SVG_12_TinyTestSuite_beta/svggen/udom-smil-203-t.svg new file mode 100755 index 00000000..c1706ae2 --- /dev/null +++ b/test/W3C_SVG_12_TinyTestSuite_beta/svggen/udom-smil-203-t.svg @@ -0,0 +1,86 @@ + + + + + + + + + + $RCSfile: udom-smil-203-t.svg,v $ + + + + + + + + + ElementTimeControl.endElement(At) test + Click the pink rectangle. + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + $Revision: 1.5 $ + + + + + diff --git a/test/W3C_SVG_12_TinyTestSuite_beta/svggen/udom-svg-201-t.svg b/test/W3C_SVG_12_TinyTestSuite_beta/svggen/udom-svg-201-t.svg new file mode 100755 index 00000000..d639e187 --- /dev/null +++ b/test/W3C_SVG_12_TinyTestSuite_beta/svggen/udom-svg-201-t.svg @@ -0,0 +1,63 @@ + + + + + + + + + + $RCSfile: udom-svg-201-t.svg,v $ + + + + + + + + + SVGException interface test + + + + + $Revision: 1.5 $ + + + + + diff --git a/test/W3C_SVG_12_TinyTestSuite_beta/svggen/udom-svg-202-t.svg b/test/W3C_SVG_12_TinyTestSuite_beta/svggen/udom-svg-202-t.svg new file mode 100755 index 00000000..9783a6ad --- /dev/null +++ b/test/W3C_SVG_12_TinyTestSuite_beta/svggen/udom-svg-202-t.svg @@ -0,0 +1,43 @@ + + + + + + + + + + $RCSfile: udom-svg-202-t.svg,v $ + + + + + + + + + SVGDocument.global test + + + + + $Revision: 1.5 $ + + + + + diff --git a/test/W3C_SVG_12_TinyTestSuite_beta/svggen/udom-svg-204-t.svg b/test/W3C_SVG_12_TinyTestSuite_beta/svggen/udom-svg-204-t.svg new file mode 100755 index 00000000..0cdc6f52 --- /dev/null +++ b/test/W3C_SVG_12_TinyTestSuite_beta/svggen/udom-svg-204-t.svg @@ -0,0 +1,125 @@ + + + + + + + + + + $RCSfile: udom-svg-204-t.svg,v $ + + + + + + + + + SVGElementInstance interface test + Click the rectangle. The test has passed if it turns blue. + + + + + + + + + + + + + + + + + + + + + + $Revision: 1.7 $ + + + + + diff --git a/test/W3C_SVG_12_TinyTestSuite_beta/svggen/udom-svg-205-t.svg b/test/W3C_SVG_12_TinyTestSuite_beta/svggen/udom-svg-205-t.svg new file mode 100755 index 00000000..8dac1e7b --- /dev/null +++ b/test/W3C_SVG_12_TinyTestSuite_beta/svggen/udom-svg-205-t.svg @@ -0,0 +1,71 @@ + + + + + + + + + + $RCSfile: udom-svg-205-t.svg,v $ + + + + + + + + + SVGSVGElement NAV_ constants test + + + + + $Revision: 1.5 $ + + + + + diff --git a/test/W3C_SVG_12_TinyTestSuite_beta/svggen/udom-svg-206-t.svg b/test/W3C_SVG_12_TinyTestSuite_beta/svggen/udom-svg-206-t.svg new file mode 100755 index 00000000..bde7ac00 --- /dev/null +++ b/test/W3C_SVG_12_TinyTestSuite_beta/svggen/udom-svg-206-t.svg @@ -0,0 +1,75 @@ + + + + + + + + + + $RCSfile: udom-svg-206-t.svg,v $ + + + + + + + + + SVGSVGElement.currentScale test + All three rectangles must be blue. + + + Initial value + + + Set value + + + Get new value + + + + + + $Revision: 1.7 $ + + + + + diff --git a/test/W3C_SVG_12_TinyTestSuite_beta/svggen/udom-svg-208-t.svg b/test/W3C_SVG_12_TinyTestSuite_beta/svggen/udom-svg-208-t.svg new file mode 100755 index 00000000..fcf95806 --- /dev/null +++ b/test/W3C_SVG_12_TinyTestSuite_beta/svggen/udom-svg-208-t.svg @@ -0,0 +1,246 @@ + + + + + + + + + + $RCSfile: udom-svg-208-t.svg,v $ + + + + + + + + + repeatCount + + 0 + 1 + 5 + 6 + 7 + + + pause 3s + + + + + + + + + + + + + + + + + + + + + + + + + repeatDur + + 0 + 1 + 5 + 6 + 7 + + + pause 3s + + + + + + + + + + + + + + + + + + + + + + + + end-3 + end-2 + A.begin-1 + repeat(1) + repeat(2) + repeat(3) + repeat(4) + end-6 + + + + + >1 + + + + + + A + >5 + + + + + + >1 + + + + + + >1 + + + + + + >5 + + + + + + >6 + + + + + + never + + + + + + >=0 + + + + + + + + >1 + + + + + + >5 + + + + + + >1 + + + + + + >1 + + + + + + >5 + + + + + + >6 + + + + + + never + + + + + + >=0 + + + + + + + + + + document.getElementById("anim_1").pauseElement(); + document.getElementById("anim_2").pauseElement(); + + + + document.getElementById("anim_1").resumeElement(); + document.getElementById("anim_2").resumeElement(); + + + + + + 01234567(s) + + + + + + + + + $Revision: 1.3 $ + + + + + diff --git a/test/W3C_SVG_12_TinyTestSuite_beta/svggen/udom-svg-209-t.svg b/test/W3C_SVG_12_TinyTestSuite_beta/svggen/udom-svg-209-t.svg new file mode 100755 index 00000000..248e9c9b --- /dev/null +++ b/test/W3C_SVG_12_TinyTestSuite_beta/svggen/udom-svg-209-t.svg @@ -0,0 +1,406 @@ + + + + + + + + + + $RCSfile: udom-svg-209-t.svg,v $ + + + + + + + + + + + + + + begin + 0-1s + 5-6s + + repeat(1) + 1-2s + 7.5-8.5s + + repeat(2) + never + + repeat(3) + never + + end + 3-4s + 8-9s + + + Pause 5s + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + Scripted begin and end + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + document.getElementById("anim_4").beginElement(); + document.getElementById("anim_5").beginElement(); + document.getElementById("anim_6").beginElement(); + + + + document.getElementById("anim_4").endElement(); + document.getElementById("anim_5").endElement(); + document.getElementById("anim_6").endElement(); + + + + + + + + + + + document.getElementById("anim_1").pauseElement(); + document.getElementById("anim_2").pauseElement(); + document.getElementById("anim_3").pauseElement(); + document.getElementById("anim_4").pauseElement(); + document.getElementById("anim_5").pauseElement(); + document.getElementById("anim_6").pauseElement(); + + + + document.getElementById("anim_1").resumeElement(); + document.getElementById("anim_2").resumeElement(); + document.getElementById("anim_3").resumeElement(); + document.getElementById("anim_4").resumeElement(); + document.getElementById("anim_5").resumeElement(); + document.getElementById("anim_6").resumeElement(); + + + + + + 0123456789(s) + + + + + + + + + $Revision: 1.3 $ + + + + + \ No newline at end of file diff --git a/test/W3C_SVG_12_TinyTestSuite_beta/svggen/udom-svg-210-t.svg b/test/W3C_SVG_12_TinyTestSuite_beta/svggen/udom-svg-210-t.svg new file mode 100755 index 00000000..cd9ddaa6 --- /dev/null +++ b/test/W3C_SVG_12_TinyTestSuite_beta/svggen/udom-svg-210-t.svg @@ -0,0 +1,145 @@ + + + + + + + + + + $RCSfile: udom-svg-210-t.svg,v $ + + + + + + + + + + + + + + restart: whenNotActive + + begin + end + + + begin: 0;3;5.5 + + 0-1 + 5.5-6.5 + 5-6 + 7.5-8.5 + + + + + + + + + + + + + + + + + + + + + + + begin: 0;3;5.5 + end: 2.5;9 + + 0-1 + 3-4 + 2.5-3.5 + 6-7 + + + + + + + + + + + + + + + + + + + + + + + + + + + + + Pause 3s + + + + + + + document.getElementById("anim_1").pauseElement(); + document.getElementById("anim_2").pauseElement(); + + + + document.getElementById("anim_1").resumeElement(); + document.getElementById("anim_2").resumeElement(); + + + + + + 0123456789(s) + + + + + + + + + $Revision: 1.4 $ + + + + + diff --git a/test/W3C_SVG_12_TinyTestSuite_beta/svggen/udom-svg-211-t.svg b/test/W3C_SVG_12_TinyTestSuite_beta/svggen/udom-svg-211-t.svg new file mode 100755 index 00000000..9ad4b1ec --- /dev/null +++ b/test/W3C_SVG_12_TinyTestSuite_beta/svggen/udom-svg-211-t.svg @@ -0,0 +1,141 @@ + + + + + + + + + + $RCSfile: udom-svg-211-t.svg,v $ + + + + + + + + + + + + + + restart: never + + begin + end + + + begin: 0;3;5.5 + + 0-1 + 5-6 + + + + + + + + + + + + + + + + + + + + + + + begin: 0;3;5.5 + end: 2.5;9 + + 0-1 + 2.5-3.5 + + + + + + + + + + + + + + + + + + + + + + + + + + + + + Pause 3s + + + + + + + document.getElementById("anim_1").pauseElement(); + document.getElementById("anim_2").pauseElement(); + + + + document.getElementById("anim_1").resumeElement(); + document.getElementById("anim_2").resumeElement(); + + + + + + 0123456789(s) + + + + + + + + + $Revision: 1.5 $ + + + + + diff --git a/test/W3C_SVG_12_TinyTestSuite_beta/svggen/udom-svg-213-t.svg b/test/W3C_SVG_12_TinyTestSuite_beta/svggen/udom-svg-213-t.svg new file mode 100755 index 00000000..197f3fcf --- /dev/null +++ b/test/W3C_SVG_12_TinyTestSuite_beta/svggen/udom-svg-213-t.svg @@ -0,0 +1,85 @@ + + + + + + + + + + $RCSfile: udom-svg-213-t.svg,v $ + + + + + + + + + SVGSVGElement.getCurrentTime() test + + + + + + + + + + Click this rectangle. + Then click this one. + + + + + $Revision: 1.10 $ + + + + + diff --git a/test/W3C_SVG_12_TinyTestSuite_beta/svggen/udom-svg-216-t.svg b/test/W3C_SVG_12_TinyTestSuite_beta/svggen/udom-svg-216-t.svg new file mode 100755 index 00000000..74b144ea --- /dev/null +++ b/test/W3C_SVG_12_TinyTestSuite_beta/svggen/udom-svg-216-t.svg @@ -0,0 +1,50 @@ + + + + + + + + + + $RCSfile: udom-svg-216-t.svg,v $ + + + + + + + + + SVGSVGElement.createSVGPath() test + + + + + $Revision: 1.4 $ + + + + + diff --git a/test/W3C_SVG_12_TinyTestSuite_beta/svggen/udom-svg-218-t.svg b/test/W3C_SVG_12_TinyTestSuite_beta/svggen/udom-svg-218-t.svg new file mode 100755 index 00000000..59e1acea --- /dev/null +++ b/test/W3C_SVG_12_TinyTestSuite_beta/svggen/udom-svg-218-t.svg @@ -0,0 +1,142 @@ + + + + + + + + + + $RCSfile: udom-svg-218-t.svg,v $ + + + + + + + + + More SVGSVGElement.getURL() tests + + + + + Fetch a text/plain resource via a 3xx + redirection status code + + A text/plain resource returned with + status code 403. + + A text/plain resource returned with + status code 500. + + + + Test Running... + + + + + $Revision: 1.5 $ + + + + + diff --git a/test/W3C_SVG_12_TinyTestSuite_beta/svggen/udom-svg-220-t.svg b/test/W3C_SVG_12_TinyTestSuite_beta/svggen/udom-svg-220-t.svg new file mode 100755 index 00000000..8719075b --- /dev/null +++ b/test/W3C_SVG_12_TinyTestSuite_beta/svggen/udom-svg-220-t.svg @@ -0,0 +1,213 @@ + + + + + + + + + + $RCSfile: udom-svg-220-t.svg,v $ + + + + + + + + + Trait access test: accumulate + + + + + + + $Revision: 1.10 $ + + + + + diff --git a/test/W3C_SVG_12_TinyTestSuite_beta/svggen/udom-svg-224-t.svg b/test/W3C_SVG_12_TinyTestSuite_beta/svggen/udom-svg-224-t.svg new file mode 100755 index 00000000..1fc8b94f --- /dev/null +++ b/test/W3C_SVG_12_TinyTestSuite_beta/svggen/udom-svg-224-t.svg @@ -0,0 +1,223 @@ + + + + + + + + + + $RCSfile: udom-svg-224-t.svg,v $ + + + + + + + + + Trait access test: begin + + + + + + + + $Revision: 1.6 $ + + + + + diff --git a/test/W3C_SVG_12_TinyTestSuite_beta/svggen/udom-svg-225-t.svg b/test/W3C_SVG_12_TinyTestSuite_beta/svggen/udom-svg-225-t.svg new file mode 100755 index 00000000..9ec7c617 --- /dev/null +++ b/test/W3C_SVG_12_TinyTestSuite_beta/svggen/udom-svg-225-t.svg @@ -0,0 +1,236 @@ + + + + + + + + + + $RCSfile: udom-svg-225-t.svg,v $ + + + + + + + + + + + + + var svg_ns = "http://www.w3.org/2000/svg"; + var xlink_ns = "http://www.w3.org/1999/xlink"; + + var count=0; + var topsvg = document.documentElement; + var startY = 80; + var rowHeight = 12; + var fontSize = "10"; + var isPassed = new Array(); + var eps = 1 / 65535; // 16.16 fixpoint epsilon + + function drawString( text ) + { + node_to_insert=document.createElementNS(svg_ns,"text"); + node_to_insert.setAttributeNS(null,"font-size",fontSize); + node_to_insert.setAttributeNS(null,"x","25"); + var yVal = startY + count++ * rowHeight; + node_to_insert.setAttributeNS(null, "y", yVal.toString() ); + node_to_insert.textContent=text ; + document.getElementById( "test-body-content" ).appendChild(node_to_insert); + } + + function drawStatusBox( status ) + { + node_to_insert=document.createElementNS(svg_ns,"rect"); + node_to_insert.setAttributeNS(null,"x","10"); + var yVal = ( startY - (rowHeight/2) ) + ( count - 1 ) * ( rowHeight ); + node_to_insert.setAttributeNS(null, "y", yVal.toString() ); + node_to_insert.setAttributeNS(null, "width", rowHeight / 2 ); + node_to_insert.setAttributeNS(null, "height", rowHeight / 2 ); + if ( status ) + { + node_to_insert.setAttributeNS(null, "fill", "green" ); + } + else + { + node_to_insert.setAttributeNS(null, "fill", "red" ); + } + document.getElementById( "test-body-content" ).appendChild(node_to_insert); + } + + function verifyMatrix( matrix, expected, epsilon ) + { + if + ( + ( Math.abs(matrix.getComponent(0) - expected[0]) < epsilon ) && + ( Math.abs(matrix.getComponent(1) - expected[1]) < epsilon ) && + ( Math.abs(matrix.getComponent(2) - expected[2]) < epsilon ) && + ( Math.abs(matrix.getComponent(3) - expected[3]) < epsilon ) && + ( Math.abs(matrix.getComponent(4) - expected[4]) < epsilon ) && + ( Math.abs(matrix.getComponent(5) - expected[5]) < epsilon ) + ) + { + drawString( "Results match expected values." ); + drawStatusBox( true ); + isPassed.push(true); + } + else + { + isPassed.push(false); + drawString( "Results do not match expected values!" ); + drawString( "expected: " + expected[0].toString() + " " + + expected[1].toString() + " " + + expected[2].toString() + " " + + expected[3].toString() + " " + + expected[4].toString() + " " + + expected[5].toString() ); + drawStatusBox( false ); + } + } + + function verifyMatrix2( matrix, expected, epsilon ) + { + if + ( + ( Math.abs( matrix.getComponent(0) - expected.getComponent(0) ) < epsilon ) && + ( Math.abs( matrix.getComponent(1) - expected.getComponent(1) ) < epsilon ) && + ( Math.abs( matrix.getComponent(2) - expected.getComponent(2) ) < epsilon ) && + ( Math.abs( matrix.getComponent(3) - expected.getComponent(3) ) < epsilon ) && + ( Math.abs( matrix.getComponent(4) - expected.getComponent(4) ) < epsilon ) && + ( Math.abs( matrix.getComponent(5) - expected.getComponent(5) ) < epsilon ) + ) + { + drawString( "Results match expected values." ); + drawStatusBox( true ); + isPassed.push(true); + } + else + { + isPassed.push(false); + drawString( "Results do not match expected values!" ); + drawString( "expected: " + expected.getComponent(0).toFixed(1) + " " + + expected.getComponent(1).toFixed(1) + " " + + expected.getComponent(2).toFixed(1) + " " + + expected.getComponent(3).toFixed(1) + " " + + expected.getComponent(4).toFixed(1) + " " + + expected.getComponent(5).toFixed(1) ); + drawString( "got: " + matrix.getComponent(0).toFixed(1) + " " + + matrix.getComponent(1).toFixed(1) + " " + + matrix.getComponent(2).toFixed(1) + " " + + matrix.getComponent(3).toFixed(1) + " " + + matrix.getComponent(4).toFixed(1) + " " + + matrix.getComponent(5).toFixed(1) ); + drawStatusBox( false ); + } + } + + + + + + + var ctm = document.getElementById( "rect1" ).getScreenCTM( ); + var expected = [ 1, 0, 0, 1, 0, 0 ]; + verifyMatrix(ctm, expected, eps); + + + var ctm = document.getElementById( "rect1" ).getScreenCTM( ); + var expected = [ 1, 0, 0, 1, 240, 160 ]; + verifyMatrix(ctm, expected, eps); + + + + + + + + var ctm = document.getElementById( "rect2" ).getScreenCTM( ); + + // using equations from SMIL: + // http://www.w3.org/TR/2005/REC-SMIL2-20051213/animation.html#adef-values + + var t = document.documentElement.getCurrentTime(); + var angle = 35; + if(t < 2) + angle = 360*(t/2); + + var di = 2 / (5-1); + var i = Math.floor((t*5)/2); + var ti = di * i; + var vals = [0, 1, 2, 1, 0]; + var scale = vals[i] + (vals[i+1]-vals[i]) * (t - ti) / di; + + var expected = document.documentElement.createSVGMatrixComponents(1,0,0,1,0,0); + expected.mScale(0.1); + expected.mTranslate(3000,1000); + if(t > 0) + { + expected.mTranslate(240,160); + } + expected.mRotate(angle); + if(t > 0) + { + expected.mTranslate(-240,-160); + } + expected.mScale(scale); + + verifyMatrix2(ctm, document.getElementById( "rect2" ).getScreenCTM( ), eps); + verifyMatrix2(ctm, expected, eps); + + + + + if( isPassed.length == 8 ) + { + var fullpass = true; + for(var i = 0; i < isPassed.length; i++) + if(!isPassed[i]) + fullpass = false; + + if(fullpass) + { + var status = document.getElementById("TestStatus"); + status.setTrait( "#text", "passed" ); + } + } + + + + + + + + + + + + + + SVGLocatable.getScreenCTM - animated test + + + + failed + + + + + + $Revision: 1.6 $ + + + + + + DRAFT + + \ No newline at end of file diff --git a/test/W3C_SVG_12_TinyTestSuite_beta/svggen/udom-svg-226-t.svg b/test/W3C_SVG_12_TinyTestSuite_beta/svggen/udom-svg-226-t.svg new file mode 100755 index 00000000..031808b7 --- /dev/null +++ b/test/W3C_SVG_12_TinyTestSuite_beta/svggen/udom-svg-226-t.svg @@ -0,0 +1,194 @@ + + + + + + + + + + $RCSfile: udom-svg-226-t.svg,v $ + + + + + + + + + + + + + var svg_ns = "http://www.w3.org/2000/svg"; + var xlink_ns = "http://www.w3.org/1999/xlink"; + + var topsvg = document.documentElement; + var isPassed = true; + + function drawString( text, id) + { + var text_element = document.getElementById(id); + if (isPassed) + { + text_element.setAttribute("fill", "#0C0"); + } + else + { + text_element.textContent = text; + text_element.setAttribute("fill", "#F00"); + } + } + + function updateStatus() + { + var status = document.getElementById("TestStatus"); + if ( isPassed ) + { + status.setTrait("#text", "passed"); + status.setAttribute("fill", "#0C0"); + } + else + { + status.setTrait("#text", "failed"); + status.setAttribute("fill", "#F00"); + } + } + + function doTimer1( ) + { + curTime = topsvg.getCurrentTime( ); + if ( curTime >= 1 ) + { + drawString( "", "time_test_1"); + } + else + { + isPassed = false; + drawString( "currentTime: " + curTime + ", expecting 1", "time_test_1" ); + } + } + + function doTimer2( ) + { + curTime = topsvg.getCurrentTime( ); + if ( curTime >= 2) + { + drawString( "", "time_test_2"); + } + else + { + isPassed = false; + drawString( "currentTime: " + curTime + ", expecting 2", "time_test_2" ); + } + } + + function doTimer3( ) + { + curTime = topsvg.getCurrentTime( ); + if ( curTime >= 5 ) + { + drawString( "", "time_test_5"); + } + else + { + isPassed = false; + drawString( "currentTime: " + curTime + ", expecting 5", "time_test_5" ); + } + } + + function doTimer4( ) + { + curTime = topsvg.getCurrentTime( ); + if ( curTime >= 9 ) + { + drawString( "", "time_test_9"); + } + else + { + isPassed = false; + drawString( "currentTime: " + curTime + ", expecting 9", "time_test_9" ); + } + + updateStatus(); + } + + var status = document.getElementById("TestStatus"); + status.setTrait("#text", "testing"); + + try + { + document.getElementById("animationTimer1").addEventListener("endEvent", doTimer1, false); + document.getElementById("animationTimer2").addEventListener("endEvent", doTimer2, false); + document.getElementById("animationTimer3").addEventListener("endEvent", doTimer3, false); + document.getElementById("animationTimer4").addEventListener("endEvent", doTimer4, false); + } + catch(e) + { + isPassed = false; + drawString("Unexpected exception!", "test_status"); + } + + + + + + + + 0 + 1 + 2 + 3 + 4 + 5 + 6 + 7 + 8 + 9 + 10 + + + + + SVGSVGElement.getCurrentTime() - basic test + + + + + + + + + + + + + + + currentTime: 1 + currentTime: 2 + currentTime: 5 + currentTime: 9 + + + + + failed + + + + $Revision: 1.7 $ + + + + + diff --git a/test/W3C_SVG_12_TinyTestSuite_beta/svggen/udom-svg-227-t.svg b/test/W3C_SVG_12_TinyTestSuite_beta/svggen/udom-svg-227-t.svg new file mode 100755 index 00000000..938b5584 --- /dev/null +++ b/test/W3C_SVG_12_TinyTestSuite_beta/svggen/udom-svg-227-t.svg @@ -0,0 +1,216 @@ + + + + + + + + + + $RCSfile: udom-svg-227-t.svg,v $ + + + + + + + + + + + + + var svg_ns = "http://www.w3.org/2000/svg"; + var xlink_ns = "http://www.w3.org/1999/xlink"; + + var count=0; + var topsvg = document.documentElement; + var translate = topsvg.currentTranslate; + + var startY = 80; + var rowHeight = 15; + var fontSize = "10"; + var isPassed = true; + + function drawString( text ) + { + node_to_insert=document.createElementNS(svg_ns,"text"); + node_to_insert.setAttributeNS(null,"font-size", fontSize); + node_to_insert.setAttributeNS(null,"x","25"); + var yVal = startY + count++ * rowHeight; + node_to_insert.setAttributeNS(null, "y", yVal.toString() ); + node_to_insert.textContent=text ; + document.getElementById( "test-body-content" ).appendChild(node_to_insert); + } + + function updateStatus() + { + var status = document.getElementById("TestStatus"); + if ( isPassed ) + { + status.setTrait("#text", "passed"); + } + else + { + status.setTrait("#text", "failed"); + } + } + + var status = document.getElementById("TestStatus"); + status.setTrait("#text", "testing"); + + + { + + function doTimer1( ) + { + curTime = topsvg.getCurrentTime( ); + if ( curTime >= 1 ) + { + drawString( "currentTime: 1"); + } + else + { + isPassed = false; + drawString( "currentTime: " + curTime + ", expecting 1" ); + } + } + + function doTimer2( ) + { + curTime = topsvg.getCurrentTime( ); + if ( curTime >= 2 ) + { + drawString( "currentTime: 2"); + } + else + { + isPassed = false; + drawString( "currentTime: " + curTime + ", expecting 2" ); + } + + drawString( "setCurrentTime to 4" ); + topsvg.setCurrentTime( 4 ); + + curTime = topsvg.getCurrentTime( ); + if ( curTime >= 4 ) + { + drawString( "currentTime: 4"); + } + else + { + isPassed = false; + drawString( "currentTime: " + curTime + ", expecting 4" ); + } + } + + function doTimer3( ) + { + curTime = topsvg.getCurrentTime( ); + if ( curTime >= 5 ) + { + drawString( "currentTime: 5"); + } + else + { + isPassed = false; + drawString( "currentTime: " + curTime + ", expecting 5" ); + } + + drawString( "setCurrentTime to 8" ); + topsvg.setCurrentTime( 8 ); + + curTime = topsvg.getCurrentTime( ); + if ( curTime >= 8 ) + { + drawString( "currentTime: 8"); + } + else + { + isPassed = false; + drawString( "currentTime: " + curTime + ", expecting 1" ); + } + } + + function doTimer4( ) + { + curTime = topsvg.getCurrentTime( ); + if ( curTime >= 9 && curTime < 9.1 ) + { + drawString( "currentTime: 9"); + } + else + { + isPassed = false; + drawString( "currentTime: " + curTime + ", expecting 2" ); + } + + updateStatus(); + } + + + document.getElementById("animationTimer1").addEventListener("endEvent", doTimer1, false); + document.getElementById("animationTimer2").addEventListener("endEvent", doTimer2, false); + document.getElementById("animationTimer3").addEventListener("endEvent", doTimer3, false); + document.getElementById("animationTimer4").addEventListener("endEvent", doTimer4, false); + + drawString( "currentTime: " + topsvg.getCurrentTime( ) ); + } + + + + + + + + + 0 + 1 + 2 + 3 + 4 + 5 + 6 + 7 + 8 + 9 + 10 + + + + + + SVGSVGElement.setCurrentTime() - basic test + + + + + + + + + + + + + + failed + + + + + $Revision: 1.5 $ + + + + + diff --git a/test/W3C_SVG_12_TinyTestSuite_beta/svggen/udom-svg-228-t.svg b/test/W3C_SVG_12_TinyTestSuite_beta/svggen/udom-svg-228-t.svg new file mode 100755 index 00000000..06d9300d --- /dev/null +++ b/test/W3C_SVG_12_TinyTestSuite_beta/svggen/udom-svg-228-t.svg @@ -0,0 +1,206 @@ + + + + + + + + + + $RCSfile: udom-svg-228-t.svg,v $ + + + + + + + + + + + + + var svg_ns = "http://www.w3.org/2000/svg"; + var xlink_ns = "http://www.w3.org/1999/xlink"; + + var count=0; + var topsvg = document.documentElement; + var translate = topsvg.currentTranslate; + var startY = 80; + var fontSize = "8"; + var rowHeight = 15; + var isPassed = true; + + function drawString( text ) + { + node_to_insert=document.createElementNS(svg_ns,"text"); + node_to_insert.setAttributeNS(null,"font-size",fontSize); + node_to_insert.setAttributeNS(null,"x","25"); + if (isPassed) + { + node_to_insert.setAttributeNS(null, "fill", "#0C0"); + } + else + { + node_to_insert.setAttributeNS(null, "fill", "#F00"); + } + var yVal = startY + count++ * rowHeight; + node_to_insert.setAttributeNS(null, "y", yVal.toString() ); + node_to_insert.textContent=text ; + document.getElementById( "test-body-content" ).appendChild(node_to_insert); + } + + function getNavStr( nav ) + { + var str = "UNDEFINED"; + switch( nav ) + { + case SVGSVGElement.NAV_DOWN: + str = "NAV_DOWN"; + break; + case SVGSVGElement.NAV_UP: + str = "NAV_UP"; + break; + case SVGSVGElement.NAV_LEFT: + str = "NAV_LEFT"; + break; + case SVGSVGElement.NAV_RIGHT: + str = "NAV_RIGHT"; + break; + case SVGSVGElement.NAV_DOWN_RIGHT: + str = "NAV_DOWN_RIGHT"; + break; + case SVGSVGElement.NAV_UP_LEFT: + str = "NAV_UP_LEFT"; + break; + case SVGSVGElement.NAV_DOWN_LEFT: + str = "NAV_DOWN_LEFT"; + break; + case SVGSVGElement.NAV_UP_RIGHT: + str = "NAV_UP_RIGHT"; + break; + } + return str; + } + + iterations = [ "t3", "t7", "t2", "t8", "t6", "t4", "t1", "t9", "t5" ]; + itercount = 9; + + function doIter( iterpos ) + { + topsvg.setFocus( document.getElementById ( iterations[iterpos] ) ); + if ( topsvg.getCurrentFocusedObject().id != iterations[iterpos] ) + { + isPassed = false; + drawString( "setFocus: " + iterations[iterpos] + " currentFocus: " + topsvg.getCurrentFocusedObject().id + ", expected " + iterations[iterpos]); + } + else + { + drawString( "setFocus: " + iterations[iterpos] + " currentFocus: " + topsvg.getCurrentFocusedObject().id ); + } + } + + drawString( "setFocus: t7" ); + topsvg.setFocus( document.getElementById( "t7" ) ); + + try + { + for(iterpos = 0; iterpos < itercount; ++iterpos) + { + doIter( iterpos ); + } + } + catch(e) + { + isPassed = false; + drawString( "error: unexpected exception!"); + } + + var status = document.getElementById("TestStatus"); + + if ( isPassed ) + { + status.setTrait("#text", "passed"); + status.setAttribute("fill", "#0C0"); + } + else + { + status.setAttribute("fill", "#F00"); + } + + + + SVGSVGElement.setFocus() and + getCurrentFocusedObject() + + + + + 7 + + + + + 8 + + + + + 9 + + + + + 4 + + + + + 5 + + + + + 6 + + + + + 1 + + + + + 2 + + + + + 3 + + + + + + + + + failed + + + + $Revision: 1.6 $ + + + + + diff --git a/test/W3C_SVG_12_TinyTestSuite_beta/svggen/udom-svg-231-t.svg b/test/W3C_SVG_12_TinyTestSuite_beta/svggen/udom-svg-231-t.svg new file mode 100755 index 00000000..31bbe893 --- /dev/null +++ b/test/W3C_SVG_12_TinyTestSuite_beta/svggen/udom-svg-231-t.svg @@ -0,0 +1,109 @@ + + + + + + + + + + $RCSfile: udom-svg-231-t.svg,v $ + + + + + + + + + TraitAccess.setRGBColorTrait() / getRGBColorTrait() + + + + + " + + + + + + failed + + + + + + + + + + + + try + { + rowHeight = 10; + fontSize = 8; + + var rect1 = document.getElementById( "rect1" ); + var rect2 = document.getElementById( "rect2" ); + var path1 = document.getElementById( "path1" ); + + var fill1 = topsvg.createSVGRGBColor( 255, 18, 52 ); + var fill2 = topsvg.createSVGRGBColor( 0, 0, 0 ); + + var p1 = topsvg.createSVGPath(); + p1.moveTo( 10, 10 ); + p1.lineTo( 20, 20 ); + p1.close(); + + var alphas = "abcdefghijklmnopPQRSTUVWXYZ"; + + runSetTraitIters + ( + [ + new setTraitIter ( "a01" , "setRGBColorTrait" , "getRGBColorTrait" , 0 , rect1 , "fill" , fill1 , fill1 , 0 , 0 , 0 ) + , new setTraitIter ( "a02" , "setRGBColorTrait" , "getRGBColorTrait" , 0 , rect2 , "fill" , fill2 , fill2 , 0 , 0 , 0 ) + + , new setTraitIter ( "a03" , "setRGBColorTrait" , 0 , 0 , path1 , "d" , p1 , 0 , 0 , DOMException.TYPE_MISMATCH_ERR , "TYPE_MISMATCH_ERR" ) + , new setTraitIter ( "a04" , "setRGBColorTrait" , 0 , 0 , rect1 , "x" , p1 , 0 , 0 , DOMException.TYPE_MISMATCH_ERR , "TYPE_MISMATCH_ERR" ) + , new setTraitIter ( "a05" , "setRGBColorTrait" , 0 , 0 , rect1 , "x" , p1 , 0 , 0 , DOMException.TYPE_MISMATCH_ERR , "TYPE_MISMATCH_ERR" ) + , new setTraitIter ( "a06" , "setRGBColorTrait" , 0 , 0 , rect1 , "fill" , null , 0 , 0 , DOMException.INVALID_ACCESS_ERR , "INVALID_ACCESS_ERR" ) + , new setTraitIter ( "a07" , "setRGBColorTrait" , 0 , 0 , rect1 , "fill" , alphas , 0 , 0 , DOMException.TYPE_MISMATCH_ERR , "TYPE_MISMATCH_ERR" ) + , new setTraitIter ( "a09" , "setRGBColorTrait" , 0 , 0 , rect1 , "fill" , "" , 0 , 0 , DOMException.TYPE_MISMATCH_ERR , "TYPE_MISMATCH_ERR" ) + , new setTraitIter ( "a10" , "setRGBColorTrait" , 0 , 0 , rect1 , null , fill1 , 0 , 0 , DOMException.NOT_SUPPORTED_ERR , "NOT_SUPPORTED_ERR" ) + , new setTraitIter ( "a11" , "setRGBColorTrait" , 0 , 0 , rect1 , "foo" , fill1 , 0 , 0 , DOMException.NOT_SUPPORTED_ERR , "NOT_SUPPORTED_ERR" ) + ] + ); + } + catch(e) + { + isPassed = false; + drawString("Main: Unexpected exception thrown! " , "red"); + } + + if( isPassed ) + { + var status = document.getElementById("UnitTestStatus"); + status.setTrait("#text", "passed"); + status.setAttribute("fill", "#0C0"); + } + + + + + + $Revision: 1.11 $ + + + + + \ No newline at end of file diff --git a/test/W3C_SVG_12_TinyTestSuite_beta/svggen/udom-svg-232-t.svg b/test/W3C_SVG_12_TinyTestSuite_beta/svggen/udom-svg-232-t.svg new file mode 100755 index 00000000..0fa493cf --- /dev/null +++ b/test/W3C_SVG_12_TinyTestSuite_beta/svggen/udom-svg-232-t.svg @@ -0,0 +1,111 @@ + + + + + + + + + + $RCSfile: udom-svg-232-t.svg,v $ + + + + + + + + + + TraitAccess.setMatrixTrait() / getMatrixTrait() + + + + + + + failed + + + + + + + + + + + + + + + + try + { + rowHeight = 10; + fontSize = 8; + + var g1 = document.getElementById( "g1" ); + var g2 = document.getElementById( "g2" ); + var rect1 = document.getElementById( "rect1" ); + var path1 = document.getElementById( "path1" ); + + + var g1Matrix = topsvg.createSVGMatrixComponents( 10 , 0 , 0 , 10 , 50 , 50 ); + var g2Matrix = topsvg.createSVGMatrixComponents( 1 , 0 , 0 , 1 , 0 , 0 ); + + var p1 = topsvg.createSVGPath(); + p1.moveTo( 10, 10 ); + p1.lineTo( 20, 20 ); + p1.close(); + + var alphas = "abcdefghijklmnopNOPQRSTUVWXYZ"; + + runSetTraitIters + ( + [ + new setTraitIter ( "a01" , "setMatrixTrait" , "getMatrixTrait" , 0 , g1 , "transform" , g1Matrix , g1Matrix , 0 , 0 , 0 ) + , new setTraitIter ( "a03" , "setMatrixTrait" , "getMatrixTrait" , 0 , g2 , "transform" , g2Matrix , g2Matrix , 0 , 0 , 0 ) + , new setTraitIter ( "a04" , "setMatrixTrait" , 0 , 0 , path1 , "d" , g1Matrix , 0 , 0 , DOMException.TYPE_MISMATCH_ERR , "TYPE_MISMATCH_ERR" ) + , new setTraitIter ( "a05" , "setMatrixTrait" , 0 , 0 , path1 , "d" , p1 , 0 , 0 , DOMException.TYPE_MISMATCH_ERR , "TYPE_MISMATCH_ERR" ) + , new setTraitIter ( "a05" , "setMatrixTrait" , 0 , 0 , rect1 , "x" , g1Matrix , 0 , 0 , DOMException.TYPE_MISMATCH_ERR , "TYPE_MISMATCH_ERR" ) + , new setTraitIter ( "a05" , "setMatrixTrait" , 0 , 0 , g1 , "transform" , null , 0 , 0 , DOMException.INVALID_ACCESS_ERR , "INVALID_ACCESS_ERR" ) + , new setTraitIter ( "a07" , "setMatrixTrait" , 0 , 0 , g1 , "transform" , alphas , 0 , 0 , DOMException.TYPE_MISMATCH_ERR , "TYPE_MISMATCH_ERR" ) + , new setTraitIter ( "a09" , "setMatrixTrait" , 0 , 0 , g1 , "transform" , "" , 0 , 0 , DOMException.TYPE_MISMATCH_ERR , "TYPE_MISMATCH_ERR" ) + , new setTraitIter ( "a10" , "setMatrixTrait" , 0 , 0 , g1 , null , g1Matrix , 0 , 0 , DOMException.NOT_SUPPORTED_ERR , "NOT_SUPPORTED_ERR" ) + , new setTraitIter ( "a11" , "setMatrixTrait" , 0 , 0 , g1 , "foo" , g1Matrix , 0 , 0 , DOMException.NOT_SUPPORTED_ERR , "NOT_SUPPORTED_ERR" ) + ] + ); + } + catch(e) + { + isPassed = false; + drawString("Main: Unexpected exception thrown! ", "red"); + } + + if( isPassed ) + { + var status = document.getElementById("UnitTestStatus"); + status.setTrait("#text", "passed"); + status.setAttribute("fill", "#0C0"); + } + + + + + + $Revision: 1.8 $ + + + + + diff --git a/test/W3C_SVG_12_TinyTestSuite_beta/svggen/udom-svg-233-t.svg b/test/W3C_SVG_12_TinyTestSuite_beta/svggen/udom-svg-233-t.svg new file mode 100755 index 00000000..aa8118b8 --- /dev/null +++ b/test/W3C_SVG_12_TinyTestSuite_beta/svggen/udom-svg-233-t.svg @@ -0,0 +1,103 @@ + + + + + + + + + + $RCSfile: udom-svg-233-t.svg,v $ + + + + + + + + + + TraitAccess.setPathTrait() / getPathTrait() + + + + + + + + + + failed + + + + + + + try + { + rowHeight = 10; + fontSize = 8; + + var path1 = document.getElementById( "path1" ); + var path2 = document.getElementById( "path2" ); + var rect1 = document.getElementById( "rect1" ); + + var p1 = topsvg.createSVGPath(); + p1.moveTo( 10, 10 ); + p1.lineTo( 20, 20 ); + p1.close(); + + var p2 = topsvg.createSVGPath(); + + var m1 = topsvg.createSVGMatrixComponents( 10 , 0 , 0 , 10 , 50 , 50 ); + + var alphas = "abcdefghijklmnopqrstuvwxyz"; + + runSetTraitIters + ( + [ + new setTraitIter ( "a01" , "setPathTrait" , "getPathTrait" , 0 , path1 , "d" , p1 , p1 , 0 , 0 , 0 ) + , new setTraitIter ( "a03" , "setPathTrait" , "getPathTrait" , 0 , path2 , "d" , p2 , p2 , 0 , 0 , 0 ) + + , new setTraitIter ( "a05" , "setPathTrait" , 0 , 0 , path1 , "d" , m1 , 0 , 0 , DOMException.TYPE_MISMATCH_ERR , "TYPE_MISMATCH_ERR" ) + , new setTraitIter ( "a05" , "setPathTrait" , 0 , 0 , rect1 , "fill" , p1 , 0 , 0 , DOMException.TYPE_MISMATCH_ERR , "TYPE_MISMATCH_ERR" ) + , new setTraitIter ( "a05" , "setPathTrait" , 0 , 0 , rect1 , "x" , p1 , 0 , 0 , DOMException.TYPE_MISMATCH_ERR , "TYPE_MISMATCH_ERR" ) + , new setTraitIter ( "a05" , "setPathTrait" , 0 , 0 , path1 , "d" , null , 0 , 0 , DOMException.INVALID_ACCESS_ERR , "INVALID_ACCESS_ERR" ) + , new setTraitIter ( "a07" , "setPathTrait" , 0 , 0 , path1 , "d" , alphas , 0 , 0 , DOMException.TYPE_MISMATCH_ERR , "TYPE_MISMATCH_ERR" ) + , new setTraitIter ( "a09" , "setPathTrait" , 0 , 0 , path1 , "d" , "" , 0 , 0 , DOMException.TYPE_MISMATCH_ERR , "TYPE_MISMATCH_ERR" ) + ,new setTraitIter ( "a10" , "setPathTrait" , 0 , 0 , path1 , null , p1 , 0 , 0 , DOMException.NOT_SUPPORTED_ERR , "NOT_SUPPORTED_ERR" ) + ] + ); + } + catch(e) + { + isPassed = false; + drawString("Main: Unexpected exception thrown! ", "red"); + } + + if( isPassed ) + { + var status = document.getElementById("UnitTestStatus"); + status.setTrait("#text", "passed"); + status.setAttribute("fill", "#0C0"); + } + + + + + $Revision: 1.8 $ + + + + + diff --git a/test/W3C_SVG_12_TinyTestSuite_beta/svggen/udom-svg-236-t.svg b/test/W3C_SVG_12_TinyTestSuite_beta/svggen/udom-svg-236-t.svg new file mode 100755 index 00000000..7571c5b5 --- /dev/null +++ b/test/W3C_SVG_12_TinyTestSuite_beta/svggen/udom-svg-236-t.svg @@ -0,0 +1,114 @@ + + + + + + + + + + $RCSfile: udom-svg-236-t.svg,v $ + + + + + + + + + + TraitAccess.setRectTrait() / getRectTrait() + + + + + + + + + + + + + + failed + + + + + + + + + + + + + + try + { + rowHeight = 10; + fontSize = 8; + + var path1 = document.getElementById( "path1" ); + + var rect = topsvg.createSVGRect(); + rect.x = 0; + rect.y = 0; + rect.width = 480; + rect.height = 360; + + var p1 = topsvg.createSVGPath(); + p1.moveTo( 10, 10 ); + p1.lineTo( 20, 20 ); + p1.close(); + + var alphas = "abcdefghijklmNOPQRSTUVWXYZ"; + + runSetTraitIters + ( + [ + new setTraitIter ( "a01" , "setRectTrait" , "getRectTrait" , 0 , topsvg , "viewBox" , rect , rect , 0 , 0 , 0 ) + + , new setTraitIter ( "a02" , "setRectTrait" , 0 , 0 , path1 , "d" , rect , 0 , 0 , DOMException.TYPE_MISMATCH_ERR , "TYPE_MISMATCH_ERR" ) + , new setTraitIter ( "a02" , "setRectTrait" , 0 , 0 , path1 , "d" , p1 , 0 , 0 , DOMException.TYPE_MISMATCH_ERR , "TYPE_MISMATCH_ERR" ) + , new setTraitIter ( "a03" , "setRectTrait" , 0 , 0 , topsvg , "viewBox" , null , 0 , 0 , DOMException.INVALID_ACCESS_ERR , "INVALID_ACCESS_ERR" ) + , new setTraitIter ( "a05" , "setRectTrait" , 0 , 0 , topsvg , "viewBox" , alphas , 0 , 0 , DOMException.TYPE_MISMATCH_ERR , "TYPE_MISMATCH_ERR" ) + , new setTraitIter ( "a07" , "setRectTrait" , 0 , 0 , topsvg , "viewBox" , "" , 0 , 0 , DOMException.TYPE_MISMATCH_ERR , "TYPE_MISMATCH_ERR" ) + , new setTraitIter ( "a08" , "setRectTrait" , 0 , 0 , topsvg , null , rect , 0 , 0 , DOMException.NOT_SUPPORTED_ERR , "NOT_SUPPORTED_ERR" ) + , new setTraitIter ( "a09" , "setRectTrait" , 0 , 0 , topsvg , "foo" , rect , 0 , 0 , DOMException.NOT_SUPPORTED_ERR , "NOT_SUPPORTED_ERR" ) + ] + ); + } + catch(e) + { + isPassed = false; + drawString("Main: Unexpected exception thrown! "); + } + + if( isPassed ) + { + var status = document.getElementById("UnitTestStatus"); + status.setTrait("#text", "passed"); + status.setAttribute("fill", "#0C0"); + } + + + + + $Revision: 1.7 $ + + + + + diff --git a/test/W3C_SVG_12_TinyTestSuite_beta/svggen/udom-svg-237-t.svg b/test/W3C_SVG_12_TinyTestSuite_beta/svggen/udom-svg-237-t.svg new file mode 100755 index 00000000..e4ee54a3 --- /dev/null +++ b/test/W3C_SVG_12_TinyTestSuite_beta/svggen/udom-svg-237-t.svg @@ -0,0 +1,113 @@ + + + + + + + + + + $RCSfile: udom-svg-237-t.svg,v $ + + + + + + + + + + + + failed + + + + + + + + + TraitAccess - methods supported by "accumulate" + + + + + + + + + + try + { + rowHeight = 10; + fontSize = 8; + + var animm1 = document.getElementById( "animm1" ); + var animm2 = document.getElementById( "animm2" ); + + document.getElementById( "targetRect" ).removeChild( animm1 ); + + runGetTraitIters + ( + [ + new getTraitIter ( "a01" , "getTrait" , 0 , animm1 , "accumulate" , "sum" , 0 , 0 , 0 ) + , new getTraitIter ( "a02" , "getTraitNS" , null , animm1 , "accumulate" , "sum" , 0 , 0 , 0 ) + , new getTraitIter ( "a03" , "getPresentationTrait" , 0 , animm1 , "accumulate" , "sum" , 0 , 0 , 0 ) + , new getTraitIter ( "a04" , "getPresentationTraitNS" , null , animm1 , "accumulate" , "sum" , 0 , 0 , 0 ) + , new getTraitIter ( "a05" , "getTrait" , 0 , animm2 , "accumulate" , "none" , 0 , 0 , 0 ) + , new getTraitIter ( "a06" , "getTraitNS" , null , animm2 , "accumulate" , "none" , 0 , 0 , 0 ) + , new getTraitIter ( "a07" , "getPresentationTrait" , 0 , animm2 , "accumulate" , "none" , 0 , 0 , 0 ) + , new getTraitIter ( "a08" , "getPresentationTraitNS" , null , animm2 , "accumulate" , "none" , 0 , 0 , 0 ) + ] + ); + + runSetTraitIters + ( + [ + new setTraitIter ( "b01" , "setTrait" , "getTrait" , 0 , animm1 , "accumulate" , "none" , "none" , 0 , 0 , 0 ) + , new setTraitIter ( "b02" , "setTrait" , "getTraitNS" , null , animm1 , "accumulate" , "none" , "none" , 0 , 0 , 0 ) + , new setTraitIter ( "b03" , "setTrait" , "getPresentationTrait" , 0 , animm1 , "accumulate" , "none" , "none" , 0 , 0 , 0 ) + , new setTraitIter ( "b04" , "setTrait" , "getPresentationTraitNS" , null , animm1 , "accumulate" , "none" , "none" , 0 , 0 , 0 ) + , new setTraitIter ( "b05" , "setTraitNS" , "getTrait" , null , animm1 , "accumulate" , "none" , "none" , 0 , 0 , 0 ) + , new setTraitIter ( "b06" , "setTraitNS" , "getTraitNS" , null , animm1 , "accumulate" , "none" , "none" , 0 , 0 , 0 ) + , new setTraitIter ( "b07" , "setTraitNS" , "getPresentationTrait" , null , animm1 , "accumulate" , "none" , "none" , 0 , 0 , 0 ) + , new setTraitIter ( "b08" , "setTraitNS" , "getPresentationTraitNS" , null , animm1 , "accumulate" , "none" , "none" , 0 , 0 , 0 ) + , new setTraitIter ( "b09" , "setTrait" , 0 , 0 , animm2 , "accumulate" , "none" , 0 , 0 , DOMException.NOT_SUPPORTED_ERR , "NOT_SUPPORTED_ERR" ) + , new setTraitIter ( "b10" , "setTraitNS" , 0 , null , animm2 , "accumulate" , "none" , 0 , 0 , DOMException.NOT_SUPPORTED_ERR , "NOT_SUPPORTED_ERR" ) + ] + ); + } + catch(e) + { + isPassed = false; + drawString("Main: Unexpected exception thrown!" ); + drawStatusBox( false ); + } + + if( isPassed ) + { + var status = document.getElementById("UnitTestStatus"); + status.setTrait("#text", "passed"); + status.setAttribute("fill", "#0C0"); + } + + + + + + $Revision: 1.8 $ + + + + + diff --git a/test/W3C_SVG_12_TinyTestSuite_beta/svggen/udom-svgcolor-201-t.svg b/test/W3C_SVG_12_TinyTestSuite_beta/svggen/udom-svgcolor-201-t.svg new file mode 100755 index 00000000..9e00d82b --- /dev/null +++ b/test/W3C_SVG_12_TinyTestSuite_beta/svggen/udom-svgcolor-201-t.svg @@ -0,0 +1,100 @@ + + + + + + + + + + $RCSfile: udom-svgcolor-201-t.svg,v $ + + + + + + + + + + + + var svg_ns = "http://www.w3.org/2000/svg"; + var xlink_ns = "http://www.w3.org/1999/xlink"; + + var count=0; + var topsvg = document.documentElement; + var startY = 80; + var rowHeight = 20; + var isPassed = true; + + function drawString( text ) + { + node_to_insert=document.createElementNS(svg_ns,"text"); + node_to_insert.setAttributeNS(null,"x","25"); + var yVal = startY + count++ * rowHeight; + node_to_insert.setAttributeNS(null, "y", yVal.toString() ); + node_to_insert.textContent=text ; + document.getElementById( "test-body-content" ).appendChild(node_to_insert); + } + + color = topsvg.createSVGRGBColor( 0, 0, 0 ); + drawString( "created SVGRGBColor [ " + color.red + " , " + color.green + " , " + color.blue + " ];" ); + if ( ( color.red == 0 ) && ( color.green == 0 ) && ( color.blue == 0 ) ) + { + drawString( "Results match expected values." ); + } + else + { + isPassed = false; + drawString( "Results do not match expected values (0, 0, 0)" ); + } + + color.red = 128; + color.green = 90; + color.blue = 100; + + drawString( "set SVGRGBColor to [ " + color.red + " , " + color.green + " , " + color.blue + " ];" ); + + if ( ( color.red == 128 ) && ( color.green == 90 ) && ( color.blue == 100 ) ) + { + drawString( "Results match expected values." ); + } + else + { + isPassed = false; + drawString( "Results do not match expected values (128, 90, 100)" ); + } + + if ( isPassed ) + { + var status = document.getElementById("TestStatus"); + status.setTrait("#text", "passed"); + } + + + + + SVGRGBColor - basic test + + + failed + + + + + $Revision: 1.8 $ + + + + + diff --git a/test/W3C_SVG_12_TinyTestSuite_beta/svggen/udom-svglocatable-201-t.svg b/test/W3C_SVG_12_TinyTestSuite_beta/svggen/udom-svglocatable-201-t.svg new file mode 100755 index 00000000..c3cfb6a9 --- /dev/null +++ b/test/W3C_SVG_12_TinyTestSuite_beta/svggen/udom-svglocatable-201-t.svg @@ -0,0 +1,175 @@ + + + + + + + + + + $RCSfile: udom-svglocatable-201-t.svg,v $ + + + + + + + + + + + + var svg_ns = "http://www.w3.org/2000/svg"; + var xlink_ns = "http://www.w3.org/1999/xlink"; + + var count=0; + var topsvg = document.documentElement; + var startY = 80; + var rowHeight = 12; + var fontSize = "10"; + var isPassed = true; + + function drawString( text, color ) +{ + node_to_insert=document.createElementNS(svg_ns,"text"); + node_to_insert.setAttributeNS(null,"font-size",fontSize); + var xVal = 5; + node_to_insert.setAttributeNS(null,"x", xVal.toString() ); + var yVal = startY + count++ * rowHeight; + node_to_insert.setAttributeNS(null, "y", yVal.toString() ); + node_to_insert.setAttributeNS(null, "fill", color ); + node_to_insert.textContent=text ; + document.getElementById( "test-body-content" ).appendChild(node_to_insert); + +} + + function verifyBBox( bbox, x, y, width, height, epsilon ) + { + if + ( + ( Math.abs(bbox.x - x ) < epsilon ) && + ( Math.abs(bbox.y - y ) < epsilon ) && + ( Math.abs(bbox.width - width ) < epsilon ) && + ( Math.abs(bbox.height - height ) < epsilon ) + ) + { + return "green" + } + else + { + isPassed = false; + drawString( "Results do not match expected values ( " + x + ", " + y + ", " + width + ", " + height + " )", "red" ); + return "red" + } + } + + function displayGetBBox( ) + { + drawString( "getBBox()", "black" ); + var bbox = document.getElementById( "group1" ).getBBox( ); + drawString( "[group1] " + bbox.x + " " + bbox.y + " " + bbox.width + " " + bbox.height, verifyBBox( bbox, -70, -60, 230, 200, 1 / 65535 ) ); + + bbox = document.getElementById( "rect1" ).getBBox( ); + drawString( "[rect1] " + bbox.x + " " + bbox.y + " " + bbox.width + " " + bbox.height, verifyBBox( bbox, 10, 10, 50, 50, 1 / 65535 )); + + bbox = document.getElementById( "rect2" ).getBBox( ); + drawString( "[rect2] " + bbox.x + " " + bbox.y + " " + bbox.width + " " + bbox.height , verifyBBox( bbox, 10, 10, 100, 100, 1 / 65535 )); + + bbox = document.getElementById( "group2" ).getBBox( ); + drawString( "[group2] " + bbox.x + " " + bbox.y + " " + bbox.width + " " + bbox.height, verifyBBox( bbox, -80, -80, 230, 200, 1 / 65535 )); + + bbox = document.getElementById( "rect3" ).getBBox( ); + drawString( "[rect3] " + bbox.x + " " + bbox.y + " " + bbox.width + " " + bbox.height , verifyBBox( bbox, 0, 10, 150, 50, 1 / 65535 )); + + bbox = document.getElementById( "circle1" ).getBBox( ); + drawString( "[circle1] " + bbox.x + " " + bbox.y + " " + bbox.width + " " + bbox.height , verifyBBox( bbox, -80, -80, 200, 200, 1 / 65535 )); + + bbox = document.getElementById( "rect4" ).getBBox( ); + drawString( "[rect5] " + bbox.x + " " + bbox.y + " " + bbox.width + " " + bbox.height, verifyBBox( bbox, 10, 10, 400, 0, 1 / 65535 )); + + bbox = document.getElementById( "myUse" ).getBBox( ); + drawString( "[myUse] " + bbox.x + " " + bbox.y + " " + bbox.width + " " + bbox.height , verifyBBox( bbox, -30, -20, 60, 40, 1 / 65535 )); + + bbox = document.getElementById( "thickLine" ).getBBox( ); + drawString( "[thickLine] " + bbox.x + " " + bbox.y + " " + bbox.width + " " + bbox.height , verifyBBox( bbox, 0, 0, 100, 0, 1 / 65535 )); + + } + + displayGetBBox(); + + // remove from tree, get bbox + drawString( "node removed from tree, should still have bounding box", "black" ); + circle = document.getElementById( "circle2" ); + document.getElementById( "body" ).removeChild(circle); + bbox = circle.getBBox( ); + drawString( "[circle2]: " + bbox.x + " " + bbox.y + " " + bbox.width + " " + bbox.height , verifyBBox( bbox, -80, -80, 200, 200, 1 / 65535 )); + + var emptyG = document.getElementById( "emptyG" ); + bbox = emptyG.getBBox( ); + if ( bbox == null ) + { + drawString( "[emptyG]: null" , "green"); + } + else + { + isPassed = false; + drawString( "Results do not match expected values (null)" , "red"); + } + + + if( isPassed ) + { + var status = document.getElementById("TestStatus"); + status.setTrait( "#text", "passed" ); + status.setAttribute( "fill", "green"); + } + + + + + + + + + + + + + + + + + + + + + + + + + + + SVGLocatable.getBBox() - basic test + + + + failed + + + + + $Revision: 1.13 $ + + + + + diff --git a/test/W3C_SVG_12_TinyTestSuite_beta/svggen/udom-svglocatable-202-t.svg b/test/W3C_SVG_12_TinyTestSuite_beta/svggen/udom-svglocatable-202-t.svg new file mode 100755 index 00000000..fa1f8f54 --- /dev/null +++ b/test/W3C_SVG_12_TinyTestSuite_beta/svggen/udom-svglocatable-202-t.svg @@ -0,0 +1,163 @@ + + + + + + + + + + $RCSfile: udom-svglocatable-202-t.svg,v $ + + + + + + + + + + + + + var svg_ns = "http://www.w3.org/2000/svg"; + var xlink_ns = "http://www.w3.org/1999/xlink"; + + var count=0; + var topsvg = document.documentElement; + var startY = 80; + var rowHeight = 12; + var fontSize = "10"; + var isPassed = true; + + function drawString( text, color ) +{ + node_to_insert=document.createElementNS(svg_ns,"text"); + node_to_insert.setAttributeNS(null,"font-size",fontSize); + var xVal = 5; + node_to_insert.setAttributeNS(null,"x", xVal.toString() ); + var yVal = startY + count++ * rowHeight; + node_to_insert.setAttributeNS(null, "y", yVal.toString() ); + node_to_insert.setAttributeNS(null, "fill", color ); + node_to_insert.textContent=text ; + document.getElementById( "test-body-content" ).appendChild(node_to_insert); + +} + + function verifyBBox( bbox, x, y, width, height, epsilon ) + { + if + ( + ( Math.abs(bbox.x - x ) < epsilon ) && + ( Math.abs(bbox.y - y ) < epsilon ) && + ( Math.abs(bbox.width - width ) < epsilon ) && + ( Math.abs(bbox.height - height ) < epsilon ) + ) + { + return "green"; + } + else + { + isPassed = false; + drawString( "Results do not match expected values ( " + x + ", " + y + ", " + width + ", " + height + " )", "red" ); + return "red"; + } + } + + function displayGetScreenBBox( ) + { + drawString( "getScreenBBox()", "black" ); + + var bbox = document.getElementById( "group1" ).getScreenBBox( ); + drawString( "[group1] " + bbox.x + " " + bbox.y + " " + bbox.width + " " + bbox.height, verifyBBox( bbox, 240, 60, 230, 200, 1 / 65535 )); + + bbox = document.getElementById( "rect1" ).getScreenBBox( ); + drawString( "[rect1] " + bbox.x + " " + bbox.y + " " + bbox.width + " " + bbox.height , verifyBBox( bbox, 330, 140, 100, 100, 1 / 65535 )); + + bbox = document.getElementById( "rect2" ).getScreenBBox( ); + drawString( "[rect2] " + bbox.x + " " + bbox.y + " " + bbox.width + " " + bbox.height , verifyBBox( bbox, 320, 130, 100, 100, 1 / 65535 )); + + bbox = document.getElementById( "group2" ).getScreenBBox( ); + drawString( "[group2] " + bbox.x + " " + bbox.y + " " + bbox.width + " " + bbox.height , verifyBBox( bbox, 240, 60, 230, 200, 1 / 65535 )); + + bbox = document.getElementById( "rect3" ).getScreenBBox( ); + drawString( "[rect3] " + bbox.x + " " + bbox.y + " " + bbox.width + " " + bbox.height , verifyBBox( bbox, 320, 150, 150, 50, 1 / 65535 )); + + bbox = document.getElementById( "circle1" ).getScreenBBox( ); + drawString( "[circle1] " + bbox.x + " " + bbox.y + " " + bbox.width + " " + bbox.height , verifyBBox( bbox, 240, 60, 200, 200, 1 / 65535 )); + + bbox = document.getElementById( "circle3" ).getScreenBBox( ); + drawString( "[circle3] " + bbox.x + " " + bbox.y + " " + bbox.width + " " + bbox.height , verifyBBox( bbox, 300, 20, 200, 200, 1 / 65535) ); + + bbox = document.getElementById( "circle4" ).getScreenBBox( ); + drawString( "[circle4] " + bbox.x + " " + bbox.y + " " + bbox.width + " " + bbox.height , verifyBBox( bbox, 600, 20, 200, 200, 1 / 65535 )); + + } + + displayGetScreenBBox(); + + // remove from tree, get bbox + drawString( "node removed from tree, should still have bounding box" , "black"); + circle = document.getElementById( "circle2" ); + document.getElementById( "body-content" ).removeChild(circle); + bbox = circle.getScreenBBox( ); + if ( !bbox ) + { + drawString( "screen bbox is null", "green" ); + } + else + { + isPassed = false; + drawString( "screen bbox is not null! result: " + bbox.x + " " + bbox.y + " " + bbox.width + " " + bbox.height , "red"); + } + + if( isPassed ) + { + var status = document.getElementById("TestStatus"); + status.setTrait( "#text", "passed" ); + status.setAttribute( "fill", "green"); + } + + + + + + + + + + + + + + + + + + + + + + SVGLocatable.getScreenBBox() - basic test + + + + failed + + + + + $Revision: 1.12 $ + + + + diff --git a/test/W3C_SVG_12_TinyTestSuite_beta/svggen/udom-svglocatable-203-t.svg b/test/W3C_SVG_12_TinyTestSuite_beta/svggen/udom-svglocatable-203-t.svg new file mode 100755 index 00000000..21527734 --- /dev/null +++ b/test/W3C_SVG_12_TinyTestSuite_beta/svggen/udom-svglocatable-203-t.svg @@ -0,0 +1,249 @@ + + + + + + + + + + $RCSfile: udom-svglocatable-203-t.svg,v $ + + + + + + + + + + + + + var svg_ns = "http://www.w3.org/2000/svg"; + var xlink_ns = "http://www.w3.org/1999/xlink"; + + var count=0; + var topsvg = document.documentElement; + var startY = 80; + var rowHeight = 12; + var fontSize = "10"; + var isPassed = true; + var eps = 1 / 65535; // epsilon for 16.16 fixpoint + + function drawString( text, color ) +{ + node_to_insert=document.createElementNS(svg_ns,"text"); + node_to_insert.setAttributeNS(null,"font-size",fontSize); + var xVal = 5; + node_to_insert.setAttributeNS(null,"x", xVal.toString() ); + var yVal = startY + count++ * rowHeight; + node_to_insert.setAttributeNS(null, "y", yVal.toString() ); + node_to_insert.setAttributeNS(null, "fill", color ); + node_to_insert.textContent=text ; + document.getElementById( "test-body-content" ).appendChild(node_to_insert); + +} + + function verifyMatrix( matrix, expected, epsilon ) + { + if + ( + ( Math.abs(matrix.getComponent(0) - expected[0]) < epsilon ) && + ( Math.abs(matrix.getComponent(1) - expected[1]) < epsilon ) && + ( Math.abs(matrix.getComponent(2) - expected[2]) < epsilon ) && + ( Math.abs(matrix.getComponent(3) - expected[3]) < epsilon ) && + ( Math.abs(matrix.getComponent(4) - expected[4]) < epsilon ) && + ( Math.abs(matrix.getComponent(5) - expected[5]) < epsilon ) + ) + { + return "green"; + } + else + { + isPassed = false; + drawString( "Results do not match expected values ( " + + expected[0].toString() + " " + + expected[1].toString() + " " + + expected[2].toString() + " " + + expected[3].toString() + " " + + expected[4].toString() + " " + + expected[5].toString() + " )", "red" ); + return "red" + } + } + + function displayScreenCTM() + { + var expected; + + drawString( "getScreenCTM()", "black" ); + drawString ("", "black"); + + var matrix = document.getElementById( "group1" ).getScreenCTM( ); + expected = [ 1, 0, 0, 1, 310, 120 ]; + drawString( "[group1] " + matrix.getComponent(0).toString() + " " + + matrix.getComponent(1).toString() + " " + + matrix.getComponent(2).toString() + " " + + matrix.getComponent(3).toString() + " " + + matrix.getComponent(4).toString() + " " + + matrix.getComponent(5).toString() , verifyMatrix( matrix, expected, eps )); + ; + + var matrix = document.getElementById( "rect1" ).getScreenCTM( ); + expected = [ 2, 0, 0, 2, 310, 120 ]; + drawString( "[rect1] " + matrix.getComponent(0).toString() + " " + + matrix.getComponent(1).toString() + " " + + matrix.getComponent(2).toString() + " " + + matrix.getComponent(3).toString() + " " + + matrix.getComponent(4).toString() + " " + + matrix.getComponent(5).toString() , verifyMatrix( matrix, expected, eps )); + + + var matrix = document.getElementById( "rect2" ).getScreenCTM( ); + expected = [ 1, 0, 0, 1, 310, 120 ]; + drawString( "[rect2] " + matrix.getComponent(0).toString() + " " + + matrix.getComponent(1).toString() + " " + + matrix.getComponent(2).toString() + " " + + matrix.getComponent(3).toString() + " " + + matrix.getComponent(4).toString() + " " + + matrix.getComponent(5).toString() , verifyMatrix( matrix, expected, eps )); + + var matrix = document.getElementById( "group2" ).getScreenCTM( ); + expected = [ 1, 0, 0, 1, 320, 140 ]; + drawString( "[group2] " + matrix.getComponent(0).toString() + " " + + matrix.getComponent(1).toString() + " " + + matrix.getComponent(2).toString() + " " + + matrix.getComponent(3).toString() + " " + + matrix.getComponent(4).toString() + " " + + matrix.getComponent(5).toString() , verifyMatrix( matrix, expected, eps )); + + var matrix = document.getElementById( "rect3" ).getScreenCTM( ); + expected = [ 1, 0, 0, 1, 320, 140 ]; + drawString("[rect3] " + matrix.getComponent(0).toString() + " " + + matrix.getComponent(1).toString() + " " + + matrix.getComponent(2).toString() + " " + + matrix.getComponent(3).toString() + " " + + matrix.getComponent(4).toString() + " " + + matrix.getComponent(5).toString() , verifyMatrix( matrix, expected, eps )); + + var matrix = document.getElementById( "circle1" ).getScreenCTM( ); + expected = [ 1, 0, 0, 1, 320, 140 ]; + drawString( "[circle1] " + matrix.getComponent(0).toString() + " " + + matrix.getComponent(1).toString() + " " + + matrix.getComponent(2).toString() + " " + + matrix.getComponent(3).toString() + " " + + matrix.getComponent(4).toString() + " " + + matrix.getComponent(5).toString() , verifyMatrix( matrix, expected, eps )); + } + + displayScreenCTM(); + + var matrix = document.getElementById( "rect5" ).getScreenCTM( ); + expected = [ 0.707118, 0.707118, -0.707103, 0.707118, 197.57355, -116.98516 ]; + drawString( "[rect5] " + matrix.getComponent(0).toFixed(3) + " " + + matrix.getComponent(1).toFixed(3) + " " + + matrix.getComponent(2).toFixed(3) + " " + + matrix.getComponent(3).toFixed(3) + " " + + matrix.getComponent(4).toFixed(3) + " " + + matrix.getComponent(5).toFixed(3), verifyMatrix( matrix, expected, 0.004 )); + + + var matrix = document.getElementById( "circle2" ).getScreenCTM( ); + expected = [ 1, 0, 0, 1, 300, 100 ]; + drawString( "[circle2] " + matrix.getComponent(0).toString() + " " + + matrix.getComponent(1).toString() + " " + + matrix.getComponent(2).toString() + " " + + matrix.getComponent(3).toString() + " " + + matrix.getComponent(4).toString() + " " + + matrix.getComponent(5).toString() , verifyMatrix( matrix, expected, eps )); + + var matrix = document.getElementById( "circle3" ).getScreenCTM( ); + expected = [ 1, 0, 0, 1, 300, 100 ]; + drawString( "[circle3] " + matrix.getComponent(0).toString() + " " + + matrix.getComponent(1).toString() + " " + + matrix.getComponent(2).toString() + " " + + matrix.getComponent(3).toString() + " " + + matrix.getComponent(4).toString() + " " + + matrix.getComponent(5).toString() , verifyMatrix( matrix, expected, eps )); + + var matrix1 = topsvg.createSVGMatrixComponents(1, 0, 0, 1, 10, 10); + var matrix2 = topsvg.createSVGMatrixComponents(1, 0, 0, 1, 20, 30); + document.getElementById( "group3" ).setMatrixTrait("transform", matrix1); + document.getElementById( "rect4" ).setMatrixTrait("transform", matrix2); + var matrix = document.getElementById( "rect4" ).getScreenCTM( ); + expected = [ 1, 0, 0, 1, 330, 140 ]; + drawString( "[rect4] " + matrix.getComponent(0).toString() + " " + + matrix.getComponent(1).toString() + " " + + matrix.getComponent(2).toString() + " " + + matrix.getComponent(3).toString() + " " + + matrix.getComponent(4).toString() + " " + + matrix.getComponent(5).toString(), verifyMatrix( matrix, expected, eps )); + + // Expected matrix is the first multiplied by the second matrix. + matrix = matrix1.mMultiply(matrix2); + expected = [ 1, 0, 0, 1, 30, 40 ]; + drawString( "[matrix1*matrix2] " + matrix.getComponent(0).toString() + " " + + matrix.getComponent(1).toString() + " " + + matrix.getComponent(2).toString() + " " + + matrix.getComponent(3).toString() + " " + + matrix.getComponent(4).toString() + " " + + matrix.getComponent(5).toString(), verifyMatrix( matrix, expected, eps )); + + if( isPassed ) + { + var status = document.getElementById("TestStatus"); + status.setTrait( "#text", "passed" ); + } + + + + + + + + + + + + + + + + + + + + + + + + + + + + SVGLocatable.getScreenCTM() - basic test + + + + + + failed + + + + $Revision: 1.9 $ + + + + diff --git a/test/W3C_SVG_12_TinyTestSuite_beta/svggen/udom-svgmatrix-201-t.svg b/test/W3C_SVG_12_TinyTestSuite_beta/svggen/udom-svgmatrix-201-t.svg new file mode 100755 index 00000000..2d756a04 --- /dev/null +++ b/test/W3C_SVG_12_TinyTestSuite_beta/svggen/udom-svgmatrix-201-t.svg @@ -0,0 +1,138 @@ + + + + + + + + + + $RCSfile: udom-svgmatrix-201-t.svg,v $ + + + + + + + + + + + + var svg_ns = "http://www.w3.org/2000/svg"; + var xlink_ns = "http://www.w3.org/1999/xlink"; + + var count=0; + var topsvg = document.documentElement; + var startY = 80; + var rowHeight = 20; + var isPassed = true; + + function drawString( text ) + { + node_to_insert=document.createElementNS(svg_ns,"text"); + node_to_insert.setAttributeNS(null,"x","25"); + var yVal = startY + count++ * rowHeight; + node_to_insert.setAttributeNS(null, "y", yVal.toString() ); + node_to_insert.textContent=text ; + document.getElementById( "test-body-content" ).appendChild(node_to_insert); + } + + function drawResultString( text, result ) + { + node_to_insert=document.createElementNS(svg_ns,"text"); + node_to_insert.setAttributeNS(null,"x","25"); + node_to_insert.setAttributeNS(null,"font-size",rowHeight*0.8); + if (result) + { + node_to_insert.setAttributeNS(null, "fill", "green"); + } + else + { + node_to_insert.setAttributeNS(null, "fill", "red"); + } + var yVal = startY + count++ * rowHeight; + node_to_insert.setAttributeNS(null, "y", yVal.toString() ); + node_to_insert.textContent=text ; + document.getElementById( "test-body-content" ).appendChild(node_to_insert); + } + + function verifyMatrix( matrix, expected, epsilon ) + { + if + ( + ( Math.abs(matrix.getComponent(0) - expected[0]) < epsilon ) && + ( Math.abs(matrix.getComponent(1) - expected[1]) < epsilon ) && + ( Math.abs(matrix.getComponent(2) - expected[2]) < epsilon ) && + ( Math.abs(matrix.getComponent(3) - expected[3]) < epsilon ) && + ( Math.abs(matrix.getComponent(4) - expected[4]) < epsilon ) && + ( Math.abs(matrix.getComponent(5) - expected[5]) < epsilon ) + ) + { + drawResultString( "Results match expected values.", true ); + } + else + { + isPassed = false; + drawResultString( "Results do not match expected values!", fail ); + drawResultString( "expected: " + expected[0].toString() + " " + + expected[1].toString() + " " + + expected[2].toString() + " " + + expected[3].toString() + " " + + expected[4].toString() + " " + + expected[5].toString(), fail ); + } + } + + try + { + var matrix2 = topsvg.createSVGMatrixComponents( 1, 0, 0, 1, 10, 10 ); + drawString( "created SVGMatrix: " + matrix2.getComponent(0).toString() + " " + + matrix2.getComponent(1).toString() + " " + + matrix2.getComponent(2).toString() + " " + + matrix2.getComponent(3).toString() + " " + + matrix2.getComponent(4).toString() + " " + + matrix2.getComponent(5).toString() ); + + var expected = [ 1, 0, 0, 1, 10, 10 ]; + + verifyMatrix( matrix2, expected, 1 / 65535 ); // epsilon for 16.16 fixpoint + + if ( isPassed ) + { + var status = document.getElementById("TestStatus"); + status.setTrait("#text", "passed"); + status.setAttribute("fill", "green"); + } + } + catch(e) + { + isPassed = false; + drawString("Unexpected exception!"); + } + + + + SVGMatrix.getComponent() - basic test + + + failed + + + + $Revision: 1.6 $ + + + + + + diff --git a/test/W3C_SVG_12_TinyTestSuite_beta/svggen/udom-svgmatrix-202-t.svg b/test/W3C_SVG_12_TinyTestSuite_beta/svggen/udom-svgmatrix-202-t.svg new file mode 100755 index 00000000..1b8e41db --- /dev/null +++ b/test/W3C_SVG_12_TinyTestSuite_beta/svggen/udom-svgmatrix-202-t.svg @@ -0,0 +1,158 @@ + + + + + + + + + + $RCSfile: udom-svgmatrix-202-t.svg,v $ + + + + + + + + + + + + + var svg_ns = "http://www.w3.org/2000/svg"; + var xlink_ns = "http://www.w3.org/1999/xlink"; + + var count=0; + var topsvg = document.documentElement; + var startY = 80; + var rowHeight = 20; + var isPassed = true; + var fontSize = "10"; + + function drawString( text, color ) + { + node_to_insert=document.createElementNS(svg_ns,"text"); + node_to_insert.setAttributeNS(null,"font-size",fontSize); + var xVal = 5; + node_to_insert.setAttributeNS(null,"x", xVal.toString() ); + var yVal = startY + count++ * rowHeight; + node_to_insert.setAttributeNS(null, "y", yVal.toString() ); + node_to_insert.setAttributeNS(null, "fill", color ); + node_to_insert.textContent=text ; + document.getElementById( "test-body-content" ).appendChild(node_to_insert); + + } + + function verifyMatrix( matrix, expected, epsilon ) + { + if + ( + ( Math.abs(matrix.getComponent(0) - expected[0]) < epsilon ) && + ( Math.abs(matrix.getComponent(1) - expected[1]) < epsilon ) && + ( Math.abs(matrix.getComponent(2) - expected[2]) < epsilon ) && + ( Math.abs(matrix.getComponent(3) - expected[3]) < epsilon ) && + ( Math.abs(matrix.getComponent(4) - expected[4]) < epsilon ) && + ( Math.abs(matrix.getComponent(5) - expected[5]) < epsilon ) + ) + { + drawString( "Results match expected values.", "green" ); + } + else + { + isPassed = false; + drawString( "Results do not match expected values!", "red" ); + drawString( "expected: " + expected[0].toString() + " " + + expected[1].toString() + " " + + expected[2].toString() + " " + + expected[3].toString() + " " + + expected[4].toString() + " " + + expected[5].toString(), "black" ); + } + } + + try + { + var matrix2 = topsvg.createSVGMatrixComponents( 1, 0, 0, 1, 10, 10 ); + drawString( "created SVGMatrix (A): " + matrix2.getComponent(0).toString() + " " + + matrix2.getComponent(1).toString() + " " + + matrix2.getComponent(2).toString() + " " + + matrix2.getComponent(3).toString() + " " + + matrix2.getComponent(4).toString() + " " + + matrix2.getComponent(5).toString() , "black"); + var matrix3 = matrix2.inverse(); + drawString( "(A).inverse(): " + matrix3.getComponent(0).toString() + " " + + matrix3.getComponent(1).toString() + " " + + matrix3.getComponent(2).toString() + " " + + matrix3.getComponent(3).toString() + " " + + matrix3.getComponent(4).toString() + " " + + matrix3.getComponent(5).toString() ,"black"); + + var expected = [ 1, 0, 0, 1, -10, -10 ]; + verifyMatrix( matrix3, expected, 1 / 65535 ); // epsilon for 16.16 fixpoint + } + catch(e) + { + isPassed = false; + drawString("Unexpected exception!", "red"); + } + + var matrix2 = topsvg.createSVGMatrixComponents( 0, 0, 0, 0, 10, 10 ); + drawString( "created SVGMatrix (B): " + matrix2.getComponent(0).toString() + " " + + matrix2.getComponent(1).toString() + " " + + matrix2.getComponent(2).toString() + " " + + matrix2.getComponent(3).toString() + " " + + matrix2.getComponent(4).toString() + " " + + matrix2.getComponent(5).toString() , "black"); + try + { + var matrix3 = matrix2.inverse(); + } + catch(e) + { + if(e.code == SVGException.SVG_MATRIX_NOT_INVERTABLE) + { + drawString("(B).inverse(): Got SVG_MATRIX_NOT_INVERTABLE.", "green"); + } + else + { + drawString("(B).inverse(): Expected SVG_MATRIX_NOT_INVERTABLE.", "red"); + isPassed = false; + } + } + + if ( isPassed ) + { + var status = document.getElementById("TestStatus"); + status.setTrait("#text", "passed"); + status.setAttribute("fill", "green"); + } + + + + + + SVGMatrix.inverse() - basic test + + + + failed + + + + + $Revision: 1.7 $ + + + + + diff --git a/test/W3C_SVG_12_TinyTestSuite_beta/svggen/udom-svgmatrix-203-t.svg b/test/W3C_SVG_12_TinyTestSuite_beta/svggen/udom-svgmatrix-203-t.svg new file mode 100755 index 00000000..a1616403 --- /dev/null +++ b/test/W3C_SVG_12_TinyTestSuite_beta/svggen/udom-svgmatrix-203-t.svg @@ -0,0 +1,146 @@ + + + + + + + + + + $RCSfile: udom-svgmatrix-203-t.svg,v $ + + + + + + + + + + + + + var svg_ns = "http://www.w3.org/2000/svg"; + var xlink_ns = "http://www.w3.org/1999/xlink"; + + var count=0; + var topsvg = document.documentElement; + var startY = 80; + var rowHeight = 20; + var isPassed = true; + + function drawString( text , col ) + { + node_to_insert=document.createElementNS(svg_ns,"text"); + node_to_insert.setAttributeNS(null,"x","25"); + var yVal = startY + count++ * rowHeight; + node_to_insert.setAttributeNS(null, "y", yVal.toString() ); + node_to_insert.textContent=text ; + node_to_insert.setAttributeNS(null, "fill", col ); + document.getElementById( "test-body-content" ).appendChild(node_to_insert); + } + + function verifyMatrix( matrix, expected, epsilon ) + { + if + ( + ( Math.abs(matrix.getComponent(0) - expected[0]) < epsilon ) && + ( Math.abs(matrix.getComponent(1) - expected[1]) < epsilon ) && + ( Math.abs(matrix.getComponent(2) - expected[2]) < epsilon ) && + ( Math.abs(matrix.getComponent(3) - expected[3]) < epsilon ) && + ( Math.abs(matrix.getComponent(4) - expected[4]) < epsilon ) && + ( Math.abs(matrix.getComponent(5) - expected[5]) < epsilon ) + ) + { + drawString( "Results match expected values." , "green" ); + } + else + { + isPassed = false; + drawString( "Results do not match expected values!" , "red" ); + drawString( "expected: " + expected[0].toString() + " " + + expected[1].toString() + " " + + expected[2].toString() + " " + + expected[3].toString() + " " + + expected[4].toString() + " " + + expected[5].toString() , "red" ); + } + } + + var matrix; + var matrix2; + var matrix3; + var expected; + + try + { + matrix = topsvg.createSVGMatrixComponents( 1, 0, 0, 1, 5, 5 ); + drawString( "created SVGMatrix (A): " + matrix.getComponent(0).toString() + " " + + matrix.getComponent(1).toString() + " " + + matrix.getComponent(2).toString() + " " + + matrix.getComponent(3).toString() + " " + + matrix.getComponent(4).toString() + " " + + matrix.getComponent(5).toString() , "black" ); + + matrix2 = topsvg.createSVGMatrixComponents( 1, 0, 0, 1, 10, 10 ); + drawString( "created SVGMatrix (B): " + matrix2.getComponent(0).toString() + " " + + matrix2.getComponent(1).toString() + " " + + matrix2.getComponent(2).toString() + " " + + matrix2.getComponent(3).toString() + " " + + matrix2.getComponent(4).toString() + " " + + matrix2.getComponent(5).toString() , "black" ); + + matrix3 = matrix.mMultiply( matrix2 ); + drawString( "(C) = (A).mMultiply(B): " + matrix3.getComponent(0).toString() + " " + + matrix3.getComponent(1).toString() + " " + + matrix3.getComponent(2).toString() + " " + + matrix3.getComponent(3).toString() + " " + + matrix3.getComponent(4).toString() + " " + + matrix3.getComponent(5).toString() , "black" ); + + expected = [ 1, 0, 0, 1, 15, 15 ]; + expected2 = [ 1, 0, 0, 1, 10, 10 ]; + var epsilon = 1 / 65535; // epsilon for 16.16 fixpoint + verifyMatrix( matrix3, expected, epsilon ); + verifyMatrix( matrix, expected, epsilon ); + verifyMatrix( matrix2, expected2, epsilon ); + + if ( isPassed ) + { + var status = document.getElementById("TestStatus"); + status.setTrait("#text", "passed"); + status.setAttribute("fill", "green"); + } + } + catch(e) + { + isPassed = false; + drawString( "Unexpected exception!" , "red" ); + } + + + + + SVGMatrix.mMultiply() - basic test + + + + failed + + + + $Revision: 1.7 $ + + + + + diff --git a/test/W3C_SVG_12_TinyTestSuite_beta/svggen/udom-svgmatrix-204-t.svg b/test/W3C_SVG_12_TinyTestSuite_beta/svggen/udom-svgmatrix-204-t.svg new file mode 100755 index 00000000..a0e69d21 --- /dev/null +++ b/test/W3C_SVG_12_TinyTestSuite_beta/svggen/udom-svgmatrix-204-t.svg @@ -0,0 +1,210 @@ + + + + + + + + + + $RCSfile: udom-svgmatrix-204-t.svg,v $ + + + + + + + + + + + + + var svg_ns = "http://www.w3.org/2000/svg"; + var xlink_ns = "http://www.w3.org/1999/xlink"; + + var count=0; + var topsvg = document.documentElement; + var startY = 65; + var rowHeight = 10; + var isPassed = true; + var eps = 1 / 65535; // 16.16 fixpoint epsilon + + function drawString( text ) + { + node_to_insert=document.createElementNS(svg_ns,"text"); + node_to_insert.setAttributeNS(null,"x","25"); + node_to_insert.setAttributeNS(null,"font-size",rowHeight*0.8); + var yVal = startY + count++ * rowHeight; + node_to_insert.setAttributeNS(null, "y", yVal.toString() ); + node_to_insert.textContent=text ; + document.getElementById( "test-body-content" ).appendChild(node_to_insert); + } + + function drawResultString( text, result ) + { + node_to_insert=document.createElementNS(svg_ns,"text"); + node_to_insert.setAttributeNS(null,"x","25"); + node_to_insert.setAttributeNS(null,"font-size",rowHeight*0.8); + if (result) + { + node_to_insert.setAttributeNS(null, "fill", "green"); + } + else + { + node_to_insert.setAttributeNS(null, "fill", "red"); + } + var yVal = startY + count++ * rowHeight; + node_to_insert.setAttributeNS(null, "y", yVal.toString() ); + node_to_insert.textContent=text ; + document.getElementById( "test-body-content" ).appendChild(node_to_insert); + } + + function verifyMatrix( matrix, expected, epsilon ) + { + if + ( + ( Math.abs(matrix.getComponent(0) - expected[0]) < epsilon ) && + ( Math.abs(matrix.getComponent(1) - expected[1]) < epsilon ) && + ( Math.abs(matrix.getComponent(2) - expected[2]) < epsilon ) && + ( Math.abs(matrix.getComponent(3) - expected[3]) < epsilon ) && + ( Math.abs(matrix.getComponent(4) - expected[4]) < epsilon ) && + ( Math.abs(matrix.getComponent(5) - expected[5]) < epsilon ) + ) + { + drawResultString( "Results match expected values.", true ); + } + else + { + isPassed = false; + drawResultString( "Results do not match expected values!", false ); + drawResultString( "expected: " + expected[0].toString() + " " + + expected[1].toString() + " " + + expected[2].toString() + " " + + expected[3].toString() + " " + + expected[4].toString() + " " + + expected[5].toString(), false ); + } + } + + try + { + var matrix2 = topsvg.createSVGMatrixComponents( 1, 0, 0, 1, 10, 10 ); + drawString( "created SVGMatrix (A): " + matrix2.getComponent(0).toString() + " " + + matrix2.getComponent(1).toString() + " " + + matrix2.getComponent(2).toString() + " " + + matrix2.getComponent(3).toString() + " " + + matrix2.getComponent(4).toString() + " " + + matrix2.getComponent(5).toString() ); + + var matrix7 = matrix2.mRotate( 90 ); + drawString( "(B) = (A).mRotate(90): " + matrix7.getComponent(0).toString() + " " + + matrix7.getComponent(1).toString() + " " + + matrix7.getComponent(2).toString() + " " + + matrix7.getComponent(3).toString() + " " + + matrix7.getComponent(4).toString() + " " + + matrix7.getComponent(5).toString() ); + + var expected = [ 0, 1, -1, 0, 10, 10 ]; + verifyMatrix( matrix7, expected, eps ); + verifyMatrix( matrix2, expected, eps ); + + var matrix8 = matrix7.mRotate( 90 ); + drawString( "(C) = (B).mRotate(90): " + matrix8.getComponent(0).toString() + " " + + matrix8.getComponent(1).toString() + " " + + matrix8.getComponent(2).toString() + " " + + matrix8.getComponent(3).toString() + " " + + matrix8.getComponent(4).toString() + " " + + matrix8.getComponent(5).toString() ); + + expected = [ -1, 0, 0, -1, 10, 10 ]; + verifyMatrix( matrix8, expected, eps ); + verifyMatrix( matrix7, expected, eps ); + + var matrix9 = matrix8.mRotate( 90 ); + drawString( "(D) = (C).mRotate(90): " + matrix9.getComponent(0).toString() + " " + + matrix9.getComponent(1).toString() + " " + + matrix9.getComponent(2).toString() + " " + + matrix9.getComponent(3).toString() + " " + + matrix9.getComponent(4).toString() + " " + + matrix9.getComponent(5).toString() ); + + expected = [ 0, -1, 1, 0, 10, 10 ]; + verifyMatrix( matrix9, expected, eps ); + verifyMatrix( matrix8, expected, eps ); + + var matrix3 = matrix9.mRotate( 90 ); + drawString( "(E) = (D).mRotate(90): " + matrix3.getComponent(0).toString() + " " + + matrix3.getComponent(1).toString() + " " + + matrix3.getComponent(2).toString() + " " + + matrix3.getComponent(3).toString() + " " + + matrix3.getComponent(4).toString() + " " + + matrix3.getComponent(5).toString() ); + + expected = [ 1, 0, 0, 1, 10, 10 ]; + verifyMatrix( matrix3, expected, eps ); + verifyMatrix( matrix9, expected, eps ); + + var matrix4 = matrix3.mRotate( 450 ); + drawString( "(B) = (E).mRotate(450): " + matrix4.getComponent(0).toString() + " " + + matrix4.getComponent(1).toString() + " " + + matrix4.getComponent(2).toString() + " " + + matrix4.getComponent(3).toString() + " " + + matrix4.getComponent(4).toString() + " " + + matrix4.getComponent(5).toString() ); + + expected = [ 0, 1, -1, 0, 10, 10 ]; + verifyMatrix( matrix4, expected, eps ); + verifyMatrix( matrix9, expected, eps ); + + var matrix5 = matrix9.mRotate( -540 ); + drawString( "(D) = (B).mRotate(-540): " + matrix5.getComponent(0).toString() + " " + + matrix5.getComponent(1).toString() + " " + + matrix5.getComponent(2).toString() + " " + + matrix5.getComponent(3).toString() + " " + + matrix5.getComponent(4).toString() + " " + + matrix5.getComponent(5).toString() ); + + expected = [ 0, -1, 1, 0, 10, 10 ]; + verifyMatrix( matrix5, expected, eps ); + verifyMatrix( matrix9, expected, eps ); + + + if ( isPassed ) + { + var status = document.getElementById("TestStatus"); + status.setTrait("#text", "passed"); + status.setAttribute("fill", "green"); + } + } + catch(e) + { + isPassed = false; + drawString("Unexpected exception!"); + } + + + + SVGMatrix.mRotate() - basic test + + + + failed + + + + $Revision: 1.7 $ + + + + + diff --git a/test/W3C_SVG_12_TinyTestSuite_beta/svggen/udom-svgmatrix-205-t.svg b/test/W3C_SVG_12_TinyTestSuite_beta/svggen/udom-svgmatrix-205-t.svg new file mode 100755 index 00000000..49960769 --- /dev/null +++ b/test/W3C_SVG_12_TinyTestSuite_beta/svggen/udom-svgmatrix-205-t.svg @@ -0,0 +1,139 @@ + + + + + + + + + + $RCSfile: udom-svgmatrix-205-t.svg,v $ + + + + + + + + + + + + + var svg_ns = "http://www.w3.org/2000/svg"; + var xlink_ns = "http://www.w3.org/1999/xlink"; + + var count=0; + var topsvg = document.documentElement; + var startY = 80; + var rowHeight = 20; + var isPassed = true; + var eps = 1 / 65535; // 16.16 fixpoint epsilon + + function drawString( text, col ) + { + node_to_insert=document.createElementNS(svg_ns,"text"); + node_to_insert.setAttributeNS(null,"x","25"); + var yVal = startY + count++ * rowHeight; + node_to_insert.setAttributeNS(null, "y", yVal.toString() ); + node_to_insert.textContent=text ; + node_to_insert.setAttributeNS(null, "fill", col); + document.getElementById( "test-body-content" ).appendChild(node_to_insert); + } + + function verifyMatrix( matrix, expected, epsilon ) + { + if + ( + ( Math.abs(matrix.getComponent(0) - expected[0]) < epsilon ) && + ( Math.abs(matrix.getComponent(1) - expected[1]) < epsilon ) && + ( Math.abs(matrix.getComponent(2) - expected[2]) < epsilon ) && + ( Math.abs(matrix.getComponent(3) - expected[3]) < epsilon ) && + ( Math.abs(matrix.getComponent(4) - expected[4]) < epsilon ) && + ( Math.abs(matrix.getComponent(5) - expected[5]) < epsilon ) + ) + { + drawString( "Results match expected values.", "green" ); + } + else + { + isPassed = false; + drawString( "Results do not match expected values!", "red" ); + drawString( "expected: " + expected[0].toString() + " " + + expected[1].toString() + " " + + expected[2].toString() + " " + + expected[3].toString() + " " + + expected[4].toString() + " " + + expected[5].toString(), "red" ); + } + } + + try + { + var matrix2 = topsvg.createSVGMatrixComponents( 1, 0, 0, 1, 10, 10 ); + drawString( "created SVGMatrix (A): " + matrix2.getComponent(0).toString() + " " + + matrix2.getComponent(1).toString() + " " + + matrix2.getComponent(2).toString() + " " + + matrix2.getComponent(3).toString() + " " + + matrix2.getComponent(4).toString() + " " + + matrix2.getComponent(5).toString(), "black" ); + + var matrix6 = matrix2.mScale( 2 ); + drawString( "(B) = (A).mScale(2): " + matrix6.getComponent(0).toString() + " " + + matrix6.getComponent(1).toString() + " " + + matrix6.getComponent(2).toString() + " " + + matrix6.getComponent(3).toString() + " " + + matrix6.getComponent(4).toString() + " " + + matrix6.getComponent(5).toString(), "black" ); + + var expected = [ 2, 0, 0, 2, 10, 10 ]; + verifyMatrix( matrix6, expected, eps ); + + var matrix7 = matrix6.mScale( 0.5 ); + drawString( "(C) = (B).mScale(0.5): " + matrix7.getComponent(0).toString() + " " + + matrix7.getComponent(1).toString() + " " + + matrix7.getComponent(2).toString() + " " + + matrix7.getComponent(3).toString() + " " + + matrix7.getComponent(4).toString() + " " + + matrix7.getComponent(5).toString(), "black" ); + + var expected = [ 1, 0, 0, 1, 10, 10 ]; + verifyMatrix( matrix7, expected, eps ); + + if ( isPassed ) + { + var status = document.getElementById("TestStatus"); + status.setTrait("#text", "passed"); + status.setAttribute("fill", "green"); + } + } + catch(e) + { + isPassed = false; + drawString("Unexpected exception!", "red"); + } + + + + SVGMatrix.mScale() - basic test + + + failed + + + + $Revision: 1.7 $ + + + + + diff --git a/test/W3C_SVG_12_TinyTestSuite_beta/svggen/udom-svgmatrix-206-t.svg b/test/W3C_SVG_12_TinyTestSuite_beta/svggen/udom-svgmatrix-206-t.svg new file mode 100755 index 00000000..6a948957 --- /dev/null +++ b/test/W3C_SVG_12_TinyTestSuite_beta/svggen/udom-svgmatrix-206-t.svg @@ -0,0 +1,140 @@ + + + + + + + + + + $RCSfile: udom-svgmatrix-206-t.svg,v $ + + + + + + + + + + + + + var svg_ns = "http://www.w3.org/2000/svg"; + var xlink_ns = "http://www.w3.org/1999/xlink"; + + var count=0; + var topsvg = document.documentElement; + var startY = 80; + var rowHeight = 20; + var isPassed = true; + var eps = 1 / 65535; // epsilon for 16.16 fixpoint + + function drawString( text, col ) + { + node_to_insert=document.createElementNS(svg_ns,"text"); + node_to_insert.setAttributeNS(null,"x","25"); + var yVal = startY + count++ * rowHeight; + node_to_insert.setAttributeNS(null, "y", yVal.toString() ); + node_to_insert.textContent=text ; + node_to_insert.setAttributeNS(null, "fill", col); + document.getElementById( "test-body-content" ).appendChild(node_to_insert); + } + + function verifyMatrix( matrix, expected, epsilon ) + { + if + ( + ( Math.abs(matrix.getComponent(0) - expected[0]) < epsilon ) && + ( Math.abs(matrix.getComponent(1) - expected[1]) < epsilon ) && + ( Math.abs(matrix.getComponent(2) - expected[2]) < epsilon ) && + ( Math.abs(matrix.getComponent(3) - expected[3]) < epsilon ) && + ( Math.abs(matrix.getComponent(4) - expected[4]) < epsilon ) && + ( Math.abs(matrix.getComponent(5) - expected[5]) < epsilon ) + ) + { + drawString( "Results match expected values.", "green" ); + } + else + { + isPassed = false; + drawString( "Results do not match expected values!", "red" ); + drawString( "expected: " + expected[0].toString() + " " + + expected[1].toString() + " " + + expected[2].toString() + " " + + expected[3].toString() + " " + + expected[4].toString() + " " + + expected[5].toString(), "red" ); + } + } + + try + { + var matrix2 = topsvg.createSVGMatrixComponents( 1, 0, 0, 1, 10, 10 ); + drawString( "created SVGMatrix (A): " + matrix2.getComponent(0).toString() + " " + + matrix2.getComponent(1).toString() + " " + + matrix2.getComponent(2).toString() + " " + + matrix2.getComponent(3).toString() + " " + + matrix2.getComponent(4).toString() + " " + + matrix2.getComponent(5).toString(), "black" ); + + var matrix5 = matrix2.mTranslate( 10, 10 ); + drawString( "(B) = (A).mTranslate(10,10): " + matrix5.getComponent(0).toString() + " " + + matrix5.getComponent(1).toString() + " " + + matrix5.getComponent(2).toString() + " " + + matrix5.getComponent(3).toString() + " " + + matrix5.getComponent(4).toString() + " " + + matrix5.getComponent(5).toString(), "black" ); + + var expected = [ 1, 0, 0, 1, 20, 20 ]; + verifyMatrix( matrix5, expected, eps ); + + var matrix6 = matrix5.mTranslate( -10, -10 ); + drawString( "(C) = (B).mTranslate(-10,-10): " + matrix6.getComponent(0).toString() + " " + + matrix6.getComponent(1).toString() + " " + + matrix6.getComponent(2).toString() + " " + + matrix6.getComponent(3).toString() + " " + + matrix6.getComponent(4).toString() + " " + + matrix6.getComponent(5).toString(), "black" ); + + expected = [ 1, 0, 0, 1, 10, 10 ]; + verifyMatrix( matrix6, expected, eps ); + + if ( isPassed ) + { + var status = document.getElementById("TestStatus"); + status.setTrait("#text", "passed"); + status.setAttribute("fill", "green"); + } + } + catch(e) + { + isPassed = false; + drawString("Unexpected exception!", "red"); + } + + + + SVGMatrix.mTranslate() - basic test + + + + failed + + + + $Revision: 1.7 $ + + + + + diff --git a/test/W3C_SVG_12_TinyTestSuite_beta/svggen/udom-svgpath-201-t.svg b/test/W3C_SVG_12_TinyTestSuite_beta/svggen/udom-svgpath-201-t.svg new file mode 100755 index 00000000..736ca955 --- /dev/null +++ b/test/W3C_SVG_12_TinyTestSuite_beta/svggen/udom-svgpath-201-t.svg @@ -0,0 +1,250 @@ + + + + + + + + + + $RCSfile: udom-svgpath-201-t.svg,v $ + + + + + + + + + + + + + var svg_ns = "http://www.w3.org/2000/svg"; + var xlink_ns = "http://www.w3.org/1999/xlink"; + + var count=0; + var topsvg = document.documentElement; + var startY = 80; + var rowHeight = 11; + var fontSize = 10; + var isPassed = true; + + function drawColorString( text, color ) + { + node_to_insert=document.createElementNS(svg_ns,"text"); + node_to_insert.setAttributeNS(null,"font-size",fontSize); + var xVal = 5; + node_to_insert.setAttributeNS(null,"x", xVal.toString() ); + var yVal = startY + count++ * rowHeight; + node_to_insert.setAttributeNS(null, "y", yVal.toString() ); + node_to_insert.setAttributeNS(null, "fill", color ); + node_to_insert.textContent=text ; + document.getElementById( "test-body-content" ).appendChild(node_to_insert); + + } + + function drawPathString( text ) + { + node_to_insert=document.createElementNS(svg_ns,"text"); + node_to_insert.setFloatTrait("font-size",fontSize); + node_to_insert.setFloatTrait("x",25); + var yVal =startY + count++ * rowHeight; + node_to_insert.setFloatTrait("y",yVal); + node_to_insert.textContent=text; + document.getElementById( "test-body-content" ).appendChild(node_to_insert); + } + + function PathSegment( cmd, numParams ) + { + this.cmd = cmd; + this.numParams = numParams; + } + + function parseSegment( segment ) + { + var segObj = new PathSegment( "UNDEFINED", 2 ); + switch( segment ) + { + case SVGPath.MOVE_TO: + segObj.cmd = "MOVE_TO"; + break; + + case SVGPath.LINE_TO: + segObj.cmd = "LINE_TO"; + break; + + case SVGPath.CURVE_TO: + segObj.cmd = "CURVE_TO"; + segObj.numParams = 6; + break; + + case SVGPath.QUAD_TO: + segObj.cmd = "QUAD_TO"; + segObj.numParams = 4; + break; + + case SVGPath.CLOSE: + segObj.numParams = 0; + segObj.cmd = "CLOSE" + break; + } + return segObj; + } + + function drawSVGPath( path ) + { + drawPathString( "numberOfSegments: " + path.numberOfSegments.toString() ); + + for( i = 0; i < path.numberOfSegments; i++ ) + { + var segment = path.getSegment( i ); + var segObj = parseSegment( segment ); + var paramStr = ""; + for ( j = 0; j < segObj.numParams; j++ ) + { + paramStr += " " + path.getSegmentParam( i, j ); + } + drawPathString( "segment " + i.toString() + ": " + segObj.cmd + " " + paramStr ); + } + } + + function expectedValue( cmd, numParams, params ) + { + this.cmd = cmd; + this.numParams = numParams; + this.params = params; + } + + /* expected = array of expectedValue */ + function verifyPath( path, expected, numExpected ) + { + if ( numExpected != path.numberOfSegments ) + { + isPassed = false; + drawColorString( "Results do not match expected values!", "red" ); + drawColorString( "expected number of segments = " + numExpected.toString(), "black" ); + return; + } + + for ( var i = 0; i < path.numberOfSegments; ++i ) + { + var segment = path.getSegment( i ); + var segObj = parseSegment( segment ); + if ( segObj.cmd != expected[i].cmd ) + { + isPassed = false; + drawColorString( "Results do not match expected values!", "red" ); + drawColorString( "expected[" + i.toString() + "].cmd = " + expected[i].cmd, "black" ); + return; + } + else + if ( segObj.numParams != expected[i].numParams ) + { + isPassed = false; + drawColorString( "Results do not match expected values!", "red" ); + drawColorString( "expected[" + i.toString() + "].numParams = " + expected[i].numParams.toString(), "black" ); + return; + } + else + { + for ( var j = 0; j < segObj.numParams; j++ ) + { + if ( path.getSegmentParam( i, j ) != expected[i].params[j] ) + { + isPassed = false; + drawColorString( "Results do not match expected values!", "red" ); + drawColorString( "expected[" + i.toString() + "].params[" + j.toString() + "] = " + expected[i].params[j].toString(), "black" ); + return; + } + } + } + } + + drawColorString( "Results match expected values.", "green" ); + } + + var expectedNumSegments; + var expected; + try + { + path = topsvg.createSVGPath( ); + drawColorString( "created SVGPath", "black" ); + path.moveTo( 372, 130 ); + drawColorString( "added moveTo[372, 130]", "black" ); + + path.quadTo( 272, 50, 422, 10 ); + drawColorString( "added quadTo[272, 50, 422, 10]", "black" ); + + path.close(); + drawColorString( "added close", "black" ); + + path.moveTo( 442, 130 ); + drawColorString( "added moveTo[442, 130]", "black" ); + + path.quadTo( 492, -20, 362, 40 ); + drawColorString( "added quadTo[492, -20, 362, 40]", "black" ); + + path.close(); + drawColorString( "added close", "black" ); + + drawSVGPath( path ); + + expectedNumSegments = 6; + expected = + [ + new expectedValue( "MOVE_TO", 2, [ 372, 130 ] ), + new expectedValue( "QUAD_TO", 4, [ 272, 50, 422, 10 ] ), + new expectedValue( "CLOSE", 0, [ ] ), + new expectedValue( "MOVE_TO", 2, [ 442, 130 ] ), + new expectedValue( "QUAD_TO", 4, [ 492, -20, 362, 40 ] ), + new expectedValue( "CLOSE", 0, [ ] ) + ]; + verifyPath( path, expected, expectedNumSegments ); + + document.getElementById( "path1" ).setPathTrait( "d", path ); + drawColorString( "set path trait", "black" ); + + if ( isPassed ) + { + var status = document.getElementById("TestStatus"); + status.setTrait("#text", "passed"); + status.setAttribute("fill", "green") + } + } + catch(e) + { + isPassed = false; + drawColorString("Unexpected exception!", "red"); + } + + + + SVGPath - close, moveTo, quadTo, + getSegment, getSegmentParam + + + + + + + + failed + + + + $Revision: 1.8 $ + + + + + diff --git a/test/W3C_SVG_12_TinyTestSuite_beta/svggen/udom-svgpath-202-t.svg b/test/W3C_SVG_12_TinyTestSuite_beta/svggen/udom-svgpath-202-t.svg new file mode 100755 index 00000000..8145e80d --- /dev/null +++ b/test/W3C_SVG_12_TinyTestSuite_beta/svggen/udom-svgpath-202-t.svg @@ -0,0 +1,246 @@ + + + + + + + + + + $RCSfile: udom-svgpath-202-t.svg,v $ + + + + + + + + + + + + + var svg_ns = "http://www.w3.org/2000/svg"; + var xlink_ns = "http://www.w3.org/1999/xlink"; + + var count=0; + var topsvg = document.documentElement; + var startY = 80; + var rowHeight = 11; + var fontSize = 10; + var isPassed = true; + var epsilon = 1 / 65535; // 16.16 fixpoint epsilon + + function drawColorString( text, color ) + { + node_to_insert=document.createElementNS(svg_ns,"text"); + node_to_insert.setAttributeNS(null,"font-size",fontSize); + var xVal = 5; + node_to_insert.setAttributeNS(null,"x", xVal.toString() ); + var yVal = startY + count++ * rowHeight; + node_to_insert.setAttributeNS(null, "y", yVal.toString() ); + node_to_insert.setAttributeNS(null, "fill", color ); + node_to_insert.textContent=text ; + document.getElementById( "test-body-content" ).appendChild(node_to_insert); + + } + + function drawPathString( text ) + { + node_to_insert=document.createElementNS(svg_ns,"text"); + node_to_insert.setFloatTrait("font-size",fontSize); + node_to_insert.setFloatTrait("x",25); + var yVal =startY + count++ * rowHeight; + node_to_insert.setFloatTrait("y",yVal); + node_to_insert.textContent=text ; + document.getElementById( "test-body-content" ).appendChild(node_to_insert); + } + + function PathSegment( cmd, numParams ) + { + this.cmd = cmd; + this.numParams = numParams; + } + + function parseSegment( segment ) + { + var segObj = new PathSegment( "UNDEFINED", 2 ); + switch( segment ) + { + case SVGPath.MOVE_TO: + segObj.cmd = "MOVE_TO"; + break; + + case SVGPath.LINE_TO: + segObj.cmd = "LINE_TO"; + break; + + case SVGPath.CURVE_TO: + segObj.cmd = "CURVE_TO"; + segObj.numParams = 6; + break; + + case SVGPath.QUAD_TO: + segObj.cmd = "QUAD_TO"; + segObj.numParams = 4; + break; + + case SVGPath.CLOSE: + segObj.numParams = 0; + segObj.cmd = "CLOSE" + break; + } + return segObj; + } + + function drawSVGPath( path ) + { + drawPathString( "numberOfSegments: " + path.numberOfSegments.toString() ); + + for( i = 0; i < path.numberOfSegments; i++ ) + { + var segment = path.getSegment( i ); + var segObj = parseSegment( segment ); + var paramStr = ""; + for ( j = 0; j < segObj.numParams; j++ ) + { + paramStr += " " + path.getSegmentParam( i, j ); + } + drawPathString( "segment " + i.toString() + ": " + segObj.cmd + " " + paramStr ); + } + } + + function expectedValue( cmd, numParams, params ) + { + this.cmd = cmd; + this.numParams = numParams; + this.params = params; + } + + /* expected = array of expectedValue */ + function verifyPath( path, expected, numExpected ) + { + if ( numExpected != path.numberOfSegments ) + { + isPassed = false; + drawColorString( "Results do not match expected values!", "red" ); + drawColorString( "expected number of segments = " + numExpected.toString(), "black" ); + return; + } + + for ( var i = 0; i < path.numberOfSegments; ++i ) + { + var segment = path.getSegment( i ); + var segObj = parseSegment( segment ); + if ( segObj.cmd != expected[i].cmd ) + { + isPassed = false; + drawColorString( "Results do not match expected values!", "red" ); + drawColorString( "expected[" + i.toString() + "].cmd = " + expected[i].cmd, "black" ); + return; + } + else + if ( segObj.numParams != expected[i].numParams ) + { + isPassed = false; + drawColorString( "Results do not match expected values!" , "red"); + drawColorString( "expected[" + i.toString() + "].numParams = " + expected[i].numParams.toString(), "black" ); + return; + } + else + { + for ( var j = 0; j < segObj.numParams; j++ ) + { + if ( Math.abs(path.getSegmentParam( i, j ) - expected[i].params[j]) > epsilon ) + { + isPassed = false; + drawColorString( "Results do not match expected values!" , "red"); + drawColorString( "expected[" + i.toString() + "].params[" + j.toString() + "] = " + expected[i].params[j].toString(), "black" ); + drawColorString( "actual[" + i.toString() + "].params[" + j.toString() + "] = " + path.getSegmentParam( i, j ) , "black"); + return; + } + } + } + } + + drawColorString( "Results match expected values.", "green" ); + } + + var expectedNumSegments; + var expected; + try + { + path = topsvg.createSVGPath( ); + drawColorString( "created SVGPath" , "black"); + + path.moveTo( 360, 325 ); + drawColorString( "added moveTo[360, 325]" , "black"); + + path.curveTo( 320, 265, 455, 225, 440, 325 ); + drawColorString( "added curveTo[320, 265, 455, 225, 440, 325]", "black" ); + + path.lineTo( 360, 325 ); + drawColorString( "added lineTo[360, 325]", "black" ); + + path.close(); + drawColorString( "added close", "black" ); + + drawSVGPath( path ); + + expectedNumSegments = 4; + expected = + [ + new expectedValue( "MOVE_TO", 2, [ 360, 325 ] ), + new expectedValue( "CURVE_TO", 6, [ 320, 265, 455, 225, 440, 325 ] ), + new expectedValue( "LINE_TO", 2, [ 360, 325 ] ), + new expectedValue( "CLOSE", 0, [] ) + ]; + verifyPath( path, expected, expectedNumSegments ); + + document.getElementById( "path1" ).setPathTrait( "d", path ); + drawColorString( "set path trait", "black" ); + + if ( isPassed ) + { + var status = document.getElementById("TestStatus"); + status.setTrait("#text", "passed"); + status.setAttribute("fill", "green"); + } + } + catch(e) + { + isPassed = false; + drawColorString("Unexpected exception!", "red"); + } + + + + + SVGPath - lineTo, curveTo + getSegment, getSegmentParam + + + + + + + + failed + + + + $Revision: 1.14 $ + + + + + diff --git a/test/W3C_SVG_12_TinyTestSuite_beta/svggen/udom-svgpoint-201-t.svg b/test/W3C_SVG_12_TinyTestSuite_beta/svggen/udom-svgpoint-201-t.svg new file mode 100755 index 00000000..c3b0453c --- /dev/null +++ b/test/W3C_SVG_12_TinyTestSuite_beta/svggen/udom-svgpoint-201-t.svg @@ -0,0 +1,127 @@ + + + + + + + + + + $RCSfile: udom-svgpoint-201-t.svg,v $ + + + + + + + + + + + + var svg_ns = "http://www.w3.org/2000/svg"; + var xlink_ns = "http://www.w3.org/1999/xlink"; + + var count=0; + var topsvg = document.documentElement; + var startY = 60; + var rowHeight = 11; + var fontSize = "10"; + var isPassed = true; + + function drawString( text, color ) + { + node_to_insert=document.createElementNS(svg_ns,"text"); + node_to_insert.setAttributeNS(null,"font-size",fontSize); + var xVal = 5; + node_to_insert.setAttributeNS(null,"x", xVal.toString() ); + var yVal = startY + count++ * rowHeight; + node_to_insert.setAttributeNS(null, "y", yVal.toString() ); + node_to_insert.setAttributeNS(null, "fill", color ); + node_to_insert.textContent=text ; + document.getElementById( "test-body-content" ).appendChild(node_to_insert); + } + + + function verifyPoint(description, point, x, y ) + { + var epsilon = 1 / 65535; + + drawString(description, "black"); + + point.x = x; + point.y = y; + + if(( Math.abs(point.x - x ) < epsilon ) && ( Math.abs(point.y - y ) < epsilon )) + { + drawString( "Results match expected values[ " + x + " , " + y + " ];", "green" ); + drawString( "Values in the point SVGPoint[ " + point.x + " , " + point.y + " ];", "black"); + } + else + { + isPassed = false; + drawString( "Results do not match expected values[ " + x + " , " + y + " ];", "red" ); + drawString( "Values in the point SVGPoint[ " + point.x + " , " + point.y + " ];", "black" ); + } + + drawString("", "black"); + + } + + try + { + var point = topsvg.createSVGPoint( ); + + verifyPoint("created SVGPoint[ " + point.x+ " , " + point.y + " ];", point, 0, 0); + + verifyPoint("Test for +epsilon,+epsilon positive integers", point, 32767, 32767); + + verifyPoint("Test for -epsilon,-epsilon negative integers", point, -32767, -32767); + + // to be updated after ACTION-2027 + //verifyPoint("Test for +epsilon,+epsilon real positive numbers", point, 32767.65535, 32767.65535); + + // to be updated after ACTION-2027 + //verifyPoint("Test for -epsilon,-epsilon real negative numbers", point, -32767.65535, -32767.65535); + + if( isPassed ) + { + var status = document.getElementById("TestStatus"); + status.setTrait("#text", "passed"); + status.setAttribute( "fill", "green" ); + } + } + catch(e) + { + isPassed = false; + drawString("Unexpected exception!", "red"); + } + + + + SVGPoint + + + + + failed + + + + + $Revision: 1.8 $ + + + + + diff --git a/test/W3C_SVG_12_TinyTestSuite_beta/svggen/udom-svgrect-201-t.svg b/test/W3C_SVG_12_TinyTestSuite_beta/svggen/udom-svgrect-201-t.svg new file mode 100755 index 00000000..1d5ff47c --- /dev/null +++ b/test/W3C_SVG_12_TinyTestSuite_beta/svggen/udom-svgrect-201-t.svg @@ -0,0 +1,112 @@ + + + + + + + + + + $RCSfile: udom-svgrect-201-t.svg,v $ + + + + + + + + + + + + var svg_ns = "http://www.w3.org/2000/svg"; + var xlink_ns = "http://www.w3.org/1999/xlink"; + + var count=0; + var topsvg = document.documentElement; + var startY = 80; + var rowHeight = 15; + var fontSize = 10; + var isPassed = true; + var epsilon = 1 / 65535; + + function drawString( text, col ) + { + node_to_insert=document.createElementNS(svg_ns,"text"); + node_to_insert.setFloatTrait("font-size",fontSize); + node_to_insert.setAttribute("x","25"); + var yVal = startY + count++ * rowHeight; + node_to_insert.setFloatTrait("y",yVal); + node_to_insert.textContent=text; + node_to_insert.setAttribute("fill", col); + document.getElementById( "test-body-content" ).appendChild(node_to_insert); + } + + try + { + rect = topsvg.createSVGRect( ); + drawString( "created SVGRect[ " + rect.x+ " , " + rect.y + " , " + rect.width + " , " + rect.height + " ];" , "black" ); + + if ( ( Math.abs(rect.x - 0 ) < epsilon ) && (Math.abs(rect.y - 0 ) < epsilon ) && (Math.abs(rect.width - 0 ) < epsilon ) && (Math.abs(rect.width - 0 ) < epsilon ) ) + { + drawString( "Results match expected values." , "green" ); + } + else + { + isPassed = false; + drawString( "Results do not match expected values! (0,0,0,0)" , "red" ); + } + + rect.x = 10; + rect.y = 20; + rect.width = 30; + rect.height = 40; + drawString( "set SVGRect to[ " + rect.x+ " , " + rect.y + " , " + rect.width + " , " + rect.height + " ];" , "black" ); + + if ( ( Math.abs(rect.x - 10 ) < epsilon ) && (Math.abs(rect.y - 20 ) < epsilon ) && (Math.abs(rect.width - 30 ) < epsilon ) && (Math.abs(rect.height - 40 ) < epsilon ) ) + { + drawString( "Results match expected values." , "green" ); + } + else + { + isPassed = false; + drawString( "Results do not match expected values! (10,20,30,40)" , "red" ); + } + + if ( isPassed ) + { + var status = document.getElementById("TestStatus"); + status.setTrait("#text", "passed"); + status.setAttribute("fill", "green"); + } + } + catch(e) + { + isPassed = false; + drawString("Unexpected exception!" , "red"); + } + + + SVGRect - basic test + + + + failed + + + + $Revision: 1.8 $ + + + + + diff --git a/test/W3C_SVG_12_TinyTestSuite_beta/svggen/udom-textcontent-201-t.svg b/test/W3C_SVG_12_TinyTestSuite_beta/svggen/udom-textcontent-201-t.svg new file mode 100755 index 00000000..dfb7b1b7 --- /dev/null +++ b/test/W3C_SVG_12_TinyTestSuite_beta/svggen/udom-textcontent-201-t.svg @@ -0,0 +1,84 @@ + + + + + + + + + + $RCSfile: udom-textcontent-201-t.svg,v $ + + + + + + + + + + + + Not changed yet! + + + + + + + + + + + Rect Text + + + + + and Rect Animate Text! + + + + + + + + + + textContent(evt); + + + + Test on textContent + The text "Not changed yet!" (in red) that is located just below the rect + must be replaced after 1s by + "Rect Text and Rect Animate Text!" (in green) + + + $Revision: 1.9 $ + + + + + diff --git a/test/W3C_SVG_12_TinyTestSuite_beta/svggen/udom-textcontent-202-t.svg b/test/W3C_SVG_12_TinyTestSuite_beta/svggen/udom-textcontent-202-t.svg new file mode 100755 index 00000000..d0d3bb0f --- /dev/null +++ b/test/W3C_SVG_12_TinyTestSuite_beta/svggen/udom-textcontent-202-t.svg @@ -0,0 +1,67 @@ + + + + + + + + + + $RCSfile: udom-textcontent-202-t.svg,v $ + + + + + + + + + + + Not changed yet! + + + + + + + + + Rect Text + + + + + and Rect Animate Text! + + + + + + + + + $Revision: 1.4 $ + + + + + diff --git a/test/W3C_SVG_12_TinyTestSuite_beta/svggen/udom-traitaccess-201-t.svg b/test/W3C_SVG_12_TinyTestSuite_beta/svggen/udom-traitaccess-201-t.svg new file mode 100755 index 00000000..7b1d074b --- /dev/null +++ b/test/W3C_SVG_12_TinyTestSuite_beta/svggen/udom-traitaccess-201-t.svg @@ -0,0 +1,72 @@ + + + + + + + + + + $RCSfile: udom-traitaccess-201-t.svg,v $ + + + + + + + + + + + + + + Set/Get-TraitNs() on + reference + scripted + + Fail + + + + + + + + + + + + + + + + + $Revision: 1.4 $ + + + + + diff --git a/test/W3C_SVG_12_TinyTestSuite_beta/svggen/udom-traitaccess-202-t.svg b/test/W3C_SVG_12_TinyTestSuite_beta/svggen/udom-traitaccess-202-t.svg new file mode 100755 index 00000000..e32b7507 --- /dev/null +++ b/test/W3C_SVG_12_TinyTestSuite_beta/svggen/udom-traitaccess-202-t.svg @@ -0,0 +1,110 @@ + + + + + + + + + + $RCSfile: udom-traitaccess-202-t.svg,v $ + + + + + + + + + + + + + + + + + + + + + + + + Testing solidColor trait access + + + 1. getRGBColorTrait(solid-color): + DOES NOT WORK! + + + 2. setRGBColorTrait(solid-color): + DOES NOT WORK! + + + 3. getTrait(solid-color): + DOES NOT WORK! + + + 4. setTrait(solid-color): + DOES NOT WORK! + + + 5. getting default: + DOES NOT WORK! + + + + + $Revision: 1.5 $ + + + + + diff --git a/test/W3C_SVG_12_TinyTestSuite_beta/svggen/udom-traitaccess-203-t.svg b/test/W3C_SVG_12_TinyTestSuite_beta/svggen/udom-traitaccess-203-t.svg new file mode 100755 index 00000000..dc12285e --- /dev/null +++ b/test/W3C_SVG_12_TinyTestSuite_beta/svggen/udom-traitaccess-203-t.svg @@ -0,0 +1,89 @@ + + + + + + + + + + $RCSfile: udom-traitaccess-203-t.svg,v $ + + + + + + + + + + + + + + + + + + + + + + + + Testing solidColor trait access + + + 1. getFloatTrait(solid-opacity): + DOES NOT WORK! + + + 2. setFloatTrait(solid-opacity): + DOES NOT WORK! + + + 3. getting default: + DOES NOT WORK! + + + + + + $Revision: 1.7 $ + + + + + diff --git a/test/W3C_SVG_12_TinyTestSuite_beta/svggen/udom-traitaccess-204-t.svg b/test/W3C_SVG_12_TinyTestSuite_beta/svggen/udom-traitaccess-204-t.svg new file mode 100755 index 00000000..72ef6918 --- /dev/null +++ b/test/W3C_SVG_12_TinyTestSuite_beta/svggen/udom-traitaccess-204-t.svg @@ -0,0 +1,68 @@ + + + + + + + + + + $RCSfile: udom-traitaccess-204-t.svg,v $ + + + + + + + + + + + + + Set/Get-Trait(fillrule) on path + reference + scripted + + Error! + + + + + + + + + + + + + + $Revision: 1.4 $ + + + + + diff --git a/test/W3C_SVG_12_TinyTestSuite_beta/svggen/udom-traitaccess-205-t.svg b/test/W3C_SVG_12_TinyTestSuite_beta/svggen/udom-traitaccess-205-t.svg new file mode 100755 index 00000000..8fd2f1ac --- /dev/null +++ b/test/W3C_SVG_12_TinyTestSuite_beta/svggen/udom-traitaccess-205-t.svg @@ -0,0 +1,43 @@ + + + + + + + + + + $RCSfile: udom-traitaccess-205-t.svg,v $ + + + + + + + + + Green = OK + Red = Error! + + + + $Revision: 1.5 $ + + + + + diff --git a/test/W3C_SVG_12_TinyTestSuite_beta/svggen/udom-traitaccess-206-t.svg b/test/W3C_SVG_12_TinyTestSuite_beta/svggen/udom-traitaccess-206-t.svg new file mode 100755 index 00000000..b76bace6 --- /dev/null +++ b/test/W3C_SVG_12_TinyTestSuite_beta/svggen/udom-traitaccess-206-t.svg @@ -0,0 +1,43 @@ + + + + + + + + + + $RCSfile: udom-traitaccess-206-t.svg,v $ + + + + + + + + + Green = OK + Red = Error! + + + + + $Revision: 1.4 $ + + + + + diff --git a/test/W3C_SVG_12_TinyTestSuite_beta/svggen/udom-traitaccess-207-t.svg b/test/W3C_SVG_12_TinyTestSuite_beta/svggen/udom-traitaccess-207-t.svg new file mode 100755 index 00000000..91e916fe --- /dev/null +++ b/test/W3C_SVG_12_TinyTestSuite_beta/svggen/udom-traitaccess-207-t.svg @@ -0,0 +1,41 @@ + + + + + + + + + + $RCSfile: udom-traitaccess-207-t.svg,v $ + + + + + + + + + viewport-fill-opacity="0.5" + + + + $Revision: 1.5 $ + + + + + diff --git a/test/functional_test.html b/test/functional_test.html new file mode 100644 index 00000000..e389f086 --- /dev/null +++ b/test/functional_test.html @@ -0,0 +1,136 @@ + + + + + + Functional test suite + + + + + + + + + + + + + + + + + + + + + + + + + + + + + +

Functional test suite

+ +
+

Canvas.Line

+ +
+ +
+

Canvas.Rect

+ +
+ +
+

Canvas.Circle

+ +
+ +
+

Canvas.Ellipse

+ +
+ +
+

Canvas.Polygon

+ +
+ +
+

Canvas.Polyline

+ +
+ +

SVG Parser tests

+
+
+ shapes-circle-01-t +
+
+ shapes-circle-02-t +
+
+ shapes-circle-03-t +
+
+ shapes-ellipse-01-t +
+
+ shapes-ellipse-02-t +
+
+ shapes-ellipse-03-t +
+
+ shapes-intro-01-t +
+
+ shapes-line-01-t +
+
+ shapes-line-02-t +
+
+ shapes-polygon-01-t +
+
+ shapes-polygon-02-t +
+
+ shapes-polyline-01-t +
+
+ shapes-polyline-02-t +
+
+ shapes-rect-01-t +
+
+ shapes-rect-02-t +
+
+ shapes-rect-03-t +
+
+ paths-data-01-t +
+
+ + + + + \ No newline at end of file diff --git a/test/functional_tests.js b/test/functional_tests.js new file mode 100644 index 00000000..03edbd50 --- /dev/null +++ b/test/functional_tests.js @@ -0,0 +1,148 @@ +(function(){ + this.canvas = new Canvas.Element('testee0'); + + canvas.add(new Canvas.Line([10,10,40,50], { stroke: 'red' })); + canvas.add(new Canvas.Line([70,80,110,110], { stroke: 'green', strokeWidth: 7 })); + canvas.add(new Canvas.Line([120,40,50,170], { stroke: 'blue', strokeWidth: 3 })); +})(); + + +(function(){ + this.canvas = new Canvas.Element('testee1'); + + var width = height = 40; + + canvas.add(new Canvas.Rect({ + fill: 'red', left: 50, top: 50, width: width, height: height + })); + canvas.add(new Canvas.Rect({ + fill: 'green', left: 100, top: 100, width: width, height: height + })); + canvas.add(new Canvas.Rect({ + fill: 'blue', left: 150, top: 150, width: width, height: height + })); +})(); + + +(function(){ + this.canvas2 = new Canvas.Element('testee2'); + + var radius = 25; + + canvas2.add(new Canvas.Circle({ + fill: 'red', left: 100, top: 100, radius: radius + })); + canvas2.add(new Canvas.Circle({ + fill: 'green', left: 50, top: 50, radius: radius + })); + canvas2.add(new Canvas.Circle({ + fill: 'blue', left: 150, top: 150, radius: radius + })); +})(); + + +(function(){ + this.canvas3 = new Canvas.Element('testee3'); + + var rx = 20, + ry = 40; + + canvas3.add(new Canvas.Ellipse({ + fill: 'red', left: 100, top: 100, rx: rx, ry: ry + })); + canvas3.add(new Canvas.Ellipse({ + fill: 'green', left: 50, top: 50, rx: rx, ry: ry + })); + canvas3.add(new Canvas.Ellipse({ + fill: 'blue', left: 150, top: 150, rx: rx, ry: ry + })); +})(); + + +(function(){ + this.canvas4 = new Canvas.Element('testee4'); + + var points = [ + {x:10,y:10}, + {x:15,y:15}, + {x:30,y:15}, + {x:40,y:10}, + {x:30,y:0}, + {x:-10,y:-10} + ]; + + canvas4.add(new Canvas.Polygon(points, { + fill: 'red', left: 100, top: 100 + })); + canvas4.add(new Canvas.Polygon(points, { + fill: 'green', left: 50, top: 50 + })); + canvas4.add(new Canvas.Polygon(points, { + fill: 'blue', left: 150, top: 150 + })); +})(); + + +(function(){ + this.canvas5 = new Canvas.Element('testee5'); + + var points = [ + {x:10,y:10}, + {x:15,y:15}, + {x:30,y:15}, + {x:40,y:10}, + {x:30,y:0}, + {x:-10,y:-10} + ]; + + canvas5.add(new Canvas.Polyline(points, { + stroke: 'red', left: 100, top: 100 + })); + canvas5.add(new Canvas.Polyline(points, { + stroke: 'green', left: 50, top: 50 + })); + canvas5.add(new Canvas.Polyline(points, { + stroke: 'blue', left: 150, top: 150 + })); +})(); + + +// using onload to ensure all images are loaded +window.onload = function() { + + var benchmarks = window.__benchmarks = []; + + $$('.svg-test-wrapper img').each(function(imgElement, i) { + new Ajax.Request('W3C_SVG_12_TinyTestSuite_beta/svg/' + imgElement.alt + '.svg', { + method: 'get', + onSuccess: function(r) { + if (!r) return; + if (!r.responseXML) return; + var doc = r.responseXML.documentElement; + if (!doc) return; + + var startTime = new Date(); + + Canvas.parseSVGDocument(doc, function(elements) { + var dimensions = { + width: imgElement.width, + height: imgElement.height + }; + var canvasElement = new Element('canvas', dimensions).setStyle({ + width: dimensions.width + 'px', + height: dimensions.height + 'px' + }); + imgElement.insert({ + after: canvasElement + }); + var oCanvas = window.__canvas = new Canvas.Element(canvasElement); + elements.each(function(o) { + oCanvas.add(o); + }) + }); + + benchmarks.push(new Date() - startTime); + } + }) + }); +}; \ No newline at end of file