chromium/third_party/blink/web_tests/external/wpt/fetch/metadata/generated/element-area.sub.html

<!DOCTYPE html>
<!--
This test was procedurally generated. Please do not modify it directly.
Sources:
- fetch/metadata/tools/fetch-metadata.conf.yml
- fetch/metadata/tools/templates/element-area.sub.html
-->
<html lang="en">
  <meta charset="utf-8">
  <meta name="timeout" content="long">
  <title>HTTP headers on request for HTML "area" element navigation</title>
  <script src="/resources/testharness.js"></script>
  <script src="/resources/testharnessreport.js"></script>
  <script src="/fetch/metadata/resources/helper.sub.js"></script>
  <body>
  <script>
  'use strict';

  function induceRequest(url, {test, userActivated, attributes}) {
    const win = window.open();
    const area = win.document.createElement('area');
    area.setAttribute('href', url);

    for (const [ name, value ] of Object.entries(attributes)) {
      area.setAttribute(name, value);
    }

    win.document.body.appendChild(area);

    test.add_cleanup(() => win.close());

    if (userActivated) {
      test_driver.bless('enable user activation', () => area.click());
    } else {
      area.click();
    }
  }

  promise_test((t) => {
    const key = '{{uuid()}}';

    induceRequest(
      makeRequestURL(key, ['httpOrigin'], {mime: 'text/html'}),
      {
        test: t,
        userActivated: false,
        attributes: {}
      }
    );

    // `induceRequest` does not necessarily trigger a navigation, so the Python
    // handler must be polled until it has received the initial request.
    return retrieve(key, {poll: true})
      .then((headers) => {
          assert_not_own_property(headers, 'sec-fetch-site');
        });
  }, 'sec-fetch-site - Not sent to non-trustworthy same-origin destination - no attributes');

  promise_test((t) => {
    const key = '{{uuid()}}';

    induceRequest(
      makeRequestURL(key, ['httpSameSite'], {mime: 'text/html'}),
      {
        test: t,
        userActivated: false,
        attributes: {}
      }
    );

    // `induceRequest` does not necessarily trigger a navigation, so the Python
    // handler must be polled until it has received the initial request.
    return retrieve(key, {poll: true})
      .then((headers) => {
          assert_not_own_property(headers, 'sec-fetch-site');
        });
  }, 'sec-fetch-site - Not sent to non-trustworthy same-site destination - no attributes');

  promise_test((t) => {
    const key = '{{uuid()}}';

    induceRequest(
      makeRequestURL(key, ['httpCrossSite'], {mime: 'text/html'}),
      {
        test: t,
        userActivated: false,
        attributes: {}
      }
    );

    // `induceRequest` does not necessarily trigger a navigation, so the Python
    // handler must be polled until it has received the initial request.
    return retrieve(key, {poll: true})
      .then((headers) => {
          assert_not_own_property(headers, 'sec-fetch-site');
        });
  }, 'sec-fetch-site - Not sent to non-trustworthy cross-site destination - no attributes');

  promise_test((t) => {
    const key = '{{uuid()}}';

    induceRequest(
      makeRequestURL(key, ['httpOrigin'], {mime: 'text/html'}),
      {
        test: t,
        userActivated: false,
        attributes: {}
      }
    );

    // `induceRequest` does not necessarily trigger a navigation, so the Python
    // handler must be polled until it has received the initial request.
    return retrieve(key, {poll: true})
      .then((headers) => {
          assert_not_own_property(headers, 'sec-fetch-mode');
        });
  }, 'sec-fetch-mode - Not sent to non-trustworthy same-origin destination - no attributes');

  promise_test((t) => {
    const key = '{{uuid()}}';

    induceRequest(
      makeRequestURL(key, ['httpSameSite'], {mime: 'text/html'}),
      {
        test: t,
        userActivated: false,
        attributes: {}
      }
    );

    // `induceRequest` does not necessarily trigger a navigation, so the Python
    // handler must be polled until it has received the initial request.
    return retrieve(key, {poll: true})
      .then((headers) => {
          assert_not_own_property(headers, 'sec-fetch-mode');
        });
  }, 'sec-fetch-mode - Not sent to non-trustworthy same-site destination - no attributes');

  promise_test((t) => {
    const key = '{{uuid()}}';

    induceRequest(
      makeRequestURL(key, ['httpCrossSite'], {mime: 'text/html'}),
      {
        test: t,
        userActivated: false,
        attributes: {}
      }
    );

    // `induceRequest` does not necessarily trigger a navigation, so the Python
    // handler must be polled until it has received the initial request.
    return retrieve(key, {poll: true})
      .then((headers) => {
          assert_not_own_property(headers, 'sec-fetch-mode');
        });
  }, 'sec-fetch-mode - Not sent to non-trustworthy cross-site destination - no attributes');

  promise_test((t) => {
    const key = '{{uuid()}}';

    induceRequest(
      makeRequestURL(key, ['httpOrigin'], {mime: 'text/html'}),
      {
        test: t,
        userActivated: false,
        attributes: {}
      }
    );

    // `induceRequest` does not necessarily trigger a navigation, so the Python
    // handler must be polled until it has received the initial request.
    return retrieve(key, {poll: true})
      .then((headers) => {
          assert_not_own_property(headers, 'sec-fetch-dest');
        });
  }, 'sec-fetch-dest - Not sent to non-trustworthy same-origin destination - no attributes');

  promise_test((t) => {
    const key = '{{uuid()}}';

    induceRequest(
      makeRequestURL(key, ['httpSameSite'], {mime: 'text/html'}),
      {
        test: t,
        userActivated: false,
        attributes: {}
      }
    );

    // `induceRequest` does not necessarily trigger a navigation, so the Python
    // handler must be polled until it has received the initial request.
    return retrieve(key, {poll: true})
      .then((headers) => {
          assert_not_own_property(headers, 'sec-fetch-dest');
        });
  }, 'sec-fetch-dest - Not sent to non-trustworthy same-site destination - no attributes');

  promise_test((t) => {
    const key = '{{uuid()}}';

    induceRequest(
      makeRequestURL(key, ['httpCrossSite'], {mime: 'text/html'}),
      {
        test: t,
        userActivated: false,
        attributes: {}
      }
    );

    // `induceRequest` does not necessarily trigger a navigation, so the Python
    // handler must be polled until it has received the initial request.
    return retrieve(key, {poll: true})
      .then((headers) => {
          assert_not_own_property(headers, 'sec-fetch-dest');
        });
  }, 'sec-fetch-dest - Not sent to non-trustworthy cross-site destination - no attributes');

  promise_test((t) => {
    const key = '{{uuid()}}';

    induceRequest(
      makeRequestURL(key, ['httpOrigin'], {mime: 'text/html'}),
      {
        test: t,
        userActivated: false,
        attributes: {}
      }
    );

    // `induceRequest` does not necessarily trigger a navigation, so the Python
    // handler must be polled until it has received the initial request.
    return retrieve(key, {poll: true})
      .then((headers) => {
          assert_not_own_property(headers, 'sec-fetch-user');
        });
  }, 'sec-fetch-user - Not sent to non-trustworthy same-origin destination - no attributes');

  promise_test((t) => {
    const key = '{{uuid()}}';

    induceRequest(
      makeRequestURL(key, ['httpSameSite'], {mime: 'text/html'}),
      {
        test: t,
        userActivated: false,
        attributes: {}
      }
    );

    // `induceRequest` does not necessarily trigger a navigation, so the Python
    // handler must be polled until it has received the initial request.
    return retrieve(key, {poll: true})
      .then((headers) => {
          assert_not_own_property(headers, 'sec-fetch-user');
        });
  }, 'sec-fetch-user - Not sent to non-trustworthy same-site destination - no attributes');

  promise_test((t) => {
    const key = '{{uuid()}}';

    induceRequest(
      makeRequestURL(key, ['httpCrossSite'], {mime: 'text/html'}),
      {
        test: t,
        userActivated: false,
        attributes: {}
      }
    );

    // `induceRequest` does not necessarily trigger a navigation, so the Python
    // handler must be polled until it has received the initial request.
    return retrieve(key, {poll: true})
      .then((headers) => {
          assert_not_own_property(headers, 'sec-fetch-user');
        });
  }, 'sec-fetch-user - Not sent to non-trustworthy cross-site destination - no attributes');

  promise_test((t) => {
    const key = '{{uuid()}}';

    induceRequest(
      makeRequestURL(key, ['httpsOrigin', 'httpOrigin'], {mime: 'text/html'}),
      {
        test: t,
        userActivated: false,
        attributes: {}
      }
    );

    // `induceRequest` does not necessarily trigger a navigation, so the Python
    // handler must be polled until it has received the initial request.
    return retrieve(key, {poll: true})
      .then((headers) => {
          assert_not_own_property(headers, 'sec-fetch-site');
        });
  }, 'sec-fetch-site - HTTPS downgrade (header not sent) - no attributes');

  promise_test((t) => {
    const key = '{{uuid()}}';

    induceRequest(
      makeRequestURL(key, ['httpOrigin', 'httpsOrigin'], {mime: 'text/html'}),
      {
        test: t,
        userActivated: false,
        attributes: {}
      }
    );

    // `induceRequest` does not necessarily trigger a navigation, so the Python
    // handler must be polled until it has received the initial request.
    return retrieve(key, {poll: true})
      .then((headers) => {
          assert_own_property(headers, 'sec-fetch-site');
          assert_array_equals(headers['sec-fetch-site'], ['cross-site']);
        });
  }, 'sec-fetch-site - HTTPS upgrade - no attributes');

  promise_test((t) => {
    const key = '{{uuid()}}';

    induceRequest(
      makeRequestURL(key, ['httpsOrigin', 'httpOrigin', 'httpsOrigin'], {mime: 'text/html'}),
      {
        test: t,
        userActivated: false,
        attributes: {}
      }
    );

    // `induceRequest` does not necessarily trigger a navigation, so the Python
    // handler must be polled until it has received the initial request.
    return retrieve(key, {poll: true})
      .then((headers) => {
          assert_own_property(headers, 'sec-fetch-site');
          assert_array_equals(headers['sec-fetch-site'], ['cross-site']);
        });
  }, 'sec-fetch-site - HTTPS downgrade-upgrade - no attributes');
  </script>
  </body>
</html>