⚠ Archived content — this site is no longer maintained.   Current WebKit documentation is at docs.webkit.org.

Changeset 136184 in webkit


Ignore:
Timestamp:
Nov 29, 2012, 4:47:44 PM (14 years ago)
Author:
commit-queue@webkit.org
Message:

REGRESSION(r134693): Compilation error on @supports grammar code
​https://bugs.webkit.org/show_bug.cgi?id=103678

Patch by Pablo Flouret <​pablof@motorola.com> on 2012-11-29
Reviewed by Tony Chang.

Coming from ​https://bugs.webkit.org/show_bug.cgi?id=102295

No new tests, compile fix.

  • css/CSSGrammar.y.in:
Location:
trunk/Source/WebCore
Files:
2 edited

Legend:

Unmodified
Added
Removed
  • trunk/Source/WebCore/ChangeLog

    r136174 r136184  
     12012-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
    1142012-11-29  Simon Fraser  <simon.fraser@apple.com>
    215
  • trunk/Source/WebCore/css/CSSGrammar.y.in

    r134693 r136184  
    714714        if ($3 && $6) {
    715715            p->m_valueList = p->sinkFloatingValueList($6);
    716             int oldParsedProperties = p->m_parsedProperties->size();
     716            int oldParsedProperties = p->m_parsedProperties.size();
    717717            $$ = p->parseValue(static_cast<CSSPropertyID>($3), $7);
    718718            // We just need to know if the declaration is supported as it is written. Rollback any additions.
    719719            if ($$)
    720                 p->rollbackLastProperties(p->m_parsedProperties->size() - oldParsedProperties);
     720                p->rollbackLastProperties(p->m_parsedProperties.size() - oldParsedProperties);
    721721            p->m_valueList = nullptr;
    722722        }
Note: See TracChangeset for help on using the changeset viewer.