https://github.com/web-platform-tests/wpt
Raw File
Tip revision: 4be224602569115133e2acdd051ea43956974def authored by quasicomputational on 24 December 2018, 18:42:19 UTC
Implement the 'overflow-inline' media query.
Tip revision: 4be2246
invalid-header.https.html
<!DOCTYPE html>
<title>Service Worker: respondWith with header value containing a null byte</title>
<script src="/resources/testharness.js"></script>
<script src="/resources/testharnessreport.js"></script>
<script src="/common/get-host-info.sub.js"></script>
<script src="resources/test-helpers.sub.js"></script>
<script>
promise_test(function(t) {
    var SCOPE = 'resources/invalid-header-iframe.https.html';
    var SCRIPT = 'resources/invalid-header-worker.js';
    var host_info = get_host_info();
    return service_worker_unregister_and_register(t, SCRIPT, SCOPE)
      .then(function(registration) {
          t.add_cleanup(function() {
              return service_worker_unregister(t, SCOPE);
            });

          return wait_for_state(t, registration.installing, 'activated');
        })
      .then(function() { return with_iframe(SCOPE); })
      .then(function(frame) {
          t.add_cleanup(function() {
              frame.remove();
            });

          var channel = new MessageChannel();
          var onMsg = new Promise(function(resolve) {
              channel.port1.onmessage = resolve;
            });
          frame.contentWindow.postMessage({},
                                          host_info['HTTPS_ORIGIN'],
                                          [channel.port2]);
          return onMsg;
        })
      .then(function(e) {
          assert_equals(e.data.results, 'finish');
        });
  }, 'Verify the response of FetchEvent using XMLHttpRequest');
</script>
back to top