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

Unified Diff: LayoutTests/media/media-higher-prio-audio-stream.html

Issue 14362037: Remove USE(GSTREAMER) and USE(WEBAUDIO_GSTREAMER) guards. (Closed) Base URL: https://chromium.googlesource.com/chromium/blink.git@master
Patch Set: Remove GSTREAMER specific code Created 7 years, 8 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
« no previous file with comments | « LayoutTests/TestExpectations ('k') | LayoutTests/media/media-higher-prio-audio-stream-expected.txt » ('j') | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: LayoutTests/media/media-higher-prio-audio-stream.html
diff --git a/LayoutTests/media/media-higher-prio-audio-stream.html b/LayoutTests/media/media-higher-prio-audio-stream.html
deleted file mode 100644
index 857b173bce3e21feb4ea12ac9179429a291dd320..0000000000000000000000000000000000000000
--- a/LayoutTests/media/media-higher-prio-audio-stream.html
+++ /dev/null
@@ -1,46 +0,0 @@
-<!DOCTYPE html>
-<html>
- <head>
- <script src=media-file.js></script>
- <script src=video-test.js></script>
-
- <script>
- var mediaElement;
-
- function start()
- {
- mediaElement = new Audio();
-
- waitForEvent('error');
- waitForEvent('playing', playing);
-
- mediaElement.src = findMediaFile('audio', 'content/test');
- mediaElement.play();
- }
-
- function playing()
- {
- testExpected("mediaElement.paused", false);
- waitForEvent('pause', paused);
- internals.simulateAudioInterruption(mediaElement);
- }
-
- function paused()
- {
- testExpected("mediaElement.paused", true);
- testExpected("mediaElement.ended", false);
- consoleWrite("");
- endTest();
- }
- </script>
- </head>
- <body onload="start()">
- <p><b>Test paused by:</b>
- <ol>
- <li>Getting a higher priority audio stream.</li>
- <li>This test does not work in the launchers, only with
- the test runners.</li>
- </ol>
- </p>
- </body>
-</html>
« no previous file with comments | « LayoutTests/TestExpectations ('k') | LayoutTests/media/media-higher-prio-audio-stream-expected.txt » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698