Revision 67bcdf47cff6cfac397b63020cf518e9a651fc6a authored by chunywang on 25 May 2015, 05:54:30 UTC, committed by Zhiqiang Zhang on 08 June 2015, 06:22:50 UTC
This resolves #1858.
1 parent 47e6da3
Raw File
send-redirect-bogus-sync.htm
<!doctype html>
<html>
  <head>
    <title>XMLHttpRequest: send() - Redirects (bogus Location header; sync)</title>
    <script src="/resources/testharness.js"></script>
    <script src="/resources/testharnessreport.js"></script>
    <link rel="help" href="https://xhr.spec.whatwg.org/#infrastructure-for-the-send()-method" data-tested-assertations="following::dl[1]/dt[2] following::dl[1]/dd[2]/ol/li[1] following::dl[1]/dd[2]/ol/li[3]" />
  </head>
  <body>
    <div id="log"></div>
    <script>
      function redirect(code, location) {
        test(function() {
          var client = new XMLHttpRequest()
          client.open("GET", "resources/redirect.py?location=" + location + "&code=" + code, false)
          assert_throws("NetworkError", function() { client.send(null) })
        }, document.title + " (" + code + ": " + location + ")")
      }
      redirect("301", "foobar://abcd")
      redirect("302", "http://z")
      redirect("302", "mailto:someone@example.org")
      redirect("303", "http://z")
      redirect("303", "tel:1234567890")
    </script>
  </body>
</html>
back to top