Title: [262779] trunk/Source/WebKit
Revision
262779
Author
[email protected]
Date
2020-06-09 00:06:55 -0700 (Tue, 09 Jun 2020)

Log Message

[WebDriver][WPE] Follow up WPE fix after r262703
https://bugs.webkit.org/show_bug.cgi?id=212948

Reviewed by Carlos Garcia Campos.

Covered by existing tests.

* UIProcess/Automation/wpe/WebAutomationSessionWPE.cpp:
(WebKit::WebAutomationSession::platformWebModifiersFromRaw):

Modified Paths

Diff

Modified: trunk/Source/WebKit/ChangeLog (262778 => 262779)


--- trunk/Source/WebKit/ChangeLog	2020-06-09 06:54:20 UTC (rev 262778)
+++ trunk/Source/WebKit/ChangeLog	2020-06-09 07:06:55 UTC (rev 262779)
@@ -1,3 +1,15 @@
+2020-06-09  Lauro Moura  <[email protected]>
+
+        [WebDriver][WPE] Follow up WPE fix after r262703
+        https://bugs.webkit.org/show_bug.cgi?id=212948
+
+        Reviewed by Carlos Garcia Campos.
+
+        Covered by existing tests.
+
+        * UIProcess/Automation/wpe/WebAutomationSessionWPE.cpp:
+        (WebKit::WebAutomationSession::platformWebModifiersFromRaw):
+
 2020-06-08  David Kilzer  <[email protected]>
 
         [IPC] Adopt enum class for IPC::CFType

Modified: trunk/Source/WebKit/UIProcess/Automation/wpe/WebAutomationSessionWPE.cpp (262778 => 262779)


--- trunk/Source/WebKit/UIProcess/Automation/wpe/WebAutomationSessionWPE.cpp	2020-06-09 06:54:20 UTC (rev 262778)
+++ trunk/Source/WebKit/UIProcess/Automation/wpe/WebAutomationSessionWPE.cpp	2020-06-09 07:06:55 UTC (rev 262779)
@@ -127,7 +127,7 @@
 {
     OptionSet<WebEvent::Modifier> webModifiers;
 
-    if (modifiers & wpe_input_keyboard_modifier_shift)
+    if (modifiers & wpe_input_keyboard_modifier_alt)
         webModifiers.add(WebEvent::Modifier::AltKey);
     if (modifiers & wpe_input_keyboard_modifier_meta)
         webModifiers.add(WebEvent::Modifier::MetaKey);
_______________________________________________
webkit-changes mailing list
[email protected]
https://lists.webkit.org/mailman/listinfo/webkit-changes

Reply via email to