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

Unified Diff: Source/core/frame/FrameView.cpp

Issue 210043008: Kill outlineBox (Closed) Base URL: svn://svn.chromium.org/blink/trunk
Patch Set: Rebaselined patch, hoping it would solve the bot failure I can't reproduce locally Created 6 years, 9 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
Index: Source/core/frame/FrameView.cpp
diff --git a/Source/core/frame/FrameView.cpp b/Source/core/frame/FrameView.cpp
index d6c5470ba7ec0b39d8015b260803298c5af58637..0d5eecf114f556989f23815b154b7624da619087 100644
--- a/Source/core/frame/FrameView.cpp
+++ b/Source/core/frame/FrameView.cpp
@@ -1059,17 +1059,8 @@ void FrameView::repaintTree(RenderObject* root)
}
} else {
- LayoutRect oldOutlineRect;
- LayoutRect newOutlineRect;
-
- if (renderer->hasOutline()) {
- newOutlineRect = renderer->newOutlineRect();
- oldOutlineRect = renderer->oldOutlineRect();
- }
-
didFullRepaint = renderer->repaintAfterLayoutIfNeeded(renderer->containerForRepaint(),
- renderer->shouldDoFullRepaintAfterLayout(), oldRepaintRect, oldOutlineRect,
- &newRepaintRect, &newOutlineRect);
+ renderer->shouldDoFullRepaintAfterLayout(), oldRepaintRect, &newRepaintRect);
}
if (!didFullRepaint)
« no previous file with comments | « LayoutTests/platform/win/fast/repaint/table-collapsed-border-expected.txt ('k') | Source/core/html/HTMLAreaElement.cpp » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698