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

Side by Side Diff: chrome/test/data/session_restore/session_storage.html

Issue 11088005: Automate more Better Session Restore tests. (Closed) Base URL: svn://svn.chromium.org/chrome/trunk/src
Patch Set: export inner Created 8 years, 2 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 | Annotate | Revision Log
OLDNEW
1 <!DOCTYPE html> 1 <!DOCTYPE html>
2 <html> 2 <html>
3 <head> 3 <head>
4 <script src="common.js"></script> 4 <script src="common.js"></script>
5 <script> 5 <script>
6 function readData() { 6 function readData() {
7 return document.cookie; 7 return sessionStorage.getItem('key');
8 } 8 }
9 function writeData() { 9 function writeData() {
10 document.cookie = 'key=foo'; 10 sessionStorage.setItem('key', 'foo');
11 return true; 11 return true;
12 } 12 }
13 </script> 13 </script>
14 </head> 14 </head>
15 <body onload="setTimeout(onLoad, 0);"> 15 <body onload="setTimeout(onLoad, 0);">
16 </body> 16 </body>
17 </html> 17 </html>
OLDNEW
« no previous file with comments | « chrome/browser/sessions/better_session_restore_browsertest.cc ('k') | webkit/database/webkit_database.gypi » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698