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

Side by Side Diff: chrome/test/data/android/localstorage.html

Issue 1465363002: [Storage] Android - ManageSpace UI, Important Origins, and CBD Dialog (Closed) Base URL: https://chromium.googlesource.com/chromium/src.git@master
Patch Set: whoops, forgot files Created 4 years, 7 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 unified diff | Download patch
OLDNEW
(Empty)
1 <!DOCTYPE html>
2 <html>
3 <script>
4 if (window.location.hash.indexOf('clear') != -1) {
5 localStorage.removeItem('Foo');
6 }
7
8 function setStorage() {
9 localStorage.setItem('Foo', 'Bar');
10 }
11
12 function getStorage() {
13 return localStorage.getItem('Foo');
14 }
15 </script>
16 <body>Test for setting and getting local storage.</body>
17 </html>
OLDNEW

Powered by Google App Engine
This is Rietveld 408576698