| Index: Source/core/testing/Internals.cpp
|
| diff --git a/Source/core/testing/Internals.cpp b/Source/core/testing/Internals.cpp
|
| index f312c9065ea572bb4fa5ec9c5ff465903a591a6a..928a5853b7cbc2ec7b58f732eac13a21b01a1fc9 100644
|
| --- a/Source/core/testing/Internals.cpp
|
| +++ b/Source/core/testing/Internals.cpp
|
| @@ -2003,7 +2003,7 @@ void Internals::startTrackingRepaints(Document* document, ExceptionState& except
|
|
|
| FrameView* frameView = document->view();
|
| frameView->updateLayoutAndStyleForPainting();
|
| - frameView->setTracksRepaints(true);
|
| + frameView->setTracksPaintInvalidations(true);
|
| }
|
|
|
| void Internals::stopTrackingRepaints(Document* document, ExceptionState& exceptionState)
|
| @@ -2015,7 +2015,7 @@ void Internals::stopTrackingRepaints(Document* document, ExceptionState& excepti
|
|
|
| FrameView* frameView = document->view();
|
| frameView->updateLayoutAndStyleForPainting();
|
| - frameView->setTracksRepaints(false);
|
| + frameView->setTracksPaintInvalidations(false);
|
| }
|
|
|
| void Internals::updateLayoutIgnorePendingStylesheetsAndRunPostLayoutTasks(ExceptionState& exceptionState)
|
|
|