gecko-dev/toolkit/components/startup/tests/browser/beforeunload.html
Jared Wein 169d66a3ed Bug 1292035 - Enable the space-before-blocks rule for eslint. This patch was generated using 'eslint --fix'. r=markh
MozReview-Commit-ID: 2XVoU05YvES

--HG--
extra : rebase_source : e7ed2d094c21b59dd59476b8930b75da2e6d6980
2016-08-04 03:20:25 -04:00

10 lines
172 B
HTML

<html>
<script>
window.onbeforeunload = function(event) {
event.returnValue = 'Test beforeunload handler';
}
</script>
<body>
Test page
</body>
</html>