Files
browser/src/browser/tests/document_head_body.html
2025-10-27 22:14:59 +08:00

9 lines
300 B
HTML

<head id="the_head">
<script src="testing.js"></script>
</head>
<body id="the_body">
<script id="test-document-head-body">
testing.expectEqual(document.getElementById('the_head'), document.head);
testing.expectEqual(document.getElementById('the_body'), document.body);
</script>
</body>