| OLD | NEW |
| 1 /* | 1 /* |
| 2 * Copyright (C) 2011 Robert Hogan <robert@roberthogan.net> | 2 * Copyright (C) 2011 Robert Hogan <robert@roberthogan.net> |
| 3 * | 3 * |
| 4 * This library is free software; you can redistribute it and/or | 4 * This library is free software; you can redistribute it and/or |
| 5 * modify it under the terms of the GNU Library General Public | 5 * modify it under the terms of the GNU Library General Public |
| 6 * License as published by the Free Software Foundation; either | 6 * License as published by the Free Software Foundation; either |
| 7 * version 2 of the License, or (at your option) any later version. | 7 * version 2 of the License, or (at your option) any later version. |
| 8 * | 8 * |
| 9 * This library is distributed in the hope that it will be useful, | 9 * This library is distributed in the hope that it will be useful, |
| 10 * but WITHOUT ANY WARRANTY; without even the implied warranty of | 10 * but WITHOUT ANY WARRANTY; without even the implied warranty of |
| (...skipping 17 matching lines...) Expand all Loading... |
| 28 | 28 |
| 29 class RenderTableCaption FINAL : public RenderBlock { | 29 class RenderTableCaption FINAL : public RenderBlock { |
| 30 public: | 30 public: |
| 31 explicit RenderTableCaption(Element*); | 31 explicit RenderTableCaption(Element*); |
| 32 virtual ~RenderTableCaption(); | 32 virtual ~RenderTableCaption(); |
| 33 virtual LayoutUnit containingBlockLogicalWidthForContent() const OVERRIDE; | 33 virtual LayoutUnit containingBlockLogicalWidthForContent() const OVERRIDE; |
| 34 | 34 |
| 35 private: | 35 private: |
| 36 virtual bool isTableCaption() const OVERRIDE { return true; } | 36 virtual bool isTableCaption() const OVERRIDE { return true; } |
| 37 | 37 |
| 38 virtual bool supportsPartialLayout() const OVERRIDE { return false; } |
| 39 |
| 38 virtual void insertedIntoTree() OVERRIDE; | 40 virtual void insertedIntoTree() OVERRIDE; |
| 39 virtual void willBeRemovedFromTree() OVERRIDE; | 41 virtual void willBeRemovedFromTree() OVERRIDE; |
| 40 | 42 |
| 41 RenderTable* table() const; | 43 RenderTable* table() const; |
| 42 }; | 44 }; |
| 43 | 45 |
| 44 inline RenderTableCaption* toRenderTableCaption(RenderObject* object) | 46 inline RenderTableCaption* toRenderTableCaption(RenderObject* object) |
| 45 { | 47 { |
| 46 ASSERT_WITH_SECURITY_IMPLICATION(!object || object->isTableCaption()); | 48 ASSERT_WITH_SECURITY_IMPLICATION(!object || object->isTableCaption()); |
| 47 return static_cast<RenderTableCaption*>(object); | 49 return static_cast<RenderTableCaption*>(object); |
| 48 } | 50 } |
| 49 | 51 |
| 50 inline const RenderTableCaption* toRenderTableCaption(const RenderObject* object
) | 52 inline const RenderTableCaption* toRenderTableCaption(const RenderObject* object
) |
| 51 { | 53 { |
| 52 ASSERT_WITH_SECURITY_IMPLICATION(!object || object->isTableCaption()); | 54 ASSERT_WITH_SECURITY_IMPLICATION(!object || object->isTableCaption()); |
| 53 return static_cast<const RenderTableCaption*>(object); | 55 return static_cast<const RenderTableCaption*>(object); |
| 54 } | 56 } |
| 55 | 57 |
| 56 // This will catch anyone doing an unnecessary cast. | 58 // This will catch anyone doing an unnecessary cast. |
| 57 void toRenderTableCaption(const RenderTableCaption*); | 59 void toRenderTableCaption(const RenderTableCaption*); |
| 58 | 60 |
| 59 } // namespace WebCore | 61 } // namespace WebCore |
| 60 | 62 |
| 61 #endif // RenderTableCaption_h | 63 #endif // RenderTableCaption_h |
| OLD | NEW |