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

Side by Side Diff: third_party/WebKit/LayoutTests/webaudio/ScriptProcessor/scriptprocessornode-upmix2-8channel-input.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>
3 <head>
4 <title>
5 scriptprocessornode-upmix2-8channel-input.html
6 </title>
7 <script src="../../resources/testharness.js"></script>
8 <script src="../../resources/testharnessreport.js"></script>
9 <script src="../resources/audit-util.js"></script>
10 <script src="../resources/audit.js"></script>
11 <script src="../resources/scriptprocessornode-testing-audit.js"></script>
12 </head>
13 <body>
14 <script id="layout-test-code">
15 let audit = Audit.createTaskRunner();
2 16
3 <html> 17 let sampleRate = 44100.0;
4 <head> 18 let sourceChannels = 2;
5 <script src="../../resources/testharness.js"></script> 19 let inputChannels = 8;
6 <script src="../../resources/testharnessreport.js"></script> 20 let outputChannels = 6;
7 <script src="../resources/audit-util.js"></script>
8 <script src="../resources/audit.js"></script>
9 <script src="../resources/scriptprocessornode-testing-audit.js"></script>
10 </head>
11 21
12 <body> 22 audit.define(
13 <script> 23 {
14 let audit = Audit.createTaskRunner(); 24 label: 'test',
25 description:
26 'upmix a 2-channel source ScriptProcessorNode with 8-channel out put'
27 },
28 (task, should) => {
29 runJSNodeTest(should).then(() => task.done());
30 ;
31 });
15 32
16 let sampleRate = 44100.0; 33 audit.run();
17 let sourceChannels = 2; 34 </script>
18 let inputChannels = 8; 35 </body>
19 let outputChannels = 6;
20
21 audit.define(
22 {
23 label: 'test',
24 description:
25 'upmix a 2-channel source ScriptProcessorNode with 8-channel output'
26 },
27 (task, should) => {
28 runJSNodeTest(should).then(() => task.done());
29 ;
30 });
31
32 audit.run();
33 </script>
34
35 </body>
36 </html> 36 </html>
OLDNEW

Powered by Google App Engine
This is Rietveld 408576698