summaryrefslogtreecommitdiffstats
path: root/testing/web-platform/tests/webstorage/resources/event_setattribute_handler.html
blob: b9e2f040216708d271006c25e86a599df79fb580 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
<!DOCTYPE HTML>
<html>
<head></head>
<body>
<script>

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

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

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