diff options
Diffstat (limited to 'WebCore/mathml/RenderMathMLBlock.h')
-rw-r--r-- | WebCore/mathml/RenderMathMLBlock.h | 6 |
1 files changed, 6 insertions, 0 deletions
diff --git a/WebCore/mathml/RenderMathMLBlock.h b/WebCore/mathml/RenderMathMLBlock.h index b274a69..e01a325 100644 --- a/WebCore/mathml/RenderMathMLBlock.h +++ b/WebCore/mathml/RenderMathMLBlock.h @@ -30,6 +30,8 @@ #include "RenderBlock.h" +#define ENABLE_DEBUG_MATH_LAYOUT 0 + namespace WebCore { class RenderMathMLBlock : public RenderBlock { @@ -44,6 +46,10 @@ public: virtual bool hasBase() const { return false; } virtual int nonOperatorHeight() const; virtual void stretchToHeight(int height); + +#if ENABLE(DEBUG_MATH_LAYOUT) + virtual void paint(PaintInfo&, int tx, int ty); +#endif protected: virtual PassRefPtr<RenderStyle> makeBlockStyle(); |