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
overridemimetype-done-state.htm
<!doctype html>
<html>
  <head>
    <title>XMLHttpRequest: overrideMimeType() in DONE state</title>
    <meta charset="utf-8">
    <script src="/resources/testharness.js"></script>
    <script src="/resources/testharnessreport.js"></script>
    <link rel="help" href="https://xhr.spec.whatwg.org/#the-overridemimetype()-method" data-tested-assertations="/following::ol/li[1]" />
  </head>
  <body>
    <div id="log"></div>
    <script>
      var test = async_test();
      var client = new XMLHttpRequest();
      client.onreadystatechange = test.step_func( function() {
        if (client.readyState !== 4) return;
        assert_throws("InvalidStateError", function() { client.overrideMimeType('application/xml;charset=Shift-JIS'); });
        assert_equals(client.responseXML, null);
        test.done();
      });
      client.open("GET", "resources/status.py?type="+encodeURIComponent('text/plain;charset=iso-8859-1')+'&content=%3Cmsg%3E%83%65%83%58%83%67%3C%2Fmsg%3E');
      client.send();
    </script>

  </body>
</html>
back to top