Chromium Code Reviews
chromiumcodereview-hr@appspot.gserviceaccount.com (chromiumcodereview-hr) | Please choose your nickname with Settings | Help | Chromium Project | Gerrit Changes | Sign out
(202)

Side by Side Diff: LayoutTests/media/gc-while-delaying-the-load-event.html

Issue 552303006: Prevent more script-observable cases of HTMLMediaElement GC (Closed) Base URL: svn://svn.chromium.org/blink/trunk
Patch Set: make gc-while-seeking.html non-flaky Created 6 years, 3 months ago
Use n/p to move between diff chunks; N/P to move between comments. Draft comments are only viewable by you.
Jump to:
View unified diff | Download patch | Annotate | Revision Log
OLDNEW
(Empty)
1 <!DOCTYPE html>
2 <title>GC while the delaying-the-load-event flag is set</title>
3 <script src="../resources/testharness.js"></script>
4 <script src="../resources/testharnessreport.js"></script>
5 <script>
6 async_test(function(t)
7 {
8 var a = document.createElement("audio");
9 a.foo = "bar";
10 a.appendChild(document.createElement("source"));
11 a.onloadstart = t.step_func(function(e)
12 {
13 assert_equals(e.target.foo, "bar");
14 t.done();
15 });
16 a = null;
17 gc();
18 });
19 </script>
OLDNEW
« no previous file with comments | « LayoutTests/media/avtrack/video-track-selected.html ('k') | LayoutTests/media/gc-while-playing.html » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698