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: tools/perf/page_sets/tough_video_cases/audio_playback.html

Issue 2822433004: Remove audio_loop cases from tough_video_cases pagesets. (Closed)
Patch Set: Also remove html page and media file sha1s Created 3 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
Index: tools/perf/page_sets/tough_video_cases/audio_playback.html
diff --git a/tools/perf/page_sets/tough_video_cases/audio_playback.html b/tools/perf/page_sets/tough_video_cases/audio_playback.html
deleted file mode 100644
index c5ccbc86b82c6274df2b895cb05ba3774985a8dd..0000000000000000000000000000000000000000
--- a/tools/perf/page_sets/tough_video_cases/audio_playback.html
+++ /dev/null
@@ -1,23 +0,0 @@
-<!DOCTYPE html>
-<html>
- <body>
- <script>
- function addAudio(id, file) {
- var audio = document.createElement('audio');
- audio.src = file;
- audio.loop = true;
- audio.id = id;
- document.body.appendChild(audio);
- }
-
- function getIDFromURL() {
- var query = window.location.search;
- return query.substring(query.lastIndexOf("id=") + 3);
- }
-
- addAudio('background_audio', 'pink_noise_20s.wav');
- // Main audio file is identified by an ID passed in the page-set.
- addAudio(getIDFromURL(), 'pink_noise_140ms.wav');
- </script>
- </body>
-</html>
« no previous file with comments | « tools/perf/page_sets/tough_video_cases.py ('k') | tools/perf/page_sets/tough_video_cases/pink_noise_140ms.wav.sha1 » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698