| OLD | NEW |
| 1 /* | 1 /* |
| 2 * Copyright (C) 1999 Lars Knoll (knoll@kde.org) | 2 * Copyright (C) 1999 Lars Knoll (knoll@kde.org) |
| 3 * (C) 1999 Antti Koivisto (koivisto@kde.org) | 3 * (C) 1999 Antti Koivisto (koivisto@kde.org) |
| 4 * Copyright (C) 2003, 2010 Apple Inc. ALl rights reserved. | 4 * Copyright (C) 2003, 2010 Apple Inc. ALl rights reserved. |
| 5 * | 5 * |
| 6 * This library is free software; you can redistribute it and/or | 6 * This library is free software; you can redistribute it and/or |
| 7 * modify it under the terms of the GNU Library General Public | 7 * modify it under the terms of the GNU Library General Public |
| 8 * License as published by the Free Software Foundation; either | 8 * License as published by the Free Software Foundation; either |
| 9 * version 2 of the License, or (at your option) any later version. | 9 * version 2 of the License, or (at your option) any later version. |
| 10 * | 10 * |
| 11 * This library is distributed in the hope that it will be useful, | 11 * This library is distributed in the hope that it will be useful, |
| 12 * but WITHOUT ANY WARRANTY; without even the implied warranty of | 12 * but WITHOUT ANY WARRANTY; without even the implied warranty of |
| 13 * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU | 13 * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU |
| 14 * Library General Public License for more details. | 14 * Library General Public License for more details. |
| 15 * | 15 * |
| 16 * You should have received a copy of the GNU Library General Public License | 16 * You should have received a copy of the GNU Library General Public License |
| 17 * along with this library; see the file COPYING.LIB. If not, write to | 17 * along with this library; see the file COPYING.LIB. If not, write to |
| 18 * the Free Software Foundation, Inc., 51 Franklin Street, Fifth Floor, | 18 * the Free Software Foundation, Inc., 51 Franklin Street, Fifth Floor, |
| 19 * Boston, MA 02110-1301, USA. | 19 * Boston, MA 02110-1301, USA. |
| 20 * | 20 * |
| 21 */ | 21 */ |
| 22 | 22 |
| 23 #ifndef SKY_ENGINE_CORE_HTML_HTMLSTYLEELEMENT_H_ | 23 #ifndef SKY_ENGINE_CORE_HTML_HTMLSTYLEELEMENT_H_ |
| 24 #define SKY_ENGINE_CORE_HTML_HTMLSTYLEELEMENT_H_ | 24 #define SKY_ENGINE_CORE_HTML_HTMLSTYLEELEMENT_H_ |
| 25 | 25 |
| 26 #include "sky/engine/core/dom/StyleElement.h" | 26 #include "sky/engine/core/css/CSSStyleSheet.h" |
| 27 #include "sky/engine/core/html/HTMLElement.h" | 27 #include "sky/engine/core/html/HTMLElement.h" |
| 28 #include "sky/engine/wtf/text/TextPosition.h" |
| 28 | 29 |
| 29 namespace blink { | 30 namespace blink { |
| 30 | 31 |
| 32 class ContainerNode; |
| 33 class Document; |
| 34 class Element; |
| 31 class HTMLStyleElement; | 35 class HTMLStyleElement; |
| 36 class TreeScope; |
| 32 | 37 |
| 33 template<typename T> class EventSender; | 38 class HTMLStyleElement final : public HTMLElement { |
| 34 typedef EventSender<HTMLStyleElement> StyleEventSender; | |
| 35 | |
| 36 class HTMLStyleElement final : public HTMLElement, private StyleElement { | |
| 37 DEFINE_WRAPPERTYPEINFO(); | 39 DEFINE_WRAPPERTYPEINFO(); |
| 38 public: | 40 public: |
| 39 static PassRefPtr<HTMLStyleElement> create(Document&, bool createdByParser); | 41 static PassRefPtr<HTMLStyleElement> create(Document&, bool createdByParser); |
| 40 virtual ~HTMLStyleElement(); | 42 virtual ~HTMLStyleElement(); |
| 41 | 43 |
| 42 ContainerNode* scopingNode(); | 44 ContainerNode* scopingNode(); |
| 43 | 45 |
| 44 using StyleElement::sheet; | 46 CSSStyleSheet* sheet() const { return m_sheet.get(); } |
| 47 |
| 48 const AtomicString& media() const; |
| 49 const AtomicString& type() const; |
| 45 | 50 |
| 46 private: | 51 private: |
| 47 HTMLStyleElement(Document&, bool createdByParser); | 52 HTMLStyleElement(Document&, bool createdByParser); |
| 48 | 53 |
| 54 void createSheet(); |
| 55 void process(); |
| 56 void clearSheet(); |
| 57 |
| 58 void processStyleSheet(); |
| 59 void clearDocumentData(); |
| 60 |
| 49 // overload from HTMLElement | 61 // overload from HTMLElement |
| 50 virtual void parseAttribute(const QualifiedName&, const AtomicString&) overr
ide; | 62 virtual void parseAttribute(const QualifiedName&, const AtomicString&) overr
ide; |
| 51 virtual void insertedInto(ContainerNode*) override; | 63 virtual void insertedInto(ContainerNode*) override; |
| 52 virtual void removedFrom(ContainerNode*) override; | 64 virtual void removedFrom(ContainerNode*) override; |
| 53 virtual void childrenChanged(const ChildrenChange&) override; | 65 virtual void childrenChanged(const ChildrenChange&) override; |
| 54 | 66 |
| 55 virtual void finishParsingChildren() override; | 67 virtual void finishParsingChildren() override; |
| 56 | 68 |
| 57 virtual const AtomicString& media() const override; | 69 RefPtr<CSSStyleSheet> m_sheet; |
| 58 virtual const AtomicString& type() const override; | 70 |
| 71 bool m_createdByParser : 1; |
| 72 bool m_loading : 1; |
| 73 bool m_registeredAsCandidate : 1; |
| 74 TextPosition m_startPosition; |
| 59 }; | 75 }; |
| 60 | 76 |
| 61 } // namespace blink | 77 } // namespace blink |
| 62 | 78 |
| 63 #endif // SKY_ENGINE_CORE_HTML_HTMLSTYLEELEMENT_H_ | 79 #endif // SKY_ENGINE_CORE_HTML_HTMLSTYLEELEMENT_H_ |
| OLD | NEW |