| OLD | NEW |
| 1 /* | 1 /* |
| 2 * Copyright (C) 2004, 2005, 2008 Nikolas Zimmermann <zimmermann@kde.org> | 2 * Copyright (C) 2004, 2005, 2008 Nikolas Zimmermann <zimmermann@kde.org> |
| 3 * Copyright (C) 2004, 2005, 2007 Rob Buis <buis@kde.org> | 3 * Copyright (C) 2004, 2005, 2007 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, |
| (...skipping 41 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 52 SVGScriptElement(Document&, bool wasInsertedByParser, bool alreadyStarted); | 52 SVGScriptElement(Document&, bool wasInsertedByParser, bool alreadyStarted); |
| 53 | 53 |
| 54 void parseAttribute(const QualifiedName&, | 54 void parseAttribute(const QualifiedName&, |
| 55 const AtomicString&, | 55 const AtomicString&, |
| 56 const AtomicString&) override; | 56 const AtomicString&) override; |
| 57 InsertionNotificationRequest insertedInto(ContainerNode*) override; | 57 InsertionNotificationRequest insertedInto(ContainerNode*) override; |
| 58 void didNotifySubtreeInsertionsToDocument() override; | 58 void didNotifySubtreeInsertionsToDocument() override; |
| 59 void childrenChanged(const ChildrenChange&) override; | 59 void childrenChanged(const ChildrenChange&) override; |
| 60 void didMoveToNewDocument(Document& oldDocument) override; | 60 void didMoveToNewDocument(Document& oldDocument) override; |
| 61 | 61 |
| 62 void svgAttributeChanged(const QualifiedName&) override; | |
| 63 bool isURLAttribute(const Attribute&) const override; | 62 bool isURLAttribute(const Attribute&) const override; |
| 64 bool isStructurallyExternal() const override { return hasSourceAttribute(); } | 63 bool isStructurallyExternal() const override { return hasSourceAttribute(); } |
| 65 void finishParsingChildren() override; | 64 void finishParsingChildren() override; |
| 66 | 65 |
| 67 bool haveLoadedRequiredResources() override; | 66 bool haveLoadedRequiredResources() override; |
| 68 | 67 |
| 69 String sourceAttributeValue() const override; | 68 String sourceAttributeValue() const override; |
| 70 String charsetAttributeValue() const override; | 69 String charsetAttributeValue() const override; |
| 71 String typeAttributeValue() const override; | 70 String typeAttributeValue() const override; |
| 72 String languageAttributeValue() const override; | 71 String languageAttributeValue() const override; |
| 73 String forAttributeValue() const override; | 72 String forAttributeValue() const override; |
| 74 String eventAttributeValue() const override; | 73 String eventAttributeValue() const override; |
| 75 bool asyncAttributeValue() const override; | 74 bool asyncAttributeValue() const override; |
| 76 bool deferAttributeValue() const override; | 75 bool deferAttributeValue() const override; |
| 77 bool hasSourceAttribute() const override; | 76 bool hasSourceAttribute() const override; |
| 78 | 77 |
| 79 void dispatchLoadEvent() override; | 78 void dispatchLoadEvent() override; |
| 80 | 79 |
| 81 Element* cloneElementWithoutAttributesAndChildren() override; | 80 Element* cloneElementWithoutAttributesAndChildren() override; |
| 82 bool layoutObjectIsNeeded(const ComputedStyle&) override { return false; } | 81 bool layoutObjectIsNeeded(const ComputedStyle&) override { return false; } |
| 83 | 82 |
| 84 Member<ScriptLoader> m_loader; | 83 Member<ScriptLoader> m_loader; |
| 85 }; | 84 }; |
| 86 | 85 |
| 87 } // namespace blink | 86 } // namespace blink |
| 88 | 87 |
| 89 #endif // SVGScriptElement_h | 88 #endif // SVGScriptElement_h |
| OLD | NEW |