Thu, 22 Jan 2015 13:21:57 +0100
Incorporate requested changes from Mozilla in review:
https://bugzilla.mozilla.org/show_bug.cgi?id=1123480#c6
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);
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>