Bug 1053986 - Rename nsIFrame::GetBorder to GetXULBorder. r=dholbert

This is a manual subset of changes written with sed, over .h and .cpp
files in layout/.

It also includes manual changes in accessible/.

MozReview-Commit-ID: D1nwxJmUzc9
This commit is contained in:
L. David Baron
2016-04-20 21:28:33 -07:00
parent b94d981327
commit ab7cc9a3fb
8 changed files with 11 additions and 11 deletions

View File

@@ -1056,7 +1056,7 @@ HTMLTableAccessible::IsProbablyLayoutTable()
RETURN_LAYOUT_ANSWER(false, "table's first cell has no frame!");
nsMargin border;
cellFrame->GetBorder(border);
cellFrame->GetXULBorder(border);
if (border.top && border.bottom && border.left && border.right) {
RETURN_LAYOUT_ANSWER(false, "Has nonzero border-width on table cell");
}