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

Side by Side Diff: third_party/WebKit/LayoutTests/webaudio/AudioBufferSource/audiosource-premature-gc.html

Issue 2581463002: Refactor WebAudio test directory (Closed)
Patch Set: Use correct path for wav result files Created 4 years 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 premature GC upon OscillatorNode and AudioBufferSourceNode</titl e> 4 <title>Test premature GC upon OscillatorNode and AudioBufferSourceNode</titl e>
5 <script src="../resources/js-test.js"></script> 5 <script src="../../resources/js-test.js"></script>
6 <script src="resources/audit-util.js"></script> 6 <script src="../resources/audit-util.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>
11 <script type="text/javascript"> 11 <script type="text/javascript">
12 description("Test premature GC upon OscillatorNode and AudioBufferSourceNo de"); 12 description("Test premature GC upon OscillatorNode and AudioBufferSourceNo de");
13 window.jsTestIsAsync = true; 13 window.jsTestIsAsync = true;
14 14
15 var sampleRate = 44100; 15 var sampleRate = 44100;
16 var renderDuration = 1; 16 var renderDuration = 1;
17 17
(...skipping 56 matching lines...) Expand 10 before | Expand all | Expand 10 after
74 audit.runTasks( 74 audit.runTasks(
75 'oscillator-onended', 75 'oscillator-onended',
76 'buffersource-onended', 76 'buffersource-onended',
77 'finish' 77 'finish'
78 ); 78 );
79 79
80 succesfullyParsed = true; 80 succesfullyParsed = true;
81 </script> 81 </script>
82 </body> 82 </body>
83 </html> 83 </html>
OLDNEW

Powered by Google App Engine
This is Rietveld 408576698