blob: a9d77827d9515377413c09f061d3c4e84f49e701 (
plain)
1
2
3
4
5
6
7
8
|
importScripts('/resources/testharness.js');
test(t => {
var x = new XMLHttpRequest();
x.open("GET", "test.txt", false);
x.send();
assert_equals(x.response, "gamma\n");
});
done();
|