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

Unified Diff: tests/html/audiocontext_test.dart

Issue 12802007: Adjust AudioContextTest for Safari JS prototypes (Closed) Base URL: https://dart.googlecode.com/svn/branches/bleeding_edge/dart
Patch Set: Created 7 years, 9 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 | no next file » | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: tests/html/audiocontext_test.dart
diff --git a/tests/html/audiocontext_test.dart b/tests/html/audiocontext_test.dart
index 8fe9027585217659163c7fc4a90a9668f15200b3..bcf60a3cd99c42cd1e4d732971c7d2cf860c4cf9 100644
--- a/tests/html/audiocontext_test.dart
+++ b/tests/html/audiocontext_test.dart
@@ -50,8 +50,8 @@ main() {
expect(gainNode is GainNode, isTrue);
expect(context.createAnalyser() is AnalyserNode, isTrue);
- expect(context.createChannelMerger() is ChannelMergerNode, isTrue);
- expect(context.createChannelSplitter() is ChannelSplitterNode, isTrue);
+ expect(context.createChannelMerger() is AudioNode, isTrue);
Emily Fortuna 2013/03/18 23:44:26 this is for Safari. my guess is we're checking the
+ expect(context.createChannelSplitter() is AudioNode, isTrue);
expect(context.createOscillator() is OscillatorNode, isTrue);
expect(context.createPanner() is PannerNode, isTrue);
expect(context.createScriptProcessor(4096) is ScriptProcessorNode,
« no previous file with comments | « no previous file | no next file » | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698