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 68 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
79 IntRect RenderSVGHiddenContainer::absoluteClippedOverflowRect() | 79 IntRect RenderSVGHiddenContainer::absoluteClippedOverflowRect() |
80 { | 80 { |
81 return IntRect(); | 81 return IntRect(); |
82 } | 82 } |
83 | 83 |
84 void RenderSVGHiddenContainer::absoluteRects(Vector<IntRect>& rects, int, int, b
ool) | 84 void RenderSVGHiddenContainer::absoluteRects(Vector<IntRect>& rects, int, int, b
ool) |
85 { | 85 { |
86 // This subtree does not take up space or paint | 86 // This subtree does not take up space or paint |
87 } | 87 } |
88 | 88 |
| 89 void RenderSVGHiddenContainer::absoluteQuads(Vector<FloatQuad>& quads, bool topL
evel) |
| 90 { |
| 91 // This subtree does not take up space or paint |
| 92 } |
| 93 |
89 AffineTransform RenderSVGHiddenContainer::absoluteTransform() const | 94 AffineTransform RenderSVGHiddenContainer::absoluteTransform() const |
90 { | 95 { |
91 return AffineTransform(); | 96 return AffineTransform(); |
92 } | 97 } |
93 | 98 |
94 AffineTransform RenderSVGHiddenContainer::localTransform() const | 99 AffineTransform RenderSVGHiddenContainer::localTransform() const |
95 { | 100 { |
96 return AffineTransform(); | 101 return AffineTransform(); |
97 } | 102 } |
98 | 103 |
99 bool RenderSVGHiddenContainer::nodeAtPoint(const HitTestRequest& request, HitTes
tResult& result, int _x, int _y, int _tx, int _ty, HitTestAction hitTestAction) | 104 bool RenderSVGHiddenContainer::nodeAtPoint(const HitTestRequest& request, HitTes
tResult& result, int _x, int _y, int _tx, int _ty, HitTestAction hitTestAction) |
100 { | 105 { |
101 return false; | 106 return false; |
102 } | 107 } |
103 | 108 |
104 FloatRect RenderSVGHiddenContainer::relativeBBox(bool includeStroke) const | 109 FloatRect RenderSVGHiddenContainer::relativeBBox(bool includeStroke) const |
105 { | 110 { |
106 return FloatRect(); | 111 return FloatRect(); |
107 } | 112 } |
108 | 113 |
109 } | 114 } |
110 | 115 |
111 #endif // ENABLE(SVG) | 116 #endif // ENABLE(SVG) |
OLD | NEW |