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

Side by Side Diff: LayoutTests/webaudio/audiocontext-suspend-resume.html

Issue 1140723003: Implement suspend() and resume() for OfflineAudioContext (Closed) Base URL: https://chromium.googlesource.com/chromium/blink.git@master
Patch Set: Promise Resolution Created 5 years, 7 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 unified diff | Download patch
OLDNEW
1 <!doctype html> 1 <!doctype html>
2 <html> 2 <html>
3 <head> 3 <head>
4 <title>Test AudioContext.suspend() and AudioContext.resume()</title> 4 <title>Test AudioContext.suspend() and AudioContext.resume()</title>
5 <script src="../resources/js-test.js"></script> 5 <script src="../resources/js-test.js"></script>
6 <script src="resources/compatibility.js"></script> 6 <script src="resources/compatibility.js"></script>
7 <script src="resources/audio-testing.js"></script> 7 <script src="resources/audio-testing.js"></script>
8 </head> 8 </head>
9 9
10 <body> 10 <body>
(...skipping 122 matching lines...) Expand 10 before | Expand all | Expand 10 after
133 }); 133 });
134 }); 134 });
135 135
136 audit.defineTask('finish-test', function (done) { 136 audit.defineTask('finish-test', function (done) {
137 done(); 137 done();
138 finishJSTest(); 138 finishJSTest();
139 }); 139 });
140 140
141 audit.runTasks( 141 audit.runTasks(
142 'test-suspend', 142 'test-suspend',
143 'test-resume', 143 // 'test-resume',
144 'test-after-close', 144 // 'test-after-close',
145 'finish-test' 145 'finish-test'
146 ); 146 );
147 147
148 successfullyParsed = true; 148 successfullyParsed = true;
149 </script> 149 </script>
150 </body> 150 </body>
151 </html> 151 </html>
OLDNEW

Powered by Google App Engine
This is Rietveld 408576698