| Index: tests/html/mutationobserver_test.dart
|
| diff --git a/tests/html/mutationobserver_test.dart b/tests/html/mutationobserver_test.dart
|
| index e23a04cafaea70d1abd1a2dbe703fc7838e7d567..ef0d7d6391f37c4a81e108c0b470cee8f5ffbc1e 100644
|
| --- a/tests/html/mutationobserver_test.dart
|
| +++ b/tests/html/mutationobserver_test.dart
|
| @@ -129,5 +129,10 @@ main() {
|
| div1.nodes.add(div2);
|
| }, expectation);
|
| });
|
| +
|
| + test('mutation event', () {
|
| + var event = new MutationEvent('something');
|
| + expect(event is MutationEvent, isTrue);
|
| + });
|
| });
|
| }
|
|
|