diff options
author | Moonchild <git-repo@palemoon.org> | 2019-05-03 00:44:28 +0000 |
---|---|---|
committer | GitHub <noreply@github.com> | 2019-05-03 00:44:28 +0000 |
commit | 650585f03cb3293e0db0e1f9edbac710c091b644 (patch) | |
tree | 5c63bb02de763d78e84d31bbb2d0734fb219dffd /layout/base/nsDisplayList.h | |
parent | d9404b77bb7f176e8a652c248620072db17bdb67 (diff) | |
parent | 9b750203d0b87e9c4644ff58826e871a37f4c2cd (diff) | |
download | UXP-650585f03cb3293e0db0e1f9edbac710c091b644.tar UXP-650585f03cb3293e0db0e1f9edbac710c091b644.tar.gz UXP-650585f03cb3293e0db0e1f9edbac710c091b644.tar.lz UXP-650585f03cb3293e0db0e1f9edbac710c091b644.tar.xz UXP-650585f03cb3293e0db0e1f9edbac710c091b644.zip |
Merge pull request #1071 from win7-7/nsDisplayListBuilder
nsFrameList::GetLength() calls in nsDisplayListBuilder::MarkFramesForDisplayList() are slow
Diffstat (limited to 'layout/base/nsDisplayList.h')
-rw-r--r-- | layout/base/nsDisplayList.h | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/layout/base/nsDisplayList.h b/layout/base/nsDisplayList.h index c9f773f5b..fcdc9e4fc 100644 --- a/layout/base/nsDisplayList.h +++ b/layout/base/nsDisplayList.h @@ -1200,7 +1200,7 @@ private: PLArenaPool mPool; nsCOMPtr<nsISelection> mBoundingSelection; AutoTArray<PresShellState,8> mPresShellStates; - AutoTArray<nsIFrame*,100> mFramesMarkedForDisplay; + AutoTArray<nsIFrame*,400> mFramesMarkedForDisplay; AutoTArray<ThemeGeometry,2> mThemeGeometries; nsDisplayTableItem* mCurrentTableItem; DisplayListClipState mClipState; |