chromium/third_party/blink/web_tests/fast/dom/comment-not-documentElement.html

<!-- this comment should not become the documentElement,
     if it does then the page will be blank -->
<html>
<body>
<script>
if (document.documentElement.nodeType == Node.ELEMENT_NODE)
    document.write("SUCCESS");
else
    document.write("FAIL");
</script>
</body>
</html>