blob: aaa84090e34640b32d0ec798d8e84eeee042902c [file] [log] [blame]
<script>
if (window.testRunner)
testRunner.dumpAsText();
onload = function() {
history.replaceState(null, null, "?foo");
if (location.search == "?foo") {
document.body.innerText = "PASS";
} else {
document.body.innerText = "FAIL: location.search is \'" + location.search + "\'";
}
}
</script>