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

Side by Side Diff: third_party/WebKit/LayoutTests/webaudio/ScriptProcessor/scriptprocessornode-rewrap.html

Issue 2895963003: Apply layout-test-tidy to LayoutTests/webaudio (Closed)
Patch Set: Created 3 years, 7 months 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> 4 <title>
5 scriptprocessornode-rewrap.html 5 scriptprocessornode-rewrap.html
6 </title> 6 </title>
7 <script src="../../resources/js-test.js"></script> 7 <script src="../../resources/js-test.js"></script>
8 <script src="../resources/scriptprocessornode-testing.js"></script> 8 <script src="../resources/scriptprocessornode-testing.js"></script>
9 </head> 9 </head>
10 <body> 10 <body>
11 <script id="layout-test-code"> 11 <script id="layout-test-code">
12 description( 12 description(
13 'Tests re-wrapping an AudioNode sublass after its JS wrapper is ' + 13 'Tests re-wrapping an AudioNode sublass after its JS wrapper is ' +
14 'deleted wraps the node as the correct subclass. A binding ' + 14 'deleted wraps the node as the correct subclass. A binding ' +
15 'integrity assert will fire otherwise.'); 15 'integrity assert will fire otherwise.');
16 window.jsTestIsAsync = true; 16 window.jsTestIsAsync = true;
17 17
18 let sampleRate = 44100.0; 18 let sampleRate = 44100.0;
19 let sourceChannels = 2; 19 let sourceChannels = 2;
20 let inputChannels = 8; 20 let inputChannels = 8;
21 let outputChannels = 6; 21 let outputChannels = 6;
22 22
23 runJSNodeTest(); 23 runJSNodeTest();
24 24
25 let i = document.createElement('iframe'); 25 let i = document.createElement('iframe');
26 document.body.appendChild(i); 26 document.body.appendChild(i);
27 </script> 27 </script>
28 </body> 28 </body>
29 </html> 29 </html>
OLDNEW

Powered by Google App Engine
This is Rietveld 408576698