| Index: third_party/WebKit/LayoutTests/media/video-dom-autoplay.html
|
| diff --git a/third_party/WebKit/LayoutTests/media/video-dom-autoplay.html b/third_party/WebKit/LayoutTests/media/video-dom-autoplay.html
|
| index 12fa569200c26699eaa32093414c25fa4f34e83d..c0420539335811be4933eb6736cfb4564a3b169e 100644
|
| --- a/third_party/WebKit/LayoutTests/media/video-dom-autoplay.html
|
| +++ b/third_party/WebKit/LayoutTests/media/video-dom-autoplay.html
|
| @@ -1,12 +1,14 @@
|
| <video controls></video>
|
| <script src=media-file.js></script>
|
| +<!-- TODO(philipj): Convert test to testharness.js. crbug.com/588956
|
| + (Please avoid writing new tests using video-test.js) -->
|
| <script src=video-test.js></script>
|
| <script>
|
| testExpected("video.autoplay", false);
|
| video.autoplay = true;
|
| testExpected("video.autoplay", true);
|
| testExpected("video.getAttribute('autoplay')", null, "!=");
|
| - waitForEvent('play', function () {
|
| + waitForEvent('play', function () {
|
| testExpected("video.paused", false);
|
| endTest();
|
| } );
|
|
|