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

Side by Side Diff: LayoutTests/webaudio/gain-basic.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 2
3 <!-- 3 <!--
4 Verifies GainNode attributes and their type. 4 Verifies GainNode attributes and their type.
5 --> 5 -->
6 6
7 <html> 7 <html>
8 <head> 8 <head>
9 <script src="../fast/js/resources/js-test-pre.js"></script> 9 <script src="../fast/js/resources/js-test-pre.js"></script>
10 <script type="text/javascript" src="resources/audio-testing.js"></script> 10 <script type="text/javascript" src="resources/audio-testing.js"></script>
(...skipping 16 matching lines...) Expand all
27 var gainNode = context.createGainNode(); 27 var gainNode = context.createGainNode();
28 28
29 if (gainNode.gain.toString().indexOf("AudioParam") > -1) 29 if (gainNode.gain.toString().indexOf("AudioParam") > -1)
30 testPassed("gain is of AudioParam type."); 30 testPassed("gain is of AudioParam type.");
31 else 31 else
32 testFailed("gain is not of AudioParam type."); 32 testFailed("gain is not of AudioParam type.");
33 } 33 }
34 34
35 runTest(); 35 runTest();
36 </script> 36 </script>
37 <script src="../fast/js/resources/js-test-post.js"></script>
38 37
39 </body> 38 </body>
40 </html> 39 </html>
OLDNEW
« no previous file with comments | « LayoutTests/webaudio/dynamicscompressor-basic.html ('k') | LayoutTests/webaudio/javascriptaudionode.html » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698