mirror of
https://github.com/mozilla/gecko-dev.git
synced 2025-11-10 21:28:04 +02:00
MozReview-Commit-ID: 2XVoU05YvES --HG-- extra : rebase_source : e7ed2d094c21b59dd59476b8930b75da2e6d6980
10 lines
172 B
HTML
10 lines
172 B
HTML
<html>
|
|
<script>
|
|
window.onbeforeunload = function(event) {
|
|
event.returnValue = 'Test beforeunload handler';
|
|
}
|
|
</script>
|
|
<body>
|
|
Test page
|
|
</body>
|
|
</html>
|