chromium/third_party/blink/web_tests/storage/domstorage/events/resources/setattribute-event-handler.html

<html><head></head><body>
<script>

function handleStorageEvent(e) {
    window.parent.storageEventList.push(e);
}

document.body.setAttribute("onstorage", "handleStorageEvent(window.event);");

</script>
</body></html>