Chromium Code Reviews
chromiumcodereview-hr@appspot.gserviceaccount.com (chromiumcodereview-hr) | Please choose your nickname with Settings | Help | Chromium Project | Gerrit Changes | Sign out
(86)

Unified Diff: third_party/WebKit/LayoutTests/webaudio/convolver-setBuffer-null.html

Issue 1493753003: Drop [LegacyInterfaceTypeChecking] for the Web Audio API (Closed) Base URL: https://chromium.googlesource.com/chromium/src.git@master
Patch Set: update tests Created 5 years ago
Use n/p to move between diff chunks; N/P to move between comments. Draft comments are only viewable by you.
Jump to:
View side-by-side diff with in-line comments
Download patch
Index: third_party/WebKit/LayoutTests/webaudio/convolver-setBuffer-null.html
diff --git a/third_party/WebKit/LayoutTests/webaudio/convolver-setBuffer-null.html b/third_party/WebKit/LayoutTests/webaudio/convolver-setBuffer-null.html
index a3803f7a6deed4ec08e8ad1ba650e337978c237b..72a46e932255e961e6de6da7aeeeb8d650a0db84 100644
--- a/third_party/WebKit/LayoutTests/webaudio/convolver-setBuffer-null.html
+++ b/third_party/WebKit/LayoutTests/webaudio/convolver-setBuffer-null.html
@@ -11,7 +11,7 @@
<div id="console"></div>
<script>
-description("Tests that ConvolverNode impulse response buffer can be set to 0.");
+description("Tests that ConvolverNode impulse response buffer can be set to null.");
function runTest()
{
@@ -25,8 +25,8 @@ function runTest()
var context = new AudioContext();
var conv = context.createConvolver();
- conv.buffer = 0;
- testPassed("ConvolverNode impulse response buffer was set to 0.");
+ conv.buffer = null;
+ testPassed("ConvolverNode impulse response buffer was set to null.");
finishJSTest();
}

Powered by Google App Engine
This is Rietveld 408576698