| Index: third_party/WebKit/LayoutTests/media/autoplay-muted.html
|
| diff --git a/third_party/WebKit/LayoutTests/media/autoplay-muted.html b/third_party/WebKit/LayoutTests/media/autoplay-muted.html
|
| index 2de88e10382cf8471b7711599dbd5f349cf0e3bf..f67d95215b7de8120aba17d1cf98a9bc0950dd6e 100644
|
| --- a/third_party/WebKit/LayoutTests/media/autoplay-muted.html
|
| +++ b/third_party/WebKit/LayoutTests/media/autoplay-muted.html
|
| @@ -4,6 +4,7 @@
|
| <script src="../resources/testharnessreport.js"></script>
|
| <script src="media-file.js"></script>
|
| <script src="media-controls.js"></script>
|
| +<body>
|
| <script>
|
| test(function() {
|
| assert_true(!!window.internals
|
| @@ -35,6 +36,7 @@
|
| async_test(function(t) {
|
| var e = createMutedVideoElement();
|
| e.autoplay = true;
|
| + document.body.appendChild(e);
|
|
|
| var expectedEvents = [ 'canplay', 'play', 'playing'];
|
| var eventWatcher = new EventWatcher(t, e, expectedEvents);
|
| @@ -100,3 +102,4 @@
|
| createMutedVideoElement().play());
|
| }, "Test that muted videos don't autoplay when the setting is disabled");
|
| </script>
|
| +</body>
|
|
|