Changeset 59754 in webkit


Ignore:
Timestamp:
May 19, 2010 2:37:37 AM (14 years ago)
Author:
eric@webkit.org
Message:

2010-05-19 Ben Murdoch <benm@google.com>

Reviewed by Darin Adler.

Touch events are marked DontEnum in DOMWindow.idl
https://bugs.webkit.org/show_bug.cgi?id=39118

Update the expected results for enumerating the window object
properties now touch event listeners are no longer marked DontEnum.

  • platform/qt/fast/dom/Window/window-properties-expected.txt:

2010-05-19 Ben Murdoch <benm@google.com>

Reviewed by Darin Adler.

Touch events are marked DontEnum in DOMWindow.idl
https://bugs.webkit.org/show_bug.cgi?id=39118

Touch events are the only attribute event listeners on the
window object that are marked DontEnum. For consistency allow
them to be enumerated.

  • page/DOMWindow.idl: Remove DontEnum from touchcancel, touchend,

touchstart and touchmove attributes.

Location:
trunk
Files:
4 edited

Legend:

Unmodified
Added
Removed
  • trunk/LayoutTests/ChangeLog

    r59751 r59754  
     12010-05-19  Ben Murdoch  <benm@google.com>
     2
     3        Reviewed by Darin Adler.
     4
     5        Touch events are marked DontEnum in DOMWindow.idl
     6        https://bugs.webkit.org/show_bug.cgi?id=39118
     7
     8        Update the expected results for enumerating the window object
     9        properties now touch event listeners are no longer marked DontEnum.
     10
     11        * platform/qt/fast/dom/Window/window-properties-expected.txt:
     12
    1132010-05-18  Yuzo Fujishima  <yuzo@google.com>
    214
  • trunk/LayoutTests/platform/qt/fast/dom/Window/window-properties-expected.txt

    r59542 r59754  
    21452145window.onsuspend [null]
    21462146window.ontimeupdate [null]
     2147window.ontouchcancel [null]
     2148window.ontouchend [null]
     2149window.ontouchmove [null]
     2150window.ontouchstart [null]
    21472151window.onunload [null]
    21482152window.onvolumechange [null]
  • trunk/WebCore/ChangeLog

    r59753 r59754  
     12010-05-19  Ben Murdoch  <benm@google.com>
     2
     3        Reviewed by Darin Adler.
     4
     5        Touch events are marked DontEnum in DOMWindow.idl
     6        https://bugs.webkit.org/show_bug.cgi?id=39118
     7
     8        Touch events are the only attribute event listeners on the
     9        window object that are marked DontEnum. For consistency allow
     10        them to be enumerated.
     11
     12        * page/DOMWindow.idl: Remove DontEnum from touchcancel, touchend,
     13            touchstart and touchmove attributes.
     14
    1152010-05-19  Simon Hausmann  <simon.hausmann@nokia.com>
    216
  • trunk/WebCore/page/DOMWindow.idl

    r59541 r59754  
    295295        attribute EventListener onorientationchange;
    296296#endif
    297         attribute [DontEnum,Conditional=TOUCH_EVENTS,EnabledAtRuntime] EventListener ontouchstart;
    298         attribute [DontEnum,Conditional=TOUCH_EVENTS,EnabledAtRuntime] EventListener ontouchmove;
    299         attribute [DontEnum,Conditional=TOUCH_EVENTS,EnabledAtRuntime] EventListener ontouchend;
    300         attribute [DontEnum,Conditional=TOUCH_EVENTS,EnabledAtRuntime] EventListener ontouchcancel;
     297        attribute [Conditional=TOUCH_EVENTS,EnabledAtRuntime] EventListener ontouchstart;
     298        attribute [Conditional=TOUCH_EVENTS,EnabledAtRuntime] EventListener ontouchmove;
     299        attribute [Conditional=TOUCH_EVENTS,EnabledAtRuntime] EventListener ontouchend;
     300        attribute [Conditional=TOUCH_EVENTS,EnabledAtRuntime] EventListener ontouchcancel;
    301301
    302302        // EventTarget interface
Note: See TracChangeset for help on using the changeset viewer.