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

Side by Side Diff: third_party/WebKit/LayoutTests/webaudio/constructor/waveshaper.html

Issue 2859053005: Final cleanup of constructor tests (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
« no previous file with comments | « third_party/WebKit/LayoutTests/webaudio/constructor/stereopanner.html ('k') | no next file » | no next file with comments »
Toggle Intra-line Diffs ('i') | Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
OLDNEW
1 <!doctype html> 1 <!doctype html>
2 <html> 2 <html>
3 <head> 3 <head>
4 <title>Test Constructor: WaveShaper</title> 4 <title>Test Constructor: WaveShaper</title>
5 <script src="../../resources/testharness.js"></script> 5 <script src="../../resources/testharness.js"></script>
6 <script src="../../resources/testharnessreport.js"></script> 6 <script src="../../resources/testharnessreport.js"></script>
7 <script src="../resources/audit-util.js"></script> 7 <script src="../resources/audit-util.js"></script>
8 <script src="../resources/audit.js"></script> 8 <script src="../resources/audit.js"></script>
9 <script src="new-audionodeoptions.js"></script> 9 <script src="audionodeoptions.js"></script>
10 </head> 10 </head>
11 11
12 <body> 12 <body>
13 <script> 13 <script>
14 var context; 14 var context;
15 15
16 var audit = Audit.createTaskRunner(); 16 var audit = Audit.createTaskRunner();
17 17
18 audit.define('initialize', (task, should) => { 18 audit.define('initialize', (task, should) => {
19 context = initializeContext(should); 19 context = initializeContext(should);
(...skipping 42 matching lines...) Expand 10 before | Expand all | Expand 10 after
62 should(node.oversample, 'node1.oversample') 62 should(node.oversample, 'node1.oversample')
63 .beEqualTo(options.oversample); 63 .beEqualTo(options.oversample);
64 64
65 task.done(); 65 task.done();
66 }); 66 });
67 67
68 audit.run(); 68 audit.run();
69 </script> 69 </script>
70 </body> 70 </body>
71 </html> 71 </html>
OLDNEW
« no previous file with comments | « third_party/WebKit/LayoutTests/webaudio/constructor/stereopanner.html ('k') | no next file » | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698