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

Side by Side Diff: tests/html/queryall_test.dart

Issue 11260017: Fix dartium html test. (Closed) Base URL: https://dart.googlecode.com/svn/branches/bleeding_edge/dart
Patch Set: Created 8 years, 1 month 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
« no previous file with comments | « no previous file | no next file » | no next file with comments »
Toggle Intra-line Diffs ('i') | Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
OLDNEW
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
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 }
OLDNEW
« no previous file with comments | « no previous file | no next file » | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698