Log Message
animations/animation-direction-reverse.html is flaky failing https://bugs.webkit.org/show_bug.cgi?id=206671 <rdar://problem/58838216>
Patch by Antoine Quint <[email protected]> on 2020-03-18 Reviewed by Antti Koivisto. To make this test robust we animate a non-accelerated property. * animations/animation-direction-reverse-expected.txt: * animations/animation-direction-reverse.html: * platform/ios/TestExpectations: * platform/mac/TestExpectations:
Modified Paths
Diff
Modified: trunk/LayoutTests/ChangeLog (258633 => 258634)
--- trunk/LayoutTests/ChangeLog 2020-03-18 15:17:47 UTC (rev 258633)
+++ trunk/LayoutTests/ChangeLog 2020-03-18 15:26:51 UTC (rev 258634)
@@ -1,3 +1,18 @@
+2020-03-18 Antoine Quint <[email protected]>
+
+ animations/animation-direction-reverse.html is flaky failing
+ https://bugs.webkit.org/show_bug.cgi?id=206671
+ <rdar://problem/58838216>
+
+ Reviewed by Antti Koivisto.
+
+ To make this test robust we animate a non-accelerated property.
+
+ * animations/animation-direction-reverse-expected.txt:
+ * animations/animation-direction-reverse.html:
+ * platform/ios/TestExpectations:
+ * platform/mac/TestExpectations:
+
2020-03-18 Eric Carlson <[email protected]>
Update some fast/mediastream to make failures easier to diagnose.
Modified: trunk/LayoutTests/animations/animation-direction-reverse-expected.txt (258633 => 258634)
--- trunk/LayoutTests/animations/animation-direction-reverse-expected.txt 2020-03-18 15:17:47 UTC (rev 258633)
+++ trunk/LayoutTests/animations/animation-direction-reverse-expected.txt 2020-03-18 15:26:51 UTC (rev 258634)
@@ -1,4 +1,4 @@
-PASS - "webkitTransform" property for "box" element at 0.5s saw something close to: 1,0,0,1,150,0
-PASS - "webkitTransform" property for "box" element at 1s saw something close to: 1,0,0,1,100,0
-PASS - "webkitTransform" property for "box" element at 2.5s saw something close to: none
+PASS - "margin-left" property for "box" element at 0.5s saw something close to: 150
+PASS - "margin-left" property for "box" element at 1s saw something close to: 100
+PASS - "margin-left" property for "box" element at 2.5s saw something close to: 0
Modified: trunk/LayoutTests/animations/animation-direction-reverse.html (258633 => 258634)
--- trunk/LayoutTests/animations/animation-direction-reverse.html 2020-03-18 15:17:47 UTC (rev 258633)
+++ trunk/LayoutTests/animations/animation-direction-reverse.html 2020-03-18 15:26:51 UTC (rev 258634)
@@ -21,8 +21,8 @@
-webkit-animation-name: "move1";
}
@-webkit-keyframes "move1" {
- from { -webkit-transform: translateX(0px); }
- to { -webkit-transform: translateX(200px); }
+ from { margin-left: 0px; }
+ to { margin-left: 200px; }
}
#result {
color: white; /* hide from pixel results */
@@ -32,9 +32,9 @@
<script type="text/_javascript_" charset="utf-8">
const expectedValues = [
// [animation-name, time, element-id, property, expected-value, tolerance]
- ["move1", 0.5, "box", "webkitTransform", [1,0,0,1, 150,0], 20],
- ["move1", 1.0, "box", "webkitTransform", [1,0,0,1,100,0], 20],
- ["move1", 2.5, "box", "webkitTransform", 'none', 20],
+ ["move1", 0.5, "box", "margin-left", 150, 20],
+ ["move1", 1.0, "box", "margin-left", 100, 20],
+ ["move1", 2.5, "box", "margin-left", 0, 20],
];
function pauseAnimation()
Modified: trunk/LayoutTests/platform/ios/TestExpectations (258633 => 258634)
--- trunk/LayoutTests/platform/ios/TestExpectations 2020-03-18 15:17:47 UTC (rev 258633)
+++ trunk/LayoutTests/platform/ios/TestExpectations 2020-03-18 15:26:51 UTC (rev 258634)
@@ -3404,9 +3404,6 @@
webkit.org/b/206864 http/tests/workers/service/basic-timeout.https.html [ Pass Failure ]
-
-webkit.org/b/206671 [ Debug ] animations/animation-direction-reverse.html [ Pass Failure ]
-
webkit.org/b/206754 imported/w3c/web-platform-tests/css/css-backgrounds/background-image-centered-with-border-radius.html [ ImageOnlyFailure ]
webkit.org/b/206754 imported/w3c/web-platform-tests/css/css-backgrounds/box-shadow-body.html [ ImageOnlyFailure ]
Modified: trunk/LayoutTests/platform/mac/TestExpectations (258633 => 258634)
--- trunk/LayoutTests/platform/mac/TestExpectations 2020-03-18 15:17:47 UTC (rev 258633)
+++ trunk/LayoutTests/platform/mac/TestExpectations 2020-03-18 15:26:51 UTC (rev 258634)
@@ -1913,8 +1913,6 @@
webkit.org/b/206685 animations/animation-direction-normal.html [ Pass Failure ]
-webkit.org/b/206671 animations/animation-direction-reverse.html [ Pass Failure ]
-
webkit.org/b/206711 http/wpt/resource-timing/rt-resource-errors.html [ Pass Failure ]
webkit.org/b/206752 imported/w3c/web-platform-tests/2dcontext/imagebitmap/createImageBitmap-serializable.html [ Pass Failure ]
_______________________________________________ webkit-changes mailing list [email protected] https://lists.webkit.org/mailman/listinfo/webkit-changes
