Changeset 152089 in webkit
- Timestamp:
- Jun 27, 2013, 3:35:07 AM (12 years ago)
- Location:
- trunk/Source/WebCore
- Files:
-
- 2 edited
Legend:
- Unmodified
- Added
- Removed
-
trunk/Source/WebCore/ChangeLog
r152088 r152089 1 2013-06-27 Zoltan Arvai <zarvai@inf.u-szeged.hu> 2 3 Buildfix for !ENABLE(SVG) builds. 4 5 Reviewed by Csaba Osztrogonác. 6 7 Moving RenderObject::hasAspectRatio() outside from ENABLE(SVG) guard. 8 9 * rendering/RenderObject.h: 10 (WebCore::RenderObject::hasAspectRatio): 11 1 12 2013-06-27 Kangil Han <kangil.han@samsung.com> 2 13 -
trunk/Source/WebCore/rendering/RenderObject.h
r151997 r152089 479 479 virtual bool isSVGResourceFilterPrimitive() const { return false; } 480 480 481 bool hasAspectRatio() const { return isReplaced() && (isImage() || isVideo() || isCanvas()); }482 483 481 virtual RenderSVGResourceContainer* toRenderSVGResourceContainer(); 484 482 … … 517 515 #endif 518 516 517 bool hasAspectRatio() const { return isReplaced() && (isImage() || isVideo() || isCanvas()); } 519 518 bool isAnonymous() const { return m_bitfields.isAnonymous(); } 520 519 bool isAnonymousBlock() const
Note:
See TracChangeset
for help on using the changeset viewer.