Landing part of bug 363858 that somehow got misplaced. pending r=dbaron

This commit is contained in:
bzbarsky@mit.edu 2007-12-02 23:38:48 -08:00
Родитель 0a1c3cdee8
Коммит 55cae0276c
1 изменённых файлов: 6 добавлений и 3 удалений

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

@ -90,6 +90,7 @@
#include "nsIDOMKeyListener.h"
#include "nsLayoutUtils.h"
#include "nsDisplayList.h"
#include "nsBoxLayoutState.h"
// Constants
const nscoord kMaxDropDownRows = 20; // This matches the setting for 4.x browsers
@ -527,12 +528,14 @@ nsListControlFrame::CalcHeightOfARow()
nscoord
nsListControlFrame::GetMinWidth(nsIRenderingContext *aRenderingContext)
{
// We don't want to have options wrapping unless they absolutely
// have to, so our min width is our pref width.
// Scrollframes typically have an intrinsic min width of 0, but
// that's not how we want to behave.
nscoord result;
DISPLAY_MIN_WIDTH(this, result);
result = GetPrefWidth(aRenderingContext);
result = GetScrolledFrame()->GetMinWidth(aRenderingContext);
nsBoxLayoutState bls(PresContext(), aRenderingContext);
result += GetDesiredScrollbarSizes(&bls).LeftRight();
return result;
}