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