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

Unified Diff: test/parser_feature_test.dart

Issue 11260039: Advance html5lib to newest breaking changes in core: getKeys -> keys, etc (Closed) Base URL: git@github.com:dart-lang/html5lib.git@master
Patch Set: Created 8 years, 2 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
« no previous file with comments | « pubspec.yaml ('k') | test/parser_test.dart » ('j') | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: test/parser_feature_test.dart
diff --git a/test/parser_feature_test.dart b/test/parser_feature_test.dart
index 43327576c65997b406255c4fe95bbf631bcec825..d97a8a9b751427aed5a00a42bd5383768f430305 100644
--- a/test/parser_feature_test.dart
+++ b/test/parser_feature_test.dart
@@ -165,7 +165,7 @@ ParseError:4:3: Unexpected DOCTYPE. Ignored.
xlink:show="new"></desc>
''');
var n = doc.query('desc');
- var keys = n.attributes.getKeys();
+ var keys = n.attributes.keys;
expect(keys[0] is AttributeName);
expect(keys[0].prefix, equals('xlink'));
expect(keys[0].namespace, equals('http://www.w3.org/1999/xlink'));
« no previous file with comments | « pubspec.yaml ('k') | test/parser_test.dart » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698