bug 49490 - turn off collapsing borders, rules. Fix reflow state to not account for vertical borders or padding on rows. a=buster, r=dcone.

This commit is contained in:
karnaze@netscape.com
2000-10-05 23:49:25 +00:00
parent e8c94ac364
commit ddf9bac577
6 changed files with 26 additions and 8 deletions

View File

@@ -4034,9 +4034,11 @@ void nsTableFrame::GetTableBorderForRowGroup(nsTableRowGroupFrame* aRowGroupFram
PRUint8 nsTableFrame::GetBorderCollapseStyle()
{
/* the following has been commented out to turn off collapsing borders
const nsStyleTable* tableStyle;
GetStyleData(eStyleStruct_Table, (const nsStyleStruct *&)tableStyle);
return tableStyle->mBorderCollapse;
return tableStyle->mBorderCollapse;*/
return NS_STYLE_BORDER_SEPARATE;
}