gecko-dev/dom/base/crashtests/xhr_html_nullresponse.html

Ignoring revisions in .git-blame-ignore-revs. Click here to bypass and see the normal blame view.

6 строки
335 B
HTML
Исходник Обычный вид История

2011-11-23 12:22:41 +04:00
<!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>