Open
Description
Thanks to this patch, the value
definition of the fill
property is picked from SVG 2 instead of CSS Fill Stroke. The reasons for this are explained in #127 (comment).
This value
definition is <paint>
. In SVG 2, <paint>
is defined with none | <color> | ...
. But the definition from CSS Fill Stroke is selected during the curation and is none | <image> | <svg-paint>
: none of these types allows to successfully parse black
(matching <color>
), which is the initial fill
value defined in SVG 2.
EDIT: note that the definition of <paint>
from SVG 2 is annotated in prose... (sorry).