summaryrefslogtreecommitdiffstats
path: root/LayoutTests/storage/domstorage/events/resources/setattribute-event-handler.html
blob: a764c5351b0d44128032c23791227f3162507100 (plain)
1
2
3
4
5
6
7
8
9
10
11
<html><head></head><body>
<script>

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

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

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