tor-browser

The Tor Browser
git clone https://git.dasho.dev/tor-browser.git
Log | Files | Refs | README | LICENSE

send-no-response-event-order.htm (2287B)


      1 <!DOCTYPE html>
      2 <html>
      3 <head>
      4    <link rel="help" href="https://xhr.spec.whatwg.org/#handler-xhr-onloadstart" data-tested-assertations="../.." />
      5    <link rel="help" href="https://xhr.spec.whatwg.org/#handler-xhr-onloadend" data-tested-assertations="../.." />
      6    <link rel="help" href="https://xhr.spec.whatwg.org/#event-xhr-loadstart" data-tested-assertations="../.." />
      7    <link rel="help" href="https://xhr.spec.whatwg.org/#event-xhr-loadend" data-tested-assertations="../.." />
      8    <link rel="help" href="https://xhr.spec.whatwg.org/#the-send()-method" data-tested-assertations="following-sibling::ol/li[9]/ol/li[2]" />
      9    <link rel="help" href="https://xhr.spec.whatwg.org/#infrastructure-for-the-send()-method" data-tested-assertations="following::dt[10] following::a[contains(@href,'#switch-done')]/.." />
     10    <link rel="help" href="https://xhr.spec.whatwg.org/#switch-done" data-tested-assertations="following::ol[1]/li[3] following::ol[1]/li[4] following::ol[1]/li[6] following::ol[1]/li[7]" />
     11    <link rel="help" href="https://xhr.spec.whatwg.org/#the-response-attribute" data-tested-assertations="following-sibling::ol/li[1]" />
     12    <script src="/resources/testharness.js"></script>
     13    <script src="/resources/testharnessreport.js"></script>
     14    <script src="resources/xmlhttprequest-event-order.js"></script>
     15    <title>XMLHttpRequest: The send() method: event order when there is no response entity body</title>
     16 </head>
     17 
     18 <body>
     19    <div id="log"></div>
     20 
     21    <script type="text/javascript">
     22        var test = async_test();
     23 
     24        test.step(function()
     25        {
     26            var xhr = new XMLHttpRequest();
     27            prepare_xhr_for_event_order_test(xhr);
     28 
     29            xhr.addEventListener("readystatechange", test.step_func(function() {
     30                if (xhr.readyState == 3) {
     31                    assert_equals(xhr.response, "");
     32                }
     33            }));
     34 
     35            xhr.addEventListener("loadend", test.step_func(function(e) {
     36                assert_xhr_event_order_matches([1, "loadstart(0,0,false)", 2, "progress(0,0,false)", 4,"load(0,0,false)", "loadend(0,0,false)"]);
     37                test.done();
     38            }));
     39 
     40            xhr.open("POST", "./resources/content.py", true);
     41            xhr.send();
     42        });
     43    </script>
     44 </body>
     45 </html>