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

Unified Diff: tests/html/audiobuffersourcenode_test.dart

Issue 93933014: Changes for Chrome 32 (Closed) Base URL: http://dart.googlecode.com/svn/branches/bleeding_edge/dart/
Patch Set: More fixes for chrome 32/1700 roll 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
Index: tests/html/audiobuffersourcenode_test.dart
diff --git a/tests/html/audiobuffersourcenode_test.dart b/tests/html/audiobuffersourcenode_test.dart
index 10fecc9af1861cef9f714ac717ef0b306c837a7c..9d5025f86373a570dd83044c34bf7b67bf5420c7 100644
--- a/tests/html/audiobuffersourcenode_test.dart
+++ b/tests/html/audiobuffersourcenode_test.dart
@@ -18,6 +18,7 @@ main() {
if(AudioContext.supported) {
var ctx = new AudioContext();
AudioBufferSourceNode node = ctx.createBufferSource();
+ expect(node is AudioBufferSourceNode, isTrue);
node.start(ctx.currentTime, 0, 2);
node.stop(ctx.currentTime + 2);
expect(node is AudioBufferSourceNode, isTrue);
« no previous file with comments | « pkg/pkg.status ('k') | tests/html/html.status » ('j') | tools/dom/scripts/systemnative.py » ('J')

Powered by Google App Engine
This is Rietveld 408576698