Bug 339952 - Pattern content is not transformed by viewBox coordinates correctly with patternContentUnits of objectBoundingBox. r=tor,sr=roc

This commit is contained in:
longsonr%gmail.com 2006-06-06 07:50:11 +00:00
Родитель d2fc644a78
Коммит eff69ca8cb
1 изменённых файлов: 2 добавлений и 5 удалений

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

@ -664,12 +664,9 @@ nsSVGPatternFrame::ConstructCTM(nsIDOMSVGMatrix **aCTM,
} else {
// No viewBox, construct from the (modified) parent matrix
NS_NewSVGMatrix(getter_AddRefs(tempTM),
1.0f, 0.0f,
0.0f, 1.0f,
0.0f, 0.0f);
NS_NewSVGMatrix(getter_AddRefs(tempTM));
}
tempTM->Multiply(tCTM, aCTM);
tCTM->Multiply(tempTM, aCTM);
return NS_OK;
}