Changeset 117820 in webkit


Ignore:
Timestamp:
May 21, 2012 2:53:06 PM (12 years ago)
Author:
commit-queue@webkit.org
Message:

[Qt][WK2] fast/forms/submit-to-blank-multiple-times.html fails
https://bugs.webkit.org/show_bug.cgi?id=68309

Patch by Hugo Parente Lima <Hugo Parente Lima> on 2012-05-21
Reviewed by Alexis Menard.

Source/WebKit2:

Force focus when the element receives a double click event.

  • UIProcess/API/qt/qquickwebview.cpp:

(QQuickWebView::mouseDoubleClickEvent):

LayoutTests:

Unskip the test.

  • platform/qt-5.0-wk2/Skipped:
Location:
trunk
Files:
4 edited

Legend:

Unmodified
Added
Removed
  • trunk/LayoutTests/ChangeLog

    r117818 r117820  
     12012-05-21  Hugo Parente Lima  <hugo.lima@openbossa.org>
     2
     3        [Qt][WK2] fast/forms/submit-to-blank-multiple-times.html fails
     4        https://bugs.webkit.org/show_bug.cgi?id=68309
     5
     6        Reviewed by Alexis Menard.
     7
     8        Unskip the test.
     9
     10        * platform/qt-5.0-wk2/Skipped:
     11
    1122012-05-21  Levi Weintraub  <leviw@chromium.org>
    213
  • trunk/LayoutTests/platform/qt-5.0-wk2/Skipped

    r117596 r117820  
    175175fast/inline/absolute-positioned-inline-in-centred-block.html
    176176
    177 # [Qt][WK] fast/forms/submit-to-blank-multiple-times.html fails
    178 # https://bugs.webkit.org/show_bug.cgi?id=68309
    179 fast/forms/submit-to-blank-multiple-times.html
    180 
    181177# Missing layoutTestController.setUserStyleSheetEnabled() implementation
    182178platform/qt/fast/loader/user-stylesheet-qrc-path.html
  • trunk/Source/WebKit2/ChangeLog

    r117812 r117820  
     12012-05-21  Hugo Parente Lima  <hugo.lima@openbossa.org>
     2
     3        [Qt][WK2] fast/forms/submit-to-blank-multiple-times.html fails
     4        https://bugs.webkit.org/show_bug.cgi?id=68309
     5
     6        Reviewed by Alexis Menard.
     7
     8        Force focus when the element receives a double click event.
     9
     10        * UIProcess/API/qt/qquickwebview.cpp:
     11        (QQuickWebView::mouseDoubleClickEvent):
     12
    1132012-05-21  Marcelo Lira  <marcelo.lira@openbossa.org>
    214
  • trunk/Source/WebKit2/UIProcess/API/qt/qquickwebview.cpp

    r117061 r117820  
    17091709    Q_D(QQuickWebView);
    17101710
     1711    forceActiveFocus();
    17111712    // If a MouseButtonDblClick was received then we got a MouseButtonPress before
    17121713    // handleMousePressEvent will take care of double clicks.
Note: See TracChangeset for help on using the changeset viewer.