| Index: third_party/WebKit/LayoutTests/webaudio/constructor/channelsplitter.html
|
| diff --git a/third_party/WebKit/LayoutTests/webaudio/constructor/channelsplitter.html b/third_party/WebKit/LayoutTests/webaudio/constructor/channelsplitter.html
|
| index f592a1ae541d5522773a470c7d5ebaf67bed6cf5..a7603055823ef2e2308ad78d29e7b0cd464e196c 100644
|
| --- a/third_party/WebKit/LayoutTests/webaudio/constructor/channelsplitter.html
|
| +++ b/third_party/WebKit/LayoutTests/webaudio/constructor/channelsplitter.html
|
| @@ -1,19 +1,20 @@
|
| -<!doctype html>
|
| +<!DOCTYPE html>
|
| <html>
|
| <head>
|
| - <title>Test Constructor: ChannelSplitter</title>
|
| + <title>
|
| + Test Constructor: ChannelSplitter
|
| + </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>
|
| <script src="audionodeoptions.js"></script>
|
| </head>
|
| -
|
| <body>
|
| - <script>
|
| - var context;
|
| + <script id="layout-test-code">
|
| + let context;
|
|
|
| - var audit = Audit.createTaskRunner();
|
| + let audit = Audit.createTaskRunner();
|
|
|
| audit.define('initialize', (task, should) => {
|
| context = initializeContext(should);
|
| @@ -51,8 +52,8 @@
|
| });
|
|
|
| audit.define('constructor options', (task, should) => {
|
| - var node;
|
| - var options = {
|
| + let node;
|
| + let options = {
|
| numberOfInputs: 3,
|
| numberOfOutputs: 9,
|
| channelInterpretation: 'discrete'
|
|
|