ladybird/Tests/LibWeb/Text/input/HTML/Element-insertAdjacentHTML-documentElement.html
Andreas Kling 802af5ad9d LibWeb: Allow Element.insertAdjacentHTML on the document element
This fixes wpt/domparsing/insert_adjacent_html.html
2024-05-27 17:33:29 +02:00

7 lines
198 B
HTML

<script src="../include.js"></script>
<script>
test(() => {
document.documentElement.insertAdjacentHTML("afterbegin", "hello");
println("PASS (didn't crash)");
});
</script>