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

Unified Diff: tests/html/htmlelement_test.dart

Issue 11267018: Make getKeys, getValues getters (keys, values). (Closed) Base URL: https://dart.googlecode.com/svn/branches/bleeding_edge/dart
Patch Set: Update status files with co19 issue number. 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 | « tests/corelib/maps_test.dart ('k') | tests/html/js_interop_3_test.dart » ('j') | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: tests/html/htmlelement_test.dart
diff --git a/tests/html/htmlelement_test.dart b/tests/html/htmlelement_test.dart
index 3dddf507d3d14892b18173d820298878000ad1fb..ba8307107593d05b0c9c35a3cecd75bab83315cb 100644
--- a/tests/html/htmlelement_test.dart
+++ b/tests/html/htmlelement_test.dart
@@ -69,9 +69,9 @@ main() {
Expect.setEquals(const <String> ['foo-value', 'bar-value'], values);
Expect.setEquals(const <String> ['foo', 'bar'],
- new List<String>.from(div.dataAttributes.getKeys()));
+ new List<String>.from(div.dataAttributes.keys));
Expect.setEquals(const <String> ['foo-value', 'bar-value'],
- new List<String>.from(div.dataAttributes.getValues()));
+ new List<String>.from(div.dataAttributes.values));
Expect.equals(2, div.dataAttributes.length);
Expect.isFalse(div.dataAttributes.isEmpty);
« no previous file with comments | « tests/corelib/maps_test.dart ('k') | tests/html/js_interop_3_test.dart » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698