Changeset 97278 in webkit


Ignore:
Timestamp:
Oct 12, 2011 11:28:55 AM (13 years ago)
Author:
robert@webkit.org
Message:

CSS 2.1 failure: border-conflict-style-079
https://bugs.webkit.org/show_bug.cgi?id=69551

Reviewed by Antonio Gomes.

Source/WebCore:

  • css/CSSValueKeywords.in: ridge and outset were the wrong way round
  • rendering/style/RenderStyleConstants.h: ditto

LayoutTests:

  • css2.1/20110323/border-conflict-style-079.htm: Added.
  • css2.1/20110323/border-conflict-style-088.htm: Added.
  • platform/chromium-linux/css2.1/20110323/border-conflict-style-079-expected.png: Added.
  • platform/chromium-linux/css2.1/20110323/border-conflict-style-079-expected.txt: Added.
  • platform/chromium-linux/css2.1/20110323/border-conflict-style-088-expected.png: Added.
  • platform/chromium-linux/css2.1/20110323/border-conflict-style-088-expected.txt: Added.
Location:
trunk
Files:
6 added
4 edited

Legend:

Unmodified
Added
Removed
  • trunk/LayoutTests/ChangeLog

    r97275 r97278  
     12011-10-06  Robert Hogan  <robert@webkit.org>
     2
     3        CSS 2.1 failure: border-conflict-style-079
     4        https://bugs.webkit.org/show_bug.cgi?id=69551
     5
     6        Reviewed by Antonio Gomes.
     7
     8        * css2.1/20110323/border-conflict-style-079.htm: Added.
     9        * css2.1/20110323/border-conflict-style-088.htm: Added.
     10        * platform/chromium-linux/css2.1/20110323/border-conflict-style-079-expected.png: Added.
     11        * platform/chromium-linux/css2.1/20110323/border-conflict-style-079-expected.txt: Added.
     12        * platform/chromium-linux/css2.1/20110323/border-conflict-style-088-expected.png: Added.
     13        * platform/chromium-linux/css2.1/20110323/border-conflict-style-088-expected.txt: Added.
     14
    1152011-10-12  Dimitri Glazkov  <dglazkov@chromium.org>
    216
  • trunk/Source/WebCore/ChangeLog

    r97274 r97278  
     12011-10-06  Robert Hogan  <robert@webkit.org>
     2
     3        CSS 2.1 failure: border-conflict-style-079
     4        https://bugs.webkit.org/show_bug.cgi?id=69551
     5
     6        Reviewed by Antonio Gomes.
     7
     8        * css/CSSValueKeywords.in: ridge and outset were the wrong way round
     9        * rendering/style/RenderStyleConstants.h: ditto
     10
     11
    1122011-10-12  Jian Li  <jianli@chromium.org>
    213
  • trunk/Source/WebCore/css/CSSValueKeywords.in

    r96675 r97278  
    2121inset
    2222groove
     23outset
    2324ridge
    24 outset
    2525dotted
    2626dashed
  • trunk/Source/WebCore/rendering/style/RenderStyleConstants.h

    r95911 r97278  
    8888// These have been defined in the order of their precedence for border-collapsing. Do
    8989// not change this order!
    90 enum EBorderStyle { BNONE, BHIDDEN, INSET, GROOVE, RIDGE, OUTSET, DOTTED, DASHED, SOLID, DOUBLE };
     90enum EBorderStyle { BNONE, BHIDDEN, INSET, GROOVE, OUTSET, RIDGE, DOTTED, DASHED, SOLID, DOUBLE };
    9191
    9292enum EBorderPrecedence { BOFF, BTABLE, BCOLGROUP, BCOL, BROWGROUP, BROW, BCELL };
Note: See TracChangeset for help on using the changeset viewer.