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

Unified Diff: LayoutTests/webaudio/dom-exceptions.html

Issue 707753006: Remove noteOn and noteOff methods from OscillatorNode (Closed) Base URL: svn://svn.chromium.org/blink/trunk
Patch Set: Created 6 years, 1 month 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/dom-exceptions-expected.txt » ('j') | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: LayoutTests/webaudio/dom-exceptions.html
diff --git a/LayoutTests/webaudio/dom-exceptions.html b/LayoutTests/webaudio/dom-exceptions.html
index ba43ba31604e3142e6710477ef643cb428e829fb..83e2047e28035859af65ee957aeb75d12c5637f2 100644
--- a/LayoutTests/webaudio/dom-exceptions.html
+++ b/LayoutTests/webaudio/dom-exceptions.html
@@ -248,6 +248,12 @@ function runTest() {
shouldThrow("script.channelCountMode = 'max'");
shouldThrow("script.channelCountMode = 'clamped-max'");
shouldNotThrow("script.channelCountMode = 'junk'");
+
+ // noteOn and noteOff don't exist anymore
+ shouldBeUndefined("osc.noteOn");
+ shouldBeUndefined("osc.noteOff");
+ shouldBeUndefined("source.noteOn");
+ shouldBeUndefined("source.noteOff");
}
runTest();
« no previous file with comments | « no previous file | LayoutTests/webaudio/dom-exceptions-expected.txt » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698