Title: [238520] trunk/LayoutTests
Revision
238520
Author
[email protected]
Date
2018-11-26 13:55:42 -0800 (Mon, 26 Nov 2018)

Log Message

Placeholder text is not repainted after caps lock indicator is hidden
https://bugs.webkit.org/show_bug.cgi?id=191968
<rdar://problem/46247234>

Substitute UIHelper.toggleCapsLock() for testRunner.toggleCapsLock() as the former replaces
the latter following r238512.

* fast/repaint/placeholder-after-caps-lock-hidden.html:

Modified Paths

Diff

Modified: trunk/LayoutTests/ChangeLog (238519 => 238520)


--- trunk/LayoutTests/ChangeLog	2018-11-26 21:50:17 UTC (rev 238519)
+++ trunk/LayoutTests/ChangeLog	2018-11-26 21:55:42 UTC (rev 238520)
@@ -4,6 +4,17 @@
         https://bugs.webkit.org/show_bug.cgi?id=191968
         <rdar://problem/46247234>
 
+        Substitute UIHelper.toggleCapsLock() for testRunner.toggleCapsLock() as the former replaces
+        the latter following r238512.
+
+        * fast/repaint/placeholder-after-caps-lock-hidden.html:
+
+2018-11-26  Daniel Bates  <[email protected]>
+
+        Placeholder text is not repainted after caps lock indicator is hidden
+        https://bugs.webkit.org/show_bug.cgi?id=191968
+        <rdar://problem/46247234>
+
         Reviewed by Zalan Bujtas.
 
         Add a test to ensure to that the placeholder text is repainted when the caps lock indicator is hidden.

Modified: trunk/LayoutTests/fast/repaint/placeholder-after-caps-lock-hidden.html (238519 => 238520)


--- trunk/LayoutTests/fast/repaint/placeholder-after-caps-lock-hidden.html	2018-11-26 21:50:17 UTC (rev 238519)
+++ trunk/LayoutTests/fast/repaint/placeholder-after-caps-lock-hidden.html	2018-11-26 21:55:42 UTC (rev 238520)
@@ -20,7 +20,7 @@
     case 1:
         console.assert(event.key === "Backspace");
         internals.startTrackingRepaints();
-        testRunner.toggleCapsLock();
+        UIHelper.toggleCapsLock();
         return;
     case 2: {
         console.assert(event.key === "CapsLock");
@@ -46,7 +46,7 @@
         UIHelper.keyDown("a");
     }
     input.addEventListener("keydown", handleCapsLockEnabled, { once: true });
-    testRunner.toggleCapsLock();
+    UIHelper.toggleCapsLock();
 }
 </script>
 </head>
_______________________________________________
webkit-changes mailing list
[email protected]
https://lists.webkit.org/mailman/listinfo/webkit-changes

Reply via email to