Source code
Revision control
Copy as Markdown
Other Tools
Test Info:
- This WPT test may be referenced by the following Test IDs:
            
- /xhr/responseText-status.html - WPT Dashboard Interop Dashboard
 
 
<!DOCTYPE html>
<meta charset="utf-8">
<title>XMLHttpRequest Test: responseText - status</title>
<meta name="assert" content="Check if XMLHttpRequest.responseText return empty string if state is not LOADING or DONE">
<script src="/resources/testharness.js"></script>
<script src="/resources/testharnessreport.js"></script>
<div id="log"></div>
<script>
async_test(function (t) {
  var client = new XMLHttpRequest();
  t.step(function () {
    assert_equals(client.responseText, "");
  });
  client.onreadystatechange = t.step_func(function () {
    if (client.readyState == 1 || client.readyState == 2) {
      assert_equals(client.responseText, "");
    }
    if (client.readyState == 3) {
      t.done();
    }
  });
  client.open("GET", "resources/headers.py")
  client.send(null)
}, document.title);
</script>