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

Side by Side Diff: third_party/WebKit/LayoutTests/webaudio/constructor/channelmerger.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>Test Constructor: ChannelMerger</title> 4 <title>
5 Test Constructor: ChannelMerger
6 </title>
5 <script src="../../resources/testharness.js"></script> 7 <script src="../../resources/testharness.js"></script>
6 <script src="../../resources/testharnessreport.js"></script> 8 <script src="../../resources/testharnessreport.js"></script>
7 <script src="../resources/audit-util.js"></script> 9 <script src="../resources/audit-util.js"></script>
8 <script src="../resources/audit.js"></script> 10 <script src="../resources/audit.js"></script>
9 <script src="audionodeoptions.js"></script> 11 <script src="audionodeoptions.js"></script>
10 </head> 12 </head>
11
12 <body> 13 <body>
13 <script> 14 <script id="layout-test-code">
14 let context; 15 let context;
15 16
16 let audit = Audit.createTaskRunner(); 17 let audit = Audit.createTaskRunner();
17 18
18 audit.define('initialize', (task, should) => { 19 audit.define('initialize', (task, should) => {
19 context = initializeContext(should); 20 context = initializeContext(should);
20 task.done(); 21 task.done();
21 }); 22 });
22 23
23 audit.define('invalid constructor', (task, should) => { 24 audit.define('invalid constructor', (task, should) => {
(...skipping 75 matching lines...) Expand 10 before | Expand all | Expand 10 after
99 'new ChannelMergerNode(c, ' + JSON.stringify(options) + ')') 100 'new ChannelMergerNode(c, ' + JSON.stringify(options) + ')')
100 .throw('InvalidStateError'); 101 .throw('InvalidStateError');
101 102
102 task.done(); 103 task.done();
103 }); 104 });
104 105
105 audit.run(); 106 audit.run();
106 </script> 107 </script>
107 </body> 108 </body>
108 </html> 109 </html>
OLDNEW

Powered by Google App Engine
This is Rietveld 408576698