| OLD | NEW |
| 1 /* | 1 /* |
| 2 * This file is part of the WebKit project. | 2 * This file is part of the WebKit project. |
| 3 * | 3 * |
| 4 * Copyright (C) 2007 Eric Seidel <eric@webkit.org> | 4 * Copyright (C) 2007 Eric Seidel <eric@webkit.org> |
| 5 * | 5 * |
| 6 * This library is free software; you can redistribute it and/or | 6 * This library is free software; you can redistribute it and/or |
| 7 * modify it under the terms of the GNU Library General Public | 7 * modify it under the terms of the GNU Library General Public |
| 8 * License as published by the Free Software Foundation; either | 8 * License as published by the Free Software Foundation; either |
| 9 * version 2 of the License, or (at your option) any later version. | 9 * version 2 of the License, or (at your option) any later version. |
| 10 * | 10 * |
| (...skipping 53 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 64 } | 64 } |
| 65 | 65 |
| 66 setNeedsLayout(false); | 66 setNeedsLayout(false); |
| 67 } | 67 } |
| 68 | 68 |
| 69 void RenderSVGHiddenContainer::paint(PaintInfo&, int, int) | 69 void RenderSVGHiddenContainer::paint(PaintInfo&, int, int) |
| 70 { | 70 { |
| 71 // This subtree does not paint. | 71 // This subtree does not paint. |
| 72 } | 72 } |
| 73 | 73 |
| 74 IntRect RenderSVGHiddenContainer::clippedOverflowRectForRepaint(RenderBoxModelOb
ject* /*repaintContainer*/) | 74 IntRect RenderSVGHiddenContainer::clippedOverflowRectForRepaint(RenderBox* /*rep
aintContainer*/) |
| 75 { | 75 { |
| 76 return IntRect(); | 76 return IntRect(); |
| 77 } | 77 } |
| 78 | 78 |
| 79 void RenderSVGHiddenContainer::absoluteRects(Vector<IntRect>&, int, int, bool) | 79 void RenderSVGHiddenContainer::absoluteRects(Vector<IntRect>&, int, int, bool) |
| 80 { | 80 { |
| 81 // This subtree does not take up space or paint | 81 // This subtree does not take up space or paint |
| 82 } | 82 } |
| 83 | 83 |
| 84 void RenderSVGHiddenContainer::absoluteQuads(Vector<FloatQuad>&, bool) | 84 void RenderSVGHiddenContainer::absoluteQuads(Vector<FloatQuad>&, bool) |
| (...skipping 17 matching lines...) Expand all Loading... |
| 102 } | 102 } |
| 103 | 103 |
| 104 FloatRect RenderSVGHiddenContainer::relativeBBox(bool) const | 104 FloatRect RenderSVGHiddenContainer::relativeBBox(bool) const |
| 105 { | 105 { |
| 106 return FloatRect(); | 106 return FloatRect(); |
| 107 } | 107 } |
| 108 | 108 |
| 109 } | 109 } |
| 110 | 110 |
| 111 #endif // ENABLE(SVG) | 111 #endif // ENABLE(SVG) |
| OLD | NEW |