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 19 matching lines...) Expand all Loading... |
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 blink { | 33 namespace blink { |
34 | 34 |
35 using namespace SVGNames; | 35 using namespace SVGNames; |
36 | 36 |
37 inline 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); | |
41 } | 40 } |
42 | 41 |
43 DEFINE_NODE_FACTORY(SVGFontFaceSrcElement) | 42 DEFINE_NODE_FACTORY(SVGFontFaceSrcElement) |
44 | 43 |
45 PassRefPtrWillBeRawPtr<CSSValueList> SVGFontFaceSrcElement::srcValue() const | 44 PassRefPtrWillBeRawPtr<CSSValueList> SVGFontFaceSrcElement::srcValue() const |
46 { | 45 { |
47 RefPtrWillBeRawPtr<CSSValueList> list = CSSValueList::createCommaSeparated()
; | 46 RefPtrWillBeRawPtr<CSSValueList> list = CSSValueList::createCommaSeparated()
; |
48 for (SVGElement* element = Traversal<SVGElement>::firstChild(*this); element
; element = Traversal<SVGElement>::nextSibling(*element)) { | 47 for (SVGElement* element = Traversal<SVGElement>::firstChild(*this); element
; element = Traversal<SVGElement>::nextSibling(*element)) { |
49 RefPtrWillBeRawPtr<CSSFontFaceSrcValue> srcValue = nullptr; | 48 RefPtrWillBeRawPtr<CSSFontFaceSrcValue> srcValue = nullptr; |
50 if (isSVGFontFaceUriElement(*element)) | 49 if (isSVGFontFaceUriElement(*element)) |
(...skipping 10 matching lines...) Expand all Loading... |
61 void SVGFontFaceSrcElement::childrenChanged(const ChildrenChange& change) | 60 void SVGFontFaceSrcElement::childrenChanged(const ChildrenChange& change) |
62 { | 61 { |
63 SVGElement::childrenChanged(change); | 62 SVGElement::childrenChanged(change); |
64 if (isSVGFontFaceElement(parentNode())) | 63 if (isSVGFontFaceElement(parentNode())) |
65 toSVGFontFaceElement(*parentNode()).rebuildFontFace(); | 64 toSVGFontFaceElement(*parentNode()).rebuildFontFace(); |
66 } | 65 } |
67 | 66 |
68 } | 67 } |
69 | 68 |
70 #endif // ENABLE(SVG_FONTS) | 69 #endif // ENABLE(SVG_FONTS) |
OLD | NEW |