1 <html><head></head><body>
3 <p>You should see
"PASS" once:
</p>
5 <script type=
"text/javascript">
7 testRunner
.dumpAsText();
11 if (window
.XMLHttpRequest
) {
12 xhr
= new XMLHttpRequest();
15 xhr
= new ActiveXObject("Msxml2.XMLHTTP");
17 xhr
= new ActiveXObject("Microsoft.XMLHTTP");
21 xhr
.open("GET", "resources/1251.html", false);
22 xhr
.onreadystatechange = function () {
24 xhr
.open("GET", "resources/1251.html?", true);
32 document
.write("PASS");