| 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 81 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 92 var div1 = new DivElement(); | 92 var div1 = new DivElement(); |
| 93 var div2 = new DivElement(); | 93 var div2 = new DivElement(); |
| 94 var mutationObserver = new MutationObserver( | 94 var mutationObserver = new MutationObserver( |
| 95 mutationCallback(2, orderedEquals([div1, div2]))); | 95 mutationCallback(2, orderedEquals([div1, div2]))); |
| 96 mutationObserver.observe(container, childList: true, subtree: true); | 96 mutationObserver.observe(container, childList: true, subtree: true); |
| 97 | 97 |
| 98 container.append(div1); | 98 container.append(div1); |
| 99 div1.append(div2); | 99 div1.append(div2); |
| 100 }, expectation); | 100 }, expectation); |
| 101 }); | 101 }); |
| 102 | |
| 103 test('mutation event', () { | |
| 104 // Bug 8076 that not all optional params are optional in Dartium. | |
| 105 var event = new MutationEvent('something', prevValue: 'prev', | |
| 106 newValue: 'new', attrName: 'attr'); | |
| 107 expect(event is MutationEvent, isTrue); | |
| 108 expect(event.prevValue, 'prev'); | |
| 109 expect(event.newValue, 'new'); | |
| 110 expect(event.attrName, 'attr'); | |
| 111 }); | |
| 112 }); | 102 }); |
| 113 } | 103 } |
| OLD | NEW |