Chromium Code Reviews

Unified Diff: LayoutTests/media/avtrack/getTrackById.html

Issue 552303006: Prevent more script-observable cases of HTMLMediaElement GC (Closed) Base URL: svn://svn.chromium.org/blink/trunk
Patch Set: cleanup Created 6 years, 3 months ago
Use n/p to move between diff chunks; N/P to move between comments.
Jump to:
View side-by-side diff with in-line comments
Index: LayoutTests/media/avtrack/getTrackById.html
diff --git a/LayoutTests/media/avtrack/getTrackById.html b/LayoutTests/media/avtrack/getTrackById.html
index bd53979219b6a938c06a76447aabb0487d38174d..1f76930ac4c6b68624c9c5fd5038607b685f38ff 100644
--- a/LayoutTests/media/avtrack/getTrackById.html
+++ b/LayoutTests/media/avtrack/getTrackById.html
@@ -12,8 +12,6 @@
async_test(function(t)
{
var e = document.createElement('video');
- // add to body to prevent GC pending http://crbug.com/400659
- document.body.appendChild(e);
assert_equals(e.audioTracks.length, 0);
assert_equals(e.audioTracks.getTrackById(''), null);

Powered by Google App Engine