Bug 1112700 - Fix assertion failure: aPropID != eCSSPropertyExtra_variable r=me

This commit is contained in:
Michael Ratcliffe 2014-12-18 09:31:28 +00:00
Родитель b1f18c720d
Коммит 796189cca7
2 изменённых файлов: 10 добавлений и 0 удалений

Просмотреть файл

@ -867,6 +867,11 @@ inDOMUtils::CssPropertyIsValid(const nsAString& aPropertyName,
return NS_OK;
}
if (propertyID == eCSSPropertyExtra_variable) {
*_retval = true;
return NS_OK;
}
// Get a parser, parse the property.
nsCSSParser parser;
*_retval = parser.IsValueValidForProperty(propertyID, aPropertyValue);

Просмотреть файл

@ -74,6 +74,11 @@
property: "content",
value: "\"hello\"",
expected: true
},
{
property: "color",
value: "var(--some-kind-of-green)",
expected: true
}
];