summaryrefslogtreecommitdiffstats
path: root/testing/web-platform/tests/fledge/tentative/fetch-ad-auction-headers.tentative.https.html
blob: 7b2a2c2ba4a2f037874a0647180a4eb7e06e772d (plain)
1
2
3
4
5
6
7
8
9
10
11
12
<!doctype html>
<body>
  <script src=/resources/testharness.js></script>
  <script src=/resources/testharnessreport.js></script>
  <script>
    promise_test(async t => {
      let response = await fetch('./resources/empty.html', {adAuctionHeaders: true});
      // TODO(crbug.com/1442274): Check the request header when the functions
      // are fully implemented.
    }, 'test fetch(<url>, {adAuctionHeaders: true})');
  </script>
</body>