chromium/third_party/blink/web_tests/editing/execCommand/extracted-style-assert.html

<html>
    <body>
        <table>
            <td>
                <a></a>                     
            </td>
        </table>
        <script>
            if (window.testRunner)
                testRunner.dumpAsText();
            
            document.designMode = "on"; 
            document.execCommand("SelectAll"); 
            document.execCommand("CreateLink", 0, 'foo');

            document.body.innerHTML = "PASS. Blink didn't crash.";
        </script>
   </body>
</html>