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

Unified Diff: tests/html/mutationobserver_test.dart

Issue 12025027: Cleaning up event constructors (Closed) Base URL: https://dart.googlecode.com/svn/branches/bleeding_edge/dart
Patch Set: Created 7 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/mutationobserver_test.dart
diff --git a/tests/html/mutationobserver_test.dart b/tests/html/mutationobserver_test.dart
index e23a04cafaea70d1abd1a2dbe703fc7838e7d567..ef0d7d6391f37c4a81e108c0b470cee8f5ffbc1e 100644
--- a/tests/html/mutationobserver_test.dart
+++ b/tests/html/mutationobserver_test.dart
@@ -129,5 +129,10 @@ main() {
div1.nodes.add(div2);
}, expectation);
});
+
+ test('mutation event', () {
+ var event = new MutationEvent('something');
+ expect(event is MutationEvent, isTrue);
+ });
});
}

Powered by Google App Engine
This is Rietveld 408576698