Bug 274703 sizeToContent doesn't compute the correct size in certain cases e.g. after setting description text r=jst sr=bz

This commit is contained in:
neil%parkwaycc.co.uk 2005-01-15 18:01:22 +00:00
Родитель dc94ec25f1
Коммит f29d0d0920
1 изменённых файлов: 3 добавлений и 4 удалений

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

@ -2705,10 +2705,9 @@ NS_IMETHODIMP DocumentViewerImpl::SizeToContent()
GetPresShell(getter_AddRefs(presShell));
NS_ENSURE_TRUE(presShell, NS_ERROR_FAILURE);
// Flush out all content and style updates. Note that we don't need to
// flush layout since we're about to do a top-level resize reflow, and we
// shouldn't have any parents to propagate the flush to.
mDocument->FlushPendingNotifications(Flush_Style);
// Flush out all content and style updates. We can't use a resize reflow
// because it won't change some sizes that a style change reflow will.
mDocument->FlushPendingNotifications(Flush_Layout);
NS_ENSURE_SUCCESS(presShell->ResizeReflow(NS_UNCONSTRAINEDSIZE,
NS_UNCONSTRAINEDSIZE), NS_ERROR_FAILURE);