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

Side by Side Diff: pkg/third_party/html5lib/test/support.dart

Issue 157983005: pkg/third_party/html5lib: lots of cleanup (Closed) Base URL: https://dart.googlecode.com/svn/branches/bleeding_edge/dart
Patch Set: const Created 6 years, 10 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 /** Support code for the tests in this directory. */ 1 /** Support code for the tests in this directory. */
2 library support; 2 library support;
3 3
4 import 'dart:async';
5 import 'dart:io'; 4 import 'dart:io';
6 import 'dart:collection'; 5 import 'dart:collection';
7 import 'package:path/path.dart' as path; 6 import 'package:path/path.dart' as path;
8 import 'package:html5lib/src/treebuilder.dart'; 7 import 'package:html5lib/src/treebuilder.dart';
9 import 'package:html5lib/dom.dart'; 8 import 'package:html5lib/dom.dart';
10 import 'package:html5lib/dom_parsing.dart'; 9 import 'package:html5lib/dom_parsing.dart';
11 10
12 typedef TreeBuilder TreeBuilderFactory(bool namespaceHTMLElements); 11 typedef TreeBuilder TreeBuilderFactory(bool namespaceHTMLElements);
13 12
14 Map _treeTypes; 13 Map _treeTypes;
(...skipping 144 matching lines...) Expand 10 before | Expand all | Expand 10 after
159 key = "${attr.prefix} ${attr.name}"; 158 key = "${attr.prefix} ${attr.name}";
160 } 159 }
161 _newline(); 160 _newline();
162 _str.write('$key="$v"'); 161 _str.write('$key="$v"');
163 } 162 }
164 indent -= 2; 163 indent -= 2;
165 } 164 }
166 visitChildren(node); 165 visitChildren(node);
167 } 166 }
168 } 167 }
OLDNEW
« no previous file with comments | « pkg/third_party/html5lib/test/run_all.dart ('k') | pkg/third_party/html5lib/test/tokenizer_test.dart » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698