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

Side by Side Diff: third_party/WebKit/Source/core/layout/LayoutBlock.h

Issue 2154593003: [css-grid] Fix indefinite height detection (Closed) Base URL: https://chromium.googlesource.com/chromium/src.git@master
Patch Set: Use 2 lines for bool includeBorderPadding Created 4 years, 5 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
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 208 matching lines...) Expand 10 before | Expand all | Expand 10 after
219 LayoutUnit startOffsetForContent() const { return style()->isLeftToRightDire ction() ? logicalLeftOffsetForContent() : logicalWidth() - logicalRightOffsetFor Content(); } 219 LayoutUnit startOffsetForContent() const { return style()->isLeftToRightDire ction() ? logicalLeftOffsetForContent() : logicalWidth() - logicalRightOffsetFor Content(); }
220 LayoutUnit endOffsetForContent() const { return !style()->isLeftToRightDirec tion() ? logicalLeftOffsetForContent() : logicalWidth() - logicalRightOffsetForC ontent(); } 220 LayoutUnit endOffsetForContent() const { return !style()->isLeftToRightDirec tion() ? logicalLeftOffsetForContent() : logicalWidth() - logicalRightOffsetForC ontent(); }
221 221
222 virtual LayoutUnit logicalLeftSelectionOffset(const LayoutBlock* rootBlock, LayoutUnit position) const; 222 virtual LayoutUnit logicalLeftSelectionOffset(const LayoutBlock* rootBlock, LayoutUnit position) const;
223 virtual LayoutUnit logicalRightSelectionOffset(const LayoutBlock* rootBlock, LayoutUnit position) const; 223 virtual LayoutUnit logicalRightSelectionOffset(const LayoutBlock* rootBlock, LayoutUnit position) const;
224 224
225 #if ENABLE(ASSERT) 225 #if ENABLE(ASSERT)
226 void checkPositionedObjectsNeedLayout(); 226 void checkPositionedObjectsNeedLayout();
227 #endif 227 #endif
228 228
229 static LayoutUnit availableLogicalHeightForPercentageComputation(const Layou tBlock&);
cbiesinger 2016/07/21 20:57:28 Why make this a static function and pass in a bloc
Manuel Rego 2016/07/22 13:05:37 Yeah good idea it can be a member const function,
230 bool hasDefiniteLogicalHeight() const;
231
229 protected: 232 protected:
230 bool recalcNormalFlowChildOverflowIfNeeded(LayoutObject*); 233 bool recalcNormalFlowChildOverflowIfNeeded(LayoutObject*);
231 bool recalcPositionedDescendantsOverflowAfterStyleChange(); 234 bool recalcPositionedDescendantsOverflowAfterStyleChange();
232 public: 235 public:
233 virtual bool recalcChildOverflowAfterStyleChange(); 236 virtual bool recalcChildOverflowAfterStyleChange();
234 bool recalcOverflowAfterStyleChange(); 237 bool recalcOverflowAfterStyleChange();
235 238
236 // An example explaining layout tree structure about first-line style: 239 // An example explaining layout tree structure about first-line style:
237 // <style> 240 // <style>
238 // #enclosingFirstLineStyleBlock::first-line { ... } 241 // #enclosingFirstLineStyleBlock::first-line { ... }
(...skipping 175 matching lines...) Expand 10 before | Expand all | Expand 10 after
414 // FIXME: This is temporary as we move code that accesses block flow 417 // FIXME: This is temporary as we move code that accesses block flow
415 // member variables out of LayoutBlock and into LayoutBlockFlow. 418 // member variables out of LayoutBlock and into LayoutBlockFlow.
416 friend class LayoutBlockFlow; 419 friend class LayoutBlockFlow;
417 }; 420 };
418 421
419 DEFINE_LAYOUT_OBJECT_TYPE_CASTS(LayoutBlock, isLayoutBlock()); 422 DEFINE_LAYOUT_OBJECT_TYPE_CASTS(LayoutBlock, isLayoutBlock());
420 423
421 } // namespace blink 424 } // namespace blink
422 425
423 #endif // LayoutBlock_h 426 #endif // LayoutBlock_h
OLDNEW

Powered by Google App Engine
This is Rietveld 408576698