Chromium Code Reviews
chromiumcodereview-hr@appspot.gserviceaccount.com (chromiumcodereview-hr) | Please choose your nickname with Settings | Help | Chromium Project | Gerrit Changes | Sign out
(1652)

Unified Diff: WebCore/rendering/RenderTreeAsText.cpp

Issue 28077: WebKit side of merge from r41149 to r41181. (Closed) Base URL: svn://chrome-svn/chrome/trunk/deps/third_party/WebKit/
Patch Set: Created 11 years, 10 months ago
Use n/p to move between diff chunks; N/P to move between comments. Draft comments are only viewable by you.
Jump to:
View side-by-side diff with in-line comments
Download patch
« no previous file with comments | « WebCore/rendering/RenderLayer.cpp ('k') | WebCore/xml/XMLHttpRequest.h » ('j') | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: WebCore/rendering/RenderTreeAsText.cpp
===================================================================
--- WebCore/rendering/RenderTreeAsText.cpp (revision 10232)
+++ WebCore/rendering/RenderTreeAsText.cpp (working copy)
@@ -457,7 +457,7 @@
// Ensure our lists are up-to-date.
l->updateZOrderLists();
- l->updateOverflowList();
+ l->updateNormalFlowList();
bool shouldPaint = l->intersectsDamageRect(layerBounds, damageRect, rootLayer);
Vector<RenderLayer*>* negList = l->negZOrderList();
@@ -472,7 +472,7 @@
if (shouldPaint)
write(ts, *l, layerBounds, damageRect, clipRectToApply, outlineRect, negList && negList->size() > 0, indent);
- Vector<RenderLayer*>* overflowList = l->overflowList();
+ Vector<RenderLayer*>* overflowList = l->normalFlowList();
if (overflowList) {
for (unsigned i = 0; i != overflowList->size(); ++i)
writeLayers(ts, rootLayer, overflowList->at(i), paintDirtyRect, indent);
« no previous file with comments | « WebCore/rendering/RenderLayer.cpp ('k') | WebCore/xml/XMLHttpRequest.h » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698