node/test/fixtures/wpt/webstorage/resources/event_setattribute_handler....

16 lines
232 B
HTML

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