node/test/fixtures/wpt/webstorage/resources/event_body_handler.html

15 lines
200 B
HTML

<!DOCTYPE HTML>
<html>
<head>
<script>
function handleStorageEvent(e) {
window.parent.storageEventList.push(e);
}
</script>
</head>
<body onstorage="handleStorageEvent(event);">
</body>
</html>