Make most background- properties handle arrays

This commit is contained in:
Manish Goregaokar 2016-08-19 17:09:41 +05:30
parent ce9640a48e
commit 65a8a8dccb
4 changed files with 72 additions and 67 deletions

View file

@ -107,18 +107,26 @@ ${helpers.predefined_type("background-color", "CSSColor",
${helpers.single_keyword("background-repeat",
"repeat repeat-x repeat-y no-repeat",
vector=True,
gecko_only=True,
animatable=False)}
${helpers.single_keyword("background-attachment",
"scroll fixed" + (" local" if product == "gecko" else ""),
vector=True,
gecko_only=True,
animatable=False)}
${helpers.single_keyword("background-clip",
"border-box padding-box content-box",
vector=True,
gecko_only=True,
animatable=False)}
${helpers.single_keyword("background-origin",
"padding-box border-box content-box",
vector=True,
gecko_only=True,
animatable=False)}
<%helpers:longhand name="background-size" animatable="True">