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

Side by Side Diff: pkg/mutation_observer/test/mutation_observer_test.dart

Issue 22284003: pkg: analysis aided cleanup (Closed) Base URL: http://dart.googlecode.com/svn/branches/bleeding_edge/dart
Patch Set: nits Created 7 years, 4 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) 2013, the Dart project authors. Please see the AUTHORS file 1 // Copyright (c) 2013, 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 mutation_observer_test; 5 library mutation_observer_test;
6 6
7 import 'dart:html'; 7 import 'dart:html';
8 import 'package:unittest/unittest.dart'; 8 import 'package:unittest/unittest.dart';
9 import 'package:unittest/html_config.dart'; 9 import 'package:unittest/html_config.dart';
10 10
(...skipping 44 matching lines...) Expand 10 before | Expand all | Expand 10 after
55 } 55 }
56 } 56 }
57 57
58 return expectAsyncUntil2(callback, () => done); 58 return expectAsyncUntil2(callback, () => done);
59 } 59 }
60 60
61 test('empty options is syntax error', () { 61 test('empty options is syntax error', () {
62 var mutationObserver = new MutationObserver( 62 var mutationObserver = new MutationObserver(
63 (mutations, observer) { expect(false, isTrue, 63 (mutations, observer) { expect(false, isTrue,
64 reason: 'Should not be reached'); }); 64 reason: 'Should not be reached'); });
65 expect(() { mutationObserver.observe(document, {}); }, 65 expect(() { mutationObserver.observe(document); },
66 throws); 66 throws);
67 }); 67 });
68 68
69 test('direct-parallel options-named', () { 69 test('direct-parallel options-named', () {
70 var container = new DivElement(); 70 var container = new DivElement();
71 var div1 = new DivElement(); 71 var div1 = new DivElement();
72 var div2 = new DivElement(); 72 var div2 = new DivElement();
73 var mutationObserver = new MutationObserver( 73 var mutationObserver = new MutationObserver(
74 mutationCallback(2, orderedEquals([div1, div2]))); 74 mutationCallback(2, orderedEquals([div1, div2])));
75 mutationObserver.observe(container, childList: true); 75 mutationObserver.observe(container, childList: true);
(...skipping 29 matching lines...) Expand all
105 test('mutation event', () { 105 test('mutation event', () {
106 var event = new MutationEvent('something', prevValue: 'prev', 106 var event = new MutationEvent('something', prevValue: 'prev',
107 newValue: 'new', attrName: 'attr'); 107 newValue: 'new', attrName: 'attr');
108 expect(event is MutationEvent, isTrue); 108 expect(event is MutationEvent, isTrue);
109 expect(event.prevValue, 'prev'); 109 expect(event.prevValue, 'prev');
110 expect(event.newValue, 'new'); 110 expect(event.newValue, 'new');
111 expect(event.attrName, 'attr'); 111 expect(event.attrName, 'attr');
112 }); 112 });
113 }); 113 });
114 } 114 }
OLDNEW
« no previous file with comments | « pkg/mime/test/mime_multipart_transformer_test.dart ('k') | pkg/oauth2/lib/src/authorization_exception.dart » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698