Sign in
chromium
/
external
/
github.com
/
WebKit
/
webkit
/
8a2c8a97dfd3af0fdb68d49fc58e1163aca8085a
/
.
/
LayoutTests
/
requestidlecallback
/
resources
/
page-cache-helper.html
blob: 4d2c78755d9d411b4f9cceb73e5f4df3e1248b6c [
file
]
<!DOCTYPE html>
<html>
<body>
<script>
window
.
onload
=
()
=>
{
requestIdleCallback
(()
=>
{
setTimeout
(()
=>
{
history
.
back
();
},
0
);
});
}
</script>
</body>
</html>