- From: <bugzilla@wiggum.w3.org>
- Date: Fri, 22 Feb 2008 11:17:33 +0000
- To: www-svg@w3.org
- CC:
http://www.w3.org/Bugs/Public/show_bug.cgi?id=5502
Summary: Problem in test case: paint-other-202-t.svg
Product: SVG
Version: SVG 1.2 Tiny
Platform: PC
OS/Version: Windows XP
Status: NEW
Severity: normal
Priority: P2
Component: Color
AssignedTo: schepers@w3.org
ReportedBy: julien.reichel@spinetix.com
QAContact: www-svg@w3.org
The test case paint-other-202-t.svg for SVG tiny 1.2, verify the correct usage
of the solidColor Element.
However the test case uses:
<circle cx="290" cy="160" r="100" fill="fuchsia" fill-opacity="0.3"
stroke="yellow" strok-opacity="0.5" stroke-width="10"/>
<rect x="90" y="60" width="200" height="200" fill="blue"
fill-opacity="0.5" stroke="green" stroke-opacity="0.5" stroke-width="10"/>
which is not using the solid colors. I thinks that the correct test is:
<circle cx="290" cy="160" fill="url(#solidFuchsia)" fill-opacity="0.3" r="100"
strok-opacity="0.5" stroke="url(#solidYellow)" stroke-width="10"/>
<rect fill="url(#solidRed)" fill-opacity="0.5" height="200"
stroke="url(#solidGreen)" stroke-opacity="0.5" stroke-width="10" width="200"
x="90" y="60"/>
Received on Friday, 22 February 2008 11:17:44 UTC