chromium/third_party/blink/web_tests/svg/text/nonconformant-content-crash-2.html

<!doctype html>
<svg xmlns="http://www.w3.org/2000/svg">
  <text><tspan><tspan>PASS</tspan></tspan><a></a></text>
</svg>
<script>
if (window.testRunner) {
    testRunner.dumpAsText();
    testRunner.waitUntilDone();
}
var e = document.querySelector('a');
e.appendChild(document.createElement('rb'));

window.onload = function() {
    setTimeout(function() {
        if (window.testRunner)
            testRunner.notifyDone();
    }, 0);
};
</script>