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

Side by Side Diff: third_party/WebKit/LayoutTests/webaudio/AudioParam/audioparam-nominal-range.html

Issue 2874933006: [Not for commit] Layout test stuff
Patch Set: c836a95e87a9d8a13b057a3acf90c75650906a3e 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 | « DEPS ('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 <script src="../../resources/testharness.js"></script> 4 <script src="../../resources/testharness.js"></script>
5 <script src="../../resources/testharnessreport.js"></script> 5 <script src="../../resources/testharnessreport.js"></script>
6 <script src="../resources/audit-util.js"></script> 6 <script src="../resources/audit-util.js"></script>
7 <script src="../resources/audit.js"></script> 7 <script src="../resources/audit.js"></script>
8 <title>Test AudioParam Nominal Range Values</title> 8 <title>Test AudioParam Nominal Range Values</title>
9 </head> 9 </head>
10 10
11 <body> 11 <body>
12 <script> 12 <script>
13 13 // Whitespace
14 // Some arbitrary sample rate for the offline context. 14 // Some arbitrary sample rate for the offline context.
15 var sampleRate = 48000; 15 var sampleRate = 48000;
16 16
17 // The actual offline context 17 // The actual offline context
18 var context; 18 var context;
19 19
20 // The set of all methods that we've tested for verifying that we tested a ll of the necessary 20 // The set of all methods that we've tested for verifying that we tested a ll of the necessary
21 // objects. 21 // objects.
22 var testedMethods = new Set(); 22 var testedMethods = new Set();
23 23
(...skipping 445 matching lines...) Expand 10 before | Expand all | Expand 10 after
469 return success; 469 return success;
470 } else { 470 } else {
471 should(!limits, nodeName) 471 should(!limits, nodeName)
472 .message("has no AudioParams as expected", 472 .message("has no AudioParams as expected",
473 "has no AudioParams but test expected " + limits); 473 "has no AudioParams but test expected " + limits);
474 } 474 }
475 } 475 }
476 </script> 476 </script>
477 </body> 477 </body>
478 </html> 478 </html>
OLDNEW
« no previous file with comments | « DEPS ('k') | no next file » | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698