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

Unified Diff: sdk/lib/indexed_db/dart2js/indexed_db_dart2js.dart

Issue 23455033: Fully polyfill KeyEvent so that you can programmatically create your own "keyboard" events. (Closed) Base URL: https://dart.googlecode.com/svn/branches/bleeding_edge/dart
Patch Set: Created 7 years, 3 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: sdk/lib/indexed_db/dart2js/indexed_db_dart2js.dart
diff --git a/sdk/lib/indexed_db/dart2js/indexed_db_dart2js.dart b/sdk/lib/indexed_db/dart2js/indexed_db_dart2js.dart
index a03491abf047f034326944faae7c942836946075..b360f38aef361ce9ffa7a8adc214bc8842c82a67 100644
--- a/sdk/lib/indexed_db/dart2js/indexed_db_dart2js.dart
+++ b/sdk/lib/indexed_db/dart2js/indexed_db_dart2js.dart
@@ -58,13 +58,11 @@
* Other options for client-side data storage include:
*
* * [Window.localStorage]—a
- * basic mechanism in which data is stored as a [Map].
+ * basic mechanism that stores data as a [Map],
+ * and where both the keys and the values are strings.
*
* * [dart:web_sql]—a database that can be queried with SQL.
*
- * * The [Lawndart](http://pub.dartlang.org/packages/lawndart) package,
- * which helps you deal with the wide array of client-side storage options.
- *
* For a tutorial about using the indexed_db library with Dart,
* check out
* [Use IndexedDB](http://www.dartlang.org/docs/tutorials/indexeddb/).

Powered by Google App Engine
This is Rietveld 408576698