| OLD | NEW |
| 1 /* | 1 /* |
| 2 * Copyright (C) 2006 Apple Computer, Inc. | 2 * Copyright (C) 2006 Apple Computer, Inc. |
| 3 * Copyright (C) 2006 Alexander Kellett <lypanov@kde.org> | 3 * Copyright (C) 2006 Alexander Kellett <lypanov@kde.org> |
| 4 * Copyright (C) 2006 Oliver Hunt <ojh16@student.canterbury.ac.nz> | 4 * Copyright (C) 2006 Oliver Hunt <ojh16@student.canterbury.ac.nz> |
| 5 * Copyright (C) 2007 Nikolas Zimmermann <zimmermann@kde.org> | 5 * Copyright (C) 2007 Nikolas Zimmermann <zimmermann@kde.org> |
| 6 * Copyright (C) 2008 Rob Buis <buis@kde.org> | 6 * Copyright (C) 2008 Rob Buis <buis@kde.org> |
| 7 * Copyright (C) 2009 Dirk Schulze <krit@webkit.org> | 7 * Copyright (C) 2009 Dirk Schulze <krit@webkit.org> |
| 8 * Copyright (C) Research In Motion Limited 2010-2012. All rights reserved. | 8 * Copyright (C) Research In Motion Limited 2010-2012. All rights reserved. |
| 9 * Copyright (C) 2012 Google Inc. | 9 * Copyright (C) 2012 Google Inc. |
| 10 * | 10 * |
| (...skipping 13 matching lines...) Expand all Loading... |
| 24 * Boston, MA 02110-1301, USA. | 24 * Boston, MA 02110-1301, USA. |
| 25 */ | 25 */ |
| 26 | 26 |
| 27 #include "config.h" | 27 #include "config.h" |
| 28 | 28 |
| 29 #include "core/rendering/svg/RenderSVGText.h" | 29 #include "core/rendering/svg/RenderSVGText.h" |
| 30 | 30 |
| 31 #include "core/rendering/HitTestRequest.h" | 31 #include "core/rendering/HitTestRequest.h" |
| 32 #include "core/rendering/HitTestResult.h" | 32 #include "core/rendering/HitTestResult.h" |
| 33 #include "core/rendering/LayoutRepainter.h" | 33 #include "core/rendering/LayoutRepainter.h" |
| 34 #include "core/rendering/PaintInfo.h" |
| 34 #include "core/rendering/PointerEventsHitRules.h" | 35 #include "core/rendering/PointerEventsHitRules.h" |
| 35 #include "core/rendering/style/ShadowList.h" | 36 #include "core/rendering/style/ShadowList.h" |
| 36 #include "core/rendering/svg/RenderSVGInline.h" | 37 #include "core/rendering/svg/RenderSVGInline.h" |
| 37 #include "core/rendering/svg/RenderSVGInlineText.h" | 38 #include "core/rendering/svg/RenderSVGInlineText.h" |
| 38 #include "core/rendering/svg/RenderSVGResource.h" | 39 #include "core/rendering/svg/RenderSVGResource.h" |
| 39 #include "core/rendering/svg/RenderSVGRoot.h" | 40 #include "core/rendering/svg/RenderSVGRoot.h" |
| 40 #include "core/rendering/svg/SVGRenderSupport.h" | 41 #include "core/rendering/svg/SVGRenderSupport.h" |
| 41 #include "core/rendering/svg/SVGResourcesCache.h" | 42 #include "core/rendering/svg/SVGResourcesCache.h" |
| 42 #include "core/rendering/svg/SVGRootInlineBox.h" | 43 #include "core/rendering/svg/SVGRootInlineBox.h" |
| 43 #include "core/rendering/svg/SVGTextRunRenderingContext.h" | 44 #include "core/rendering/svg/SVGTextRunRenderingContext.h" |
| (...skipping 499 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 543 return 0; | 544 return 0; |
| 544 } | 545 } |
| 545 | 546 |
| 546 // Fix for <rdar://problem/8048875>. We should not render :first-letter CSS Styl
e | 547 // Fix for <rdar://problem/8048875>. We should not render :first-letter CSS Styl
e |
| 547 // in a SVG text element context. | 548 // in a SVG text element context. |
| 548 void RenderSVGText::updateFirstLetter() | 549 void RenderSVGText::updateFirstLetter() |
| 549 { | 550 { |
| 550 } | 551 } |
| 551 | 552 |
| 552 } | 553 } |
| OLD | NEW |