Issue 2840: [Firebug Lite] Synchronous XHR requests

    test markup

    Steps to reproduce

    1. Load Firebug Lite
    2. Load jQuery
    3. Execute the following code:
            $.ajax({
                url: "test.txt",
                complete: function(req, status) {
                    if (status == "success") {
                        // this line should be executed
                    }
                }
            });
                    

    Expected Result