ladybird/Tests/LibWeb/Text/input/module-script-in-head.html
Aliaksandr Kalenik 394073f611 LibWeb: Rename internals.signalTextTestIsDone() to signalTestIsDone()
In upcoming change this function will be used for ref-tests as well.
2025-03-18 20:09:46 +01:00

10 lines
372 B
HTML

<!DOCTYPE html>
<head>
<script type="module">
const __outputElement = document.createElement("pre");
__outputElement.setAttribute("id", "out");
__outputElement.appendChild(document.createTextNode("passed\n"))
document.body.appendChild(__outputElement);
internals.signalTestIsDone(document.body.innerText);
</script>
</head>