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

Side by Side Diff: LayoutTests/webaudio/audiobuffer.html

Issue 48903019: Delete js-test-post.js. (Closed) Base URL: svn://svn.chromium.org/blink/trunk
Patch Set: Created 7 years, 1 month 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 | Annotate | Revision Log
OLDNEW
1 <!DOCTYPE html> 1 <!DOCTYPE html>
2 <html> 2 <html>
3 <head> 3 <head>
4 <script src="../fast/js/resources/js-test-pre.js"></script> 4 <script src="../fast/js/resources/js-test-pre.js"></script>
5 <script src="resources/audio-testing.js"></script> 5 <script src="resources/audio-testing.js"></script>
6 </head> 6 </head>
7 <body> 7 <body>
8 <script> 8 <script>
9 description("Basic tests for AudioBuffer."); 9 description("Basic tests for AudioBuffer.");
10 10
(...skipping 33 matching lines...) Expand 10 before | Expand all | Expand 10 after
44 44
45 try { 45 try {
46 buffer.getChannelData(buffer.numberOfChannels); 46 buffer.getChannelData(buffer.numberOfChannels);
47 testFailed("Exception should be thrown when index is not less than numberOfC hannels."); 47 testFailed("Exception should be thrown when index is not less than numberOfC hannels.");
48 } catch(e) { 48 } catch(e) {
49 testPassed("Exception has been thrown correctly when index is not less than numberOfChannels."); 49 testPassed("Exception has been thrown correctly when index is not less than numberOfChannels.");
50 } 50 }
51 51
52 </script> 52 </script>
53 53
54 <script src="../fast/js/resources/js-test-post.js"></script>
55 </body> 54 </body>
56 </html> 55 </html>
OLDNEW
« no previous file with comments | « LayoutTests/vibration/vibration-patterns.html ('k') | LayoutTests/webaudio/audiobuffersource-channels.html » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698