mirror of
https://github.com/LadybirdBrowser/ladybird.git
synced 2025-07-15 13:31:54 +00:00
12 lines
418 B
HTML
12 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>
|