[whatwg/xhr] what's this mean ? fetch will be repalce xmlhttprequest ? (#115)

> **Synchronous XMLHttpRequest** on the main thread is deprecated because of its detrimental effects to the end user's experience. 
> For more help, check https://xhr.spec.whatwg.org/.

```
var xhr = new XMLHttpRequest();
xhr.open("GET", "https://www.codecademy.com/", false);
xhr.send();

console.log(xhr.status);
console.log(xhr.statusText);
```
![synchronous xmlhttprequest](https://cloud.githubusercontent.com/assets/18028768/23076347/058e62b0-f57b-11e6-9ce5-e536084118d3.png)


https://github.com/whatwg/fetch


-- 
You are receiving this because you are subscribed to this thread.
Reply to this email directly or view it on GitHub:
https://github.com/whatwg/xhr/issues/115

Received on Friday, 17 February 2017 17:41:18 UTC