Changeset 144647 in webkit
- Timestamp:
- Mar 4, 2013, 10:59:31 AM (12 years ago)
- Location:
- trunk
- Files:
-
- 2 added
- 3 edited
Legend:
- Unmodified
- Added
- Removed
-
trunk/LayoutTests/ChangeLog
r144644 r144647 1 2013-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 1 13 2013-03-04 Alexis Menard <alexis@webkit.org> 2 14 -
trunk/Source/WebCore/ChangeLog
r144646 r144647 1 2013-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 1 15 2013-03-04 Levi Weintraub <leviw@chromium.org> 2 16 -
trunk/Source/WebCore/css/CSSComputedStyleDeclaration.cpp
r144626 r144647 2683 2683 case CSSPropertyWebkitColumnRule: 2684 2684 return getCSSPropertyValuesForShorthandProperties(webkitColumnRuleShorthand()); 2685 case CSSPropertyWebkitColumns: 2686 return getCSSPropertyValuesForShorthandProperties(webkitColumnsShorthand()); 2685 2687 case CSSPropertyListStyle: 2686 2688 return getCSSPropertyValuesForShorthandProperties(listStyleShorthand()); … … 2764 2766 case CSSPropertyWebkitAnimation: 2765 2767 case CSSPropertyWebkitBorderRadius: 2766 case CSSPropertyWebkitColumns:2767 2768 case CSSPropertyWebkitMarginCollapse: 2768 2769 case CSSPropertyWebkitMarquee:
Note:
See TracChangeset
for help on using the changeset viewer.