blob: 35c2cef142037c2649e00de7bc4c418061cd6298 [file] [log] [blame]
<!DOCTYPE html>
<html>
<head>
<title>XMLHttpRequest: open() resolving URLs - &lt;base></title>
<script src="/resources/testharness.js"></script>
<script src="/resources/testharnessreport.js"></script>
<base href="http://localhost/xhr/resources/">
</head>
<body>
<div id="log"></div>
<script>
test(function() {
var client = new XMLHttpRequest()
client.open("GET", "folder.txt", false)
client.send(null)
assert_equals(client.responseText, "bottom\n")
})
</script>
</body>
</html>