Changeset 38645 in webkit


Ignore:
Timestamp:
Nov 20, 2008 4:48:46 PM (15 years ago)
Author:
Simon Fraser
Message:

2008-11-20 Dean Jackson <dino@apple.com>

Reviewed by Antti Koivisto

https://bugs.webkit.org/show_bug.cgi?id=21247

Make transition shorthand property accept transition-delay.

Test: transitions/transition-shorthand-delay.html

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

Legend:

Unmodified
Added
Removed
  • trunk/LayoutTests/ChangeLog

    r38644 r38645  
     12008-11-20  Dean Jackson  <dino@apple.com>
     2
     3        Reviewed by Antti Koivisto
     4
     5        https://bugs.webkit.org/show_bug.cgi?id=21247
     6
     7        Make transition shorthand property accept transition-delay.
     8
     9        * transitions/transition-shorthand-delay-expected.txt: Added.
     10        * transitions/transition-shorthand-delay.html: Added.
     11
    1122008-11-20  Dean Jackson  <dino@apple.com>
    213
  • trunk/WebCore/ChangeLog

    r38644 r38645  
     12008-11-20  Dean Jackson  <dino@apple.com>
     2
     3        Reviewed by Antti Koivisto
     4
     5        https://bugs.webkit.org/show_bug.cgi?id=21247
     6
     7        Make transition shorthand property accept transition-delay.
     8
     9        Test: transitions/transition-shorthand-delay.html
     10
     11        * css/CSSParser.cpp:
     12        (WebCore::CSSParser::parseTransitionShorthand):
     13
    1142008-11-20  Dean Jackson  <dino@apple.com>
    215
  • trunk/WebCore/css/CSSParser.cpp

    r38327 r38645  
    17951795    const int properties[] = { CSSPropertyWebkitTransitionProperty,
    17961796                               CSSPropertyWebkitTransitionDuration,
    1797                                CSSPropertyWebkitTransitionTimingFunction };
     1797                               CSSPropertyWebkitTransitionTimingFunction,
     1798                               CSSPropertyWebkitTransitionDelay };
    17981799    const int numProperties = sizeof(properties) / sizeof(properties[0]);
    17991800   
Note: See TracChangeset for help on using the changeset viewer.