summaryrefslogtreecommitdiff
path: root/cgi-bin/and-then-js-async-cb-adds-timeout.js
blob: b53678b3cfb1e6aff8aa7caad724cf1c125bd4d1 (plain)
1
2
3
4
5
6
7
8
9
10
11
/* JS returned by and-then-js.cgi
 * this is to be loaded as an async script
 */

/* After one second */
setTimeout(1000, function() {
    /* Add a <script> tag */
    var script = document.createElement("SCRIPT");
    script.src = "https://test.netsurf-browser.org/hello-world.js";
    document.body.appendChild(script);
});