blob: 55c4cb9e429b15d0ac48de51da62c0f5465863a8 [file] [log] [blame]
<!DOCTYPE html>
<html>
<head>
<script>
if (window.testRunner)
testRunner.dumpAsText();
</script>
</head>
<body>
<p>This tests that we don't cause an assertion failure when implicitly removing a &lt;use&gt; (by removing its parent), with the same id as another element, that is referenced by a later &lt;feimage&gt;.</p>
<svg>
<use id="A"></use>
<use id="A"></use>
<feimage xlink:href="#A"></feimage>
</svg>
<script>
var svg = document.querySelector("svg");
document.body.removeChild(svg);
</script>
<p>PASS</p>
</body>
</html>