https://github.com/web-platform-tests/wpt
Raw File
Tip revision: 259d0612af038d14f2cd889a14a3adb6c9e96d96 authored by Josh Matthews on 23 December 2018, 05:25:51 UTC
Claim to support testdriver in servodriver
Tip revision: 259d061
no-report-on-unexpired-cached-response.https.html
<!DOCTYPE HTML>
<html>
<head>
  <title>
    Test that NEL reports are not sent for cached responses that don't hit the
    network
  </title>
  <script src='/resources/testharness.js'></script>
  <script src='/resources/testharnessreport.js'></script>
  <script src='./support/nel.sub.js'></script>
</head>
<body>
  <script>
    nel_test(async t => {
      // Fetch a resource that can be cached without validation.  Do this
      // *before* fetching the NEL policy for this origin, to ensure that we
      // don't generate any report about this request.
      await fetchCachedResource();
      // Fetch the NEL policy for this origin.
      await fetchResourceWithBasicPolicy();
      // Fetch the now-cached resource again.  This should not generate a new
      // network request.
      await fetchCachedResource();
      // Because the cached request did not generate a network request, we
      // should never receive a report about the request.
      assert_false(await reportExists({
        url: getURLForCachedResource(),
        type: "network-error",
      }));
    });
  </script>
</body>
</html>
back to top