OLD | NEW |
1 /* | 1 /* |
2 * Copyright (C) 2007 Eric Seidel <eric@webkit.org> | 2 * Copyright (C) 2007 Eric Seidel <eric@webkit.org> |
3 * | 3 * |
4 * This library is free software; you can redistribute it and/or | 4 * This library is free software; you can redistribute it and/or |
5 * modify it under the terms of the GNU Library General Public | 5 * modify it under the terms of the GNU Library General Public |
6 * License as published by the Free Software Foundation; either | 6 * License as published by the Free Software Foundation; either |
7 * version 2 of the License, or (at your option) any later version. | 7 * version 2 of the License, or (at your option) any later version. |
8 * | 8 * |
9 * This library is distributed in the hope that it will be useful, | 9 * This library is distributed in the hope that it will be useful, |
10 * but WITHOUT ANY WARRANTY; without even the implied warranty of | 10 * but WITHOUT ANY WARRANTY; without even the implied warranty of |
(...skipping 16 matching lines...) Expand all Loading... |
27 #include "core/css/CSSValueList.h" | 27 #include "core/css/CSSValueList.h" |
28 #include "core/dom/ElementTraversal.h" | 28 #include "core/dom/ElementTraversal.h" |
29 #include "core/svg/SVGFontFaceElement.h" | 29 #include "core/svg/SVGFontFaceElement.h" |
30 #include "core/svg/SVGFontFaceNameElement.h" | 30 #include "core/svg/SVGFontFaceNameElement.h" |
31 #include "core/svg/SVGFontFaceUriElement.h" | 31 #include "core/svg/SVGFontFaceUriElement.h" |
32 | 32 |
33 namespace WebCore { | 33 namespace WebCore { |
34 | 34 |
35 using namespace SVGNames; | 35 using namespace SVGNames; |
36 | 36 |
37 SVGFontFaceSrcElement::SVGFontFaceSrcElement(Document& document) | 37 inline SVGFontFaceSrcElement::SVGFontFaceSrcElement(Document& document) |
38 : SVGElement(font_face_srcTag, document) | 38 : SVGElement(font_face_srcTag, document) |
39 { | 39 { |
40 ScriptWrappable::init(this); | 40 ScriptWrappable::init(this); |
41 } | 41 } |
42 | 42 |
| 43 DEFINE_NODE_FACTORY(SVGFontFaceSrcElement) |
| 44 |
43 PassRefPtrWillBeRawPtr<CSSValueList> SVGFontFaceSrcElement::srcValue() const | 45 PassRefPtrWillBeRawPtr<CSSValueList> SVGFontFaceSrcElement::srcValue() const |
44 { | 46 { |
45 RefPtrWillBeRawPtr<CSSValueList> list = CSSValueList::createCommaSeparated()
; | 47 RefPtrWillBeRawPtr<CSSValueList> list = CSSValueList::createCommaSeparated()
; |
46 for (SVGElement* element = Traversal<SVGElement>::firstChild(*this); element
; element = Traversal<SVGElement>::nextSibling(*element)) { | 48 for (SVGElement* element = Traversal<SVGElement>::firstChild(*this); element
; element = Traversal<SVGElement>::nextSibling(*element)) { |
47 RefPtrWillBeRawPtr<CSSFontFaceSrcValue> srcValue = nullptr; | 49 RefPtrWillBeRawPtr<CSSFontFaceSrcValue> srcValue = nullptr; |
48 if (isSVGFontFaceUriElement(*element)) | 50 if (isSVGFontFaceUriElement(*element)) |
49 srcValue = toSVGFontFaceUriElement(*element).srcValue(); | 51 srcValue = toSVGFontFaceUriElement(*element).srcValue(); |
50 else if (isSVGFontFaceNameElement(*element)) | 52 else if (isSVGFontFaceNameElement(*element)) |
51 srcValue = toSVGFontFaceNameElement(*element).srcValue(); | 53 srcValue = toSVGFontFaceNameElement(*element).srcValue(); |
52 | 54 |
53 if (srcValue && srcValue->resource().length()) | 55 if (srcValue && srcValue->resource().length()) |
54 list->append(srcValue); | 56 list->append(srcValue); |
55 } | 57 } |
56 return list; | 58 return list; |
57 } | 59 } |
58 | 60 |
59 void SVGFontFaceSrcElement::childrenChanged(bool changedByParser, Node* beforeCh
ange, Node* afterChange, int childCountDelta) | 61 void SVGFontFaceSrcElement::childrenChanged(bool changedByParser, Node* beforeCh
ange, Node* afterChange, int childCountDelta) |
60 { | 62 { |
61 SVGElement::childrenChanged(changedByParser, beforeChange, afterChange, chil
dCountDelta); | 63 SVGElement::childrenChanged(changedByParser, beforeChange, afterChange, chil
dCountDelta); |
62 if (isSVGFontFaceElement(parentNode())) | 64 if (isSVGFontFaceElement(parentNode())) |
63 toSVGFontFaceElement(*parentNode()).rebuildFontFace(); | 65 toSVGFontFaceElement(*parentNode()).rebuildFontFace(); |
64 } | 66 } |
65 | 67 |
66 } | 68 } |
67 | 69 |
68 #endif // ENABLE(SVG_FONTS) | 70 #endif // ENABLE(SVG_FONTS) |
OLD | NEW |