Summary

Harness status: OK

Found 24 tests

Details

ResultTest NameMessage
PassReturns an empty array for an element with no animations
Asserts run
Pass
assert_array_equals([], [])
    at Test.<anonymous> ( /web-animations/interfaces/Animatable/getAnimations.html:14:3)
PassReturns both animations for an element with two animations
Asserts run
Pass
assert_array_equals([object "[object Animation]", object "[object Animation]"], [object "[object Animation]", object "[object Animation]"])
    at Test.<anonymous> ( /web-animations/interfaces/Animatable/getAnimations.html:21:3)
PassReturns only the animations specific to each sibling element
Asserts run
Pass
assert_array_equals([object "[object Animation]"], [object "[object Animation]"], "divA")
    at Test.<anonymous> ( /web-animations/interfaces/Animatable/getAnimations.html:29:3)
Pass
assert_array_equals([object "[object Animation]"], [object "[object Animation]"], "divB")
    at Test.<anonymous> ( /web-animations/interfaces/Animatable/getAnimations.html:30:3)
PassReturns only the animations specific to each parent/child element
Asserts run
Pass
assert_array_equals([object "[object Animation]"], [object "[object Animation]"], "divParent")
    at Test.<anonymous> ( /web-animations/interfaces/Animatable/getAnimations.html:39:3)
Pass
assert_array_equals([object "[object Animation]"], [object "[object Animation]"], "divChild")
    at Test.<anonymous> ( /web-animations/interfaces/Animatable/getAnimations.html:41:3)
PassReturns animations on descendants when subtree: true is specified
Asserts run
Pass
assert_array_equals([object "[object Animation]", object "[object Animation]", object "[object Animation]"], [object "[object Animation]", object "[object Animation]", object "[object Animation]"], "Returns expected animations from parent")
    at Test.<anonymous> ( /web-animations/interfaces/Animatable/getAnimations.html:58:3)
Pass
assert_array_equals([object "[object Animation]", object "[object Animation]", object "[object Animation]"], [object "[object Animation]", object "[object Animation]", object "[object Animation]"], "Returns expected animations from child")
    at Test.<anonymous> ( /web-animations/interfaces/Animatable/getAnimations.html:63:3)
Pass
assert_array_equals([object "[object Animation]"], [object "[object Animation]"], "Returns expected animations from grandchild A")
    at Test.<anonymous> ( /web-animations/interfaces/Animatable/getAnimations.html:68:3)
PassReturns animations on pseudo-elements when subtree: true is specified
Asserts run
Pass
assert_equals(0, 0, "Returns no animations when subtree is false")
    at Test.<anonymous> ( /web-animations/interfaces/Animatable/getAnimations.html:83:3)
Pass
assert_equals(1, 1, "Returns one animation when subtree is true")
    at Test.<anonymous> ( /web-animations/interfaces/Animatable/getAnimations.html:88:3)
PassDoes NOT cross shadow-tree boundaries when subtree: true is specified
Asserts run
Pass
assert_equals(0, 0, "Returns no animations with subtree:true when called on the host")
    at Test.<anonymous> ( /web-animations/interfaces/Animatable/getAnimations.html:107:3)
Pass
assert_equals(1, 1, "Returns one animation when called on a parent in the shadow tree")
    at Test.<anonymous> ( /web-animations/interfaces/Animatable/getAnimations.html:112:3)
PassReturns animations for a foreign element
Asserts run
Pass
assert_array_equals([object "[object Animation]"], [object "[object Animation]"])
    at Test.<anonymous> ( /web-animations/interfaces/Animatable/getAnimations.html:128:3)
PassDoes not return finished animations that do not fill forwards
Asserts run
Pass
assert_array_equals([], [])
    at Test.<anonymous> ( /web-animations/interfaces/Animatable/getAnimations.html:135:3)
PassReturns finished animations that fill forwards
Asserts run
Pass
assert_array_equals([object "[object Animation]"], [object "[object Animation]"])
    at Test.<anonymous> ( /web-animations/interfaces/Animatable/getAnimations.html:145:3)
PassReturns animations yet to reach their active phase
Asserts run
Pass
assert_array_equals([object "[object Animation]"], [object "[object Animation]"])
    at Test.<anonymous> ( /web-animations/interfaces/Animatable/getAnimations.html:154:3)
PassDoes not return reversed finished animations that do not fill backwards
Asserts run
Pass
assert_array_equals([], [])
    at Test.<anonymous> ( /web-animations/interfaces/Animatable/getAnimations.html:161:3)
PassReturns reversed finished animations that fill backwards
Asserts run
Pass
assert_array_equals([object "[object Animation]"], [object "[object Animation]"])
    at Test.<anonymous> ( /web-animations/interfaces/Animatable/getAnimations.html:171:3)
PassReturns reversed animations yet to reach their active phase
Asserts run
Pass
assert_array_equals([object "[object Animation]"], [object "[object Animation]"])
    at Test.<anonymous> ( /web-animations/interfaces/Animatable/getAnimations.html:179:3)
PassDoes not return animations with zero playback rate in before phase
Asserts run
Pass
assert_array_equals([], [])
    at Test.<anonymous> ( /web-animations/interfaces/Animatable/getAnimations.html:189:3)
PassDoes not return animations with zero playback rate in after phase
Asserts run
Pass
assert_array_equals([], [])
    at Test.<anonymous> ( /web-animations/interfaces/Animatable/getAnimations.html:198:3)
PassDoes not return an animation that has recently been made not current by setting the playback rate
Asserts run
Pass
assert_array_equals([], [])
    at Test.<anonymous> ( /web-animations/interfaces/Animatable/getAnimations.html:209:3)
PassReturns animations based on dynamic changes to individual animations' duration
Asserts run
Pass
assert_array_equals([], [], "Animation should not be returned when it is finished")
    at Test.<anonymous> ( /web-animations/interfaces/Animatable/getAnimations.html:217:3)
Pass
assert_array_equals([object "[object Animation]"], [object "[object Animation]"], "Animation should be returned after extending the duration")
    at Test.<anonymous> ( /web-animations/interfaces/Animatable/getAnimations.html:223:3)
Pass
assert_array_equals([], [], "Animation should not be returned after setting the duration to zero")
    at Test.<anonymous> ( /web-animations/interfaces/Animatable/getAnimations.html:228:3)
PassReturns animations based on dynamic changes to individual animations' end delay
Asserts run
Pass
assert_array_equals([], [], "Animation should not be returned after setting a negative end delay such that the end time is less than the current time")
    at Test.<anonymous> ( /web-animations/interfaces/Animatable/getAnimations.html:239:3)
Pass
assert_array_equals([object "[object Animation]"], [object "[object Animation]"], "Animation should be returned after setting a positive end delay such that the end time is more than the current time")
    at Test.<anonymous> ( /web-animations/interfaces/Animatable/getAnimations.html:245:3)
PassReturns animations based on dynamic changes to individual animations' iteration count
Asserts run
Pass
assert_array_equals([], [], "Animation should not be returned when it is finished")
    at Test.<anonymous> ( /web-animations/interfaces/Animatable/getAnimations.html:257:3)
Pass
assert_array_equals([object "[object Animation]"], [object "[object Animation]"], "Animation should be returned after inreasing the number of iterations")
    at Test.<anonymous> ( /web-animations/interfaces/Animatable/getAnimations.html:261:3)
Pass
assert_array_equals([], [], "Animations should not be returned after setting the iteration count to zero")
    at Test.<anonymous> ( /web-animations/interfaces/Animatable/getAnimations.html:266:3)
Pass
assert_array_equals([object "[object Animation]"], [object "[object Animation]"], "Animation should be returned after inreasing the number of iterations to infinity")
    at Test.<anonymous> ( /web-animations/interfaces/Animatable/getAnimations.html:271:3)
PassReturns animations based on dynamic changes to individual animations' current time
Asserts run
Pass
assert_array_equals([object "[object Animation]"], [object "[object Animation]"], "Animation should be returned at during delay phase")
    at Test.<anonymous> ( /web-animations/interfaces/Animatable/getAnimations.html:284:3)
Pass
assert_array_equals([object "[object Animation]"], [object "[object Animation]"], "Animation should be returned after seeking to the start of the active interval")
    at Test.<anonymous> ( /web-animations/interfaces/Animatable/getAnimations.html:288:3)
Pass
assert_array_equals([], [], "Animation should not be returned after seeking to the clipped end of the active interval")
    at Test.<anonymous> ( /web-animations/interfaces/Animatable/getAnimations.html:293:3)
PassDoes not return an animation that has been removed
Asserts run
Pass
assert_array_equals([object "[object Animation]"], [object "[object Animation]"])
    at Test.<anonymous> ( /web-animations/interfaces/Animatable/getAnimations.html:311:3)
PassReturns an animation that has been persisted
Asserts run
Pass
assert_array_equals([object "[object Animation]", object "[object Animation]"], [object "[object Animation]", object "[object Animation]"])
    at Test.<anonymous> ( /web-animations/interfaces/Animatable/getAnimations.html:323:3)
PassTriggers a style change event
Asserts runNo asserts ran