Changeset 60617 in webkit


Ignore:
Timestamp:
Jun 3, 2010 2:58:36 AM (14 years ago)
Author:
Simon Hausmann
Message:

Not reviewed: Add TransformActionEvent to the window object tests, after r60614.

  • platform/qt/fast/dom/Window/window-properties-expected.txt:
  • platform/qt/fast/dom/Window/window-property-descriptors-expected.txt:
  • platform/qt/fast/dom/prototype-inheritance-expected.txt:
  • platform/qt/fast/js/global-constructors-expected.txt:
Location:
trunk/LayoutTests
Files:
5 edited

Legend:

Unmodified
Added
Removed
  • trunk/LayoutTests/ChangeLog

    r60616 r60617  
     12010-06-03  Simon Hausmann  <simon.hausmann@nokia.com>
     2
     3        Not reviewed: Add TransformActionEvent to the window object tests, after r60614.
     4
     5        * platform/qt/fast/dom/Window/window-properties-expected.txt:
     6        * platform/qt/fast/dom/Window/window-property-descriptors-expected.txt:
     7        * platform/qt/fast/dom/prototype-inheritance-expected.txt:
     8        * platform/qt/fast/js/global-constructors-expected.txt:
     9
    1102010-06-03  Kent Tamura  <tkent@chromium.org>
    211
  • trunk/LayoutTests/platform/qt/fast/dom/Window/window-properties-expected.txt

    r60568 r60617  
    18271827window.TouchEvent [object TouchEventConstructor]
    18281828window.TouchEvent.prototype [printed above as window.Event.prototype]
     1829window.TransformActionEvent [object TransformActionEventConstructor]
     1830window.TransformActionEvent.prototype [printed above as window.Event.prototype]
    18291831window.TypeError [function]
    18301832window.UIEvent [object UIEventConstructor]
     
    21572159window.ontouchmove [null]
    21582160window.ontouchstart [null]
     2161window.ontransformactionend [null]
     2162window.ontransformactionstart [null]
     2163window.ontransformactionupdate [null]
    21592164window.onunload [null]
    21602165window.onvolumechange [null]
  • trunk/LayoutTests/platform/qt/fast/dom/Window/window-property-descriptors-expected.txt

    r60070 r60617  
    283283PASS typeof Object.getOwnPropertyDescriptor(window, 'TextMetrics') is 'object'
    284284PASS typeof Object.getOwnPropertyDescriptor(window, 'TouchEvent') is 'object'
     285PASS typeof Object.getOwnPropertyDescriptor(window, 'TransformActionEvent') is 'object'
    285286PASS typeof Object.getOwnPropertyDescriptor(window, 'TypeError') is 'object'
    286287PASS typeof Object.getOwnPropertyDescriptor(window, 'UIEvent') is 'object'
     
    411412PASS typeof Object.getOwnPropertyDescriptor(window, 'ontouchmove') is 'object'
    412413PASS typeof Object.getOwnPropertyDescriptor(window, 'ontouchstart') is 'object'
     414PASS typeof Object.getOwnPropertyDescriptor(window, 'ontransformactionend') is 'object'
     415PASS typeof Object.getOwnPropertyDescriptor(window, 'ontransformactionstart') is 'object'
     416PASS typeof Object.getOwnPropertyDescriptor(window, 'ontransformactionupdate') is 'object'
    413417PASS typeof Object.getOwnPropertyDescriptor(window, 'onunload') is 'object'
    414418PASS typeof Object.getOwnPropertyDescriptor(window, 'onvolumechange') is 'object'
  • trunk/LayoutTests/platform/qt/fast/dom/prototype-inheritance-expected.txt

    r60070 r60617  
    536536PASS inner.TouchEvent.isInner is true
    537537PASS inner.TouchEvent.constructor.isInner is true
     538PASS inner.TransformActionEvent.isInner is true
     539PASS inner.TransformActionEvent.constructor.isInner is true
    538540PASS inner.TypeError.isInner is true
    539541PASS inner.TypeError.constructor.isInner is true
  • trunk/LayoutTests/platform/qt/fast/js/global-constructors-expected.txt

    r60070 r60617  
    265265PASS TextMetrics.toString() is '[object TextMetricsConstructor]'
    266266PASS TouchEvent.toString() is '[object TouchEventConstructor]'
     267PASS TransformActionEvent.toString() is '[object TransformActionEventConstructor]'
    267268PASS UIEvent.toString() is '[object UIEventConstructor]'
    268269PASS WebKitAnimationEvent.toString() is '[object WebKitAnimationEventConstructor]'
Note: See TracChangeset for help on using the changeset viewer.