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

Side by Side Diff: Source/core/rendering/RenderBlock.h

Issue 744493002: Let RenderTable reach table cells needing overflow recalc (Closed) Base URL: svn://svn.chromium.org/blink/trunk
Patch Set: Created 6 years 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 unified diff | Download patch | Annotate | Revision Log
OLDNEW
1 /* 1 /*
2 * Copyright (C) 1999 Lars Knoll (knoll@kde.org) 2 * Copyright (C) 1999 Lars Knoll (knoll@kde.org)
3 * (C) 1999 Antti Koivisto (koivisto@kde.org) 3 * (C) 1999 Antti Koivisto (koivisto@kde.org)
4 * (C) 2007 David Smith (catfish.man@gmail.com) 4 * (C) 2007 David Smith (catfish.man@gmail.com)
5 * Copyright (C) 2003, 2004, 2005, 2006, 2007, 2008, 2009, 2010 Apple Inc. All r ights reserved. 5 * Copyright (C) 2003, 2004, 2005, 2006, 2007, 2008, 2009, 2010 Apple Inc. All r ights reserved.
6 * 6 *
7 * This library is free software; you can redistribute it and/or 7 * This library is free software; you can redistribute it and/or
8 * modify it under the terms of the GNU Library General Public 8 * modify it under the terms of the GNU Library General Public
9 * License as published by the Free Software Foundation; either 9 * License as published by the Free Software Foundation; either
10 * version 2 of the License, or (at your option) any later version. 10 * version 2 of the License, or (at your option) any later version.
(...skipping 224 matching lines...) Expand 10 before | Expand all | Expand 10 after
235 virtual LayoutUnit logicalRightSelectionOffset(const RenderBlock* rootBlock, LayoutUnit position) const; 235 virtual LayoutUnit logicalRightSelectionOffset(const RenderBlock* rootBlock, LayoutUnit position) const;
236 236
237 #if ENABLE(ASSERT) 237 #if ENABLE(ASSERT)
238 void checkPositionedObjectsNeedLayout(); 238 void checkPositionedObjectsNeedLayout();
239 bool paintsContinuationOutline(RenderInline* flow); 239 bool paintsContinuationOutline(RenderInline* flow);
240 #endif 240 #endif
241 #ifndef NDEBUG 241 #ifndef NDEBUG
242 void showLineTreeAndMark(const InlineBox* = 0, const char* = 0, const Inline Box* = 0, const char* = 0, const RenderObject* = 0) const; 242 void showLineTreeAndMark(const InlineBox* = 0, const char* = 0, const Inline Box* = 0, const char* = 0, const RenderObject* = 0) const;
243 #endif 243 #endif
244 244
245 bool recalcChildOverflowAfterStyleChange(); 245 virtual bool recalcChildOverflowAfterStyleChange();
246 bool recalcOverflowAfterStyleChange(); 246 bool recalcOverflowAfterStyleChange();
247 247
248 protected: 248 protected:
249 virtual void willBeDestroyed() override; 249 virtual void willBeDestroyed() override;
250 250
251 void dirtyForLayoutFromPercentageHeightDescendants(SubtreeLayoutScope&); 251 void dirtyForLayoutFromPercentageHeightDescendants(SubtreeLayoutScope&);
252 252
253 virtual void layout() override; 253 virtual void layout() override;
254 virtual bool updateImageLoadingPriorities() override final; 254 virtual bool updateImageLoadingPriorities() override final;
255 255
(...skipping 218 matching lines...) Expand 10 before | Expand all | Expand 10 after
474 // FIXME: This is temporary as we move code that accesses block flow 474 // FIXME: This is temporary as we move code that accesses block flow
475 // member variables out of RenderBlock and into RenderBlockFlow. 475 // member variables out of RenderBlock and into RenderBlockFlow.
476 friend class RenderBlockFlow; 476 friend class RenderBlockFlow;
477 }; 477 };
478 478
479 DEFINE_RENDER_OBJECT_TYPE_CASTS(RenderBlock, isRenderBlock()); 479 DEFINE_RENDER_OBJECT_TYPE_CASTS(RenderBlock, isRenderBlock());
480 480
481 } // namespace blink 481 } // namespace blink
482 482
483 #endif // RenderBlock_h 483 #endif // RenderBlock_h
OLDNEW
« no previous file with comments | « LayoutTests/fast/table/table-cell-outline-change-expected.txt ('k') | Source/core/rendering/RenderBlock.cpp » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698