| <p>Tests the properties of the exceptions related to XMLHttpRequest.</p> |
| function shouldBeEqualToString(__a, __b) |
| _message = "PASS " + __a + " is \"" + __b + "\""; |
| _message = "FAIL " + __a + " is not \"" + __b + "\". Was \"" + _a + "\""; |
| document.getElementById('console').appendChild(document.createTextNode(_message + "\n")); |
| function shouldBe(__a, __b) |
| _message = "PASS " + __a + " is " + __b; |
| _message = "FAIL " + __a + " is not " + __b + ". Was " + _a; |
| document.getElementById('console').appendChild(document.createTextNode(_message + "\n")); |
| var req = new XMLHttpRequest; |
| req.open('GET', 'resources/infinite-loop.php', false); |
| shouldBeEqualToString("e.toString()", "NetworkError: A network error occurred."); |
| shouldBeEqualToString("Object.prototype.toString.call(e)", "[object DOMException]"); |
| shouldBeEqualToString("Object.prototype.toString.call(e.__proto__)", "[object DOMException]"); |
| shouldBeEqualToString("e.constructor.toString()", "function DOMException() {\n [native code]\n}"); |
| shouldBe("e.constructor", "window.DOMException"); |
| shouldBe("e.NETWORK_ERR", "e.constructor.NETWORK_ERR"); |
| shouldBe("e.NETWORK_ERR", "19"); |