Files
Kmake/test/fixtures/wpt/webstorage/resources/event_setattribute_handler.html

16 lines
232 B
HTML
Raw Permalink Normal View History

2026-05-26 23:36:42 -07:00
<!DOCTYPE HTML>
<html>
<head></head>
<body>
<script>
function handleStorageEvent(e) {
window.parent.storageEventList.push(e);
}
document.body.setAttribute("onstorage", "handleStorageEvent(event);");
</script>
</body>
</html>