fune/toolkit/components/remotebrowserutils/tests/browser/dummy_page.html
Sean Feng f61ec1c3d7 Bug 1741671 - Enable BFCache for pages with beforeunload event listeners on Desktop r=smaug
The changes only made it works in SHIP(session-history-in-parent) only.

Differential Revision: https://phabricator.services.mozilla.com/D131715
2022-03-03 19:13:47 +00:00

13 lines
279 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.blockBFCache = new RTCPeerConnection();
</script>
</body>
</html>