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

Unified Diff: third_party/WebKit/LayoutTests/media/gc-pending-event-inactive-document.html

Issue 1481913002: Remove userCancelledLoad and refactor the code at the call sites (Closed) Base URL: https://chromium.googlesource.com/chromium/src.git@master
Patch Set: address nits Created 5 years 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 side-by-side diff with in-line comments
Download patch
Index: third_party/WebKit/LayoutTests/media/gc-pending-event-inactive-document.html
diff --git a/third_party/WebKit/LayoutTests/media/gc-pending-event-inactive-document.html b/third_party/WebKit/LayoutTests/media/gc-pending-event-inactive-document.html
deleted file mode 100644
index 454cee142627def762eebbb2daa358f5f1b86576..0000000000000000000000000000000000000000
--- a/third_party/WebKit/LayoutTests/media/gc-pending-event-inactive-document.html
+++ /dev/null
@@ -1,19 +0,0 @@
-<!DOCTYPE html>
-<title>GC with a pending event in an inactive document</title>
-<script src="../resources/testharness.js"></script>
-<script src="../resources/testharnessreport.js"></script>
-<script src="media-file.js"></script>
-<script>
-async_test(function(t)
-{
- var a = document.createElement("audio");
- a.volume = 0; // queues a task to fire volumechange
-
- var doc = document.implementation.createHTMLDocument();
- doc.body.appendChild(a);
-
- a.onvolumechange = t.step_func_done();
- a = doc = null;
- gc();
-});
-</script>

Powered by Google App Engine
This is Rietveld 408576698