Title: [219243] trunk/LayoutTests
Revision
219243
Author
mcatanz...@igalia.com
Date
2017-07-06 22:22:36 -0700 (Thu, 06 Jul 2017)

Log Message

Follow-up to "REGRESSION(r209495): materiauxlaverdure.com fails to load"
https://bugs.webkit.org/show_bug.cgi?id=173301
<rdar://problem/32624850>

Unreviewed gardening. Attempt to fix this test by updating it to expect double quotes. It
was missed because it is marked as flaky on Mac, so no way to automatically detect the
failure there.

This doesn't actually fix the test for me due to some floating point issues, but it's a step
in the right direction, and I speculate this will fix the test on the GTK and WPE bots.

* transitions/clip-path-path-transitions.html:

Modified Paths

Diff

Modified: trunk/LayoutTests/ChangeLog (219242 => 219243)


--- trunk/LayoutTests/ChangeLog	2017-07-07 05:19:14 UTC (rev 219242)
+++ trunk/LayoutTests/ChangeLog	2017-07-07 05:22:36 UTC (rev 219243)
@@ -1,3 +1,18 @@
+2017-07-06  Michael Catanzaro  <mcatanz...@igalia.com>
+
+        Follow-up to "REGRESSION(r209495): materiauxlaverdure.com fails to load"
+        https://bugs.webkit.org/show_bug.cgi?id=173301
+        <rdar://problem/32624850>
+
+        Unreviewed gardening. Attempt to fix this test by updating it to expect double quotes. It
+        was missed because it is marked as flaky on Mac, so no way to automatically detect the
+        failure there.
+
+        This doesn't actually fix the test for me due to some floating point issues, but it's a step
+        in the right direction, and I speculate this will fix the test on the GTK and WPE bots.
+
+        * transitions/clip-path-path-transitions.html:
+
 2017-07-06  Myles C. Maxfield  <mmaxfi...@apple.com>
 
         REGRESSION(r216944): Font loads can cause Chinese characters to draw as .notdef

Modified: trunk/LayoutTests/transitions/clip-path-path-transitions.html (219242 => 219243)


--- trunk/LayoutTests/transitions/clip-path-path-transitions.html	2017-07-07 05:19:14 UTC (rev 219242)
+++ trunk/LayoutTests/transitions/clip-path-path-transitions.html	2017-07-07 05:22:36 UTC (rev 219243)
@@ -43,9 +43,9 @@
 
     const expectedValues = [
       // [time, element-id, property, expected-value, tolerance]
-      [1, 'path1', '-webkit-clip-path', 'path(\'M 80 40 l 20 0 l 0 60 l 20 0 l 0 -20 l -50 0 l 0 -20 l 80 0 l 0 60 l -60 0 l 0 -80 Z\')', 2],
-      [1, 'path2', '-webkit-clip-path', 'path(\'M 100 40 l 20 0 l 0 60 l 0 -20 l -60 0 l 0 -20 l 80 0 l 0 60 l -60 0 l 0 -80 Z\')', 2],
-      [1, 'path3', '-webkit-clip-path', 'path(evenodd, \'M 100 40 l 20 0 l 0 60 l 20 0 l 0 -20 l -60 0 l 0 -20 l 80 0 l 0 60 l -60 0 l 0 -80 Z\')', 2],
+      [1, 'path1', '-webkit-clip-path', 'path("M 80 40 l 20 0 l 0 60 l 20 0 l 0 -20 l -50 0 l 0 -20 l 80 0 l 0 60 l -60 0 l 0 -80 Z")', 2],
+      [1, 'path2', '-webkit-clip-path', 'path("M 100 40 l 20 0 l 0 60 l 0 -20 l -60 0 l 0 -20 l 80 0 l 0 60 l -60 0 l 0 -80 Z")', 2],
+      [1, 'path3', '-webkit-clip-path', 'path(evenodd, "M 100 40 l 20 0 l 0 60 l 20 0 l 0 -20 l -60 0 l 0 -20 l 80 0 l 0 60 l -60 0 l 0 -80 Z")', 2],
     ];
   
     function setupTest()
_______________________________________________
webkit-changes mailing list
webkit-changes@lists.webkit.org
https://lists.webkit.org/mailman/listinfo/webkit-changes

Reply via email to