description('Test for bug 33057: typeof(xhr.responseText) != "string" on Windows.

'); var r = new XMLHttpRequest; r.open("GET", "webcore-string-comparison.html", false); r.send(); shouldBe('typeof(r.responseText) == "string"', 'true'); shouldBe('typeof(r.responseText) === "string"', 'true'); shouldBe('typeof(r.responseText) != "string"', 'false'); shouldBe('typeof(r.responseText) !== "string"', 'false'); shouldBe('"" + typeof(r.responseText)', '"string"'); shouldBe('typeof(r.responseText) + ""', '"string"'); shouldBe('String(typeof(r.responseText))', '"string"'); shouldBe('String(typeof(r.responseText))', 'typeof(r.responseText)');