Title: [252151] trunk/Source/WebCore
Revision
252151
Author
obru...@igalia.com
Date
2019-11-06 14:38:56 -0800 (Wed, 06 Nov 2019)

Log Message

Keep None value at the end of the ListStyleType enum
https://bugs.webkit.org/show_bug.cgi?id=203883

Reviewed by Manuel Rego Casasnovas.

Bug 203837 added a String value at the end of the ListStyleType enum.
This patch moves it before None, in order to keep None at the end.

* rendering/style/RenderStyleConstants.h:

Modified Paths

Diff

Modified: trunk/Source/WebCore/ChangeLog (252150 => 252151)


--- trunk/Source/WebCore/ChangeLog	2019-11-06 22:21:33 UTC (rev 252150)
+++ trunk/Source/WebCore/ChangeLog	2019-11-06 22:38:56 UTC (rev 252151)
@@ -1,3 +1,15 @@
+2019-11-06  Oriol Brufau  <obru...@igalia.com>
+
+        Keep None value at the end of the ListStyleType enum
+        https://bugs.webkit.org/show_bug.cgi?id=203883
+
+        Reviewed by Manuel Rego Casasnovas.
+
+        Bug 203837 added a String value at the end of the ListStyleType enum.
+        This patch moves it before None, in order to keep None at the end.
+
+        * rendering/style/RenderStyleConstants.h:
+
 2019-11-06  Zalan Bujtas  <za...@apple.com>
 
         [LFC][MarginCollapsing] Add Line::isConsideredEmpty

Modified: trunk/Source/WebCore/rendering/style/RenderStyleConstants.h (252150 => 252151)


--- trunk/Source/WebCore/rendering/style/RenderStyleConstants.h	2019-11-06 22:21:33 UTC (rev 252150)
+++ trunk/Source/WebCore/rendering/style/RenderStyleConstants.h	2019-11-06 22:38:56 UTC (rev 252151)
@@ -631,8 +631,8 @@
     Katakana,
     HiraganaIroha,
     KatakanaIroha,
-    None,
-    String
+    String,
+    None
 };
 
 enum class QuoteType : uint8_t {
_______________________________________________
webkit-changes mailing list
webkit-changes@lists.webkit.org
https://lists.webkit.org/mailman/listinfo/webkit-changes

Reply via email to