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

Unified Diff: LayoutTests/webaudio/delaynode-maxdelaylimit.html

Issue 138943003: Check for NaN when creating a DelayNode for WebAudio (Closed) Base URL: svn://svn.chromium.org/blink/trunk
Patch Set: Created 6 years, 11 months 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
« no previous file with comments | « no previous file | LayoutTests/webaudio/delaynode-maxdelaylimit-expected.txt » ('j') | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: LayoutTests/webaudio/delaynode-maxdelaylimit.html
diff --git a/LayoutTests/webaudio/delaynode-maxdelaylimit.html b/LayoutTests/webaudio/delaynode-maxdelaylimit.html
index e90aec380977b2e54259045f7ccabbfc4ebc9aaf..a085225cc429d93a54247332439cdb06556506c4 100644
--- a/LayoutTests/webaudio/delaynode-maxdelaylimit.html
+++ b/LayoutTests/webaudio/delaynode-maxdelaylimit.html
@@ -34,6 +34,7 @@ function runTest() {
shouldThrow("context.createDelay(180)");
shouldThrow("context.createDelay(0)");
shouldThrow("context.createDelay(-1)");
+ shouldThrow("context.createDelay(NaN)");
var delay = context.createDelay(179);
delay.delayTime.value = delayTimeSeconds;
« no previous file with comments | « no previous file | LayoutTests/webaudio/delaynode-maxdelaylimit-expected.txt » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698