| Index: third_party/WebKit/LayoutTests/webaudio/OfflineAudioContext/offlineaudiocontext-properties.html
|
| diff --git a/third_party/WebKit/LayoutTests/webaudio/OfflineAudioContext/offlineaudiocontext-properties.html b/third_party/WebKit/LayoutTests/webaudio/OfflineAudioContext/offlineaudiocontext-properties.html
|
| index 393e42d225945ed5f4b9a7529e4afdbb1e5038e5..448b6675d8bb5becfececb50387ee7ccb886470e 100644
|
| --- a/third_party/WebKit/LayoutTests/webaudio/OfflineAudioContext/offlineaudiocontext-properties.html
|
| +++ b/third_party/WebKit/LayoutTests/webaudio/OfflineAudioContext/offlineaudiocontext-properties.html
|
| @@ -5,7 +5,7 @@
|
| <script src="../../resources/testharness.js"></script>
|
| <script src="../../resources/testharnessreport.js"></script>
|
| <script src="../resources/audit-util.js"></script>
|
| - <script src="../resources/audio-testing.js"></script>
|
| + <script src="../resources/audit.js"></script>
|
| <script src="../resources/context-properties.js"></script>
|
| </head>
|
| <body>
|
| @@ -15,15 +15,14 @@
|
|
|
| // Cross-checking two sets of properties: a programmatically generated set
|
| // and a pre-populated set.
|
| - audit.defineTask('crosschecking-properties', function (taskDone) {
|
| + audit.define('crosschecking-properties', (task, should) => {
|
| verifyPrototypeOwnProperties(OfflineAudioContext.prototype,
|
| OfflineAudioContextOwnProperties,
|
| - Should);
|
| - taskDone();
|
| + should);
|
| + task.done();
|
| });
|
|
|
| -
|
| - audit.runTasks();
|
| + audit.run();
|
| </script>
|
| </body>
|
| </html>
|
|
|