Title: [243080] trunk/LayoutTests
Revision
243080
Author
[email protected]
Date
2019-03-18 10:38:34 -0700 (Mon, 18 Mar 2019)

Log Message

Fix bad substitution made in r241282

Revert substitution of "computeSubsets(modifierKeys)" back to "modiferKeySubsetsToTest" so
that the test only checks key commands with Command and Option modifiers as opposed to all
modifiers. That will make what the test actually tests match the checked-in expected resutls.

* fast/events/ios/key-events-meta-alt-combinations.html:

Modified Paths

Diff

Modified: trunk/LayoutTests/ChangeLog (243079 => 243080)


--- trunk/LayoutTests/ChangeLog	2019-03-18 17:36:48 UTC (rev 243079)
+++ trunk/LayoutTests/ChangeLog	2019-03-18 17:38:34 UTC (rev 243080)
@@ -1,3 +1,13 @@
+2019-03-18  Daniel Bates  <[email protected]>
+
+        Fix bad substitution made in r241282
+
+        Revert substitution of "computeSubsets(modifierKeys)" back to "modiferKeySubsetsToTest" so
+        that the test only checks key commands with Command and Option modifiers as opposed to all
+        modifiers. That will make what the test actually tests match the checked-in expected resutls.
+
+        * fast/events/ios/key-events-meta-alt-combinations.html:
+
 2019-03-18  Truitt Savell  <[email protected]>
 
         REGRESSION: (r243032) inspector/model/remote-object.html is failing.

Modified: trunk/LayoutTests/fast/events/ios/key-events-meta-alt-combinations.html (243079 => 243080)


--- trunk/LayoutTests/fast/events/ios/key-events-meta-alt-combinations.html	2019-03-18 17:36:48 UTC (rev 243079)
+++ trunk/LayoutTests/fast/events/ios/key-events-meta-alt-combinations.html	2019-03-18 17:38:34 UTC (rev 243080)
@@ -7,7 +7,7 @@
 <script>
 const modiferKeySubsetsToTest = computeSubsets(["metaKey", "altKey"]);
 for (const k of keysExcludingDeadAndSkippedKeys) {
-    for (const modifiers of computeSubsets(modifierKeys))
+    for (const modifiers of modiferKeySubsetsToTest)
         tests.push(new KeyCommand(k, modifiers));
 }
 </script>
_______________________________________________
webkit-changes mailing list
[email protected]
https://lists.webkit.org/mailman/listinfo/webkit-changes

Reply via email to