mirror of
https://github.com/LadybirdBrowser/ladybird.git
synced 2025-12-08 06:09:58 +00:00
13 lines
418 B
HTML
13 lines
418 B
HTML
|
|
<!DOCTYPE html>
|
||
|
|
<script src="../include.js"></script>
|
||
|
|
<div id="script-container"></div>
|
||
|
|
<script>
|
||
|
|
let scriptRan = false;
|
||
|
|
test(() => {
|
||
|
|
let script = document.createElementNS("http://www.w3.org/2000/svg", "script");
|
||
|
|
script.textContent = `scriptRan = true;`;
|
||
|
|
document.getElementById('script-container').appendChild(script);
|
||
|
|
println(`SVG script ran: ${scriptRan}`);
|
||
|
|
});
|
||
|
|
</script>
|