| OLD | NEW |
| 1 /* | 1 /* |
| 2 * Copyright (C) 2004, 2005, 2007, 2008 Nikolas Zimmermann <zimmermann@kde.org> | 2 * Copyright (C) 2004, 2005, 2007, 2008 Nikolas Zimmermann <zimmermann@kde.org> |
| 3 * Copyright (C) 2004, 2005, 2006, 2007, 2008 Rob Buis <buis@kde.org> | 3 * Copyright (C) 2004, 2005, 2006, 2007, 2008 Rob Buis <buis@kde.org> |
| 4 * | 4 * |
| 5 * This library is free software; you can redistribute it and/or | 5 * This library is free software; you can redistribute it and/or |
| 6 * modify it under the terms of the GNU Library General Public | 6 * modify it under the terms of the GNU Library General Public |
| 7 * License as published by the Free Software Foundation; either | 7 * License as published by the Free Software Foundation; either |
| 8 * version 2 of the License, or (at your option) any later version. | 8 * version 2 of the License, or (at your option) any later version. |
| 9 * | 9 * |
| 10 * This library is distributed in the hope that it will be useful, | 10 * This library is distributed in the hope that it will be useful, |
| 11 * but WITHOUT ANY WARRANTY; without even the implied warranty of | 11 * but WITHOUT ANY WARRANTY; without even the implied warranty of |
| 12 * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU | 12 * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU |
| 13 * Library General Public License for more details. | 13 * Library General Public License for more details. |
| 14 * | 14 * |
| 15 * You should have received a copy of the GNU Library General Public License | 15 * You should have received a copy of the GNU Library General Public License |
| 16 * along with this library; see the file COPYING.LIB. If not, write to | 16 * along with this library; see the file COPYING.LIB. If not, write to |
| 17 * the Free Software Foundation, Inc., 51 Franklin Street, Fifth Floor, | 17 * the Free Software Foundation, Inc., 51 Franklin Street, Fifth Floor, |
| 18 * Boston, MA 02110-1301, USA. | 18 * Boston, MA 02110-1301, USA. |
| 19 */ | 19 */ |
| 20 | 20 |
| 21 #include "core/svg/SVGTextContentElement.h" | 21 #include "core/svg/SVGTextContentElement.h" |
| 22 | 22 |
| 23 #include "bindings/core/v8/ExceptionMessages.h" | 23 #include "bindings/core/v8/ExceptionMessages.h" |
| 24 #include "bindings/core/v8/ExceptionState.h" | 24 #include "bindings/core/v8/ExceptionState.h" |
| 25 #include "bindings/core/v8/ExceptionStatePlaceholder.h" | |
| 26 #include "core/CSSPropertyNames.h" | 25 #include "core/CSSPropertyNames.h" |
| 27 #include "core/CSSValueKeywords.h" | 26 #include "core/CSSValueKeywords.h" |
| 28 #include "core/SVGNames.h" | 27 #include "core/SVGNames.h" |
| 29 #include "core/XMLNames.h" | 28 #include "core/XMLNames.h" |
| 30 #include "core/editing/FrameSelection.h" | 29 #include "core/editing/FrameSelection.h" |
| 31 #include "core/frame/LocalFrame.h" | 30 #include "core/frame/LocalFrame.h" |
| 32 #include "core/frame/UseCounter.h" | 31 #include "core/frame/UseCounter.h" |
| 33 #include "core/layout/api/LineLayoutItem.h" | 32 #include "core/layout/api/LineLayoutItem.h" |
| 34 #include "core/layout/svg/SVGTextQuery.h" | 33 #include "core/layout/svg/SVGTextQuery.h" |
| 34 #include "core/svg/SVGPointTearOff.h" |
| 35 #include "core/svg/SVGRectTearOff.h" |
| 35 | 36 |
| 36 namespace blink { | 37 namespace blink { |
| 37 | 38 |
| 38 template<> const SVGEnumerationStringEntries& getStaticStringEntries<SVGLengthAd
justType>() | 39 template<> const SVGEnumerationStringEntries& getStaticStringEntries<SVGLengthAd
justType>() |
| 39 { | 40 { |
| 40 DEFINE_STATIC_LOCAL(SVGEnumerationStringEntries, entries, ()); | 41 DEFINE_STATIC_LOCAL(SVGEnumerationStringEntries, entries, ()); |
| 41 if (entries.isEmpty()) { | 42 if (entries.isEmpty()) { |
| 42 entries.append(std::make_pair(SVGLengthAdjustSpacing, "spacing")); | 43 entries.append(std::make_pair(SVGLengthAdjustSpacing, "spacing")); |
| 43 entries.append(std::make_pair(SVGLengthAdjustSpacingAndGlyphs, "spacingA
ndGlyphs")); | 44 entries.append(std::make_pair(SVGLengthAdjustSpacingAndGlyphs, "spacingA
ndGlyphs")); |
| 44 } | 45 } |
| (...skipping 209 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 254 { | 255 { |
| 255 if (!lineLayoutItem || (!lineLayoutItem.isSVGText() && !lineLayoutItem.isSVG
Inline())) | 256 if (!lineLayoutItem || (!lineLayoutItem.isSVGText() && !lineLayoutItem.isSVG
Inline())) |
| 256 return nullptr; | 257 return nullptr; |
| 257 | 258 |
| 258 SVGElement* element = toSVGElement(lineLayoutItem.node()); | 259 SVGElement* element = toSVGElement(lineLayoutItem.node()); |
| 259 ASSERT(element); | 260 ASSERT(element); |
| 260 return isSVGTextContentElement(*element) ? toSVGTextContentElement(element)
: 0; | 261 return isSVGTextContentElement(*element) ? toSVGTextContentElement(element)
: 0; |
| 261 } | 262 } |
| 262 | 263 |
| 263 } // namespace blink | 264 } // namespace blink |
| OLD | NEW |