summaryrefslogtreecommitdiffstats
path: root/dom/base/crashtests/xhr_html_nullresponse.html
blob: 47c85db9bf9b9a09f442af27aea4fa5ff0f187fc (plain)
1
2
3
4
5
<!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>