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

Side by Side Diff: content/test/data/dom_storage/verify_data.html

Issue 2649963002: Enable mojo localstorage to actually store on disk. (Closed)
Patch Set: Remove Sync() method, and instead make sure browser test waits long enough. Created 3 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 unified diff | Download patch
OLDNEW
(Empty)
1 <!DOCTYPE html>
2 <meta charset=utf-8>
3 <script src="common.js"></script>
4 <script>
5 function test() {
6 let val = window.localStorage['foo'];
7 if (val !== 'bar')
8 fail('Read incorrect value from localStorage. Excpected "bar", got "' + val + '"');
9 else
10 done();
11 }
12 </script>
13 <body onload="setTimeout(test, 0)">
14 <div id="status">Starting...<br/></div>
OLDNEW
« no previous file with comments | « content/test/data/dom_storage/store_data.html ('k') | mojo/public/cpp/bindings/sync_call_restrictions.h » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698