Changeset 144647 in webkit


Ignore:
Timestamp:
Mar 4, 2013, 10:59:31 AM (12 years ago)
Author:
commit-queue@webkit.org
Message:

getComputedStyle not implemented for -webkit-columns shorthand
https://bugs.webkit.org/show_bug.cgi?id=111236

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

Source/WebCore:

Implement getComputedStyle for -webkit-columns shorthand.

Test: fast/css/getComputedStyle/getComputedStyle-webkit-columns-shorthand.html

  • css/CSSComputedStyleDeclaration.cpp:

(WebCore::CSSComputedStyleDeclaration::getPropertyCSSValue):

LayoutTests:

Add test to check getComputedStyle for -webkit-columns.

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

Legend:

Unmodified
Added
Removed
  • trunk/LayoutTests/ChangeLog

    r144644 r144647  
     12013-03-04  Uday Kiran  <udaykiran@motorola.com>
     2
     3        getComputedStyle not implemented for -webkit-columns shorthand
     4        https://bugs.webkit.org/show_bug.cgi?id=111236
     5
     6        Reviewed by Alexis Menard.
     7
     8        Add test to check getComputedStyle for -webkit-columns.
     9
     10        * fast/css/getComputedStyle/getComputedStyle-webkit-columns-shorthand-expected.txt: Added.
     11        * fast/css/getComputedStyle/getComputedStyle-webkit-columns-shorthand.html: Added.
     12
    1132013-03-04  Alexis Menard  <alexis@webkit.org>
    214
  • trunk/Source/WebCore/ChangeLog

    r144646 r144647  
     12013-03-04  Uday Kiran  <udaykiran@motorola.com>
     2
     3        getComputedStyle not implemented for -webkit-columns shorthand
     4        https://bugs.webkit.org/show_bug.cgi?id=111236
     5
     6        Reviewed by Alexis Menard.
     7
     8        Implement getComputedStyle for -webkit-columns shorthand.
     9
     10        Test: fast/css/getComputedStyle/getComputedStyle-webkit-columns-shorthand.html
     11
     12        * css/CSSComputedStyleDeclaration.cpp:
     13        (WebCore::CSSComputedStyleDeclaration::getPropertyCSSValue):
     14
    1152013-03-04  Levi Weintraub  <leviw@chromium.org>
    216
  • trunk/Source/WebCore/css/CSSComputedStyleDeclaration.cpp

    r144626 r144647  
    26832683        case CSSPropertyWebkitColumnRule:
    26842684            return getCSSPropertyValuesForShorthandProperties(webkitColumnRuleShorthand());
     2685        case CSSPropertyWebkitColumns:
     2686            return getCSSPropertyValuesForShorthandProperties(webkitColumnsShorthand());
    26852687        case CSSPropertyListStyle:
    26862688            return getCSSPropertyValuesForShorthandProperties(listStyleShorthand());
     
    27642766        case CSSPropertyWebkitAnimation:
    27652767        case CSSPropertyWebkitBorderRadius:
    2766         case CSSPropertyWebkitColumns:
    27672768        case CSSPropertyWebkitMarginCollapse:
    27682769        case CSSPropertyWebkitMarquee:
Note: See TracChangeset for help on using the changeset viewer.