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

Side by Side Diff: Source/core/rendering/RenderObject.cpp

Issue 296413007: [New Multicolumn] Add support for column-span:all (Closed) Base URL: https://chromium.googlesource.com/chromium/blink.git@359976
Patch Set: code review Created 6 years, 3 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 unified diff | Download patch
« no previous file with comments | « Source/core/rendering/RenderObject.h ('k') | Source/core/rendering/RenderPagedFlowThread.h » ('j') | no next file with comments »
Toggle Intra-line Diffs ('i') | Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
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) 2000 Dirk Mueller (mueller@kde.org) 4 * (C) 2000 Dirk Mueller (mueller@kde.org)
5 * (C) 2004 Allan Sandfeld Jensen (kde@carewolf.com) 5 * (C) 2004 Allan Sandfeld Jensen (kde@carewolf.com)
6 * Copyright (C) 2004, 2005, 2006, 2007, 2008, 2011 Apple Inc. All rights reserv ed. 6 * Copyright (C) 2004, 2005, 2006, 2007, 2008, 2011 Apple Inc. All rights reserv ed.
7 * Copyright (C) 2009 Google Inc. All rights reserved. 7 * Copyright (C) 2009 Google Inc. All rights reserved.
8 * Copyright (C) 2009 Torch Mobile Inc. All rights reserved. (http://www.torchmo bile.com/) 8 * Copyright (C) 2009 Torch Mobile Inc. All rights reserved. (http://www.torchmo bile.com/)
9 * 9 *
10 * This library is free software; you can redistribute it and/or 10 * This library is free software; you can redistribute it and/or
(...skipping 2717 matching lines...) Expand 10 before | Expand all | Expand 10 after
2728 // that needs to be drawn and layer visibility optimization can't be used 2728 // that needs to be drawn and layer visibility optimization can't be used
2729 if (parent()->style()->visibility() != VISIBLE && style()->visibility() == V ISIBLE && !hasLayer()) { 2729 if (parent()->style()->visibility() != VISIBLE && style()->visibility() == V ISIBLE && !hasLayer()) {
2730 if (!layer) 2730 if (!layer)
2731 layer = parent()->enclosingLayer(); 2731 layer = parent()->enclosingLayer();
2732 if (layer) 2732 if (layer)
2733 layer->dirtyVisibleContentStatus(); 2733 layer->dirtyVisibleContentStatus();
2734 } 2734 }
2735 2735
2736 if (!isFloating() && parent()->childrenInline()) 2736 if (!isFloating() && parent()->childrenInline())
2737 parent()->dirtyLinesFromChangedChild(this); 2737 parent()->dirtyLinesFromChangedChild(this);
2738
2739 if (RenderFlowThread* flowThread = parent()->flowThreadContainingBlock())
2740 flowThread->flowThreadDescendantInserted(this);
2738 } 2741 }
2739 2742
2740 void RenderObject::willBeRemovedFromTree() 2743 void RenderObject::willBeRemovedFromTree()
2741 { 2744 {
2742 // FIXME: We should ASSERT(isRooted()) but we have some out-of-order removal s which would need to be fixed first. 2745 // FIXME: We should ASSERT(isRooted()) but we have some out-of-order removal s which would need to be fixed first.
2743 2746
2744 // If we remove a visible child from an invisible parent, we don't know the layer visibility any more. 2747 // If we remove a visible child from an invisible parent, we don't know the layer visibility any more.
2745 RenderLayer* layer = 0; 2748 RenderLayer* layer = 0;
2746 if (parent()->style()->visibility() != VISIBLE && style()->visibility() == V ISIBLE && !hasLayer()) { 2749 if (parent()->style()->visibility() != VISIBLE && style()->visibility() == V ISIBLE && !hasLayer()) {
2747 layer = parent()->enclosingLayer(); 2750 layer = parent()->enclosingLayer();
(...skipping 30 matching lines...) Expand all
2778 removeFromRenderFlowThreadRecursive(flowThreadContainingBlock()); 2781 removeFromRenderFlowThreadRecursive(flowThreadContainingBlock());
2779 } 2782 }
2780 2783
2781 void RenderObject::removeFromRenderFlowThreadRecursive(RenderFlowThread* renderF lowThread) 2784 void RenderObject::removeFromRenderFlowThreadRecursive(RenderFlowThread* renderF lowThread)
2782 { 2785 {
2783 if (const RenderObjectChildList* children = virtualChildren()) { 2786 if (const RenderObjectChildList* children = virtualChildren()) {
2784 for (RenderObject* child = children->firstChild(); child; child = child- >nextSibling()) 2787 for (RenderObject* child = children->firstChild(); child; child = child- >nextSibling())
2785 child->removeFromRenderFlowThreadRecursive(renderFlowThread); 2788 child->removeFromRenderFlowThreadRecursive(renderFlowThread);
2786 } 2789 }
2787 2790
2791 if (renderFlowThread)
2792 renderFlowThread->flowThreadDescendantOrSiblingWillBeRemoved(this);
2788 setFlowThreadState(NotInsideFlowThread); 2793 setFlowThreadState(NotInsideFlowThread);
2789 } 2794 }
2790 2795
2791 void RenderObject::destroyAndCleanupAnonymousWrappers() 2796 void RenderObject::destroyAndCleanupAnonymousWrappers()
2792 { 2797 {
2793 // If the tree is destroyed, there is no need for a clean-up phase. 2798 // If the tree is destroyed, there is no need for a clean-up phase.
2794 if (documentBeingDestroyed()) { 2799 if (documentBeingDestroyed()) {
2795 destroy(); 2800 destroy();
2796 return; 2801 return;
2797 } 2802 }
(...skipping 683 matching lines...) Expand 10 before | Expand all | Expand 10 after
3481 { 3486 {
3482 if (object1) { 3487 if (object1) {
3483 const blink::RenderObject* root = object1; 3488 const blink::RenderObject* root = object1;
3484 while (root->parent()) 3489 while (root->parent())
3485 root = root->parent(); 3490 root = root->parent();
3486 root->showRenderTreeAndMark(object1, "*", object2, "-", 0); 3491 root->showRenderTreeAndMark(object1, "*", object2, "-", 0);
3487 } 3492 }
3488 } 3493 }
3489 3494
3490 #endif 3495 #endif
OLDNEW
« no previous file with comments | « Source/core/rendering/RenderObject.h ('k') | Source/core/rendering/RenderPagedFlowThread.h » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698