| Index: Source/WebCore/page/FrameView.cpp
|
| ===================================================================
|
| --- Source/WebCore/page/FrameView.cpp (revision 77831)
|
| +++ Source/WebCore/page/FrameView.cpp (working copy)
|
| @@ -1819,7 +1819,16 @@
|
|
|
| return m_widgetUpdateSet->isEmpty();
|
| }
|
| -
|
| +
|
| +void FrameView::flushAnyPendingPostLayoutTasks()
|
| +{
|
| + if (!m_hasPendingPostLayoutTasks)
|
| + return;
|
| +
|
| + m_postLayoutTasksTimer.stop();
|
| + performPostLayoutTasks();
|
| +}
|
| +
|
| void FrameView::performPostLayoutTasks()
|
| {
|
| m_hasPendingPostLayoutTasks = false;
|
|
|