Files
Kmake/test/fixtures/wpt/webstorage/resources/event_body_handler.html
2026-05-26 23:36:42 -07:00

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>