Title: [117820] trunk
Revision
117820
Author
[email protected]
Date
2012-05-21 14:53:06 -0700 (Mon, 21 May 2012)

Log 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 <[email protected]> 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:

Modified Paths

Diff

Modified: trunk/LayoutTests/ChangeLog (117819 => 117820)


--- trunk/LayoutTests/ChangeLog	2012-05-21 21:52:08 UTC (rev 117819)
+++ trunk/LayoutTests/ChangeLog	2012-05-21 21:53:06 UTC (rev 117820)
@@ -1,3 +1,14 @@
+2012-05-21  Hugo Parente Lima  <[email protected]>
+
+        [Qt][WK2] fast/forms/submit-to-blank-multiple-times.html fails
+        https://bugs.webkit.org/show_bug.cgi?id=68309
+
+        Reviewed by Alexis Menard.
+
+        Unskip the test.
+
+        * platform/qt-5.0-wk2/Skipped:
+
 2012-05-21  Levi Weintraub  <[email protected]>
 
         Unreviewed Chromium expectation update following sub-pixel r117815. This covers all updates

Modified: trunk/LayoutTests/platform/qt-5.0-wk2/Skipped (117819 => 117820)


--- trunk/LayoutTests/platform/qt-5.0-wk2/Skipped	2012-05-21 21:52:08 UTC (rev 117819)
+++ trunk/LayoutTests/platform/qt-5.0-wk2/Skipped	2012-05-21 21:53:06 UTC (rev 117820)
@@ -174,10 +174,6 @@
 # https://bugs.webkit.org/show_bug.cgi?id=67607
 fast/inline/absolute-positioned-inline-in-centred-block.html
 
-# [Qt][WK] fast/forms/submit-to-blank-multiple-times.html fails
-# https://bugs.webkit.org/show_bug.cgi?id=68309
-fast/forms/submit-to-blank-multiple-times.html
-
 # Missing layoutTestController.setUserStyleSheetEnabled() implementation
 platform/qt/fast/loader/user-stylesheet-qrc-path.html
 

Modified: trunk/Source/WebKit2/ChangeLog (117819 => 117820)


--- trunk/Source/WebKit2/ChangeLog	2012-05-21 21:52:08 UTC (rev 117819)
+++ trunk/Source/WebKit2/ChangeLog	2012-05-21 21:53:06 UTC (rev 117820)
@@ -1,3 +1,15 @@
+2012-05-21  Hugo Parente Lima  <[email protected]>
+
+        [Qt][WK2] fast/forms/submit-to-blank-multiple-times.html fails
+        https://bugs.webkit.org/show_bug.cgi?id=68309
+
+        Reviewed by Alexis Menard.
+
+        Force focus when the element receives a double click event.
+
+        * UIProcess/API/qt/qquickwebview.cpp:
+        (QQuickWebView::mouseDoubleClickEvent):
+
 2012-05-21  Marcelo Lira  <[email protected]>
 
         [Qt][WK2] REGRESSION, fix a failing API test in qmltests

Modified: trunk/Source/WebKit2/UIProcess/API/qt/qquickwebview.cpp (117819 => 117820)


--- trunk/Source/WebKit2/UIProcess/API/qt/qquickwebview.cpp	2012-05-21 21:52:08 UTC (rev 117819)
+++ trunk/Source/WebKit2/UIProcess/API/qt/qquickwebview.cpp	2012-05-21 21:53:06 UTC (rev 117820)
@@ -1708,6 +1708,7 @@
 {
     Q_D(QQuickWebView);
 
+    forceActiveFocus();
     // If a MouseButtonDblClick was received then we got a MouseButtonPress before
     // handleMousePressEvent will take care of double clicks.
     d->pageView->eventHandler()->handleMousePressEvent(event);
_______________________________________________
webkit-changes mailing list
[email protected]
http://lists.webkit.org/mailman/listinfo.cgi/webkit-changes

Reply via email to