Title: [219912] trunk
- Revision
- 219912
- Author
- [email protected]
- Date
- 2017-07-26 02:01:34 -0700 (Wed, 26 Jul 2017)
Log Message
[WPE] Enable KeyboardEvent key and code attributes
https://bugs.webkit.org/show_bug.cgi?id=174822
Reviewed by Žan Doberšek.
Source/WTF:
There is no reason for this to be disabled from what I see.
* wtf/FeatureDefines.h: Enable KeyboardEvent key and code attributes.
LayoutTests:
* platform/wpe/TestExpectations: Mark
fast/events/constructors/keyboard-event-constructor.html as passing.
Modified Paths
Diff
Modified: trunk/LayoutTests/ChangeLog (219911 => 219912)
--- trunk/LayoutTests/ChangeLog 2017-07-26 08:31:17 UTC (rev 219911)
+++ trunk/LayoutTests/ChangeLog 2017-07-26 09:01:34 UTC (rev 219912)
@@ -1,3 +1,13 @@
+2017-07-26 Claudio Saavedra <[email protected]>
+
+ [WPE] Enable KeyboardEvent key and code attributes
+ https://bugs.webkit.org/show_bug.cgi?id=174822
+
+ Reviewed by Žan Doberšek.
+
+ * platform/wpe/TestExpectations: Mark
+ fast/events/constructors/keyboard-event-constructor.html as passing.
+
2017-07-26 Zan Dobersek <[email protected]>
[WPE] WebGL2 support
Modified: trunk/LayoutTests/platform/wpe/TestExpectations (219911 => 219912)
--- trunk/LayoutTests/platform/wpe/TestExpectations 2017-07-26 08:31:17 UTC (rev 219911)
+++ trunk/LayoutTests/platform/wpe/TestExpectations 2017-07-26 09:01:34 UTC (rev 219912)
@@ -221,6 +221,8 @@
Bug(WPE) fast/encoding [ Pass ]
Bug(WPE) fast/encoding/mailto-always-utf-8.html [ Timeout ]
+fast/events/constructors/keyboard-event-constructor.html [ Pass ]
+
Bug(WPE) fast/innerHTML [ Pass ]
Bug(WPE) fast/innerHTML/001.html [ ImageOnlyFailure ]
Modified: trunk/Source/WTF/ChangeLog (219911 => 219912)
--- trunk/Source/WTF/ChangeLog 2017-07-26 08:31:17 UTC (rev 219911)
+++ trunk/Source/WTF/ChangeLog 2017-07-26 09:01:34 UTC (rev 219912)
@@ -1,3 +1,14 @@
+2017-07-26 Claudio Saavedra <[email protected]>
+
+ [WPE] Enable KeyboardEvent key and code attributes
+ https://bugs.webkit.org/show_bug.cgi?id=174822
+
+ Reviewed by Žan Doberšek.
+
+ There is no reason for this to be disabled from what I see.
+
+ * wtf/FeatureDefines.h: Enable KeyboardEvent key and code attributes.
+
2017-07-23 Filip Pizlo <[email protected]>
B3 should do LICM
Modified: trunk/Source/WTF/wtf/FeatureDefines.h (219911 => 219912)
--- trunk/Source/WTF/wtf/FeatureDefines.h 2017-07-26 08:31:17 UTC (rev 219911)
+++ trunk/Source/WTF/wtf/FeatureDefines.h 2017-07-26 09:01:34 UTC (rev 219912)
@@ -322,8 +322,8 @@
#endif /* PLATFORM(WIN_CAIRO) */
-/* --------- Gtk port (Unix, Windows, Mac) --------- */
-#if PLATFORM(GTK)
+/* --------- Gtk port (Unix, Windows, Mac) and WPE --------- */
+#if PLATFORM(GTK) || PLATFORM(WPE)
#if !defined(ENABLE_KEYBOARD_KEY_ATTRIBUTE)
#define ENABLE_KEYBOARD_KEY_ATTRIBUTE 1
#endif
@@ -331,7 +331,7 @@
#if !defined(ENABLE_KEYBOARD_CODE_ATTRIBUTE)
#define ENABLE_KEYBOARD_CODE_ATTRIBUTE 1
#endif
-#endif /* PLATFORM(GTK) */
+#endif /* PLATFORM(GTK) || PLATFORM(WPE) */
/* ENABLE macro defaults for WebCore */
/* Do not use PLATFORM() tests in this section ! */
_______________________________________________
webkit-changes mailing list
[email protected]
https://lists.webkit.org/mailman/listinfo/webkit-changes