https://github.com/web-platform-tests/wpt
Raw File
Tip revision: f941f71d5aae723c2204aa8c1024280b9ecab055 authored by Sam Goto on 18 December 2018, 20:56:38 UTC
Idle Detection API: Prototype
Tip revision: f941f71
event_setattribute_handler.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>
back to top