blob: 7548a26b4c9f9449f199d1a0d666038a22bf3f26 [file] [log] [blame]
This tests that currentTime is kept stable during script execution.
RUN(controller = video.controller)
EVENT(canplaythrough)
RUN(video.play())
RUN(controller.play())
EVENT(playing)
RUN(firstTime = controller.currentTime)
RUN(secondTime = controller.currentTime)
EXPECTED (firstTime - secondTime == '0') OK
END OF TEST