| <p>Test that seeking attribute is true immediately after a seek, |
| goes back to false when seeking completes, and that a 'seeked' event |
| <script src=media-file.js></script> |
| <script src=video-test.js></script> |
| testExpected("video.seeking", false); |
| testExpected("video.currentTime", seekedCount * 0.5); |
| run("video.currentTime = " + (seekedCount + 1) * 0.5); |
| testExpected("video.seeking", true); |
| function canplaythrough() |
| run("video.currentTime = 0.5"); |
| waitForEvent('waiting' ); |
| waitForEvent('seeked', seeked ); |
| waitForEvent('canplaythrough', canplaythrough); |
| video.src = findMediaFile("video", "content/test"); |