chromium/android_webview/test/data/verify_bfcache.html

<script>
  var isPageShowPersisted = false;

  window.addEventListener('pageshow', (event) => {
    isPageShowPersisted = event.persisted;
    // awFullyLoadedFuture is created in AwBackForwardCacheTest.java
    awFullyLoadedFuture.done();
  });
</script>
<html>
  <head>
    <title>Hello, World!</title>
  </head>
  <body>
    Hello, World!
    This is the first page.
  </body>
</html>