Title: [246037] trunk/LayoutTests
Revision
246037
Author
[email protected]
Date
2019-06-03 09:37:27 -0700 (Mon, 03 Jun 2019)

Log Message

Flaky Test: inspector/canvas/recording.html
https://bugs.webkit.org/show_bug.cgi?id=198470

Reviewed by Timothy Hatcher.

* inspector/canvas/recording.html:
The ordering of <canvas> in `WI.canvasManager.canvases` isn't always the same, so we should
perform the action on every <canvas> since we know we'll be recording at least one of them.

Modified Paths

Diff

Modified: trunk/LayoutTests/ChangeLog (246036 => 246037)


--- trunk/LayoutTests/ChangeLog	2019-06-03 15:34:15 UTC (rev 246036)
+++ trunk/LayoutTests/ChangeLog	2019-06-03 16:37:27 UTC (rev 246037)
@@ -1,3 +1,14 @@
+2019-06-03  Devin Rousso  <[email protected]>
+
+        Flaky Test: inspector/canvas/recording.html
+        https://bugs.webkit.org/show_bug.cgi?id=198470
+
+        Reviewed by Timothy Hatcher.
+
+        * inspector/canvas/recording.html:
+        The ordering of <canvas> in `WI.canvasManager.canvases` isn't always the same, so we should
+        perform the action on every <canvas> since we know we'll be recording at least one of them.
+
 2019-06-02  Devin Rousso  <[email protected]>
 
         Flaky Test: inspector/canvas/recording.html

Modified: trunk/LayoutTests/inspector/canvas/recording.html (246036 => 246037)


--- trunk/LayoutTests/inspector/canvas/recording.html	2019-06-03 15:34:15 UTC (rev 246036)
+++ trunk/LayoutTests/inspector/canvas/recording.html	2019-06-03 16:37:27 UTC (rev 246037)
@@ -8,6 +8,7 @@
 
 function performActionsNaN() {
     contextA.globalAlpha = NaN;
+    contextB.globalAlpha = NaN;
 }
 
 function performActionsMultiple() {
_______________________________________________
webkit-changes mailing list
[email protected]
https://lists.webkit.org/mailman/listinfo/webkit-changes

Reply via email to