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

Unified Diff: third_party/WebKit/LayoutTests/webaudio/AudioBufferSource/audiosource-onended.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/AudioBufferSource/audiosource-onended.html
diff --git a/third_party/WebKit/LayoutTests/webaudio/AudioBufferSource/audiosource-onended.html b/third_party/WebKit/LayoutTests/webaudio/AudioBufferSource/audiosource-onended.html
index 7191e71dd888ec3f9967b9011692b6cb889abfb5..c7c2bdbb71c7cce47ca9bf05824d19bf36de2ec1 100644
--- a/third_party/WebKit/LayoutTests/webaudio/AudioBufferSource/audiosource-onended.html
+++ b/third_party/WebKit/LayoutTests/webaudio/AudioBufferSource/audiosource-onended.html
@@ -1,89 +1,94 @@
-<!doctype html>
+<!DOCTYPE html>
<html>
<head>
- <title>Test Onended Event Listener</title>
+ <title>
+ Test Onended Event Listener
+ </title>
<script src="../../resources/testharness.js"></script>
- <script src="../../resources/testharnessreport.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 sampleRate = 44100;
- var renderLengthSeconds = 1;
- var renderLengthFrames = renderLengthSeconds * sampleRate;
+ <script id="layout-test-code">
+ let sampleRate = 44100;
+ let renderLengthSeconds = 1;
+ let renderLengthFrames = renderLengthSeconds * sampleRate;
- // Length of the source buffer. Anything less than the render length is fine.
- var sourceBufferLengthFrames = renderLengthFrames / 8;
- // When to stop the oscillator. Anything less than the render time is fine.
- var stopTime = renderLengthSeconds / 8;
+ // Length of the source buffer. Anything less than the render length is
+ // fine.
+ let sourceBufferLengthFrames = renderLengthFrames / 8;
+ // When to stop the oscillator. Anything less than the render time is
+ // fine.
+ let stopTime = renderLengthSeconds / 8;
- var audit = Audit.createTaskRunner();
+ let audit = Audit.createTaskRunner();
- audit.define("absn-set-onended", (task, should) => {
- // Test that the onended event for an AudioBufferSourceNode is fired when it is set
- // directly.
- var context = new OfflineAudioContext(1, renderLengthFrames, sampleRate);
- var buffer = context.createBuffer(1, sourceBufferLengthFrames, context.sampleRate);
- var source = context.createBufferSource();
+ audit.define('absn-set-onended', (task, should) => {
+ // Test that the onended event for an AudioBufferSourceNode is fired
+ // when it is set directly.
+ let context =
+ new OfflineAudioContext(1, renderLengthFrames, sampleRate);
+ let buffer = context.createBuffer(
+ 1, sourceBufferLengthFrames, context.sampleRate);
+ let source = context.createBufferSource();
source.buffer = buffer;
source.connect(context.destination);
- source.onended = function (e) {
- should(true, "AudioBufferSource.onended called when ended set directly")
- .beEqualTo(true);
+ source.onended = function(e) {
+ should(
+ true, 'AudioBufferSource.onended called when ended set directly')
+ .beEqualTo(true);
};
source.start();
context.startRendering().then(() => task.done());
});
- audit.define("absn-add-listener", (task, should) => {
- // Test that the onended event for an AudioBufferSourceNode is fired when
- // addEventListener is used to set the handler.
- var context = new OfflineAudioContext(1, renderLengthFrames,
- sampleRate);
- var buffer = context.createBuffer(1, sourceBufferLengthFrames,
- context.sampleRate);
- var source = context.createBufferSource();
+ audit.define('absn-add-listener', (task, should) => {
+ // Test that the onended event for an AudioBufferSourceNode is fired
+ // when addEventListener is used to set the handler.
+ let context =
+ new OfflineAudioContext(1, renderLengthFrames, sampleRate);
+ let buffer = context.createBuffer(
+ 1, sourceBufferLengthFrames, context.sampleRate);
+ let source = context.createBufferSource();
source.buffer = buffer;
source.connect(context.destination);
- source.addEventListener("ended", function (e) {
- should(true,
- "AudioBufferSource.onended called when using addEventListener"
- )
- .beEqualTo(true);
+ source.addEventListener('ended', function(e) {
+ should(
+ true,
+ 'AudioBufferSource.onended called when using addEventListener')
+ .beEqualTo(true);
});
source.start();
context.startRendering().then(() => task.done());
});
- audit.define("osc-set-onended", (task, should) => {
- // Test that the onended event for an OscillatorNode is fired when it is set
- // directly.
- var context = new OfflineAudioContext(1, renderLengthFrames, sampleRate);
- var source = context.createOscillator();
+ audit.define('osc-set-onended', (task, should) => {
+ // Test that the onended event for an OscillatorNode is fired when it is
+ // set directly.
+ let context =
+ new OfflineAudioContext(1, renderLengthFrames, sampleRate);
+ let source = context.createOscillator();
source.connect(context.destination);
- source.onended = function (e) {
- should(true, "Oscillator.onended called when ended set directly")
- .beEqualTo(true);
+ source.onended = function(e) {
+ should(true, 'Oscillator.onended called when ended set directly')
+ .beEqualTo(true);
};
source.start();
source.stop(stopTime);
context.startRendering().then(() => task.done());
});
- audit.define("osc-add-listener", (task, should) => {
+ audit.define('osc-add-listener', (task, should) => {
// Test that the onended event for an OscillatorNode is fired when
// addEventListener is used to set the handler.
- var context = new OfflineAudioContext(1, renderLengthFrames,
- sampleRate);
- var source = context.createOscillator();
+ let context =
+ new OfflineAudioContext(1, renderLengthFrames, sampleRate);
+ let source = context.createOscillator();
source.connect(context.destination);
- source.addEventListener("ended", function (e) {
- should(true,
- "Oscillator.onended called when using addEventListener")
- .beEqualTo(true);
+ source.addEventListener('ended', function(e) {
+ should(true, 'Oscillator.onended called when using addEventListener')
+ .beEqualTo(true);
});
source.start();
source.stop(stopTime);

Powered by Google App Engine
This is Rietveld 408576698