| Index: third_party/WebKit/LayoutTests/webaudio/Oscillator/osc-low-freq.html
|
| diff --git a/third_party/WebKit/LayoutTests/webaudio/Oscillator/osc-low-freq.html b/third_party/WebKit/LayoutTests/webaudio/Oscillator/osc-low-freq.html
|
| index 7a9437287170b531e2b4cd138eb06c68d76c2afc..5a1e0d24fcb77675f862cc1a4c90678f07958cfc 100644
|
| --- a/third_party/WebKit/LayoutTests/webaudio/Oscillator/osc-low-freq.html
|
| +++ b/third_party/WebKit/LayoutTests/webaudio/Oscillator/osc-low-freq.html
|
| @@ -2,16 +2,14 @@
|
| <html>
|
| <head>
|
| <title>Test Custom Oscillator at Very Low Frequency</title>
|
| - <script src="../../resources/js-test.js"></script>
|
| + <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>
|
| </head>
|
|
|
| <body>
|
| <script>
|
| - description("Test Custom Oscillator at Very Low Frequency");
|
| - window.jsTestIsAsync = true;
|
| -
|
| // Create a custom oscillator and verify that the parts of a periodic wave that should be
|
| // ignored really are ignored.
|
|
|
| @@ -79,11 +77,10 @@
|
| osc.start();
|
| context.startRendering().then(function (buffer) {
|
| checkCosineResult(buffer, desiredFrequencyHz, sampleRate);
|
| - }).then(finishJSTest);
|
| + });
|
| };
|
|
|
| runTest();
|
| - successfullyParsed = true;
|
| </script>
|
| </body>
|
| </html>
|
|
|