Index: chrome/test/data/android/localstorage.html |
diff --git a/chrome/test/data/android/localstorage.html b/chrome/test/data/android/localstorage.html |
new file mode 100644 |
index 0000000000000000000000000000000000000000..5404300400baeeced054d129db139130c22748fa |
--- /dev/null |
+++ b/chrome/test/data/android/localstorage.html |
@@ -0,0 +1,17 @@ |
+<!DOCTYPE html> |
+<html> |
+ <script> |
+ if (window.location.hash.indexOf('clear') != -1) { |
+ localStorage.removeItem('Foo'); |
+ } |
+ |
+ function setStorage() { |
+ localStorage.setItem('Foo', 'Bar'); |
+ } |
+ |
+ function getStorage() { |
+ return localStorage.getItem('Foo'); |
+ } |
+ </script> |
+ <body>Test for setting and getting local storage.</body> |
+</html> |