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

Unified Diff: client/tests/client/html/LocalStorageTests.dart

Issue 9363033: Move these dart:html tests from Dartium layout test to client tests. (Closed) Base URL: https://dart.googlecode.com/svn/branches/bleeding_edge/dart
Patch Set: Created 8 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 side-by-side diff with in-line comments
Download patch
« no previous file with comments | « no previous file | client/tests/client/html/XHRTests.dart » ('j') | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: client/tests/client/html/LocalStorageTests.dart
diff --git a/client/tests/client/html/LocalStorageTests.dart b/client/tests/client/html/LocalStorageTests.dart
new file mode 100644
index 0000000000000000000000000000000000000000..0ef45ea88e05b7efcc72663bb2814551e68c8d44
--- /dev/null
+++ b/client/tests/client/html/LocalStorageTests.dart
@@ -0,0 +1,19 @@
+// Copyright (c) 2012, the Dart project authors. Please see the AUTHORS file
+// for details. All rights reserved. Use of this source code is governed by a
+// BSD-style license that can be found in the LICENSE file.
+
+
+void testLocalStorage() {
+ forLayoutTests();
+ test('GetItem', () {
+ final value = window.localStorage.getItem('does not exist');
+ Expect.isNull(value);
+ });
+ test('SetItem', () {
+ final key = 'foo';
+ final value = 'bar';
+ window.localStorage.setItem(key, value);
+ final stored = window.localStorage.getItem(key);
+ Expect.equals(value, stored);
+ });
+}
« no previous file with comments | « no previous file | client/tests/client/html/XHRTests.dart » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698