| Index: LayoutTests/media/autoplay.html
|
| diff --git a/LayoutTests/media/autoplay.html b/LayoutTests/media/autoplay.html
|
| index ca59be325e0c3c18f55759b24e6354649e8b6360..fdc67a1b0fea45f36dfe2e0f14460441899984e5 100644
|
| --- a/LayoutTests/media/autoplay.html
|
| +++ b/LayoutTests/media/autoplay.html
|
| @@ -11,6 +11,8 @@ function autoplay_test(tagName, src)
|
| async_test(function(t)
|
| {
|
| var e = document.createElement(tagName);
|
| + // add to body to prevent GC pending http://crbug.com/400659
|
| + document.body.appendChild(e);
|
| e.src = src;
|
| e.autoplay = true;
|
| var actual_events = [];
|
|
|