1 <html><head></head><body> 2 <script> 3 4 function handleStorageEvent(e) { 5 window.parent.storageEventList.push(e); 6 } 7 8 document.body.setAttribute("onstorage", "handleStorageEvent(window.event);"); 9 10 </script> 11 </body></html> 12