Bug 7934: Calculate frameset percentage widths/heights correctly.

This commit is contained in:
pollmann%netscape.com 1999-06-11 00:28:00 +00:00
Родитель 7c4741fca1
Коммит 11376c79a8
2 изменённых файлов: 2 добавлений и 2 удалений

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

@ -352,7 +352,7 @@ void nsHTMLFramesetFrame::CalculateRowCol(nsIPresContext* aPresContext,
// allocate the percentage sizes from what is left over from the fixed allocation
for (i = 0; i < numPercent; i++) {
j = percent[i];
aValues[j] = NSToCoordRound((float)aSpecs[j].mValue * (float)percentMax / 100.0f);
aValues[j] = NSToCoordRound((float)aSpecs[j].mValue * (float)aSize / 100.0f);
percentTotal += aValues[j];
}

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

@ -352,7 +352,7 @@ void nsHTMLFramesetFrame::CalculateRowCol(nsIPresContext* aPresContext,
// allocate the percentage sizes from what is left over from the fixed allocation
for (i = 0; i < numPercent; i++) {
j = percent[i];
aValues[j] = NSToCoordRound((float)aSpecs[j].mValue * (float)percentMax / 100.0f);
aValues[j] = NSToCoordRound((float)aSpecs[j].mValue * (float)aSize / 100.0f);
percentTotal += aValues[j];
}