servo/tests/ref/root_display_without_style_a.html
2015-09-23 22:44:49 +02:00

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>