xhr_html_nullresponse.html (335B)
1 <!DOCTYPE html> 2 <html class="reftest-wait"> 3 <script> 4 var xhr=new XMLHttpRequest();xhr.open("GET",window.location);xhr.overrideMimeType("text/html");xhr.onprogress=function(){if(xhr.readyState!=3)return;xhr.abort();document.documentElement.removeAttribute('class');};xhr.onabort=function(){xhr.responseText;};xhr.send(); 5 </script>