mirror of
https://github.com/mozilla/gecko-dev.git
synced 2025-11-09 21:00:42 +02:00
Differential Revision: https://phabricator.services.mozilla.com/D23037 --HG-- extra : moz-landing-system : lando
18 lines
285 B
HTML
18 lines
285 B
HTML
<html>
|
|
<head>
|
|
<style>
|
|
body[fired] {
|
|
background-color: #0f0;
|
|
}
|
|
</style>
|
|
<script>
|
|
window.onbeforeunload = function() {
|
|
document.body.setAttribute("fired", true);
|
|
return "Frame document prompt";
|
|
};
|
|
</script>
|
|
</head>
|
|
</body>
|
|
FRAME
|
|
</body>
|
|
</html>
|