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

Unified Diff: tests/html/mutationobserver_test.dart

Issue 41843003: Second round of deprecation removal. (Closed) Base URL: https://dart.googlecode.com/svn/branches/bleeding_edge/dart
Patch Set: Created 7 years, 2 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 f73f2a5bdea9293ac14074c02898b6f52cf5151c..0af69c50bb8f882a9c856eb3891ccccb3fea8204 100644
--- a/tests/html/mutationobserver_test.dart
+++ b/tests/html/mutationobserver_test.dart
@@ -99,15 +99,5 @@ main() {
div1.append(div2);
}, expectation);
});
-
- test('mutation event', () {
- // Bug 8076 that not all optional params are optional in Dartium.
- var event = new MutationEvent('something', prevValue: 'prev',
- newValue: 'new', attrName: 'attr');
- expect(event is MutationEvent, isTrue);
- expect(event.prevValue, 'prev');
- expect(event.newValue, 'new');
- expect(event.attrName, 'attr');
- });
});
}

Powered by Google App Engine
This is Rietveld 408576698