Source code
Revision control
Copy as Markdown
Other Tools
// Try to disable BFCache by using the Keyboard Lock API.
// Note: This is a workaround, and we might want to introduce a test-only
// BFCache-disabling API instead in the future.
window.disableBFCache = () => {
return new Promise(resolve => {
navigator.keyboard.lock();
resolve();
});
};