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

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: Fix fast/table/003.html test 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 bool hasDefiniteLogicalHeight() const;
230
229 protected: 231 protected:
230 bool recalcNormalFlowChildOverflowIfNeeded(LayoutObject*); 232 bool recalcNormalFlowChildOverflowIfNeeded(LayoutObject*);
231 bool recalcPositionedDescendantsOverflowAfterStyleChange(); 233 bool recalcPositionedDescendantsOverflowAfterStyleChange();
232 public: 234 public:
233 virtual bool recalcChildOverflowAfterStyleChange(); 235 virtual bool recalcChildOverflowAfterStyleChange();
234 bool recalcOverflowAfterStyleChange(); 236 bool recalcOverflowAfterStyleChange();
235 237
236 // An example explaining layout tree structure about first-line style: 238 // An example explaining layout tree structure about first-line style:
237 // <style> 239 // <style>
238 // #enclosingFirstLineStyleBlock::first-line { ... } 240 // #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 416 // FIXME: This is temporary as we move code that accesses block flow
415 // member variables out of LayoutBlock and into LayoutBlockFlow. 417 // member variables out of LayoutBlock and into LayoutBlockFlow.
416 friend class LayoutBlockFlow; 418 friend class LayoutBlockFlow;
417 }; 419 };
418 420
419 DEFINE_LAYOUT_OBJECT_TYPE_CASTS(LayoutBlock, isLayoutBlock()); 421 DEFINE_LAYOUT_OBJECT_TYPE_CASTS(LayoutBlock, isLayoutBlock());
420 422
421 } // namespace blink 423 } // namespace blink
422 424
423 #endif // LayoutBlock_h 425 #endif // LayoutBlock_h
OLDNEW

Powered by Google App Engine
This is Rietveld 408576698