chromium/third_party/blink/web_tests/http/tests/fetch/workers/response-content-base-https-other-https.html

<!doctype html>
<head>
<meta name="timeout" content="long"></meta>
<script src = "/resources/get-host-info.js?pipe=sub"></script>
<script src = "/resources/testharness.js"></script>
<script src = "/resources/testharnessreport.js"></script>
<script src = "/fetch/resources/fetch-test-options.js"></script>
<script src = "/serviceworker/resources/test-helpers.js"></script>
</head>
<body>
<script>
var options = get_fetch_test_options();
function start(t) {
  fetch_tests_from_worker(
    new Worker('../script-tests/response-content.js?-base-https-other-https'));
  t.done();
}
function init() {
  return Promise.resolve();
}
</script>
<script src = "../resources/init.js"></script>
</body>