tenfourfox/dom/base/crashtests/xhr_html_nullresponse.html
Cameron Kaiser c9b2922b70 hello FPR
2017-04-19 00:56:45 -07:00

6 lines
335 B
HTML

<!DOCTYPE html>
<html class="reftest-wait">
<script>
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();
</script>