summaryrefslogtreecommitdiff
path: root/cgi-bin/and-then-js-async-cb-adds-timeout.js
blob: 9b78c880a1e9a3dd4ca2267ccec586454dd51737 (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(function() {
    /* Add a <script> tag */
    var script = document.createElement("SCRIPT");
    script.src = "https://test.netsurf-browser.org/html/hello-world.js";
    document.body.appendChild(script);
}, 1000);