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

Unified Diff: third_party/WebKit/LayoutTests/http/tests/media/video-buffered-range-contains-currentTime.html

Issue 2439083003: Replace flaky test, wrangle with harness/infra
Patch Set: Created 4 years, 2 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 side-by-side diff with in-line comments
Download patch
Index: third_party/WebKit/LayoutTests/http/tests/media/video-buffered-range-contains-currentTime.html
diff --git a/third_party/WebKit/LayoutTests/http/tests/media/video-buffered-range-contains-currentTime.html b/third_party/WebKit/LayoutTests/http/tests/media/video-buffered-range-contains-currentTime.html
deleted file mode 100644
index cefe7535149af46e95cb1c3d8d453517cbaf5efb..0000000000000000000000000000000000000000
--- a/third_party/WebKit/LayoutTests/http/tests/media/video-buffered-range-contains-currentTime.html
+++ /dev/null
@@ -1,24 +0,0 @@
-<!DOCTYPE html>
-<title>Test that the painted buffered range contains currentTime.</title>
-<script src="../../media-resources/media-file.js"></script>
-<video controls></video>
-<script>
-var video = document.querySelector("video");
-
-testRunner.waitUntilDone();
-video.onended = function() {
- testRunner.notifyDone();
-};
-
-video.onseeked = function() {
- video.play();
-};
-
-video.onloadedmetadata = function() {
- video.currentTime = video.duration - 0.5;
-};
-
-var mediaFile = findMediaFile("audio", "../../../media/content/test");
-var type = mimeTypeForExtension(mediaFile.split(".").pop());
-video.src = "http://127.0.0.1:8000/media/video-throttled-load.cgi?name=" + mediaFile + "&throttle=5000&nph=1&type=" + type;
-</script>

Powered by Google App Engine
This is Rietveld 408576698