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