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

Side by Side Diff: samples/third_party/dromaeo/tests/dom-query-html.dart

Issue 23596007: Remove usage of dart:json. (Closed) Base URL: https://dart.googlecode.com/svn/branches/bleeding_edge/dart
Patch Set: Rebase. Created 7 years, 3 months 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
OLDNEW
1 library dromaeo; 1 library dromaeo;
2 import 'dart:async'; 2 import 'dart:async';
3 import 'dart:html'; 3 import 'dart:html';
4 import '../common/common.dart'; 4 import '../common/common.dart';
5 import 'dart:json' as json; 5 import "dart:convert";
6 import 'dart:math' as Math; 6 import 'dart:math' as Math;
7 part 'Common.dart'; 7 part 'Common.dart';
8 part 'RunnerSuite.dart'; 8 part 'RunnerSuite.dart';
9 9
10 void main() { 10 void main() {
11 final int num = 40; 11 final int num = 40;
12 12
13 // Try to force real results. 13 // Try to force real results.
14 var ret; 14 var ret;
15 15
(...skipping 81 matching lines...) Expand 10 before | Expand all | Expand 10 after
97 for (int i = 0; i < num * 20; i++) { 97 for (int i = 0; i < num * 20; i++) {
98 ret = document.getElementsByName('test').length == 0; 98 ret = document.getElementsByName('test').length == 0;
99 ret = document.getElementsByName('test').length == 0; 99 ret = document.getElementsByName('test').length == 0;
100 ret = document.getElementsByName('test').length == 0; 100 ret = document.getElementsByName('test').length == 0;
101 ret = document.getElementsByName('test').length == 0; 101 ret = document.getElementsByName('test').length == 0;
102 ret = document.getElementsByName('test').length == 0; 102 ret = document.getElementsByName('test').length == 0;
103 } 103 }
104 }) 104 })
105 .end(); 105 .end();
106 } 106 }
OLDNEW

Powered by Google App Engine
This is Rietveld 408576698