mirror of
https://github.com/servo/servo
synced 2026-05-13 18:37:30 +02:00
16 lines
337 B
HTML
16 lines
337 B
HTML
<!DOCTYPE html>
|
|
<html>
|
|
<head>
|
|
<script>
|
|
document.removeChild(document.documentElement);
|
|
root = document.createElementNS(null, "html");
|
|
body = document.createElement("body");
|
|
body.appendChild(document.createTextNode("Hello world!"));
|
|
root.appendChild(body);
|
|
document.appendChild(root);
|
|
</script>
|
|
</head>
|
|
<body>
|
|
</body>
|
|
</html>
|