Bug 295645 - nested <svg:tspan> should be allowed. r=alex, a=shaver

This commit is contained in:
tor%cs.brown.edu 2005-06-01 19:00:29 +00:00
Родитель cccee09970
Коммит f69f468499
1 изменённых файлов: 3 добавлений и 2 удалений

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

@ -183,8 +183,9 @@ NS_NewSVGTSpanFrame(nsIPresShell* aPresShell, nsIContent* aContent,
*aNewFrame = nsnull;
NS_ASSERTION(parentFrame, "null parent");
nsISVGTextFrame *text_container;
parentFrame->QueryInterface(NS_GET_IID(nsISVGTextFrame), (void**)&text_container);
nsISVGTextContainerFrame *text_container;
parentFrame->QueryInterface(NS_GET_IID(nsISVGTextContainerFrame),
(void**)&text_container);
if (!text_container) {
NS_ERROR("trying to construct an SVGTSpanFrame for an invalid container");
return NS_ERROR_FAILURE;