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

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

Issue 1907443003: Translate flow thread coords to the nearest enclosing coord space when appropriate. (Closed) Base URL: https://chromium.googlesource.com/chromium/src.git@master
Patch Set: Add a unit test too. Created 4 years, 8 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) 2000 Lars Knoll (knoll@kde.org) 2 * Copyright (C) 2000 Lars Knoll (knoll@kde.org)
3 * (C) 2000 Antti Koivisto (koivisto@kde.org) 3 * (C) 2000 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) 2003, 2004, 2005, 2006, 2007, 2008, 2009, 2012 Apple Inc. All r ights reserved. 6 * Copyright (C) 2003, 2004, 2005, 2006, 2007, 2008, 2009, 2012 Apple Inc. All r ights reserved.
7 * Copyright (C) 2009 Google Inc. All rights reserved. 7 * Copyright (C) 2009 Google Inc. All rights reserved.
8 * 8 *
9 * This library is free software; you can redistribute it and/or 9 * This library is free software; you can redistribute it and/or
10 * modify it under the terms of the GNU Library General Public 10 * modify it under the terms of the GNU Library General Public
(...skipping 1143 matching lines...) Expand 10 before | Expand all | Expand 10 after
1154 // The output rect is suitable for purposes such as paint invalidation. 1154 // The output rect is suitable for purposes such as paint invalidation.
1155 // 1155 //
1156 // If visualRectFlags has the EdgeInclusive bit set, clipping operations wil l use 1156 // If visualRectFlags has the EdgeInclusive bit set, clipping operations wil l use
1157 // LayoutRect::inclusiveIntersect, and the return value of inclusiveIntersec t will be propagated 1157 // LayoutRect::inclusiveIntersect, and the return value of inclusiveIntersec t will be propagated
1158 // to the return value of this method. Otherwise, clipping operations will use LayoutRect::intersect, 1158 // to the return value of this method. Otherwise, clipping operations will use LayoutRect::intersect,
1159 // and the return value will be true only if the clipped rect has non-zero a rea. 1159 // and the return value will be true only if the clipped rect has non-zero a rea.
1160 // See the documentation for LayoutRect::inclusiveIntersect for more informa tion. 1160 // See the documentation for LayoutRect::inclusiveIntersect for more informa tion.
1161 virtual bool mapToVisualRectInAncestorSpace(const LayoutBoxModelObject* ance stor, LayoutRect&, VisualRectFlags = DefaultVisualRectFlags) const; 1161 virtual bool mapToVisualRectInAncestorSpace(const LayoutBoxModelObject* ance stor, LayoutRect&, VisualRectFlags = DefaultVisualRectFlags) const;
1162 1162
1163 // Return the offset to the column in which the specified point (in flow-thr ead coordinates) 1163 // Return the offset to the column in which the specified point (in flow-thr ead coordinates)
1164 // lives. This is used to convert a flow-thread point to a visual point. 1164 // lives. This is used to convert a flow-thread point to a point in the cont aining coordinate space.
1165 virtual LayoutSize columnOffset(const LayoutPoint&) const { return LayoutSiz e(); } 1165 virtual LayoutSize columnOffset(const LayoutPoint&) const { return LayoutSiz e(); }
1166 1166
1167 virtual unsigned length() const { return 1; } 1167 virtual unsigned length() const { return 1; }
1168 1168
1169 bool isFloatingOrOutOfFlowPositioned() const { return (isFloating() || isOut OfFlowPositioned()); } 1169 bool isFloatingOrOutOfFlowPositioned() const { return (isFloating() || isOut OfFlowPositioned()); }
1170 1170
1171 bool isTransparent() const { return style()->hasOpacity(); } 1171 bool isTransparent() const { return style()->hasOpacity(); }
1172 float opacity() const { return style()->opacity(); } 1172 float opacity() const { return style()->opacity(); }
1173 1173
1174 bool hasReflection() const { return m_bitfields.hasReflection(); } 1174 bool hasReflection() const { return m_bitfields.hasReflection(); }
(...skipping 1000 matching lines...) Expand 10 before | Expand all | Expand 10 after
2175 void showTree(const blink::LayoutObject*); 2175 void showTree(const blink::LayoutObject*);
2176 void showLineTree(const blink::LayoutObject*); 2176 void showLineTree(const blink::LayoutObject*);
2177 void showLayoutTree(const blink::LayoutObject* object1); 2177 void showLayoutTree(const blink::LayoutObject* object1);
2178 // We don't make object2 an optional parameter so that showLayoutTree 2178 // We don't make object2 an optional parameter so that showLayoutTree
2179 // can be called from gdb easily. 2179 // can be called from gdb easily.
2180 void showLayoutTree(const blink::LayoutObject* object1, const blink::LayoutObjec t* object2); 2180 void showLayoutTree(const blink::LayoutObject* object1, const blink::LayoutObjec t* object2);
2181 2181
2182 #endif 2182 #endif
2183 2183
2184 #endif // LayoutObject_h 2184 #endif // LayoutObject_h
OLDNEW

Powered by Google App Engine
This is Rietveld 408576698