diff options
author | axis <qt-info@nokia.com> | 2009-04-24 11:34:15 (GMT) |
---|---|---|
committer | axis <qt-info@nokia.com> | 2009-04-24 11:34:15 (GMT) |
commit | 8f427b2b914d5b575a4a7c0ed65d2fb8f45acc76 (patch) | |
tree | a17e1a767a89542ab59907462206d7dcf2e504b2 /tests/arthur/data/1.2/linecap.svg | |
download | Qt-8f427b2b914d5b575a4a7c0ed65d2fb8f45acc76.zip Qt-8f427b2b914d5b575a4a7c0ed65d2fb8f45acc76.tar.gz Qt-8f427b2b914d5b575a4a7c0ed65d2fb8f45acc76.tar.bz2 |
Long live Qt for S60!
Diffstat (limited to 'tests/arthur/data/1.2/linecap.svg')
-rw-r--r-- | tests/arthur/data/1.2/linecap.svg | 32 |
1 files changed, 32 insertions, 0 deletions
diff --git a/tests/arthur/data/1.2/linecap.svg b/tests/arthur/data/1.2/linecap.svg new file mode 100644 index 0000000..af0b824 --- /dev/null +++ b/tests/arthur/data/1.2/linecap.svg @@ -0,0 +1,32 @@ +<?xml version="1.0" standalone="no"?> +<svg width="12cm" height="2cm" viewBox="0 0 1200 200" version="1.2" baseProfile="tiny" + xmlns="http://www.w3.org/2000/svg" xmlns:xlink="http://www.w3.org/1999/xlink"> + <desc>Example linecap - demonstrates three stroke-linecap values</desc> + <rect x="1" y="1" width="1198" height="198" fill="none" stroke="blue" /> + <defs> + <line id="line1" x1="-125" x2="125" y1="0" y2="0" fill="none" /> + <g id="circles"> + <circle fill="#ffcccc" stroke="none" id="circle1" cx="-125" cy="0" r="8"/> + <circle fill="#ffcccc" stroke="none" id="circle2" cx="125" cy="0" r="8"/> + </g> + </defs> + <g transform="translate(200,75)"> + <use stroke="black" stroke-width="70" xlink:href="#line1" stroke-linecap="butt"/> + <use stroke="#ffcccc" stroke-width="5" xlink:href="#line1"/> + <use xlink:href="#circles"/> + <text text-anchor="middle" font-size="50" font-family="Verdana" y="90">'butt' cap</text> + </g> + <g transform="translate(600,75)"> + <use stroke="black" stroke-width="70" xlink:href="#line1" stroke-linecap="round"/> + <use stroke="#ffcccc" stroke-width="5" xlink:href="#line1"/> + <use xlink:href="#circles"/> + <text text-anchor="middle" font-size="50" font-family="Verdana" y="90">'round' cap</text> + </g> + <g transform="translate(1000,75)"> + <use stroke="black" stroke-width="70" xlink:href="#line1" stroke-linecap="square"/> + <use stroke="#ffcccc" stroke-width="5" xlink:href="#line1"/> + <use xlink:href="#circles"/> + <text text-anchor="middle" font-size="50" font-family="Verdana" y="90">'square' cap</text> + </g> +</svg> + |