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

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

Issue 842193004: [css-grid] Handle alignment with orthogonal flows (Closed) Base URL: https://chromium.googlesource.com/chromium/blink.git@orthogonal-flows
Patch Set: Patch rebased. Created 4 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
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 * Copyright (C) 2003, 2006, 2007 Apple Inc. All rights reserved. 4 * Copyright (C) 2003, 2006, 2007 Apple Inc. All rights reserved.
5 * 5 *
6 * This library is free software; you can redistribute it and/or 6 * This library is free software; you can redistribute it and/or
7 * modify it under the terms of the GNU Library General Public 7 * modify it under the terms of the GNU Library General Public
8 * License as published by the Free Software Foundation; either 8 * License as published by the Free Software Foundation; either
9 * version 2 of the License, or (at your option) any later version. 9 * version 2 of the License, or (at your option) any later version.
10 * 10 *
(...skipping 534 matching lines...) Expand 10 before | Expand all | Expand 10 after
545 void clearOverrideLogicalContentWidth(); 545 void clearOverrideLogicalContentWidth();
546 546
547 LayoutUnit overrideContainingBlockContentLogicalWidth() const; 547 LayoutUnit overrideContainingBlockContentLogicalWidth() const;
548 LayoutUnit overrideContainingBlockContentLogicalHeight() const; 548 LayoutUnit overrideContainingBlockContentLogicalHeight() const;
549 bool hasOverrideContainingBlockLogicalWidth() const; 549 bool hasOverrideContainingBlockLogicalWidth() const;
550 bool hasOverrideContainingBlockLogicalHeight() const; 550 bool hasOverrideContainingBlockLogicalHeight() const;
551 void setOverrideContainingBlockContentLogicalWidth(LayoutUnit); 551 void setOverrideContainingBlockContentLogicalWidth(LayoutUnit);
552 void setOverrideContainingBlockContentLogicalHeight(LayoutUnit); 552 void setOverrideContainingBlockContentLogicalHeight(LayoutUnit);
553 void clearContainingBlockOverrideSize(); 553 void clearContainingBlockOverrideSize();
554 void clearOverrideContainingBlockContentLogicalHeight(); 554 void clearOverrideContainingBlockContentLogicalHeight();
555 LayoutUnit overrideContainingBlockContentWidth() const;
556 LayoutUnit overrideContainingBlockContentHeight() const;
557 bool hasOverrideContainingBlockWidth() const;
558 bool hasOverrideContainingBlockHeight() const;
555 559
556 LayoutUnit extraInlineOffset() const; 560 LayoutUnit extraInlineOffset() const;
557 LayoutUnit extraBlockOffset() const; 561 LayoutUnit extraBlockOffset() const;
558 void setExtraInlineOffset(LayoutUnit inlineOffest); 562 void setExtraInlineOffset(LayoutUnit inlineOffest);
559 void setExtraBlockOffset(LayoutUnit blockOffest); 563 void setExtraBlockOffset(LayoutUnit blockOffest);
560 void clearExtraInlineAndBlockOffests(); 564 void clearExtraInlineAndBlockOffests();
561 565
562 LayoutSize offsetFromContainer(const LayoutObject*) const override; 566 LayoutSize offsetFromContainer(const LayoutObject*) const override;
563 567
564 LayoutUnit adjustBorderBoxLogicalWidthForBoxSizing(float width) const; 568 LayoutUnit adjustBorderBoxLogicalWidthForBoxSizing(float width) const;
(...skipping 663 matching lines...) Expand 10 before | Expand all | Expand 10 after
1228 || breakValue == BreakLeft 1232 || breakValue == BreakLeft
1229 || breakValue == BreakPage 1233 || breakValue == BreakPage
1230 || breakValue == BreakRecto 1234 || breakValue == BreakRecto
1231 || breakValue == BreakRight 1235 || breakValue == BreakRight
1232 || breakValue == BreakVerso; 1236 || breakValue == BreakVerso;
1233 } 1237 }
1234 1238
1235 } // namespace blink 1239 } // namespace blink
1236 1240
1237 #endif // LayoutBox_h 1241 #endif // LayoutBox_h
OLDNEW

Powered by Google App Engine
This is Rietveld 408576698