| 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 * |
| 11 * This library is free software; you can redistribute it and/or | 11 * This library is free software; you can redistribute it and/or |
| 12 * modify it under the terms of the GNU Library General Public | 12 * modify it under the terms of the GNU Library General Public |
| 13 * License as published by the Free Software Foundation; either | 13 * License as published by the Free Software Foundation; either |
| 14 * version 2 of the License, or (at your option) any later version. | 14 * version 2 of the License, or (at your option) any later version. |
| 15 * | 15 * |
| 16 * This library is distributed in the hope that it will be useful, | 16 * This library is distributed in the hope that it will be useful, |
| 17 * but WITHOUT ANY WARRANTY; without even the implied warranty of | 17 * but WITHOUT ANY WARRANTY; without even the implied warranty of |
| 18 * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU | 18 * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU |
| 19 * Library General Public License for more details. | 19 * Library General Public License for more details. |
| 20 * | 20 * |
| 21 * You should have received a copy of the GNU Library General Public License | 21 * You should have received a copy of the GNU Library General Public License |
| 22 * along with this library; see the file COPYING.LIB. If not, write to | 22 * along with this library; see the file COPYING.LIB. If not, write to |
| 23 * the Free Software Foundation, Inc., 51 Franklin Street, Fifth Floor, | 23 * the Free Software Foundation, Inc., 51 Franklin Street, Fifth Floor, |
| 24 * Boston, MA 02110-1301, USA. | 24 * Boston, MA 02110-1301, USA. |
| 25 */ | 25 */ |
| 26 | 26 |
| 27 #include "config.h" | |
| 28 #include "core/layout/svg/LayoutSVGText.h" | 27 #include "core/layout/svg/LayoutSVGText.h" |
| 29 | 28 |
| 30 #include "core/editing/PositionWithAffinity.h" | 29 #include "core/editing/PositionWithAffinity.h" |
| 31 #include "core/layout/HitTestRequest.h" | 30 #include "core/layout/HitTestRequest.h" |
| 32 #include "core/layout/HitTestResult.h" | 31 #include "core/layout/HitTestResult.h" |
| 33 #include "core/layout/LayoutAnalyzer.h" | 32 #include "core/layout/LayoutAnalyzer.h" |
| 34 #include "core/layout/LayoutState.h" | 33 #include "core/layout/LayoutState.h" |
| 35 #include "core/layout/LayoutView.h" | 34 #include "core/layout/LayoutView.h" |
| 36 #include "core/layout/PointerEventsHitRules.h" | 35 #include "core/layout/PointerEventsHitRules.h" |
| 37 #include "core/layout/api/LineLayoutItem.h" | 36 #include "core/layout/api/LineLayoutItem.h" |
| (...skipping 493 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 531 paintInvalidationState.pushDelayedPaintInvalidationTarget(*this); | 530 paintInvalidationState.pushDelayedPaintInvalidationTarget(*this); |
| 532 | 531 |
| 533 ForceHorriblySlowRectMapping slowRectMapping(&paintInvalidationState); | 532 ForceHorriblySlowRectMapping slowRectMapping(&paintInvalidationState); |
| 534 PaintInvalidationState childTreeWalkState(paintInvalidationState, *this, pai
ntInvalidationState.paintInvalidationContainer()); | 533 PaintInvalidationState childTreeWalkState(paintInvalidationState, *this, pai
ntInvalidationState.paintInvalidationContainer()); |
| 535 if (reason == PaintInvalidationSVGResourceChange) | 534 if (reason == PaintInvalidationSVGResourceChange) |
| 536 childTreeWalkState.setForceSubtreeInvalidationWithinContainer(); | 535 childTreeWalkState.setForceSubtreeInvalidationWithinContainer(); |
| 537 invalidatePaintOfSubtreesIfNeeded(childTreeWalkState); | 536 invalidatePaintOfSubtreesIfNeeded(childTreeWalkState); |
| 538 } | 537 } |
| 539 | 538 |
| 540 } | 539 } |
| OLD | NEW |