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

Side by Side Diff: third_party/WebKit/LayoutTests/webaudio/ScriptProcessor/scriptprocessornode-rewrap.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 <body> 3 <body>
4 <script src=../resources/js-test.js></script> 4 <script src="../../resources/js-test.js"></script>
5 <script src="resources/compatibility.js"></script> 5 <script src="../resources/compatibility.js"></script>
6 <script> 6 <script>
7 var jsTestIsAsync = true; 7 var jsTestIsAsync = true;
8 description("Tests re-wrapping an AudioNode sublass after its JS wrapper is dele ted wraps the node as the correct subclass. A binding integrity assert will fire otherwise."); 8 description("Tests re-wrapping an AudioNode sublass after its JS wrapper is dele ted wraps the node as the correct subclass. A binding integrity assert will fire otherwise.");
9 </script> 9 </script>
10 <script src=resources/scriptprocessornode-testing.js></script> 10 <script src="../resources/scriptprocessornode-testing.js"></script>
11 <script> 11 <script>
12 var sampleRate = 44100.0; 12 var sampleRate = 44100.0;
13 var sourceChannels = 2; 13 var sourceChannels = 2;
14 var inputChannels = 8; 14 var inputChannels = 8;
15 var outputChannels = 6; 15 var outputChannels = 6;
16 runJSNodeTest(); 16 runJSNodeTest();
17 var i = document.createElement("iframe"); 17 var i = document.createElement("iframe");
18 document.body.appendChild(i); 18 document.body.appendChild(i);
19 </script> 19 </script>
20 </body> 20 </body>
21 </html> 21 </html>
OLDNEW

Powered by Google App Engine
This is Rietveld 408576698