mirror of
https://github.com/LadybirdBrowser/ladybird.git
synced 2025-11-09 01:31:02 +00:00
15 lines
457 B
HTML
15 lines
457 B
HTML
|
|
<!DOCTYPE html>
|
||
|
|
<script src="../include.js"></script>
|
||
|
|
<script>
|
||
|
|
test(() => {
|
||
|
|
const div = document.createElement("div");
|
||
|
|
const shadowRoot = div.attachShadow({ mode: "closed" });
|
||
|
|
|
||
|
|
const script = document.createElement("script");
|
||
|
|
script.innerText = "println('Hello from script in the shadow root of the just inserted div!')";
|
||
|
|
shadowRoot.appendChild(script);
|
||
|
|
|
||
|
|
document.body.appendChild(div);
|
||
|
|
});
|
||
|
|
</script>
|