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

Side by Side Diff: Source/core/layout/LayoutObject.cpp

Issue 1144423007: Allow setNeedsLayout on positioned objects when no parent container (Closed) Base URL: https://chromium.googlesource.com/chromium/blink.git@master
Patch Set: Created 5 years, 6 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 | « no previous file | no next file » | 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 740 matching lines...) Expand 10 before | Expand all | Expand 10 after
751 751
752 bool simplifiedNormalFlowLayout = needsSimplifiedNormalFlowLayout() && !self NeedsLayout() && !normalChildNeedsLayout(); 752 bool simplifiedNormalFlowLayout = needsSimplifiedNormalFlowLayout() && !self NeedsLayout() && !normalChildNeedsLayout();
753 753
754 while (object) { 754 while (object) {
755 if (object->selfNeedsLayout()) 755 if (object->selfNeedsLayout())
756 return; 756 return;
757 757
758 // Don't mark the outermost object of an unrooted subtree. That object w ill be 758 // Don't mark the outermost object of an unrooted subtree. That object w ill be
759 // marked when the subtree is added to the document. 759 // marked when the subtree is added to the document.
760 LayoutObject* container = object->container(); 760 LayoutObject* container = object->container();
761 if (!container && !object->isLayoutView()) 761 if (!container && !(object->isLayoutView() || object->isPositioned()))
762 return; 762 return;
763 if (!last->isTextOrSVGChild() && last->style()->hasOutOfFlowPosition()) { 763 if (!last->isTextOrSVGChild() && last->style()->hasOutOfFlowPosition()) {
764 bool willSkipRelativelyPositionedInlines = !object->isLayoutBlock() || object->isAnonymousBlock(); 764 bool willSkipRelativelyPositionedInlines = !object->isLayoutBlock() || object->isAnonymousBlock();
765 // Skip relatively positioned inlines and anonymous blocks to get to the enclosing LayoutBlock. 765 // Skip relatively positioned inlines and anonymous blocks to get to the enclosing LayoutBlock.
766 while (object && (!object->isLayoutBlock() || object->isAnonymousBlo ck())) 766 while (object && (!object->isLayoutBlock() || object->isAnonymousBlo ck()))
767 object = object->container(); 767 object = object->container();
768 if (!object || object->posChildNeedsLayout()) 768 if (!object || object->posChildNeedsLayout())
769 return; 769 return;
770 if (willSkipRelativelyPositionedInlines) 770 if (willSkipRelativelyPositionedInlines)
771 container = object->container(); 771 container = object->container();
(...skipping 2528 matching lines...) Expand 10 before | Expand all | Expand 10 after
3300 const blink::LayoutObject* root = object1; 3300 const blink::LayoutObject* root = object1;
3301 while (root->parent()) 3301 while (root->parent())
3302 root = root->parent(); 3302 root = root->parent();
3303 root->showLayoutTreeAndMark(object1, "*", object2, "-", 0); 3303 root->showLayoutTreeAndMark(object1, "*", object2, "-", 0);
3304 } else { 3304 } else {
3305 fprintf(stderr, "Cannot showLayoutTree. Root is (nil)\n"); 3305 fprintf(stderr, "Cannot showLayoutTree. Root is (nil)\n");
3306 } 3306 }
3307 } 3307 }
3308 3308
3309 #endif 3309 #endif
OLDNEW
« no previous file with comments | « no previous file | no next file » | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698