Fix triple-click paragraph selection near block generated content. bug=339430, r+sr=roc

This commit is contained in:
uriber%gmail.com 2006-05-29 08:32:46 +00:00
Родитель d66da853d4
Коммит 0ba372b7aa
1 изменённых файлов: 3 добавлений и 0 удалений

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

@ -4057,6 +4057,9 @@ FindBlockFrameOrBR(nsIFrame* aFrame, nsDirection aDirection)
nsContentAndOffset result;
result.mContent = nsnull;
if (aFrame->IsGeneratedContentFrame())
return result;
// Treat form controls as inline leaves
// XXX we really need a way to determine whether a frame is inline-level
nsIFormControlFrame* fcf; // used only for QI