| OLD | NEW |
| 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 Loading... |
| 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 } |
| OLD | NEW |