Changeset 97326 in webkit


Ignore:
Timestamp:
Oct 12, 2011 5:50:54 PM (13 years ago)
Author:
haraken@chromium.org
Message:

Implement a WebKitTransitionEvent constructor for V8
https://bugs.webkit.org/show_bug.cgi?id=69911

Reviewed by Adam Barth.

Source/WebCore:

Test: fast/events/constructors/webkit-transition-event-constructor.html

  • bindings/v8/custom/V8EventConstructors.cpp: Added a WebKitTransitionEvent constructor.
  • dom/WebKitTransitionEvent.idl: Replaced 'JSCustomConstructor' with 'CustomConstructor'.

LayoutTests:

Enabled webkit-transition-event-constructor.html, since now V8 has the WebKitTransitionEvent constructor.

  • platform/chromium/test_expectations.txt:
Location:
trunk
Files:
5 edited

Legend:

Unmodified
Added
Removed
  • trunk/LayoutTests/ChangeLog

    r97325 r97326  
     12011-10-12  Kentaro Hara  <haraken@chromium.org>
     2
     3        Implement a WebKitTransitionEvent constructor for V8
     4        https://bugs.webkit.org/show_bug.cgi?id=69911
     5
     6        Reviewed by Adam Barth.
     7
     8        Enabled webkit-transition-event-constructor.html, since now V8 has the WebKitTransitionEvent constructor.
     9
     10        * platform/chromium/test_expectations.txt:
     11
    1122011-10-12  Ojan Vafai  <ojan@chromium.org>
    213
  • trunk/LayoutTests/platform/chromium/test_expectations.txt

    r97324 r97326  
    8383// Tests for WebVTT parser for <track>.  Feature is not yet functional.
    8484BUGWK43668 SKIP : media/track/ = TIMEOUT
    85 
    86 // This will soon be fixed after implementing a WebKitTransitionEvent constructor for V8.
    87 BUGWK69829 : fast/events/constructors/webkit-transition-event-constructor.html = FAIL
    8885
    8986// Tests for MediaSource API. Feature is not yet functional.
  • trunk/Source/WebCore/ChangeLog

    r97324 r97326  
     12011-10-12  Kentaro Hara  <haraken@chromium.org>
     2
     3        Implement a WebKitTransitionEvent constructor for V8
     4        https://bugs.webkit.org/show_bug.cgi?id=69911
     5
     6        Reviewed by Adam Barth.
     7
     8        Test: fast/events/constructors/webkit-transition-event-constructor.html
     9
     10        * bindings/v8/custom/V8EventConstructors.cpp: Added a WebKitTransitionEvent constructor.
     11        * dom/WebKitTransitionEvent.idl: Replaced 'JSCustomConstructor' with 'CustomConstructor'.
     12
    1132011-10-12  Kentaro Hara  <haraken@chromium.org>
    214
  • trunk/Source/WebCore/bindings/v8/custom/V8EventConstructors.cpp

    r96212 r97326  
    4343#include "ProgressEvent.h"
    4444#include "WebKitAnimationEvent.h"
     45#include "WebKitTransitionEvent.h"
    4546
    4647#include "OptionsObject.h"
     
    5960#include "V8Proxy.h"
    6061#include "V8WebKitAnimationEvent.h"
     62#include "V8WebKitTransitionEvent.h"
    6163
    6264#include <wtf/RefPtr.h>
     
    121123INSTANTIATE_INITIALIZING_CONSTRUCTOR_FOR_ERROR_EVENT(DICTIONARY_START, DICTIONARY_END, FILL_PARENT_PROPERTIES, FILL_PROPERTY)
    122124INSTANTIATE_INITIALIZING_CONSTRUCTOR_FOR_POP_STATE_EVENT(DICTIONARY_START, DICTIONARY_END, FILL_PARENT_PROPERTIES, FILL_PROPERTY)
     125INSTANTIATE_INITIALIZING_CONSTRUCTOR_FOR_WEBKIT_TRANSITION_EVENT(DICTIONARY_START, DICTIONARY_END, FILL_PARENT_PROPERTIES, FILL_PROPERTY)
    123126
    124127
  • trunk/Source/WebCore/dom/WebKitTransitionEvent.idl

    r97225 r97326  
    2828    interface [
    2929        CanBeConstructed,
    30         JSCustomConstructor
     30        CustomConstructor
    3131    ] WebKitTransitionEvent : Event {
    3232    readonly attribute DOMString          propertyName;
Note: See TracChangeset for help on using the changeset viewer.