Bug 428228. Removing element from SVG <svg> crashes. r=longsonr, sr=roc, a=beltzner

This commit is contained in:
jwatt@jwatt.org 2008-04-15 01:31:06 -07:00
Родитель bf916f6313
Коммит e1f45b292c
3 изменённых файлов: 23 добавлений и 0 удалений

Просмотреть файл

@ -0,0 +1,17 @@
<html xmlns="http://www.w3.org/1999/xhtml" xmlns:svg="http://www.w3.org/2000/svg">
<head>
<script type="text/javascript">
// Test that removing a direct child element of an SVG <svg> doesnt' crash:
function boom()
{
document.getElementById("s").removeChild(document.getElementById("r"));
}
</script>
</head>
<body onload="boom();">&#x06C0;<svg:svg id="s"><svg:rect id="r"/></svg:svg></body>
</html>

Просмотреть файл

@ -33,4 +33,5 @@ load 410659-2.svg
load 410659-3.svg
load 412104-1.svg
load 414188-1.svg
load 428228-1.svg
load 428841-1.svg

Просмотреть файл

@ -923,6 +923,11 @@ nsSVGUtils::UpdateGraphic(nsISVGChildFrame *aSVGFrame)
void
nsSVGUtils::NotifyAncestorsOfFilterRegionChange(nsIFrame *aFrame)
{
if (aFrame->GetStateBits() & NS_STATE_IS_OUTER_SVG) {
// It would be better if we couldn't get here
return;
}
aFrame = aFrame->GetParent();
while (aFrame) {