blob: 907113cd1d66df83a596464145f43550841a59af (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
|
<!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>
|