chromium/third_party/blink/web_tests/fast/parser/crash-HTMLParser-createHead.html

<body onload=go();></body>
<script>
    if (window.testRunner)
        testRunner.dumpAsText();

    function go() {
        document.open();
        try {
            new Image().insertAdjacentHTML(0,"<x<meta>");
        } catch (e) {
        }
        document.write('<p>Test for bug <a href="https://bugs.webkit.org/show_bug.cgi?id=32426">32426</a>: Crash in WebCore::HTMLParser::createHead</p>');
        document.write('<p>This test PASSED as it did not CRASH nor ASSERTED.</p>');
    }
</script>