Changeset 136184 in webkit
- Timestamp:
- Nov 29, 2012, 4:47:44 PM (14 years ago)
- Location:
- trunk/Source/WebCore
- Files:
-
- 2 edited
-
ChangeLog (modified) (1 diff)
-
css/CSSGrammar.y.in (modified) (1 diff)
Legend:
- Unmodified
- Added
- Removed
-
trunk/Source/WebCore/ChangeLog
r136174 r136184 1 2012-11-29 Pablo Flouret <pablof@motorola.com> 2 3 REGRESSION(r134693): Compilation error on @supports grammar code 4 https://bugs.webkit.org/show_bug.cgi?id=103678 5 6 Reviewed by Tony Chang. 7 8 Coming from https://bugs.webkit.org/show_bug.cgi?id=102295 9 10 No new tests, compile fix. 11 12 * css/CSSGrammar.y.in: 13 1 14 2012-11-29 Simon Fraser <simon.fraser@apple.com> 2 15 -
trunk/Source/WebCore/css/CSSGrammar.y.in
r134693 r136184 714 714 if ($3 && $6) { 715 715 p->m_valueList = p->sinkFloatingValueList($6); 716 int oldParsedProperties = p->m_parsedProperties ->size();716 int oldParsedProperties = p->m_parsedProperties.size(); 717 717 $$ = p->parseValue(static_cast<CSSPropertyID>($3), $7); 718 718 // We just need to know if the declaration is supported as it is written. Rollback any additions. 719 719 if ($$) 720 p->rollbackLastProperties(p->m_parsedProperties ->size() - oldParsedProperties);720 p->rollbackLastProperties(p->m_parsedProperties.size() - oldParsedProperties); 721 721 p->m_valueList = nullptr; 722 722 }
Note:
See TracChangeset
for help on using the changeset viewer.