Changeset 55605 in webkit


Ignore:
Timestamp:
Mar 5, 2010 6:27:34 PM (14 years ago)
Author:
dino@apple.com
Message:

2010-03-05 Dean Jackson <dino@apple.com>

Reviewed by Simon Fraser.

https://bugs.webkit.org/show_bug.cgi?id=35772
Animation fill modes should be supported in the shorthand property

Add CSSPropertyWebkitAnimationFillMode to the list of properties
evaluated in the -webkit-animation shorthand.

Test: animations/animation-shorthand.html

  • css/CSSParser.cpp: (WebCore::CSSParser::parseAnimationShorthand):
Location:
trunk
Files:
2 added
3 edited

Legend:

Unmodified
Added
Removed
  • trunk/LayoutTests/ChangeLog

    r55604 r55605  
     12010-03-05  Dean Jackson  <dino@apple.com>
     2
     3        Reviewed by Simon Fraser.
     4
     5        https://bugs.webkit.org/show_bug.cgi?id=35772
     6        Animation fill modes should be supported in the shorthand property
     7
     8        Testcase for animation shorthand property (appears to be
     9        the first of its kind).
     10
     11        * animations/animation-shorthand-expected.txt: Added.
     12        * animations/animation-shorthand.html: Added.
     13
    1142010-03-05  Eric Seidel  <eric@webkit.org>
    215
  • trunk/WebCore/ChangeLog

    r55601 r55605  
     12010-03-05  Dean Jackson  <dino@apple.com>
     2
     3        Reviewed by Simon Fraser.
     4
     5        https://bugs.webkit.org/show_bug.cgi?id=35772
     6        Animation fill modes should be supported in the shorthand property
     7
     8        Add CSSPropertyWebkitAnimationFillMode to the list of properties
     9        evaluated in the -webkit-animation shorthand.
     10
     11        Test: animations/animation-shorthand.html
     12
     13        * css/CSSParser.cpp:
     14        (WebCore::CSSParser::parseAnimationShorthand):
     15
    1162010-03-05  Dean Jackson  <dino@apple.com>
    217
  • trunk/WebCore/css/CSSParser.cpp

    r55576 r55605  
    18921892                                CSSPropertyWebkitAnimationDelay,
    18931893                                CSSPropertyWebkitAnimationIterationCount,
    1894                                 CSSPropertyWebkitAnimationDirection };
     1894                                CSSPropertyWebkitAnimationDirection,
     1895                                CSSPropertyWebkitAnimationFillMode };
    18951896    const int numProperties = sizeof(properties) / sizeof(properties[0]);
    18961897   
Note: See TracChangeset for help on using the changeset viewer.