Skip to content

Commit

Permalink
Update test expectations
Browse files Browse the repository at this point in the history
  • Loading branch information
mrobinson committed May 19, 2020
1 parent a238597 commit acca20d
Show file tree
Hide file tree
Showing 118 changed files with 3,271 additions and 8,644 deletions.

Large diffs are not rendered by default.

@@ -0,0 +1,130 @@
[AnimationEffect-getComputedTiming.tentative.html]
[currentIteration of an animation with an integral iteration count]
expected: FAIL

[currentIteration of a new animation is zero]
expected: FAIL

[localTime reflects playbackRate immediately]
expected: FAIL

[iterations of a finitely repeating animation]
expected: FAIL

[activeDuration of a new animation]
expected: FAIL

[progress of a non-integral repeating animation with alternate direction]
expected: FAIL

[progress of a non-integral repeating zero-duration animation with alternate-reverse direction]
expected: FAIL

[localTime of an animation is always equal to currentTime]
expected: FAIL

[activeDuration of an infinitely repeating zero-duration animation]
expected: FAIL

[Progress of a non-integral repeating zero-duration animation with reversing direction]
expected: FAIL

[endTime of an animation with a negative delay]
expected: FAIL

[localTime of an AnimationEffect without an Animation]
expected: FAIL

[duration of a new animation]
expected: FAIL

[Negative delay of a new animation]
expected: FAIL

[currentIteration of a new animation with no backwards fill is unresolved in before phase]
expected: FAIL

[localTime of a new animation]
expected: FAIL

[progress of an animation with different fill modes]
expected: FAIL

[delay of a new animation]
expected: FAIL

[iterationStart of a new animation]
expected: FAIL

[currentIteration of an animation with a non-integral iteration count]
expected: FAIL

[progress of a non-integral repeating zero-duration animation]
expected: FAIL

[endTime of an new animation]
expected: FAIL

[progress of a non-integral repeating zero-duration animation with alternate direction]
expected: FAIL

[currentIteration of an animation with a default iteration count]
expected: FAIL

[currentIteration of an infinitely repeating zero-duration animation]
expected: FAIL

[endDelay of a new animation]
expected: FAIL

[iterations of an infinitely repeating animation]
expected: FAIL

[direction of a new animation]
expected: FAIL

[endTime of an animation that finishes before its startTime]
expected: FAIL

[fill of a new animation]
expected: FAIL

[endTime of an infinitely repeating zero-duration animation]
expected: FAIL

[iterations of a new animation]
expected: FAIL

[progress of a non-integral repeating animation with alternate-reversing direction]
expected: FAIL

[activeDuration of an animation with zero iterations]
expected: FAIL

[progress of an infinitely repeating zero-duration animation]
expected: FAIL

[progress of a finitely repeating zero-duration animation]
expected: FAIL

[currentIteration of an AnimationEffect without an Animation]
expected: FAIL

[Positive delay of a new animation]
expected: FAIL

[easing of a new animation]
expected: FAIL

[progress of an integral repeating animation with normal direction]
expected: FAIL

[endTime of an infinitely repeating animation]
expected: FAIL

[currentIteration of a finitely repeating zero-duration animation]
expected: FAIL

[activeDuration of an infinitely repeating animation]
expected: FAIL

@@ -0,0 +1,16 @@
[AnimationEffect-updateTiming.tentative.html]
[AnimationEffect.updateTiming({ delay, fill }) causes changes to the animation-delay and animation-fill-mode to be ignored]
expected: FAIL

[AnimationEffect.updateTiming({ duration }) causes changes to the animation-duration to be ignored]
expected: FAIL

[AnimationEffect.updateTiming({ iterations, direction }) causes changes to the animation-iteration-count and animation-direction to be ignored]
expected: FAIL

[AnimationEffect properties that do not map to animation-* properties should not be changed when animation-* style is updated]
expected: FAIL

[AnimationEffect.updateTiming() does override to changes from animation-* properties if there is an error]
expected: FAIL

@@ -0,0 +1,10 @@
[CSSAnimation-animationName.tentative.html]
[Animation name with hex-escape]
expected: FAIL

[Animation name makes keyframe rule]
expected: FAIL

[Escaped animation name]
expected: FAIL

@@ -0,0 +1,28 @@
[CSSAnimation-canceling.tentative.html]
[Setting animation-name to 'none' cancels the animation]
expected: FAIL

[Animated style is cleared after canceling a filling CSS animation]
expected: FAIL

[Setting display:none on an element cancel its animations]
expected: FAIL

[Setting display:none on an ancestor element cancels animations on descendants]
expected: FAIL

[Animated style is cleared after canceling a running CSS animation]
expected: FAIL

[After canceling an animation, updating animation properties doesn't make it live again]
expected: FAIL
[After canceling an animation, it can still be re-used]
expected: FAIL
[After canceling an animation, it can still be seeked]
expected: FAIL
[After canceling an animation, updating animation-play-state doesn't make it live again]
expected: FAIL

@@ -0,0 +1,7 @@
[CSSAnimation-compositeOrder.tentative.html]
[Web-animation replaces CSS animation]
expected: FAIL

[Animations are composited by their order in the animation-name property.]
expected: FAIL

@@ -0,0 +1,22 @@
[CSSAnimation-effect.tentative.html]
[Replacing an animation's effect with an effect that targets a different property should update both properties]
expected: FAIL
[CSS animation events are dispatched at the original element even after setting an effect with a different target element]
expected: FAIL
[Replacing the effect of a CSSAnimation causes subsequent changes to corresponding animation-* properties to be ignored]
expected: FAIL
[Replacing an animation's effect with a shorter one that should have already finished, the animation finishes immediately]
expected: FAIL

[A play-pending animation's effect whose effect is replaced still exits the pending state]
expected: FAIL
[After replacing a finished animation's effect with a longer one it fires an animationstart event]
expected: FAIL

[Setting a null effect on a running animation fires an animationend event]
expected: FAIL

@@ -0,0 +1,10 @@
[CSSAnimation-finished.tentative.html]
[finished promise is rejected when an animation is canceled by changing the animation property]
expected: FAIL

[finished promise is not reset when animationPlayState is set to running]
expected: FAIL

[finished promise is rejected when an animation is canceled by resetting the animation property]
expected: FAIL

@@ -0,0 +1,7 @@
[CSSAnimation-getCurrentTime.tentative.html]
[currentTime can be used to seek a CSS animation]
expected: FAIL

[Setting currentTime to null on a CSS animation throws]
expected: FAIL

@@ -0,0 +1,4 @@
[CSSAnimation-id.tentative.html]
[Animation.id for CSS Animations]
expected: FAIL

@@ -0,0 +1,28 @@
[CSSAnimation-pausing.tentative.html]
[reverse() overrides animation-play-state when it starts playing the animation]
expected: FAIL

[Setting the startTime to non-null does NOT override the animation-play-state if the animation is already running]
expected: FAIL

[reverse() does NOT override animation-play-state if the animation is already running]
expected: FAIL

[Setting the startTime to null overrides animation-play-state if the animation is already running]
expected: FAIL

[play() overrides animation-play-state]
expected: FAIL

[Setting the current time completes a pending pause]
expected: FAIL

[pause() overrides animation-play-state]
expected: FAIL

[Setting the startTime to non-null overrides animation-play-state if the animation is paused]
expected: FAIL

[play() does NOT override the animation-play-state if there was an error]
expected: FAIL

@@ -0,0 +1,16 @@
[CSSAnimation-playState.tentative.html]
[Animation.playState updates when resumed by setting style]
expected: FAIL

[Animation returns correct playState when paused]
expected: FAIL

[Animation.playState updates when paused by script]
expected: FAIL

[A new CSS animation is initially play-pending]
expected: FAIL

[Animation returns correct playState when canceled]
expected: FAIL

@@ -0,0 +1,16 @@
[CSSAnimation-ready.tentative.html]
[ready promise is rejected when an animation is canceled by resetting the animation property]
expected: FAIL

[ready promise is rejected when an animation is canceled by updating the animation property]
expected: FAIL

[Pausing twice re-uses the same Promise]
expected: FAIL

[A new ready promise is created when setting animation-play-state: running]
expected: FAIL

[A new ready promise is created when setting animation-play-state: paused]
expected: FAIL

@@ -0,0 +1,10 @@
[CSSAnimation-startTime.tentative.html]
[The start time can be set to seek a CSS animation]
expected: FAIL

[Seeking a CSS animation using the start time dispatches animation events]
expected: FAIL

[The start time of a CSS animation can be set]
expected: FAIL

@@ -0,0 +1,16 @@
[Element-getAnimations-dynamic-changes.tentative.html]
[Animations preserve their startTime when changed]
expected: FAIL

[Only the startTimes of existing animations are preserved]
expected: FAIL

[Updated Animations maintain their order in the list]
expected: FAIL

[Animations are removed from the start of the list while preserving the state of existing Animations]
expected: FAIL

[Animation state is preserved when interleaving animations in list]
expected: FAIL

0 comments on commit acca20d

Please sign in to comment.