Changeset 144730 in webkit


Ignore:
Timestamp:
Mar 4, 2013 11:33:23 PM (11 years ago)
Author:
commit-queue@webkit.org
Message:

getPropertyValue for -webkit-columns returns null, should compute the shorthand value
https://bugs.webkit.org/show_bug.cgi?id=111011

Patch by Uday Kiran <udaykiran@motorola.com> on 2013-03-04
Reviewed by Alexander Pavlov.

Source/WebCore:

Test: fast/css/getPropertyValue-columns.html

  • css/StylePropertySet.cpp:

(WebCore::StylePropertySet::getPropertyValue):

LayoutTests:

Added test for getPropertyValue("-webkit-columns").

  • fast/css/getPropertyValue-columns-expected.txt: Added.
  • fast/css/getPropertyValue-columns.html: Added.
Location:
trunk
Files:
2 added
3 edited

Legend:

Unmodified
Added
Removed
  • trunk/LayoutTests/ChangeLog

    r144729 r144730  
     12013-03-04  Uday Kiran  <udaykiran@motorola.com>
     2
     3        getPropertyValue for -webkit-columns returns null, should compute the shorthand value
     4        https://bugs.webkit.org/show_bug.cgi?id=111011
     5
     6        Reviewed by Alexander Pavlov.
     7
     8        Added test for getPropertyValue("-webkit-columns").
     9
     10        * fast/css/getPropertyValue-columns-expected.txt: Added.
     11        * fast/css/getPropertyValue-columns.html: Added.
     12
    1132013-03-04  Vsevolod Vlasov  <vsevik@chromium.org>
    214
  • trunk/Source/WebCore/ChangeLog

    r144729 r144730  
     12013-03-04  Uday Kiran  <udaykiran@motorola.com>
     2
     3        getPropertyValue for -webkit-columns returns null, should compute the shorthand value
     4        https://bugs.webkit.org/show_bug.cgi?id=111011
     5
     6        Reviewed by Alexander Pavlov.
     7
     8        Test: fast/css/getPropertyValue-columns.html
     9
     10        * css/StylePropertySet.cpp:
     11        (WebCore::StylePropertySet::getPropertyValue):
     12
    1132013-03-04  Vsevolod Vlasov  <vsevik@chromium.org>
    214
  • trunk/Source/WebCore/css/StylePropertySet.cpp

    r144626 r144730  
    163163    case CSSPropertyWebkitColumnRule:
    164164        return getShorthandValue(webkitColumnRuleShorthand());
     165    case CSSPropertyWebkitColumns:
     166        return getShorthandValue(webkitColumnsShorthand());
    165167    case CSSPropertyWebkitFlex:
    166168        return getShorthandValue(webkitFlexShorthand());
Note: See TracChangeset for help on using the changeset viewer.