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

Unified Diff: third_party/WebKit/LayoutTests/webaudio/ScriptProcessor/scriptprocessor-offlineaudiocontext.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 side-by-side diff with in-line comments
Download patch
Index: third_party/WebKit/LayoutTests/webaudio/ScriptProcessor/scriptprocessor-offlineaudiocontext.html
diff --git a/third_party/WebKit/LayoutTests/webaudio/ScriptProcessor/scriptprocessor-offlineaudiocontext.html b/third_party/WebKit/LayoutTests/webaudio/ScriptProcessor/scriptprocessor-offlineaudiocontext.html
index f9c4d4716b3bccfe65065f230d151a09b341c729..47a023029e65ee3b9fd83403fd6b87ca74b4ac2f 100644
--- a/third_party/WebKit/LayoutTests/webaudio/ScriptProcessor/scriptprocessor-offlineaudiocontext.html
+++ b/third_party/WebKit/LayoutTests/webaudio/ScriptProcessor/scriptprocessor-offlineaudiocontext.html
@@ -1,38 +1,40 @@
<!DOCTYPE html>
<html>
-<head>
- <title>ScriptProcessorNode on OfflineAudioContext</title>
- <script src="../../resources/testharness.js"></script>
- <script src="../../resources/testharnessreport.js"></script>
- <script src="../resources/audit-util.js"></script>
- <script src="../resources/audit.js"></script>
-</head>
-<body>
- <script>
- var audit = Audit.createTaskRunner();
+ <head>
+ <title>
+ ScriptProcessorNode on OfflineAudioContext
+ </title>
+ <script src="../../resources/testharness.js"></script>
+ <script src="../../resources/testharnessreport.js"></script>
+ <script src="../resources/audit-util.js"></script>
+ <script src="../resources/audit.js"></script>
+ </head>
+ <body>
+ <script id="layout-test-code">
+ let audit = Audit.createTaskRunner();
// Fill the output of script processor with a constant value.
audit.define('simple-output', (task, should) => {
- var sampleRate = 44100;
- var scriptBufferSize = 256;
- var renderLength = 1;
- var PI = Math.fround(Math.PI);
+ let sampleRate = 44100;
+ let scriptBufferSize = 256;
+ let renderLength = 1;
+ let PI = Math.fround(Math.PI);
- var context =
+ let context =
new OfflineAudioContext(1, renderLength * sampleRate, sampleRate);
- var scriptNode = context.createScriptProcessor(scriptBufferSize, 1, 1);
+ let scriptNode = context.createScriptProcessor(scriptBufferSize, 1, 1);
scriptNode.onaudioprocess = function(event) {
- var outputChannel = event.outputBuffer.getChannelData(0);
+ let outputChannel = event.outputBuffer.getChannelData(0);
outputChannel.fill(PI);
};
scriptNode.connect(context.destination);
context.startRendering().then(function(buffer) {
- var channel = buffer.getChannelData(0);
- var initialDelay = channel.subarray(0, 2 * scriptBufferSize);
- var actualContent = channel.subarray(2 * scriptBufferSize);
+ let channel = buffer.getChannelData(0);
+ let initialDelay = channel.subarray(0, 2 * scriptBufferSize);
+ let actualContent = channel.subarray(2 * scriptBufferSize);
// There is the initial delay (2 x buffer size) which is silent.
should(initialDelay, 'The initial delay contains zeros.')
@@ -51,20 +53,20 @@
// phase-inverted oscillator with the delayed start time. Verify the
// rendered buffer is completely silent.
audit.define('oscillator-output', (task, should) => {
- var sampleRate = 44100;
- var scriptBufferSize = 256;
- var renderLength = 1;
+ let sampleRate = 44100;
+ let scriptBufferSize = 256;
+ let renderLength = 1;
- var context =
+ let context =
new OfflineAudioContext(1, renderLength * sampleRate, sampleRate);
- var osc1 = context.createOscillator();
- var osc2 = context.createOscillator();
- var inverter = context.createGain();
- var scriptNode = context.createScriptProcessor(scriptBufferSize, 1, 1);
+ let osc1 = context.createOscillator();
+ let osc2 = context.createOscillator();
+ let inverter = context.createGain();
+ let scriptNode = context.createScriptProcessor(scriptBufferSize, 1, 1);
scriptNode.onaudioprocess = function(event) {
- var inputChannel = event.inputBuffer.getChannelData(0);
- var outputChannel = event.outputBuffer.getChannelData(0);
+ let inputChannel = event.inputBuffer.getChannelData(0);
+ let outputChannel = event.outputBuffer.getChannelData(0);
outputChannel.set(inputChannel);
};
@@ -78,7 +80,7 @@
osc2.start();
context.startRendering().then(function(buffer) {
- var channel = buffer.getChannelData(0);
+ let channel = buffer.getChannelData(0);
// The rendered buffer must be silent.
should(channel, 'The rendered buffer').beConstantValueOf(0);
@@ -88,6 +90,6 @@
});
audit.run();
- </script>
-</body>
+ </script>
+ </body>
</html>

Powered by Google App Engine
This is Rietveld 408576698