| 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) 2010 Apple Inc. All rights reserved. | 4 * Copyright (C) 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 * |
| (...skipping 18 matching lines...) Expand all Loading... |
| 29 | 29 |
| 30 class HTMLLIElement final : public HTMLElement { | 30 class HTMLLIElement final : public HTMLElement { |
| 31 DEFINE_WRAPPERTYPEINFO(); | 31 DEFINE_WRAPPERTYPEINFO(); |
| 32 | 32 |
| 33 public: | 33 public: |
| 34 DECLARE_NODE_FACTORY(HTMLLIElement); | 34 DECLARE_NODE_FACTORY(HTMLLIElement); |
| 35 | 35 |
| 36 private: | 36 private: |
| 37 explicit HTMLLIElement(Document&); | 37 explicit HTMLLIElement(Document&); |
| 38 | 38 |
| 39 void parseAttribute(const QualifiedName&, | 39 void parseAttribute(const AttributeModificationParams&) override; |
| 40 const AtomicString&, | |
| 41 const AtomicString&) override; | |
| 42 bool isPresentationAttribute(const QualifiedName&) const override; | 40 bool isPresentationAttribute(const QualifiedName&) const override; |
| 43 void collectStyleForPresentationAttribute(const QualifiedName&, | 41 void collectStyleForPresentationAttribute(const QualifiedName&, |
| 44 const AtomicString&, | 42 const AtomicString&, |
| 45 MutableStylePropertySet*) override; | 43 MutableStylePropertySet*) override; |
| 46 | 44 |
| 47 void attachLayoutTree(const AttachContext& = AttachContext()) override; | 45 void attachLayoutTree(const AttachContext& = AttachContext()) override; |
| 48 | 46 |
| 49 void parseValue(const AtomicString&); | 47 void parseValue(const AtomicString&); |
| 50 }; | 48 }; |
| 51 | 49 |
| 52 } // namespace blink | 50 } // namespace blink |
| 53 | 51 |
| 54 #endif // HTMLLIElement_h | 52 #endif // HTMLLIElement_h |
| OLD | NEW |