summaryrefslogtreecommitdiff
path: root/Source/WebCore/css/CSSGrammar.y
diff options
context:
space:
mode:
Diffstat (limited to 'Source/WebCore/css/CSSGrammar.y')
-rw-r--r--Source/WebCore/css/CSSGrammar.y8
1 files changed, 4 insertions, 4 deletions
diff --git a/Source/WebCore/css/CSSGrammar.y b/Source/WebCore/css/CSSGrammar.y
index a57edf3d1..1eef6b1e1 100644
--- a/Source/WebCore/css/CSSGrammar.y
+++ b/Source/WebCore/css/CSSGrammar.y
@@ -326,9 +326,9 @@ webkit_value:
CSSParser* p = static_cast<CSSParser*>(parser);
if ($4) {
p->m_valueList = p->sinkFloatingValueList($4);
- int oldParsedProperties = p->m_numParsedProperties;
+ int oldParsedProperties = p->m_parsedProperties.size();
if (!p->parseValue(p->m_id, p->m_important))
- p->rollbackLastProperties(p->m_numParsedProperties - oldParsedProperties);
+ p->rollbackLastProperties(p->m_parsedProperties.size() - oldParsedProperties);
p->m_valueList = nullptr;
}
}
@@ -1300,10 +1300,10 @@ declaration:
bool isPropertyParsed = false;
if ($1 && $4) {
p->m_valueList = p->sinkFloatingValueList($4);
- int oldParsedProperties = p->m_numParsedProperties;
+ int oldParsedProperties = p->m_parsedProperties.size();
$$ = p->parseValue($1, $5);
if (!$$)
- p->rollbackLastProperties(p->m_numParsedProperties - oldParsedProperties);
+ p->rollbackLastProperties(p->m_parsedProperties.size() - oldParsedProperties);
else
isPropertyParsed = true;
p->m_valueList = nullptr;