Changeset 205889 in webkit


Ignore:
Timestamp:
Sep 13, 2016 5:10:50 PM (8 years ago)
Author:
dbates@webkit.org
Message:

Remove Chrome app-specific CSS property -webkit-app-region
https://bugs.webkit.org/show_bug.cgi?id=161935

Reviewed by Simon Fraser.

  • css/parser/CSSParserFastPaths.cpp:
Location:
trunk/Source/WebCore
Files:
2 edited

Legend:

Unmodified
Added
Removed
  • trunk/Source/WebCore/ChangeLog

    r205888 r205889  
     12016-09-13  Daniel Bates  <dabates@apple.com>
     2
     3        Remove Chrome app-specific CSS property -webkit-app-region
     4        https://bugs.webkit.org/show_bug.cgi?id=161935
     5
     6        Reviewed by Simon Fraser.
     7
     8        * css/parser/CSSParserFastPaths.cpp:
     9
    1102016-09-13  Daniel Bates  <dabates@apple.com>
    211
  • trunk/Source/WebCore/css/parser/CSSParserFastPaths.cpp

    r205103 r205889  
    652652    case CSSPropertyVisibility: // visible | hidden | collapse
    653653        return valueID == CSSValueVisible || valueID == CSSValueHidden || valueID == CSSValueCollapse;
    654     case CSSPropertyWebkitAppRegion:
    655         return valueID >= CSSValueDrag && valueID <= CSSValueNoDrag;
    656654    case CSSPropertyWebkitAppearance:
    657655        return (valueID >= CSSValueCheckbox && valueID <= CSSValueTextarea) || valueID == CSSValueNone;
     
    813811    case CSSPropertyVectorEffect:
    814812    case CSSPropertyVisibility:
    815     case CSSPropertyWebkitAppRegion:
    816813    case CSSPropertyWebkitAppearance:
    817814    case CSSPropertyBackfaceVisibility:
Note: See TracChangeset for help on using the changeset viewer.