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

Side by Side 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 unified diff | Download patch | Annotate | Revision Log
OLDNEW
1 // Copyright (c) 2011, the Dart project authors. Please see the AUTHORS file 1 // Copyright (c) 2011, the Dart project authors. Please see the AUTHORS file
2 // for details. All rights reserved. Use of this source code is governed by a 2 // for details. All rights reserved. Use of this source code is governed by a
3 // BSD-style license that can be found in the LICENSE file. 3 // BSD-style license that can be found in the LICENSE file.
4 4
5 library mutationobserver_test; 5 library mutationobserver_test;
6 import '../../pkg/unittest/lib/unittest.dart'; 6 import '../../pkg/unittest/lib/unittest.dart';
7 import '../../pkg/unittest/lib/html_individual_config.dart'; 7 import '../../pkg/unittest/lib/html_individual_config.dart';
8 import 'dart:html'; 8 import 'dart:html';
9 9
10 /** 10 /**
(...skipping 111 matching lines...) Expand 10 before | Expand all | Expand 10 after
122 var div1 = new DivElement(); 122 var div1 = new DivElement();
123 var div2 = new DivElement(); 123 var div2 = new DivElement();
124 var mutationObserver = new MutationObserver( 124 var mutationObserver = new MutationObserver(
125 mutationCallback(2, orderedEquals([div1, div2]))); 125 mutationCallback(2, orderedEquals([div1, div2])));
126 mutationObserver.observe(container, childList: true, subtree: true); 126 mutationObserver.observe(container, childList: true, subtree: true);
127 127
128 container.nodes.add(div1); 128 container.nodes.add(div1);
129 div1.nodes.add(div2); 129 div1.nodes.add(div2);
130 }, expectation); 130 }, expectation);
131 }); 131 });
132
133 test('mutation event', () {
134 var event = new MutationEvent('something');
135 expect(event is MutationEvent, isTrue);
136 });
132 }); 137 });
133 } 138 }
OLDNEW

Powered by Google App Engine
This is Rietveld 408576698