blob: 64c216be5a056d264484799e8dcc4acc8020aa05 [file] [log] [blame]
<!DOCTYPE html>
<html>
<meta charset="utf-8">
<body>
<script>
onload = function() {
document.body.offsetTop;
document.body.style.zoom=0.9;
document.designMode='on';
window.getSelection().setBaseAndExtent(filterInFirstRoot, 0, null, 0);
document.execCommand('ForwardDelete');
}
</script>
This test passes if it does not crash.<br/>
<svg id="111">
<text direction="rtl" id="filterInFirstRoot">
<tspan id="tSpanInFirstRoot">abc</tspan>
</text>
<path filter="url(#filterInSecondRoot)"></path>
</svg>
<svg id="222">
<filter id="filterInSecondRoot"></filter>
</svg>
</body>
</html>