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

Unified Diff: chrome/test/data/android/media/mp3-play.html

Issue 1810333004: Replace proprietary codec based test media with open codec based versions. (Closed) Base URL: https://chromium.googlesource.com/chromium/src.git@master
Patch Set: Disable test per zqzhang. Created 4 years, 9 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 | « chrome/test/data/android/media/audio-play.html ('k') | chrome/test/data/android/media/mpthreetest.mp3 » ('j') | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: chrome/test/data/android/media/mp3-play.html
diff --git a/chrome/test/data/android/media/mp3-play.html b/chrome/test/data/android/media/mp3-play.html
deleted file mode 100644
index 2800f9c86dccac1894f3e0e93656eb5118e2da02..0000000000000000000000000000000000000000
--- a/chrome/test/data/android/media/mp3-play.html
+++ /dev/null
@@ -1,23 +0,0 @@
-<html>
-<title>test</title>
-<body bgcolor="Silver">
- <audio id='audio1' src="mpthreetest.mp3" controls></audio>
- <script>
- var audio = document.getElementById('audio1');
- var mediaElement = audio;
-
- function playaudio() {
- mediaElement.play();
- }
-
- audio.oncanplaythrough = function() {
- document.title = 'ready_to_play';
- }
-
- audio.onended = function(e) {
- document.title = 'ended';
- }
- </script>
- <button id="button1" onclick="playaudio()">Click me</button>
-</body>
-</html>
« no previous file with comments | « chrome/test/data/android/media/audio-play.html ('k') | chrome/test/data/android/media/mpthreetest.mp3 » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698