mirror of
https://github.com/servo/servo.git
synced 2025-06-29 03:23:41 +01:00
style: Change nscolor to StyleComplexColor in SVG properties.
Change mStopColor, mFloodColor, and mLightingColor in nsStyleSVGReset. Bug: 1457353 Reviewed-by: xidorn MozReview-Commit-ID: KMRMtHk1jNK
This commit is contained in:
parent
0bfd1dc5c0
commit
4108b1b278
1 changed files with 8 additions and 8 deletions
|
@ -21,8 +21,8 @@ ${helpers.single_keyword("vector-effect", "none non-scaling-stroke",
|
|||
|
||||
${helpers.predefined_type(
|
||||
"stop-color",
|
||||
"RGBAColor",
|
||||
"RGBA::new(0, 0, 0, 255)",
|
||||
"Color",
|
||||
"RGBA::new(0, 0, 0, 255).into()",
|
||||
products="gecko",
|
||||
animation_value_type="AnimatedRGBA",
|
||||
spec="https://www.w3.org/TR/SVGTiny12/painting.html#StopColorProperty",
|
||||
|
@ -37,10 +37,10 @@ ${helpers.predefined_type("stop-opacity", "Opacity", "1.0",
|
|||
|
||||
${helpers.predefined_type(
|
||||
"flood-color",
|
||||
"RGBAColor",
|
||||
"RGBA::new(0, 0, 0, 255)",
|
||||
"Color",
|
||||
"RGBA::new(0, 0, 0, 255).into()",
|
||||
products="gecko",
|
||||
animation_value_type="AnimatedRGBA",
|
||||
animation_value_type="AnimatedColor",
|
||||
spec="https://www.w3.org/TR/SVG/filters.html#FloodColorProperty",
|
||||
)}
|
||||
|
||||
|
@ -50,10 +50,10 @@ ${helpers.predefined_type("flood-opacity", "Opacity",
|
|||
|
||||
${helpers.predefined_type(
|
||||
"lighting-color",
|
||||
"RGBAColor",
|
||||
"RGBA::new(255, 255, 255, 255)",
|
||||
"Color",
|
||||
"RGBA::new(255, 255, 255, 255).into()",
|
||||
products="gecko",
|
||||
animation_value_type="AnimatedRGBA",
|
||||
animation_value_type="AnimatedColor",
|
||||
spec="https://www.w3.org/TR/SVG/filters.html#LightingColorProperty",
|
||||
)}
|
||||
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue