Page MenuHomePhabricator
Paste P7081

The dumbest HTML file in the world
ActivePublic

Authored by Gilles on May 3 2018, 8:54 PM.
Tags
None
Referenced Files
F17622200: The dumbest HTML file in the world
May 3 2018, 8:54 PM
Subscribers
None
<html>
<head>
<script>
document.addEventListener("DOMContentLoaded", function () {
console.info('DOMContentLoaded');
});
document.addEventListener( 'load', function () {
console.info('load');
});
window.onload = function() {
console.info('window onload');
};
console.info('start');
</script>
</head>
<body>
Foo
</body>