Summary

Harness status: OK

Found 8 tests

Details

ResultTest NameMessage
PassCanceling an animation should cause its start time and hold time to be unresolved
Asserts run
Pass
assert_equals(null, null, "The start time of a canceled animation should be unresolved")
    at Test.<anonymous> ( /web-animations/timing-model/animations/canceling-an-animation.html:18:3)
Pass
assert_equals(null, null, "The hold time of a canceled animation should be unresolved")
    at Test.<anonymous> ( /web-animations/timing-model/animations/canceling-an-animation.html:20:3)
PassA play-pending ready promise should be rejected when the animation is canceled
Asserts run
Pass
assert_equals("AbortError", "AbortError", "ready promise is rejected with AbortError")
    at  /web-animations/timing-model/animations/canceling-an-animation.html:30:5
PassA pause-pending ready promise should be rejected when the animation is canceled
Asserts runNo asserts ran
PassWhen an animation is canceled, it should create a resolved Promise
Asserts run
Pass
assert_equals(object "[object Animation]", object "[object Animation]")
    at Test.<anonymous> ( /web-animations/timing-model/animations/canceling-an-animation.html:61:3)
PassThe ready promise should be replaced when the animation is canceled
Asserts run
Pass
assert_not_equals(object "[object Promise]", object "[object Promise]")
    at Test.<anonymous> ( /web-animations/timing-model/animations/canceling-an-animation.html:68:3)
PassThe finished promise should NOT be rejected if the animation is already idle
Asserts run
Pass
assert_equals("idle", "idle", "The animation should be initially idle")
    at Test.<anonymous> ( /web-animations/timing-model/animations/canceling-an-animation.html:77:3)
PassThe cancel event should NOT be fired if the animation is already idle
Asserts run
Pass
assert_equals("idle", "idle", "The animation should be initially idle")
    at Test.<anonymous> ( /web-animations/timing-model/animations/canceling-an-animation.html:97:3)
PassCanceling an animation should fire cancel event on orphaned element
Asserts run
Pass
assert_equals(null, null, "cancel event should be fired for the animation on an orphaned element")
    at Test.<anonymous> ( /web-animations/timing-model/animations/canceling-an-animation.html:122:3)