https://github.com/web-platform-tests/wpt
Raw File
Tip revision: b38da6a2c0abafdeee5e9f534953272cd791f15d authored by Mike Taylor on 30 March 2018, 21:08:48 UTC
Add tests for Event.srcElement
Tip revision: b38da6a
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