blob: 5069af934151e8c057f4586dae369aa033945c17 [file] [log] [blame]
<!DOCTYPE HTML>
<style></style>
This test passes if it does not crash<br>
<svg id="svg" style="position: absolute;">
<path class="c3"></path>
</svg>
<svg>
<use xlink:href="#svg"></use>
</svg>
<script>
if (window.testRunner) {
testRunner.waitUntilDone();
testRunner.dumpAsText();
}
onload = function() {
document.body.offsetTop;
document.styleSheets[0].insertRule('.c3 { border: 5px solid red; } ', '.c3');
if (window.testRunner)
testRunner.notifyDone();
}
</script>