8 lines
180 B
HTML
8 lines
180 B
HTML
<html>
|
|
<script>
|
|
document.addEventListener('DOMContentLoaded', () => {
|
|
document.appendChild(document.createComment(''));
|
|
document.documentElement.remove();
|
|
})
|
|
</script>
|
|
</html>
|