chromium/third_party/blink/web_tests/fast/table/crash-clearSelection-collapsed-borders.html

<!DOCTYPE html>
<table style="border-collapse: collapse">
    <td id=c0>
        <span>
            <a href="https://bugs.webkit.org/show_bug.cgi?id=95487">95487</a>: Crash in LayoutTable::calcBorderEnd<br/>
            This test has PASSED if it didn't crash.
        </span>
        </td>
    <td id=c1></td>
<script>
if (window.testRunner)
    testRunner.dumpAsText();

var selection = window.getSelection();
selection.setBaseAndExtent(c0, 0, c1, 0);
c1.style.display = 'none';
</script>