Source code
Revision control
Copy as Markdown
Other Tools
Test Info:
- This WPT test may be referenced by the following Test IDs:
- /fledge/tentative/fetch-ad-auction-headers.tentative.https.html - WPT Dashboard Interop Dashboard
<!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>