Index: third_party/WebKit/LayoutTests/webaudio/Analyser/realtimeanalyser-fft-sizing.html |
diff --git a/third_party/WebKit/LayoutTests/webaudio/Analyser/realtimeanalyser-fft-sizing.html b/third_party/WebKit/LayoutTests/webaudio/Analyser/realtimeanalyser-fft-sizing.html |
index 16e72bc7fd33d55152c457fc4cbbcb80bfff6643..7139377cc0a513deed447d81510f1b94ab0be90e 100644 |
--- a/third_party/WebKit/LayoutTests/webaudio/Analyser/realtimeanalyser-fft-sizing.html |
+++ b/third_party/WebKit/LayoutTests/webaudio/Analyser/realtimeanalyser-fft-sizing.html |
@@ -29,9 +29,10 @@ function doTest(fftSize, illegal, should) { |
} |
} |
-audit.define("FFT size test", function (task, should) { |
- task.describe("Test that re-sizing the FFT arrays does not fail."); |
- doTest(-1, true, should); |
+audit.define({ |
+ label: "FFT size test", |
+ description: "Test that re-sizing the FFT arrays does not fail." |
+}, function (task, should) { doTest(-1, true, should); |
hongchan
2017/02/22 17:59:13
Same issue.
Raymond Toy
2017/02/22 19:34:09
Done.
|
doTest(0, true, should); |
doTest(1, true, should); |
for (let i = 2; i <= 0x20000; i *= 2) { |