Changeset 252151 in webkit


Ignore:
Timestamp:
Nov 6, 2019 2:38:56 PM (5 years ago)
Author:
Oriol Brufau
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:
Location:
trunk/Source/WebCore
Files:
2 edited

Legend:

Unmodified
Added
Removed
  • trunk/Source/WebCore/ChangeLog

    r252143 r252151  
     12019-11-06  Oriol Brufau  <obrufau@igalia.com>
     2
     3        Keep None value at the end of the ListStyleType enum
     4        https://bugs.webkit.org/show_bug.cgi?id=203883
     5
     6        Reviewed by Manuel Rego Casasnovas.
     7
     8        Bug 203837 added a String value at the end of the ListStyleType enum.
     9        This patch moves it before None, in order to keep None at the end.
     10
     11        * rendering/style/RenderStyleConstants.h:
     12
    1132019-11-06  Zalan Bujtas  <zalan@apple.com>
    214
  • trunk/Source/WebCore/rendering/style/RenderStyleConstants.h

    r252076 r252151  
    632632    HiraganaIroha,
    633633    KatakanaIroha,
    634     None,
    635     String
     634    String,
     635    None
    636636};
    637637
Note: See TracChangeset for help on using the changeset viewer.