tor-browser

The Tor Browser
git clone https://git.dasho.dev/tor-browser.git
Log | Files | Refs | README | LICENSE

performance-navigation-timing-not-bfcached.tentative.window.js (1289B)


      1 // META: title=RemoteContextHelper navigation using BFCache
      2 // META: script=./test-helper.js
      3 // META: script=/common/dispatcher/dispatcher.js
      4 // META: script=/common/get-host-info.sub.js
      5 // META: script=/common/utils.js
      6 // META: script=/html/browsers/browsing-the-web/back-forward-cache/resources/rc-helper.js
      7 // META: script=/html/browsers/browsing-the-web/remote-context-helper/resources/remote-context-helper.js
      8 // META: script=/websockets/constants.sub.js
      9 // META: timeout=long
     10 
     11 'use strict';
     12 
     13 // Ensure that notRestoredReasons is populated when not restored.
     14 promise_test(async t => {
     15  const rcHelper = new RemoteContextHelper();
     16  // Open a window with noopener so that BFCache will work.
     17  const rc1 = await rcHelper.addWindow(
     18      /*config=*/ null, /*options=*/ {features: 'noopener'});
     19  // Use WebSocket to block BFCache.
     20  await useWebSocket(rc1);
     21 
     22  const rc1_url = await rc1.executeScript(() => {
     23    return location.href;
     24  });
     25 
     26  // Check the BFCache result and the reported reasons.
     27  await assertBFCacheEligibility(rc1, /*shouldRestoreFromBFCache=*/ false);
     28  await assertNotRestoredReasonsEquals(
     29      rc1,
     30      /*url=*/ rc1_url,
     31      /*src=*/ null,
     32      /*id=*/ null,
     33      /*name=*/ null,
     34      /*reasons=*/[{'reason': 'websocket'}],
     35      /*children=*/ []);
     36 });