mirror of
https://github.com/servo/servo.git
synced 2025-08-02 12:10:29 +01:00
15 lines
337 B
HTML
15 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>
|