Title: [246314] trunk/Source/WebCore
Revision
246314
Author
[email protected]
Date
2019-06-11 08:33:46 -0700 (Tue, 11 Jun 2019)

Log Message

Include `touch-action` in the computed styles list
https://bugs.webkit.org/show_bug.cgi?id=198742

Reviewed by Antoine Quint.

* css/CSSComputedStyleDeclaration.cpp:

Modified Paths

Diff

Modified: trunk/Source/WebCore/ChangeLog (246313 => 246314)


--- trunk/Source/WebCore/ChangeLog	2019-06-11 15:27:08 UTC (rev 246313)
+++ trunk/Source/WebCore/ChangeLog	2019-06-11 15:33:46 UTC (rev 246314)
@@ -1,3 +1,12 @@
+2019-06-11  Devin Rousso  <[email protected]>
+
+        Include `touch-action` in the computed styles list
+        https://bugs.webkit.org/show_bug.cgi?id=198742
+
+        Reviewed by Antoine Quint.
+
+        * css/CSSComputedStyleDeclaration.cpp:
+
 2019-06-11  Michael Catanzaro  <[email protected]>
 
         tu-berlin university email web interface (Outlook Web App) goes directly to the light version instead of the normal web app

Modified: trunk/Source/WebCore/css/CSSComputedStyleDeclaration.cpp (246313 => 246314)


--- trunk/Source/WebCore/css/CSSComputedStyleDeclaration.cpp	2019-06-11 15:27:08 UTC (rev 246313)
+++ trunk/Source/WebCore/css/CSSComputedStyleDeclaration.cpp	2019-06-11 15:33:46 UTC (rev 246314)
@@ -458,7 +458,10 @@
     CSSPropertyGlyphOrientationVertical,
     CSSPropertyVectorEffect,
     CSSPropertyX,
-    CSSPropertyY
+    CSSPropertyY,
+#if ENABLE(POINTER_EVENTS)
+    CSSPropertyTouchAction,
+#endif
 };
 
 const unsigned numComputedProperties = WTF_ARRAY_LENGTH(computedProperties);
_______________________________________________
webkit-changes mailing list
[email protected]
https://lists.webkit.org/mailman/listinfo/webkit-changes

Reply via email to