chromium/third_party/blink/web_tests/svg/custom/use-non-existing-symbol-crash.svg

<?xml version="1.0" encoding="UTF-8"?>
<svg xmlns:svg="http://www.w3.org/2000/svg" 
     xmlns="http://www.w3.org/2000/svg" 
     xmlns:xlink="http://www.w3.org/1999/xlink" 
     width="800px" height="800px"
     onload="init()">

<script type="application/ecmascript">
if (window.testRunner)
    testRunner.dumpAsText();
    
function init() {
  var cell = document.getElementById('foo');
      cell.setAttributeNS(null, 'visibility','display');
  
}
</script>
<use id="foo" xlink:href="#doesNotExist"/>
<text x="10" y="10" > PASS -- not crashing,  https://bugs.webkit.org/show_bug.cgi?id=27693 </text>
</svg>