mirror of
https://github.com/LadybirdBrowser/ladybird.git
synced 2025-07-10 02:51:55 +00:00
10 lines
372 B
HTML
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>
|