Index: third_party/WebKit/LayoutTests/media/video-positive-start-time.html |
diff --git a/third_party/WebKit/LayoutTests/media/video-positive-start-time.html b/third_party/WebKit/LayoutTests/media/video-positive-start-time.html |
index 413406b1b2d6b6d179cb86deb65fee9969e377b4..de7a07d4984118ecf91d3601887049bd31863ef4 100644 |
--- a/third_party/WebKit/LayoutTests/media/video-positive-start-time.html |
+++ b/third_party/WebKit/LayoutTests/media/video-positive-start-time.html |
@@ -2,18 +2,16 @@ |
<title>video with a postive start time</title> |
<script src="../resources/testharness.js"></script> |
<script src="../resources/testharnessreport.js"></script> |
-<div id="log"></div> |
-<video controls></video> |
+<video></video> |
<script> |
async_test(function(t) { |
var video = document.querySelector('video'); |
- video.onloadeddata = t.step_func(function() { |
+ video.onloadeddata = t.step_func_done(function() { |
assert_equals(video.currentTime, 3, 'currentTime'); |
// FIXME: Once Chrome correctly exposes seekable ranges for media with |
// positive start times, verify video.seekable.start(0) here. |
- t.done(); |
}); |
video.src = 'resources/test-positive-start-time.webm'; |