Andreas Kling
4ffac713b9
LibWeb: Add XMLHttpRequest object :^)
...
This patch adds very basic XMLHttpRequest support to LibWeb. Here's an
example that currently works:
var callback = function() { alert(this.responseText); }
var xhr = new XMLHttpRequest();
xhr.addEventListener("load", callback);
xhr.open("GET", "http://serenityos.org/~kling/test/example.txt ");
xhr.send();
There are many limitations and bugs, but it's pretty dang awesome that
we have XHR. :^)
2020-04-08 21:46:43 +02:00
..
2020-04-06 18:09:26 +02:00
2020-04-06 18:09:26 +02:00
2020-04-04 22:28:21 +02:00
2020-04-04 22:28:21 +02:00
2020-04-08 20:01:42 +02:00
2020-04-05 18:07:41 +02:00
2020-04-07 17:25:50 +02:00
2020-04-07 17:25:50 +02:00
2020-04-07 08:41:25 +02:00
2020-04-07 08:41:25 +02:00
2020-04-07 08:41:25 +02:00
2020-04-07 08:41:25 +02:00
2020-04-02 15:24:50 +02:00
2020-04-01 22:38:59 +02:00
2020-04-04 12:58:05 +02:00
2020-04-01 20:18:36 +02:00
2020-04-04 12:58:05 +02:00
2020-04-01 20:47:37 +02:00
2020-04-01 20:47:37 +02:00
2020-04-04 12:58:05 +02:00
2020-04-03 09:07:05 +02:00
2020-04-04 15:58:49 +02:00
2020-04-01 20:18:36 +02:00
2020-04-04 15:58:49 +02:00
2020-04-04 15:58:49 +02:00
2020-04-04 15:58:49 +02:00
2020-04-04 15:58:49 +02:00
2020-04-08 11:08:07 +02:00
2020-04-08 21:46:43 +02:00
2020-04-06 14:08:56 +02:00
2020-04-06 10:58:16 +02:00
2020-04-01 20:18:36 +02:00
2020-04-01 20:18:36 +02:00
2020-04-07 21:28:43 +02:00
2020-04-07 21:28:43 +02:00
2020-04-04 23:13:13 +02:00
2020-04-04 23:13:13 +02:00
2020-04-04 23:13:13 +02:00
2020-04-04 23:13:13 +02:00
2020-04-08 11:08:07 +02:00
2020-04-07 08:41:25 +02:00
2020-04-06 20:27:44 +02:00
2020-04-01 20:18:36 +02:00
2020-04-05 18:19:56 +02:00
2020-04-04 12:58:05 +02:00
2020-04-04 12:58:05 +02:00
2020-04-06 20:27:44 +02:00
2020-04-06 19:22:12 +02:00
2020-04-05 11:19:00 +02:00
2020-04-06 11:09:01 +02:00
2020-04-02 19:32:21 +02:00
2020-04-07 08:50:35 +02:00
2020-04-07 08:50:35 +02:00
2020-04-08 17:19:46 +02:00
2020-04-08 17:19:46 +02:00