Source code
Revision control
Copy as Markdown
Other Tools
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="utf-8">
<script>
// Evict bfcache and then go back.
async function evictCache() {
await SpecialPowers.evictAllDocumentViewers();
history.back();
}
</script>
</head>
<body onload="setTimeout(evictCache, 0);">
</body>
</html>