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

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

Issue 2567713002: Separating layout test utilities into audit-util.js (Closed)
Patch Set: 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/audio-testing.js"></script> 7 <script src="resources/audio-testing.js"></script>
7 </head> 8 </head>
8 9
9 <body> 10 <body>
10 <script type="text/javascript"> 11 <script type="text/javascript">
11 description("Test premature GC upon OscillatorNode and AudioBufferSourceNo de"); 12 description("Test premature GC upon OscillatorNode and AudioBufferSourceNo de");
12 window.jsTestIsAsync = true; 13 window.jsTestIsAsync = true;
13 14
14 var sampleRate = 44100; 15 var sampleRate = 44100;
15 var renderDuration = 1; 16 var renderDuration = 1;
(...skipping 57 matching lines...) Expand 10 before | Expand all | Expand 10 after
73 audit.runTasks( 74 audit.runTasks(
74 'oscillator-onended', 75 'oscillator-onended',
75 'buffersource-onended', 76 'buffersource-onended',
76 'finish' 77 'finish'
77 ); 78 );
78 79
79 succesfullyParsed = true; 80 succesfullyParsed = true;
80 </script> 81 </script>
81 </body> 82 </body>
82 </html> 83 </html>
OLDNEW

Powered by Google App Engine
This is Rietveld 408576698