This is an archived snapshot of W3C's public bugzilla bug tracker, decommissioned in April 2019. Please see the home page for more details.

Bug 7249 - SVG profile does not accept properties 'stroke' and 'fill'
Summary: SVG profile does not accept properties 'stroke' and 'fill'
Status: NEW
Alias: None
Product: CSSValidator
Classification: Unclassified
Component: Other (show other bugs)
Version: CSS Validator
Hardware: PC Windows NT
: P2 normal
Target Milestone: ---
Assignee: This bug has no owner yet - up for the taking
QA Contact: qa-dev tracking
URL:
Whiteboard:
Keywords:
Depends on:
Blocks:
 
Reported: 2009-08-10 13:31 UTC by Sorin Ristache
Modified: 2013-04-18 17:24 UTC (History)
1 user (show)

See Also:


Attachments

Description Sorin Ristache 2009-08-10 13:31:41 UTC
The properties "stroke" and "fill" are reported as errors when validating a CSS with one of the profiles: SVG, SVG Basic, SVG Tiny. For example:

  circle {
     stroke: #006600;
     fill:   #00cc00;
  }


It reports 2 validation errors:

2  	 circle  	 Parse Error  [empty string] 
3  	 circle  	 Parse Error  [empty string]
Comment 1 sworddragon2 2013-04-18 17:24:47 UTC
I wanted to validate the stroke property on the SVG profile too but the parsing error still appears. Here is an example: .test { stroke: #000000; }