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

Side by Side Diff: Source/core/rendering/RenderBox.h

Issue 535913002: Add scrollbar logical width while computing intrinsic logical width (Closed) Base URL: https://chromium.googlesource.com/chromium/blink.git@master
Patch Set: Remove opera prefix from test Created 6 years 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/RenderBlock.cpp ('k') | Source/core/rendering/RenderBox.cpp » ('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 * 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 434 matching lines...) Expand 10 before | Expand all | Expand 10 after
445 virtual LayoutUnit availableLogicalHeight(AvailableLogicalHeightType) const; 445 virtual LayoutUnit availableLogicalHeight(AvailableLogicalHeightType) const;
446 LayoutUnit availableLogicalHeightUsing(const Length&, AvailableLogicalHeight Type) const; 446 LayoutUnit availableLogicalHeightUsing(const Length&, AvailableLogicalHeight Type) const;
447 447
448 // There are a few cases where we need to refer specifically to the availabl e physical width and available physical height. 448 // There are a few cases where we need to refer specifically to the availabl e physical width and available physical height.
449 // Relative positioning is one of those cases, since left/top offsets are ph ysical. 449 // Relative positioning is one of those cases, since left/top offsets are ph ysical.
450 LayoutUnit availableWidth() const { return style()->isHorizontalWritingMode( ) ? availableLogicalWidth() : availableLogicalHeight(IncludeMarginBorderPadding) ; } 450 LayoutUnit availableWidth() const { return style()->isHorizontalWritingMode( ) ? availableLogicalWidth() : availableLogicalHeight(IncludeMarginBorderPadding) ; }
451 LayoutUnit availableHeight() const { return style()->isHorizontalWritingMode () ? availableLogicalHeight(IncludeMarginBorderPadding) : availableLogicalWidth( ); } 451 LayoutUnit availableHeight() const { return style()->isHorizontalWritingMode () ? availableLogicalHeight(IncludeMarginBorderPadding) : availableLogicalWidth( ); }
452 452
453 virtual int verticalScrollbarWidth() const; 453 virtual int verticalScrollbarWidth() const;
454 int horizontalScrollbarHeight() const; 454 int horizontalScrollbarHeight() const;
455 int instrinsicScrollbarLogicalWidth() const; 455 int intrinsicScrollbarLogicalWidth() const;
456 int scrollbarLogicalHeight() const { return style()->isHorizontalWritingMode () ? horizontalScrollbarHeight() : verticalScrollbarWidth(); } 456 int scrollbarLogicalHeight() const { return style()->isHorizontalWritingMode () ? horizontalScrollbarHeight() : verticalScrollbarWidth(); }
457 virtual bool scroll(ScrollDirection, ScrollGranularity, float delta = 1); 457 virtual bool scroll(ScrollDirection, ScrollGranularity, float delta = 1);
458 bool canBeScrolledAndHasScrollableArea() const; 458 bool canBeScrolledAndHasScrollableArea() const;
459 virtual bool canBeProgramaticallyScrolled() const; 459 virtual bool canBeProgramaticallyScrolled() const;
460 virtual void autoscroll(const IntPoint&); 460 virtual void autoscroll(const IntPoint&);
461 bool canAutoscroll() const; 461 bool canAutoscroll() const;
462 IntSize calculateAutoscrollDirection(const IntPoint& windowPoint) const; 462 IntSize calculateAutoscrollDirection(const IntPoint& windowPoint) const;
463 static RenderBox* findAutoscrollable(RenderObject*); 463 static RenderBox* findAutoscrollable(RenderObject*);
464 virtual void stopAutoscroll() { } 464 virtual void stopAutoscroll() { }
465 virtual void panScroll(const IntPoint&); 465 virtual void panScroll(const IntPoint&);
(...skipping 341 matching lines...) Expand 10 before | Expand all | Expand 10 after
807 if (UNLIKELY(inlineBoxWrapper() != 0)) 807 if (UNLIKELY(inlineBoxWrapper() != 0))
808 deleteLineBoxWrapper(); 808 deleteLineBoxWrapper();
809 } 809 }
810 810
811 ensureRareData().m_inlineBoxWrapper = boxWrapper; 811 ensureRareData().m_inlineBoxWrapper = boxWrapper;
812 } 812 }
813 813
814 } // namespace blink 814 } // namespace blink
815 815
816 #endif // RenderBox_h 816 #endif // RenderBox_h
OLDNEW
« no previous file with comments | « Source/core/rendering/RenderBlock.cpp ('k') | Source/core/rendering/RenderBox.cpp » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698