blob: 1d3da1042fc4c2465a9b43111d3042aac6401604 [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;use&gt;.</p>
<svg>
<use id="A"></use>
<g id="A"></g>
<use xlink:href="#A"></use>
</svg>
<script>
var svg = document.querySelector("svg");
document.body.removeChild(svg);
</script>
<p>PASS</p>
</body>
</html>