Index: third_party/WebKit/LayoutTests/media/video-autoplay.html |
diff --git a/third_party/WebKit/LayoutTests/media/video-autoplay.html b/third_party/WebKit/LayoutTests/media/video-autoplay.html |
index a151039f4dddf71716f7795c9bb2b0cf9a8a4e3c..5d3d8fff05486a26f551dd79d9c25a6941dbda84 100644 |
--- a/third_party/WebKit/LayoutTests/media/video-autoplay.html |
+++ b/third_party/WebKit/LayoutTests/media/video-autoplay.html |
@@ -1,12 +1,19 @@ |
-<video autoplay controls></video> |
-<script src=media-file.js></script> |
-<!-- TODO(foolip): Convert test to testharness.js. crbug.com/588956 |
- (Please avoid writing new tests using video-test.js) --> |
-<script src=video-test.js></script> |
- |
+<!DOCTYPE html> |
+<title>Verify that "autoplay" attribute on a media element starts playback automatically.</title> |
+<script src="../resources/testharness.js"></script> |
+<script src="../resources/testharnessreport.js"></script> |
+<script src="media-file.js"></script> |
+<video autoplay></video> |
<script> |
- testExpected("video.autoplay", true); |
- testExpected("video.getAttribute('autoplay')", null, '!='); |
- waitForEvent('play', function () { testExpected("video.paused", false); endTest(); } ); |
+async_test(function(t) { |
+ var video = document.querySelector("video"); |
+ assert_true(video.autoplay); |
+ assert_not_equals(video.getAttribute("autoplay"), null); |
+ |
+ video.onplay = t.step_func_done(function () { |
+ assert_false(video.paused); |
+ }); |
+ |
video.src = findMediaFile("video", "content/test"); |
-</script> |
+}); |
+</script> |