Merge Chromium + Blink git repositories
[chromium-blink-merge.git] / third_party / WebKit / LayoutTests / svg / custom / use-non-existing-symbol-crash.svg
blob5f6d6d147dc1102600b9e6b0171b0b215dd4be0b
1 <?xml version="1.0" encoding="UTF-8"?>
2 <svg xmlns:svg="http://www.w3.org/2000/svg"
3 xmlns="http://www.w3.org/2000/svg"
4 xmlns:xlink="http://www.w3.org/1999/xlink"
5 width="800px" height="800px"
6 onload="init()">
8 <script type="application/ecmascript">
9 if (window.testRunner)
10 testRunner.dumpAsText();
12 function init() {
13 var cell = document.getElementById('foo');
14 cell.setAttributeNS(null, 'visibility','display');
17 </script>
18 <use id="foo" xlink:href="#doesNotExist"/>
19 <text x="10" y="10" > PASS -- not crashing, https://bugs.webkit.org/show_bug.cgi?id=27693 </text>
20 </svg>