|
1 <html> |
|
2 <body> |
|
3 la la la la |
|
4 <script> |
|
5 var gotStorageEvent = false; |
|
6 window.addEventListener('storage', function(ev) { |
|
7 gotStorageEvent = true; |
|
8 }, false); |
|
9 |
|
10 window.addEventListener('message', function(ev) { |
|
11 if (['data:true', 'data:false', 'reply'].indexOf(ev.data) != -1) |
|
12 return; |
|
13 if (ev.data == 'query?') { |
|
14 postMessage('data:' + gotStorageEvent, 'http://mochi.test:8888'); |
|
15 return; |
|
16 } |
|
17 localStorage['key'] = 'ablooabloo'; |
|
18 postMessage('reply', 'http://mochi.test:8888'); |
|
19 }, false); |
|
20 </script> |
|
21 </body> |
|
22 </html> |