| Index: third_party/WebKit/LayoutTests/webaudio/AudioContext/audiocontext-properties.html
|
| diff --git a/third_party/WebKit/LayoutTests/webaudio/AudioContext/audiocontext-properties.html b/third_party/WebKit/LayoutTests/webaudio/AudioContext/audiocontext-properties.html
|
| index 9635c66e1171dffbac64da99024befee220fc3e6..7aa6675c68162919c5b352d18a68ff2f54f437da 100644
|
| --- a/third_party/WebKit/LayoutTests/webaudio/AudioContext/audiocontext-properties.html
|
| +++ b/third_party/WebKit/LayoutTests/webaudio/AudioContext/audiocontext-properties.html
|
| @@ -1,28 +1,29 @@
|
| <!DOCTYPE html>
|
| <html>
|
| -<head>
|
| - <title>Testing AudioContext properties</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="../resources/context-properties.js"></script>
|
| -</head>
|
| -<body>
|
| - <script>
|
| - var audit = Audit.createTaskRunner();
|
| + <head>
|
| + <title>
|
| + Testing AudioContext properties
|
| + </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="../resources/context-properties.js"></script>
|
| + </head>
|
| + <body>
|
| + <script id="layout-test-code">
|
| + let audit = Audit.createTaskRunner();
|
|
|
|
|
| - // Cross-checking two sets of properties: a programmatically generated set
|
| - // and a pre-populated set.
|
| - audit.define('crosschecking-properties', (task, should) => {
|
| - verifyPrototypeOwnProperties(AudioContext.prototype,
|
| - AudioContextOwnProperties,
|
| - should);
|
| - task.done();
|
| - });
|
| + // Cross-checking two sets of properties: a programmatically generated set
|
| + // and a pre-populated set.
|
| + audit.define('crosschecking-properties', (task, should) => {
|
| + verifyPrototypeOwnProperties(
|
| + AudioContext.prototype, AudioContextOwnProperties, should);
|
| + task.done();
|
| + });
|
|
|
| - audit.run();
|
| - </script>
|
| -</body>
|
| + audit.run();
|
| + </script>
|
| + </body>
|
| </html>
|
|
|