Log Message
LayoutTests/imported/mozilla: Unreviewed, rebaselining somes Web Animations test expectations.
* css-animations/test_animations-dynamic-changes-expected.txt: * css-animations/test_document-get-animations-expected.txt: * css-animations/test_keyframeeffect-getkeyframes-expected.txt: Added. LayoutTests/imported/w3c: Unreviewed, rebaselining a Web Animations test expectation. * web-platform-tests/web-animations/interfaces/Animation/finished-expected.txt:
Modified Paths
- trunk/LayoutTests/imported/mozilla/ChangeLog
- trunk/LayoutTests/imported/mozilla/css-animations/test_animations-dynamic-changes-expected.txt
- trunk/LayoutTests/imported/mozilla/css-animations/test_document-get-animations-expected.txt
- trunk/LayoutTests/imported/w3c/ChangeLog
- trunk/LayoutTests/imported/w3c/web-platform-tests/web-animations/interfaces/Animation/finished-expected.txt
Added Paths
Diff
Modified: trunk/LayoutTests/imported/mozilla/ChangeLog (233458 => 233459)
--- trunk/LayoutTests/imported/mozilla/ChangeLog 2018-07-03 08:31:52 UTC (rev 233458)
+++ trunk/LayoutTests/imported/mozilla/ChangeLog 2018-07-03 08:34:38 UTC (rev 233459)
@@ -1,3 +1,11 @@
+2018-07-03 Antoine Quint <[email protected]>
+
+ Unreviewed, rebaselining somes Web Animations test expectations.
+
+ * css-animations/test_animations-dynamic-changes-expected.txt:
+ * css-animations/test_document-get-animations-expected.txt:
+ * css-animations/test_keyframeeffect-getkeyframes-expected.txt: Added.
+
2018-06-28 Antoine Quint <[email protected]>
[Web Animations] Make imported/mozilla/css-animations/test_animation-starttime.html pass reliably
Modified: trunk/LayoutTests/imported/mozilla/css-animations/test_animations-dynamic-changes-expected.txt (233458 => 233459)
--- trunk/LayoutTests/imported/mozilla/css-animations/test_animations-dynamic-changes-expected.txt 2018-07-03 08:31:52 UTC (rev 233458)
+++ trunk/LayoutTests/imported/mozilla/css-animations/test_animations-dynamic-changes-expected.txt 2018-07-03 08:34:38 UTC (rev 233459)
@@ -2,6 +2,6 @@
PASS Animations preserve their startTime when changed
PASS Updated Animations maintain their order in the list
FAIL Only the startTimes of existing animations are preserved assert_true: New Animation is prepended to start of list expected true got false
-FAIL Animations are removed from the start of the list while preserving the state of existing Animations assert_equals: List of Animations was trimmed expected 1 but got 26
+FAIL Animations are removed from the start of the list while preserving the state of existing Animations assert_equals: List of Animations was trimmed expected 1 but got 2
FAIL Animation state is preserved when interleaving animations in list assert_not_equals: New Animations are added to start of the list got disallowed value object "[object CSSAnimation]"
Modified: trunk/LayoutTests/imported/mozilla/css-animations/test_document-get-animations-expected.txt (233458 => 233459)
--- trunk/LayoutTests/imported/mozilla/css-animations/test_document-get-animations-expected.txt 2018-07-03 08:31:52 UTC (rev 233458)
+++ trunk/LayoutTests/imported/mozilla/css-animations/test_document-get-animations-expected.txt 2018-07-03 08:34:38 UTC (rev 233459)
@@ -2,11 +2,11 @@
PASS getAnimations for non-animated content
PASS getAnimations for CSS Animations
PASS Order of CSS Animations - within an element
-FAIL Order of CSS Animations - across elements assert_equals: Order of first animation returned after tree surgery expected Element node <div style="animation: animLeft 100s"><div style="animati... but got Element node <div style="animation: animLeft 100s"></div>
+FAIL Order of CSS Animations - across elements assert_equals: Order of second animation returned after tree surgery expected Element node <div style="animation: animLeft 100s"></div> but got Element node <div style="animation: animLeft 100s"></div>
PASS Order of CSS Animations - across and within elements
-FAIL Order of CSS Animations - markup-bound vs free animations assert_equals: getAnimations returns markup-bound and free animations expected 2 but got 1
-FAIL Order of CSS Animations - free animations assert_equals: getAnimations returns free animations expected 2 but got 0
-FAIL Order of CSS Animations and CSS Transitions assert_equals: Both CSS animations and transitions are returned expected 2 but got 1
+FAIL Order of CSS Animations - markup-bound vs free animations assert_equals: Markup-bound animations come first expected "animTop" but got "animLeft"
+FAIL Order of CSS Animations - free animations assert_equals: Free animations are returned in the order they are started expected object "[object CSSAnimation]" but got object "[object CSSAnimation]"
+FAIL Order of CSS Animations and CSS Transitions assert_equals: Transition comes first expected "[object CSSTransition]" but got "[object CSSAnimation]"
PASS Finished but filling CSS Animations are returned
PASS Finished but not filling CSS Animations are not returned
PASS Yet-to-start CSS Animations are returned
Added: trunk/LayoutTests/imported/mozilla/css-animations/test_keyframeeffect-getkeyframes-expected.txt (0 => 233459)
--- trunk/LayoutTests/imported/mozilla/css-animations/test_keyframeeffect-getkeyframes-expected.txt (rev 0)
+++ trunk/LayoutTests/imported/mozilla/css-animations/test_keyframeeffect-getkeyframes-expected.txt 2018-07-03 08:34:38 UTC (rev 233459)
@@ -0,0 +1,26 @@
+
+FAIL KeyframeEffectReadOnly.getKeyframes() returns no frames for various kinds of empty enimations assert_equals: number of frames when @keyframes has empty keyframes expected 0 but got 2
+PASS KeyframeEffectReadOnly.getKeyframes() returns expected frames for a simple animation
+PASS KeyframeEffectReadOnly.getKeyframes() returns frames with expected easing values, when the easing comes from animation-timing-function on the element
+FAIL KeyframeEffectReadOnly.getKeyframes() returns frames with expected easing values, when the easing is specified on each keyframe assert_equals: value of 'easing' on ComputedKeyframe #1 expected "ease-in-out" but got "linear"
+FAIL KeyframeEffectReadOnly.getKeyframes() returns frames with expected easing values, when the easing is specified on some keyframes assert_equals: value of 'easing' on ComputedKeyframe #1 expected "steps(1, start)" but got "linear"
+PASS KeyframeEffectReadOnly.getKeyframes() returns expected frames for a simple animation that specifies a single shorthand property
+FAIL KeyframeEffectReadOnly.getKeyframes() returns expected frames for an animation with a 0% keyframe and no 100% keyframe assert_equals: properties on ComputedKeyframe #1 expected "color,composite,computedOffset,easing,offset" but got "composite,computedOffset,easing,offset"
+FAIL KeyframeEffectReadOnly.getKeyframes() returns expected frames for an animation with a 100% keyframe and no 0% keyframe assert_equals: properties on ComputedKeyframe #0 expected "color,composite,computedOffset,easing,offset" but got "composite,computedOffset,easing,offset"
+FAIL KeyframeEffectReadOnly.getKeyframes() returns expected frames for an animation with no 0% or 100% keyframe but with a 50% keyframe assert_equals: properties on ComputedKeyframe #0 expected "color,composite,computedOffset,easing,offset" but got "composite,computedOffset,easing,offset"
+FAIL KeyframeEffectReadOnly.getKeyframes() returns expected frames for an animation with a partially complete 100% keyframe (because the !important rule is ignored) assert_equals: properties on ComputedKeyframe #1 expected "composite,computedOffset,easing,marginBottom,marginTop,offset" but got "composite,computedOffset,easing,marginBottom,offset"
+PASS KeyframeEffectReadOnly.getKeyframes() returns expected frames for an animation with different properties on different keyframes, all with the same easing function
+FAIL KeyframeEffectReadOnly.getKeyframes() returns expected frames for an animation with different properties on different keyframes, with a different easing function on each assert_equals: value for 'easing' on ComputedKeyframe #1 expected "steps(1)" but got "linear"
+PASS KeyframeEffectReadOnly.getKeyframes() returns expected frames for an animation with multiple keyframes for the same time, and all with the same easing function
+FAIL KeyframeEffectReadOnly.getKeyframes() returns expected frames for an animation with multiple keyframes for the same time and with different easing functions assert_equals: number of frames expected 3 but got 2
+FAIL KeyframeEffectReadOnly.getKeyframes() returns expected frames for an animation with multiple keyframes for the same time and with different but equivalent easing functions assert_equals: value for 'easing' on ComputedKeyframe #2 expected "ease" but got "steps(1)"
+PASS KeyframeEffectReadOnly.getKeyframes() returns expected frames for overlapping keyframes
+FAIL KeyframeEffectReadOnly.getKeyframes() returns expected values for animations with filter properties and missing keyframes assert_equals: properties on ComputedKeyframe #0 expected "composite,computedOffset,easing,filter,offset" but got "composite,computedOffset,easing,offset"
+PASS KeyframeEffectReadOnly.getKeyframes() returns expected values for animation with drop-shadow of filter property
+FAIL KeyframeEffectReadOnly.getKeyframes() returns expected values for animations with text-shadow properties and missing keyframes assert_equals: properties on ComputedKeyframe #0 expected "composite,computedOffset,easing,offset,textShadow" but got "composite,computedOffset,easing,offset"
+FAIL KeyframeEffectReadOnly.getKeyframes() returns expected values for animations with background-size properties and missing keyframes assert_equals: properties on ComputedKeyframe #0 expected "backgroundSize,composite,computedOffset,easing,offset" but got "composite,computedOffset,easing,offset"
+FAIL KeyframeEffectReadOnly.getKeyframes() returns expected values for animations with CSS variables as keyframe values assert_equals: properties on ComputedKeyframe #0 expected "composite,computedOffset,easing,offset,transform" but got "composite,computedOffset,easing,offset"
+FAIL KeyframeEffectReadOnly.getKeyframes() returns expected values for animations with CSS variables as keyframe values in a shorthand property assert_equals: properties on ComputedKeyframe #0 expected "composite,computedOffset,easing,marginBottom,marginLeft,marginRight,marginTop,offset" but got "composite,computedOffset,easing,offset"
+FAIL KeyframeEffectReadOnly.getKeyframes() returns expected values for animations with a CSS variable which is overriden by the value in keyframe assert_equals: properties on ComputedKeyframe #0 expected "color,composite,computedOffset,easing,offset" but got "composite,computedOffset,easing,offset"
+FAIL KeyframeEffectReadOnly.getKeyframes() returns expected values for animations with only custom property in a keyframe assert_equals: value for 'transform' on ComputedKeyframe #0 expected "translate(100px, 0px)" but got "none"
+
Modified: trunk/LayoutTests/imported/w3c/ChangeLog (233458 => 233459)
--- trunk/LayoutTests/imported/w3c/ChangeLog 2018-07-03 08:31:52 UTC (rev 233458)
+++ trunk/LayoutTests/imported/w3c/ChangeLog 2018-07-03 08:34:38 UTC (rev 233459)
@@ -1,3 +1,9 @@
+2018-07-03 Antoine Quint <[email protected]>
+
+ Unreviewed, rebaselining a Web Animations test expectation.
+
+ * web-platform-tests/web-animations/interfaces/Animation/finished-expected.txt:
+
2018-06-29 Antoine Quint <[email protected]>
[Web Animations] Make WPT test at timing-model/timelines/document-timelines.html pass reliably
Modified: trunk/LayoutTests/imported/w3c/web-platform-tests/web-animations/interfaces/Animation/finished-expected.txt (233458 => 233459)
--- trunk/LayoutTests/imported/w3c/web-platform-tests/web-animations/interfaces/Animation/finished-expected.txt 2018-07-03 08:31:52 UTC (rev 233458)
+++ trunk/LayoutTests/imported/w3c/web-platform-tests/web-animations/interfaces/Animation/finished-expected.txt 2018-07-03 08:34:38 UTC (rev 233459)
@@ -8,7 +8,7 @@
PASS The finished promise is fulfilled with its Animation
PASS finished promise is rejected when an animation is canceled by calling cancel()
PASS canceling an already-finished animation replaces the finished promise
-FAIL Test finished promise changes for animation duration changes assert_false: shortening of the animation duration should resolve the finished promise expected false got true
+FAIL Test finished promise changes for animation duration changes assert_not_equals: Finished promise should change after lengthening the duration causes the animation to become active got disallowed value object "[object Promise]"
PASS Test finished promise changes when playbackRate == 0
PASS Test finished promise resolves when reaching to the natural boundary.
PASS Test finished promise changes when a prior finished promise resolved and the animation falls out finished state
_______________________________________________ webkit-changes mailing list [email protected] https://lists.webkit.org/mailman/listinfo/webkit-changes
