Title: [233133] trunk/Source/WebKit
Revision
233133
Author
mcatanz...@igalia.com
Date
2018-06-24 09:59:55 -0700 (Sun, 24 Jun 2018)

Log Message

Unreviewed, fix GTK debug build after r233131
https://bugs.webkit.org/show_bug.cgi?id=186899
<rdar://problem/38222248>

This assertion was intended to be removed.

* UIProcess/Automation/gtk/WebAutomationSessionGtk.cpp:
(WebKit::WebAutomationSession::platformSimulateKeyboardInteraction):

Modified Paths

Diff

Modified: trunk/Source/WebKit/ChangeLog (233132 => 233133)


--- trunk/Source/WebKit/ChangeLog	2018-06-23 21:07:38 UTC (rev 233132)
+++ trunk/Source/WebKit/ChangeLog	2018-06-24 16:59:55 UTC (rev 233133)
@@ -1,3 +1,14 @@
+2018-06-24  Michael Catanzaro  <mcatanz...@igalia.com>
+
+        Unreviewed, fix GTK debug build after r233131
+        https://bugs.webkit.org/show_bug.cgi?id=186899
+        <rdar://problem/38222248>
+
+        This assertion was intended to be removed.
+
+        * UIProcess/Automation/gtk/WebAutomationSessionGtk.cpp:
+        (WebKit::WebAutomationSession::platformSimulateKeyboardInteraction):
+
 2018-06-21  Brian Burg  <bb...@apple.com>
 
         Web Automation: key actions should support multiple pressed virtual keys

Modified: trunk/Source/WebKit/UIProcess/Automation/gtk/WebAutomationSessionGtk.cpp (233132 => 233133)


--- trunk/Source/WebKit/UIProcess/Automation/gtk/WebAutomationSessionGtk.cpp	2018-06-23 21:07:38 UTC (rev 233132)
+++ trunk/Source/WebKit/UIProcess/Automation/gtk/WebAutomationSessionGtk.cpp	2018-06-24 16:59:55 UTC (rev 233133)
@@ -296,8 +296,6 @@
 
 void WebAutomationSession::platformSimulateKeyboardInteraction(WebPageProxy& page, KeyboardInteraction interaction, WTF::Variant<VirtualKey, CharKey>&& key)
 {
-    ASSERT(virtualKey.has_value() || charKey.has_value());
-
     unsigned keyCode;
     WTF::switchOn(key,
         [&] (VirtualKey virtualKey) {
_______________________________________________
webkit-changes mailing list
webkit-changes@lists.webkit.org
https://lists.webkit.org/mailman/listinfo/webkit-changes

Reply via email to