mirror of
https://github.com/LadybirdBrowser/ladybird.git
synced 2025-11-09 01:31:02 +00:00
14 lines
338 B
HTML
14 lines
338 B
HTML
|
|
<!DOCTYPE html>
|
||
|
|
<head></head>
|
||
|
|
<script src="include.js"></script>
|
||
|
|
<script>
|
||
|
|
asyncTest((done) => {
|
||
|
|
const el = document.createElement("script");
|
||
|
|
el.onload = () => {
|
||
|
|
done();
|
||
|
|
};
|
||
|
|
document.head.appendChild(el);
|
||
|
|
el.setAttribute("src", "script-src-set-after-insertion.js");
|
||
|
|
});
|
||
|
|
</script>
|