зеркало из https://github.com/mozilla/gecko-dev.git
Bug 1112700 - Fix assertion failure: aPropID != eCSSPropertyExtra_variable r=me
This commit is contained in:
Родитель
b1f18c720d
Коммит
796189cca7
|
@ -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
|
||||
}
|
||||
];
|
||||
|
||||
|
|
Загрузка…
Ссылка в новой задаче