| Index: Source/WebCore/rendering/RenderObject.h
|
| ===================================================================
|
| --- Source/WebCore/rendering/RenderObject.h (revision 109403)
|
| +++ Source/WebCore/rendering/RenderObject.h (working copy)
|
| @@ -58,6 +58,7 @@
|
| class RenderBlock;
|
| class RenderFlowThread;
|
| class RenderLayer;
|
| +class RenderTable;
|
| class RenderTheme;
|
| class TransformState;
|
| class VisiblePosition;
|
| @@ -219,6 +220,8 @@
|
| // normal flow object.
|
| void handleDynamicFloatPositionChange();
|
|
|
| + RenderTable* createAnonymousTable() const;
|
| +
|
| // RenderObject tree manipulation
|
| //////////////////////////////////////////
|
| virtual bool canHaveChildren() const { return virtualChildren(); }
|
| @@ -350,6 +353,8 @@
|
|
|
| bool isHTMLMarquee() const;
|
|
|
| + bool isTablePart() const { return isTableCell() || isTableCol() || isTableCaption() || isTableRow() || isTableSection(); }
|
| +
|
| inline bool isBeforeContent() const;
|
| inline bool isAfterContent() const;
|
| inline bool isBeforeOrAfterContent() const;
|
|
|