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

Unified Diff: pkg/third_party/html5lib/test/parser_feature_test.dart

Issue 268623002: [html5lib] implement querySelector/querySelectorAll (Closed) Base URL: https://dart.googlecode.com/svn/branches/bleeding_edge/dart
Patch Set: rename runes to chars Created 6 years, 8 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 side-by-side diff with in-line comments
Download patch
Index: pkg/third_party/html5lib/test/parser_feature_test.dart
diff --git a/pkg/third_party/html5lib/test/parser_feature_test.dart b/pkg/third_party/html5lib/test/parser_feature_test.dart
index 212ae053321991c7eac651b0d2d23831cae01dd8..b21480d19923cccd77c3cb02319cd378f959a3ea 100644
--- a/pkg/third_party/html5lib/test/parser_feature_test.dart
+++ b/pkg/third_party/html5lib/test/parser_feature_test.dart
@@ -11,7 +11,7 @@ main() {
test('doctype is cloneable', () {
var doc = parse('<!doctype HTML>');
DocumentType doctype = doc.nodes[0];
- expect(doctype.clone().toString(), '<!DOCTYPE html>');
+ expect(doctype.clone(false).toString(), '<!DOCTYPE html>');
});
test('line counter', () {

Powered by Google App Engine
This is Rietveld 408576698