| Index: third_party/WebKit/LayoutTests/webaudio/constructor/gain.html
|
| diff --git a/third_party/WebKit/LayoutTests/webaudio/constructor/gain.html b/third_party/WebKit/LayoutTests/webaudio/constructor/gain.html
|
| index 0340e4be47c06bfa7a0629271a759f43ef41d4ad..3024578af258f64a616f028ad111ed6380908bc4 100644
|
| --- a/third_party/WebKit/LayoutTests/webaudio/constructor/gain.html
|
| +++ b/third_party/WebKit/LayoutTests/webaudio/constructor/gain.html
|
| @@ -1,19 +1,20 @@
|
| -<!doctype html>
|
| +<!DOCTYPE html>
|
| <html>
|
| <head>
|
| - <title>Test Constructor: Gain</title>
|
| + <title>
|
| + Test Constructor: Gain
|
| + </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);
|
| @@ -47,8 +48,8 @@
|
| });
|
|
|
| audit.define('constructor with options', (task, should) => {
|
| - var node;
|
| - var options = {
|
| + let node;
|
| + let options = {
|
| gain: -2,
|
| };
|
|
|
|
|