event_body_handler.html (200B)
1 <!DOCTYPE HTML> 2 <html> 3 <head> 4 <script> 5 6 function handleStorageEvent(e) { 7 window.parent.storageEventList.push(e); 8 } 9 10 </script> 11 </head> 12 <body onstorage="handleStorageEvent(event);"> 13 </body> 14 </html>