Changeset 61291 in webkit


Ignore:
Timestamp:
Jun 16, 2010 3:58:04 PM (14 years ago)
Author:
Martin Robinson
Message:

2010-06-16 Martin Robinson <mrobinson@igalia.com>

Reviewed by Gustavo Noronha Silva.

[GTK] r60803 broke media/controls-drag-timebar.html
https://bugs.webkit.org/show_bug.cgi?id=40269

  • platform/gtk/Skipped: Unskip test which is now passing.

2010-06-16 Martin Robinson <mrobinson@igalia.com>

Reviewed by Gustavo Noronha Silva.

[GTK] r60803 broke media/controls-drag-timebar.html
https://bugs.webkit.org/show_bug.cgi?id=40269

Only queue events while the mouse button is down, if drag mode is enabled. Some
tests may disable drag mode, to prevent the queuing of events in this situation.

  • DumpRenderTree/gtk/EventSender.cpp: (sendOrQueueEvent): Only queue events here if dragMode is true.
Location:
trunk
Files:
4 edited

Legend:

Unmodified
Added
Removed
  • trunk/LayoutTests/ChangeLog

    r61290 r61291  
     12010-06-16  Martin Robinson  <mrobinson@igalia.com>
     2
     3        Reviewed by Gustavo Noronha Silva.
     4
     5        [GTK] r60803 broke media/controls-drag-timebar.html
     6        https://bugs.webkit.org/show_bug.cgi?id=40269
     7
     8        * platform/gtk/Skipped: Unskip test which is now passing.
     9
    1102010-06-16  Adam Roben  <aroben@apple.com>
    211
  • trunk/LayoutTests/platform/gtk/Skipped

    r61288 r61291  
    59125912fast/dom/Geolocation/callback-to-deleted-context.html
    59135913
    5914 # https://bugs.webkit.org/show_bug.cgi?id=40269
    5915 media/controls-drag-timebar.html
    5916 
    59175914# GTK+ theme-rendered widgets do not support CSS transforms
    59185915# https://bugs.webkit.org/show_bug.cgi?id=40139
  • trunk/WebKitTools/ChangeLog

    r61288 r61291  
     12010-06-16  Martin Robinson  <mrobinson@igalia.com>
     2
     3        Reviewed by Gustavo Noronha Silva.
     4
     5        [GTK] r60803 broke media/controls-drag-timebar.html
     6        https://bugs.webkit.org/show_bug.cgi?id=40269
     7
     8        Only queue events while the mouse button is down, if drag mode is enabled. Some
     9        tests may disable drag mode, to prevent the queuing of events in this situation.
     10
     11        * DumpRenderTree/gtk/EventSender.cpp:
     12        (sendOrQueueEvent): Only queue events here if dragMode is true.
     13
    1142010-06-16  Martin Robinson  <mrobinson@igalia.com>
    215
  • trunk/WebKitTools/DumpRenderTree/gtk/EventSender.cpp

    r61288 r61291  
    346346    // Mouse move events are queued if the previous event was queued or if a
    347347    // delay was set up by leapForward().
    348     if (buttonCurrentlyDown || endOfQueue != startOfQueue || msgQueue[endOfQueue].delay) {
     348    if ((dragMode && buttonCurrentlyDown) || endOfQueue != startOfQueue || msgQueue[endOfQueue].delay) {
    349349        msgQueue[endOfQueue++].event = event;
    350350
Note: See TracChangeset for help on using the changeset viewer.