Title: [205889] trunk/Source/WebCore
Revision
205889
Author
[email protected]
Date
2016-09-13 17:10:50 -0700 (Tue, 13 Sep 2016)

Log 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:

Modified Paths

Diff

Modified: trunk/Source/WebCore/ChangeLog (205888 => 205889)


--- trunk/Source/WebCore/ChangeLog	2016-09-14 00:10:21 UTC (rev 205888)
+++ trunk/Source/WebCore/ChangeLog	2016-09-14 00:10:50 UTC (rev 205889)
@@ -1,5 +1,14 @@
 2016-09-13  Daniel Bates  <[email protected]>
 
+        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:
+
+2016-09-13  Daniel Bates  <[email protected]>
+
         Treat some CSS properties as keyword properties
         https://bugs.webkit.org/show_bug.cgi?id=161934
 

Modified: trunk/Source/WebCore/css/parser/CSSParserFastPaths.cpp (205888 => 205889)


--- trunk/Source/WebCore/css/parser/CSSParserFastPaths.cpp	2016-09-14 00:10:21 UTC (rev 205888)
+++ trunk/Source/WebCore/css/parser/CSSParserFastPaths.cpp	2016-09-14 00:10:50 UTC (rev 205889)
@@ -651,8 +651,6 @@
         return valueID == CSSValueNone || valueID == CSSValueNonScalingStroke;
     case CSSPropertyVisibility: // visible | hidden | collapse
         return valueID == CSSValueVisible || valueID == CSSValueHidden || valueID == CSSValueCollapse;
-    case CSSPropertyWebkitAppRegion:
-        return valueID >= CSSValueDrag && valueID <= CSSValueNoDrag;
     case CSSPropertyWebkitAppearance:
         return (valueID >= CSSValueCheckbox && valueID <= CSSValueTextarea) || valueID == CSSValueNone;
     case CSSPropertyBackfaceVisibility:
@@ -812,7 +810,6 @@
     case CSSPropertyUnicodeBidi:
     case CSSPropertyVectorEffect:
     case CSSPropertyVisibility:
-    case CSSPropertyWebkitAppRegion:
     case CSSPropertyWebkitAppearance:
     case CSSPropertyBackfaceVisibility:
     case CSSPropertyWebkitBorderAfterStyle:
_______________________________________________
webkit-changes mailing list
[email protected]
https://lists.webkit.org/mailman/listinfo/webkit-changes

Reply via email to