| OLD | NEW |
| 1 /* | 1 /* |
| 2 * Copyright (C) 2004, 2005 Nikolas Zimmermann <zimmermann@kde.org> | 2 * Copyright (C) 2004, 2005 Nikolas Zimmermann <zimmermann@kde.org> |
| 3 * Copyright (C) 2004, 2005, 2006, 2007 Rob Buis <buis@kde.org> | 3 * Copyright (C) 2004, 2005, 2006, 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 20 matching lines...) Expand all Loading... |
| 31 class SVGStyleElement final : public SVGElement, public StyleElement { | 31 class SVGStyleElement final : public SVGElement, public StyleElement { |
| 32 DEFINE_WRAPPERTYPEINFO(); | 32 DEFINE_WRAPPERTYPEINFO(); |
| 33 USING_GARBAGE_COLLECTED_MIXIN(SVGStyleElement); | 33 USING_GARBAGE_COLLECTED_MIXIN(SVGStyleElement); |
| 34 | 34 |
| 35 public: | 35 public: |
| 36 static SVGStyleElement* create(Document&, bool createdByParser); | 36 static SVGStyleElement* create(Document&, bool createdByParser); |
| 37 ~SVGStyleElement() override; | 37 ~SVGStyleElement() override; |
| 38 | 38 |
| 39 using StyleElement::sheet; | 39 using StyleElement::sheet; |
| 40 | 40 |
| 41 bool disabled() const; | |
| 42 void setDisabled(bool); | |
| 43 | |
| 44 const AtomicString& type() const override; | 41 const AtomicString& type() const override; |
| 45 void setType(const AtomicString&); | 42 void setType(const AtomicString&); |
| 46 | 43 |
| 47 const AtomicString& media() const override; | 44 const AtomicString& media() const override; |
| 48 void setMedia(const AtomicString&); | 45 void setMedia(const AtomicString&); |
| 49 | 46 |
| 50 String title() const override; | 47 String title() const override; |
| 51 void setTitle(const AtomicString&); | 48 void setTitle(const AtomicString&); |
| 52 | 49 |
| 53 void dispatchPendingEvent(); | 50 void dispatchPendingEvent(); |
| (...skipping 16 matching lines...) Expand all Loading... |
| 70 void notifyLoadedSheetAndAllCriticalSubresources( | 67 void notifyLoadedSheetAndAllCriticalSubresources( |
| 71 LoadedSheetErrorStatus) override; | 68 LoadedSheetErrorStatus) override; |
| 72 void startLoadingDynamicSheet() override { | 69 void startLoadingDynamicSheet() override { |
| 73 StyleElement::startLoadingDynamicSheet(document()); | 70 StyleElement::startLoadingDynamicSheet(document()); |
| 74 } | 71 } |
| 75 }; | 72 }; |
| 76 | 73 |
| 77 } // namespace blink | 74 } // namespace blink |
| 78 | 75 |
| 79 #endif // SVGStyleElement_h | 76 #endif // SVGStyleElement_h |
| OLD | NEW |