Ignore:
Timestamp:
Apr 20, 2017, 11:04:20 PM (8 years ago)
Author:
[email protected]
Message:

Unreviewed, rolling out r215597.
https://bugs.webkit.org/show_bug.cgi?id=171102

Made all tests crash under GuardMalloc (Requested by ap on
#webkit).

Reverted changeset:

"Expose obscured insets to web content (as "safe area
insets")"
https://bugs.webkit.org/show_bug.cgi?id=171013
http://trac.webkit.org/changeset/215597

File:
1 edited

Legend:

Unmodified
Added
Removed
  • trunk/Source/WebCore/css/CSSVariableData.cpp

    r215597 r215605  
    102102{
    103103    while (!range.atEnd()) {
    104         if (range.peek().functionId() == CSSValueVar || range.peek().functionId() == CSSValueConstant) {
     104        if (range.peek().functionId() == CSSValueVar) {
    105105            CSSParserTokenRange block = range.consumeBlock();
    106106           
     
    172172    bool success = true;
    173173    while (!range.atEnd()) {
    174         if (range.peek().functionId() == CSSValueVar || range.peek().functionId() == CSSValueConstant)
     174        if (range.peek().functionId() == CSSValueVar)
    175175            success &= resolveVariableReference(customProperties, range.consumeBlock(), result);
    176176        else
Note: See TracChangeset for help on using the changeset viewer.