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

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

Issue 178843003: [html5lib] triple slash comment style (Closed) Base URL: https://dart.googlecode.com/svn/branches/bleeding_edge/dart
Patch Set: remove extra check 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 /** Additional feature tests that aren't based on test data. */ 1 /// Additional feature tests that aren't based on test data.
2 library parser_feature_test; 2 library parser_feature_test;
3 3
4 import 'package:unittest/unittest.dart'; 4 import 'package:unittest/unittest.dart';
5 import 'package:html5lib/dom.dart'; 5 import 'package:html5lib/dom.dart';
6 import 'package:html5lib/parser.dart'; 6 import 'package:html5lib/parser.dart';
7 import 'package:html5lib/src/constants.dart'; 7 import 'package:html5lib/src/constants.dart';
8 import 'package:html5lib/src/treebuilder.dart'; 8 import 'package:html5lib/src/treebuilder.dart';
9 9
10 main() { 10 main() {
11 test('doctype is cloneable', () { 11 test('doctype is cloneable', () {
(...skipping 269 matching lines...) Expand 10 before | Expand all | Expand 10 after
281 expect((c as Comment).data, 'foo'); 281 expect((c as Comment).data, 'foo');
282 expect(c.text, 'foo'); 282 expect(c.text, 'foo');
283 expect(e.text, 'bar'); 283 expect(e.text, 'bar');
284 284
285 c.text = 'qux'; 285 c.text = 'qux';
286 expect(c.data, 'qux'); 286 expect(c.data, 'qux');
287 expect(c.text, 'qux'); 287 expect(c.text, 'qux');
288 expect(e.text, 'bar'); 288 expect(e.text, 'bar');
289 }); 289 });
290 } 290 }
OLDNEW

Powered by Google App Engine
This is Rietveld 408576698