mirror of
https://github.com/mozilla/gecko-dev.git
synced 2025-11-06 19:29:24 +02:00
15 lines
321 B
HTML
15 lines
321 B
HTML
<!DOCTYPE html>
|
|
<meta charset="utf-8">
|
|
|
|
<html>
|
|
<body>
|
|
<p>Page</p>
|
|
<script>
|
|
// Prevent this page from being stored in the bfcache for the
|
|
// browser_httpToFileHistory.js test
|
|
window.addEventListener('beforeunload', event => {
|
|
// do nothing
|
|
});
|
|
</script>
|
|
</body>
|
|
</html>
|