eseidel | 65ba4d7 | 2005-08-07 20:23:06 +0000 | [diff] [blame] | 1 | <?xml version="1.0" encoding="UTF-8"?> |
| 2 | <!DOCTYPE svg PUBLIC "-//W3C//DTD SVG 1.1 Tiny//EN" "http://www.w3.org/Graphics/SVG/1.1/DTD/svg11-tiny.dtd"> |
| 3 | <!--======================================================================--> |
| 4 | <!--= Copyright 2000 World Wide Web Consortium, (Massachusetts =--> |
| 5 | <!--= Institute of Technology, Institut National de Recherche en =--> |
| 6 | <!--= Informatique et en Automatique, Keio University). All Rights =--> |
| 7 | <!--= Reserved. See http://www.w3.org/Consortium/Legal/. =--> |
| 8 | <!--======================================================================--> |
| 9 | <!-- ===================================================================== --> |
| 10 | <!-- paint-inherit-BE-06.svg --> |
| 11 | <!-- renamed for 1.1 suite to painting-fill-04-t.svg --> |
| 12 | <!-- Author : Tim Thompson 8/04/00 --> |
| 13 | <!-- 1.1 revision by Rick Graham --> |
| 14 | <!--======================================================================--> |
| 15 | <svg version="1.1" xmlns="http://www.w3.org/2000/svg" xmlns:xlink="http://www.w3.org/1999/xlink" id="svg-root" baseProfile="tiny" width="100%" height="100%" viewBox="0 0 480 360"> |
| 16 | <SVGTestCase xmlns="http://www.w3.org/2000/02/svg/testsuite/description/"> |
eseidel | a220b26 | 2006-12-27 19:52:05 +0000 | [diff] [blame] | 17 | <OperatorScript version="$Revision: 1.8 $" testname="painting-fill-04-t.svg"> |
eseidel | 65ba4d7 | 2005-08-07 20:23:06 +0000 | [diff] [blame] | 18 | <Paragraph> |
eseidel | a220b26 | 2006-12-27 19:52:05 +0000 | [diff] [blame] | 19 | This tests inheritance of three properties: "fill", "stroke" and "stroke-width". There is a "g" element (id="G1") which |
| 20 | sets fill="blue", stroke="red", and stroke-width="5". The first two rectangles on top should inherit all those |
| 21 | properties. The middle left rectangle has fill="yellow" and stroke-width="2", it should inherit the stroke="red" |
| 22 | from the parent container. The middle rectangle on the right has stroke="yellow", it should inherit fill and |
| 23 | stroke-width from the parent "g". The bottom two rectangles are in another "g" element (id="G2") which is a child |
| 24 | of "G1". "G2" sets fill="yellow". It should inherit the stroke and stroke width from the parent "G1". The two |
| 25 | bottom rectangles set no fill or stroke properties, they should inherit through the parents, stroke="red" |
| 26 | and stroke-width="5". |
eseidel | 65ba4d7 | 2005-08-07 20:23:06 +0000 | [diff] [blame] | 27 | </Paragraph> |
| 28 | <Paragraph> |
| 29 | The rendered picture should match the reference image, except for possible |
eseidel | a220b26 | 2006-12-27 19:52:05 +0000 | [diff] [blame] | 30 | variations in the labeling text (per CSS2 rules). |
eseidel | 65ba4d7 | 2005-08-07 20:23:06 +0000 | [diff] [blame] | 31 | </Paragraph> |
| 32 | <Paragraph> |
eseidel | a220b26 | 2006-12-27 19:52:05 +0000 | [diff] [blame] | 33 | The test uses the "rect" element, as well as basic fill (solid primary colors), |
eseidel | 65ba4d7 | 2005-08-07 20:23:06 +0000 | [diff] [blame] | 34 | stroke (black 1-pixel lines), font-family (Arial) and font-size properties. |
| 35 | </Paragraph> |
| 36 | </OperatorScript> |
| 37 | </SVGTestCase> |
| 38 | <title id="test-title">painting-fill-04-t.svg</title> |
| 39 | <desc id="test-desc">Test inheritance of painting properties.</desc> |
| 40 | <!--======================================================================--> |
| 41 | <!--Content of Test Case follows... =====================--> |
| 42 | <!--======================================================================--> |
| 43 | <g id="test-body-content"> |
| 44 | <g id="G1" fill="blue" stroke="red" stroke-width="5" transform="translate(120,30)"> |
| 45 | <rect x="0" y="0" width="90" height="70"/> |
| 46 | <rect x="100" y="0" width="90" height="70"/> |
| 47 | <rect x="0" y="80" width="90" height="70" fill="yellow" stroke-width="2"/> |
| 48 | <rect x="100" y="80" width="90" height="70" stroke="yellow"/> |
| 49 | <g id="G2" fill="yellow"> |
| 50 | <rect x="0" y="160" width="90" height="70"/> |
| 51 | <rect x="100" y="160" width="90" height="70"/> |
| 52 | </g> |
| 53 | </g> |
| 54 | </g> |
eseidel | a220b26 | 2006-12-27 19:52:05 +0000 | [diff] [blame] | 55 | <text id="revision" x="10" y="340" font-size="40" stroke="none" fill="black">$Revision: 1.8 $</text> |
eseidel | 65ba4d7 | 2005-08-07 20:23:06 +0000 | [diff] [blame] | 56 | <rect id="test-frame" x="1" y="1" width="478" height="358" fill="none" stroke="#000000"/> |
| 57 | </svg> |