mirror of
https://github.com/servo/servo.git
synced 2025-08-06 14:10:11 +01:00
Define keyword values in ASCII lowercase
The match_ignore_ascii_case! macro does ASCII-case-insensitive matching. In cssparser verion 0.11, it will require its patterns to be already lower case.
This commit is contained in:
parent
524ba6a442
commit
ba6d791ff5
1 changed files with 3 additions and 3 deletions
|
@ -22,12 +22,12 @@ ${helpers.single_keyword("text-anchor",
|
|||
|
||||
// Section 11 - Painting: Filling, Stroking and Marker Symbols
|
||||
${helpers.single_keyword("color-interpolation",
|
||||
"auto sRGB linearRGB",
|
||||
"auto srgb linearrgb",
|
||||
products="gecko",
|
||||
animatable=False,
|
||||
spec="https://www.w3.org/TR/SVG11/painting.html#ColorInterpolationProperty")}
|
||||
|
||||
${helpers.single_keyword("color-interpolation-filters", "auto sRGB linearRGB",
|
||||
${helpers.single_keyword("color-interpolation-filters", "auto srgb linearrgb",
|
||||
products="gecko",
|
||||
gecko_constant_prefix="NS_STYLE_COLOR_INTERPOLATION",
|
||||
animatable=False,
|
||||
|
@ -52,7 +52,7 @@ ${helpers.single_keyword("fill-rule", "nonzero evenodd",
|
|||
spec="https://www.w3.org/TR/SVG11/painting.html#FillRuleProperty")}
|
||||
|
||||
${helpers.single_keyword("shape-rendering",
|
||||
"auto optimizeSpeed crispEdges geometricPrecision",
|
||||
"auto optimizespeed crispedges geometricprecision",
|
||||
products="gecko",
|
||||
animatable=False,
|
||||
spec="https://www.w3.org/TR/SVG11/painting.html#ShapeRenderingProperty")}
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue