1
Fork 0
mirror of https://github.com/RGBCube/serenity synced 2025-05-31 04:48:14 +00:00
serenity/Base/home/anon/www/dom.html
Elisée Maurer d01b97b50a
Base: Replace <!DOCTYPE> with <!DOCTYPE html> in a few files (#1511)
<!DOCTYPE> by itself is not a valid document type declaration.
2020-03-26 07:37:12 +01:00

11 lines
203 B
HTML

<!DOCTYPE html>
<html>
<head></head>
<body>
<div id="foo"></div>
<script>
var e = document.getElementById("foo");
alert(e.nodeName);
</script>
</body>
</html>