mirror of
https://github.com/servo/servo
synced 2026-04-29 10:57:43 +02:00
5 lines
99 B
JavaScript
5 lines
99 B
JavaScript
var x = new XMLHttpRequest();
|
|
x.open("GET", "test.txt", false);
|
|
x.send();
|
|
postMessage(x.response);
|