This commit is contained in:
Justin Dolske 2008-08-13 16:32:45 -07:00
Родитель f4635039b3 eb8b473b14
Коммит 2f7efa3521
2 изменённых файлов: 0 добавлений и 9 удалений

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

@ -164,9 +164,6 @@ nsTableRowFrame::Init(nsIContent* aContent,
// Let the base class do its initialization
rv = nsHTMLContainerFrame::Init(aContent, aParent, aPrevInFlow);
NS_ASSERTION(NS_STYLE_DISPLAY_TABLE_ROW == GetStyleDisplay()->mDisplay,
"wrong display on table row frame");
if (aPrevInFlow) {
// Set the row index
nsTableRowFrame* rowFrame = (nsTableRowFrame*)aPrevInFlow;

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

@ -1413,9 +1413,6 @@ nsTableRowGroupFrame::AppendFrames(nsIAtom* aListName,
for (nsIFrame* rowFrame = aFrameList; rowFrame;
rowFrame = rowFrame->GetNextSibling()) {
if (nsGkAtoms::tableRowFrame == rowFrame->GetType()) {
NS_ASSERTION(NS_STYLE_DISPLAY_TABLE_ROW ==
rowFrame->GetStyleDisplay()->mDisplay,
"wrong display type on rowframe");
rows.AppendElement(rowFrame);
}
}
@ -1459,9 +1456,6 @@ nsTableRowGroupFrame::InsertFrames(nsIAtom* aListName,
for (nsIFrame* rowFrame = aFrameList; rowFrame;
rowFrame = rowFrame->GetNextSibling()) {
if (nsGkAtoms::tableRowFrame == rowFrame->GetType()) {
NS_ASSERTION(NS_STYLE_DISPLAY_TABLE_ROW ==
rowFrame->GetStyleDisplay()->mDisplay,
"wrong display type on rowframe");
rows.AppendElement(rowFrame);
if (!gotFirstRow) {
((nsTableRowFrame*)rowFrame)->SetFirstInserted(PR_TRUE);