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

Unified Diff: chrome/test/data/media/seek-jumper.html

Issue 9307004: Revert 119917 - Regression tests for two recently-fixed audio-related crashers. (Closed) Base URL: svn://svn.chromium.org/chrome/trunk/src/
Patch Set: Created 8 years, 11 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/chrome_tests.gypi ('k') | no next file » | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: chrome/test/data/media/seek-jumper.html
===================================================================
--- chrome/test/data/media/seek-jumper.html (revision 119929)
+++ chrome/test/data/media/seek-jumper.html (working copy)
@@ -1,21 +0,0 @@
-<html>
-<head>
-<script>
-// Issue a bunch of seeks in a row, with some overlap.
-var seekCount = 0;
-function seeked() {
- if (++seekCount == 100)
- document.title = 'Done'; // Signals completion to the C++ side.
- var a = document.querySelector('audio');
- a.currentTime = Math.random() * a.duration;
- window.setTimeout(seeked, 1); // Overlaps the onseeked listener.
-}
-</script>
-</head>
-<body>
- Test that rapid seeking fails to crash the browser.
-
- <audio controls autoplay src="bear_pcm.wav"
- onseeked="seeked()" onplaying="seeked()" onended="seeked()"></audio>
-</body>
-</html>
« no previous file with comments | « chrome/chrome_tests.gypi ('k') | no next file » | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698