| 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) 2004, 2006, 2007, 2008, 2009 Apple Inc. All rights reserved. | 4 * Copyright (C) 2004, 2006, 2007, 2008, 2009 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 35 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 46 void setFgColor(const AtomicString&); | 46 void setFgColor(const AtomicString&); |
| 47 const AtomicString& alinkColor() const; | 47 const AtomicString& alinkColor() const; |
| 48 void setAlinkColor(const AtomicString&); | 48 void setAlinkColor(const AtomicString&); |
| 49 const AtomicString& linkColor() const; | 49 const AtomicString& linkColor() const; |
| 50 void setLinkColor(const AtomicString&); | 50 void setLinkColor(const AtomicString&); |
| 51 const AtomicString& vlinkColor() const; | 51 const AtomicString& vlinkColor() const; |
| 52 void setVlinkColor(const AtomicString&); | 52 void setVlinkColor(const AtomicString&); |
| 53 | 53 |
| 54 void clear() { } | 54 void clear() { } |
| 55 | 55 |
| 56 void captureEvents() { } | 56 void captureEvents(); |
| 57 void releaseEvents() { } | 57 void releaseEvents() { } |
| 58 | 58 |
| 59 void addNamedItem(const AtomicString& name); | 59 void addNamedItem(const AtomicString& name); |
| 60 void removeNamedItem(const AtomicString& name); | 60 void removeNamedItem(const AtomicString& name); |
| 61 bool hasNamedItem(const AtomicString& name); | 61 bool hasNamedItem(const AtomicString& name); |
| 62 | 62 |
| 63 void addExtraNamedItem(const AtomicString& name); | 63 void addExtraNamedItem(const AtomicString& name); |
| 64 void removeExtraNamedItem(const AtomicString& name); | 64 void removeExtraNamedItem(const AtomicString& name); |
| 65 bool hasExtraNamedItem(const AtomicString& name); | 65 bool hasExtraNamedItem(const AtomicString& name); |
| 66 | 66 |
| (...skipping 23 matching lines...) Expand all Loading... |
| 90 inline bool HTMLDocument::hasExtraNamedItem(const AtomicString& name) | 90 inline bool HTMLDocument::hasExtraNamedItem(const AtomicString& name) |
| 91 { | 91 { |
| 92 return m_extraNamedItemCounts.contains(name); | 92 return m_extraNamedItemCounts.contains(name); |
| 93 } | 93 } |
| 94 | 94 |
| 95 DEFINE_DOCUMENT_TYPE_CASTS(HTMLDocument); | 95 DEFINE_DOCUMENT_TYPE_CASTS(HTMLDocument); |
| 96 | 96 |
| 97 } // namespace blink | 97 } // namespace blink |
| 98 | 98 |
| 99 #endif // HTMLDocument_h | 99 #endif // HTMLDocument_h |
| OLD | NEW |