| OLD | NEW |
| 1 // Copyright (c) 2012, the Dart project authors. Please see the AUTHORS file | 1 // Copyright (c) 2012, 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('NodeListTest'); | 5 #library('NodeListTest'); |
| 6 #import('../../pkg/unittest/unittest.dart'); | 6 #import('../../pkg/unittest/unittest.dart'); |
| 7 #import('../../pkg/unittest/html_config.dart'); | 7 #import('../../pkg/unittest/html_config.dart'); |
| 8 #import('dart:html'); | 8 #import('dart:html'); |
| 9 | 9 |
| 10 main() { | 10 main() { |
| (...skipping 58 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 69 expect(list[0] is DivElement, isTrue); | 69 expect(list[0] is DivElement, isTrue); |
| 70 expect(list[1] is CanvasElement, isTrue); | 70 expect(list[1] is CanvasElement, isTrue); |
| 71 expect(list[2] is DivElement, isTrue); | 71 expect(list[2] is DivElement, isTrue); |
| 72 expect(list[3] is DivElement, isTrue); | 72 expect(list[3] is DivElement, isTrue); |
| 73 expect(list[4] is CanvasElement, isTrue); | 73 expect(list[4] is CanvasElement, isTrue); |
| 74 }); | 74 }); |
| 75 | 75 |
| 76 test('immutable', () { | 76 test('immutable', () { |
| 77 List<Element> list = div.queryAll('*'); | 77 List<Element> list = div.queryAll('*'); |
| 78 int len = list.length; | 78 int len = list.length; |
| 79 expect(() { list.add(new DivElement()); }, throwsException); | 79 expect(() { list.add(new DivElement()); }, throwsUnsupportedError); |
| 80 expect(list.length, equals(len)); | 80 expect(list.length, equals(len)); |
| 81 }); | 81 }); |
| 82 } | 82 } |
| OLD | NEW |