diff options
author | Lars Knoll <lars.knoll@nokia.com> | 2009-03-23 09:18:55 (GMT) |
---|---|---|
committer | Simon Hausmann <simon.hausmann@nokia.com> | 2009-03-23 09:18:55 (GMT) |
commit | e5fcad302d86d316390c6b0f62759a067313e8a9 (patch) | |
tree | c2afbf6f1066b6ce261f14341cf6d310e5595bc1 /tests/arthur/data/1.2/13_01.svg | |
download | Qt-e5fcad302d86d316390c6b0f62759a067313e8a9.zip Qt-e5fcad302d86d316390c6b0f62759a067313e8a9.tar.gz Qt-e5fcad302d86d316390c6b0f62759a067313e8a9.tar.bz2 |
Long live Qt 4.5!
Diffstat (limited to 'tests/arthur/data/1.2/13_01.svg')
-rw-r--r-- | tests/arthur/data/1.2/13_01.svg | 20 |
1 files changed, 20 insertions, 0 deletions
diff --git a/tests/arthur/data/1.2/13_01.svg b/tests/arthur/data/1.2/13_01.svg new file mode 100644 index 0000000..d7bba1f --- /dev/null +++ b/tests/arthur/data/1.2/13_01.svg @@ -0,0 +1,20 @@ +<?xml version="1.0"?> +<svg width="8cm" height="4cm" viewBox="0 0 800 400" + xmlns="http://www.w3.org/2000/svg" version="1.2" baseProfile="tiny"> + <desc>Example lingrad01 - fill a rectangle using a + linear gradient paint server</desc> + <g> + <defs> + <linearGradient xml:id="MyGradient"> + <stop offset="0.05" stop-color="#F60" /> + <stop offset="0.95" stop-color="#FF6" /> + </linearGradient> + </defs> + <!-- Outline the drawing area in blue --> + <rect fill="none" stroke="blue" + x="1" y="1" width="798" height="398"/> + <!-- The rectangle is filled using a linear gradient paint server --> + <rect fill="url(#MyGradient)" stroke="black" stroke-width="5" + x="100" y="100" width="600" height="200"/> + </g> +</svg> |