Do not announce robot account token before account ID is available
[chromium-blink-merge.git] / chrome / test / data / session_restore / session_storage.html
bloba6743f868eb7e8088844ce753aaa8d357f3ea4ea
1 <!DOCTYPE html>
2 <html>
3 <head>
4 <script src="common.js"></script>
5 <script>
6 function readData() {
7 return sessionStorage.getItem('key');
9 function writeData() {
10 sessionStorage.setItem('key', 'foo');
11 return true;
13 </script>
14 </head>
15 <body onload="setTimeout(onLoad, 0);">
16 </body>
17 </html>