| 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 48 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 59 void setFgColor(const String&); | 59 void setFgColor(const String&); |
| 60 String alinkColor(); | 60 String alinkColor(); |
| 61 void setAlinkColor(const String&); | 61 void setAlinkColor(const String&); |
| 62 String linkColor(); | 62 String linkColor(); |
| 63 void setLinkColor(const String&); | 63 void setLinkColor(const String&); |
| 64 String vlinkColor(); | 64 String vlinkColor(); |
| 65 void setVlinkColor(const String&); | 65 void setVlinkColor(const String&); |
| 66 | 66 |
| 67 void clear(); | 67 void clear(); |
| 68 | 68 |
| 69 void captureEvents(); | |
| 70 void releaseEvents(); | |
| 71 | |
| 72 void addNamedItem(const AtomicString& name); | 69 void addNamedItem(const AtomicString& name); |
| 73 void removeNamedItem(const AtomicString& name); | 70 void removeNamedItem(const AtomicString& name); |
| 74 bool hasNamedItem(AtomicStringImpl* name); | 71 bool hasNamedItem(AtomicStringImpl* name); |
| 75 | 72 |
| 76 void addExtraNamedItem(const AtomicString& name); | 73 void addExtraNamedItem(const AtomicString& name); |
| 77 void removeExtraNamedItem(const AtomicString& name); | 74 void removeExtraNamedItem(const AtomicString& name); |
| 78 bool hasExtraNamedItem(AtomicStringImpl* name); | 75 bool hasExtraNamedItem(AtomicStringImpl* name); |
| 79 | 76 |
| 80 static bool isCaseSensitiveAttribute(const QualifiedName&); | 77 static bool isCaseSensitiveAttribute(const QualifiedName&); |
| 81 | 78 |
| (...skipping 36 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 118 ASSERT_WITH_SECURITY_IMPLICATION(!document || document->isHTMLDocument()); | 115 ASSERT_WITH_SECURITY_IMPLICATION(!document || document->isHTMLDocument()); |
| 119 return static_cast<const HTMLDocument*>(document); | 116 return static_cast<const HTMLDocument*>(document); |
| 120 } | 117 } |
| 121 | 118 |
| 122 // This will catch anyone doing an unnecessary cast. | 119 // This will catch anyone doing an unnecessary cast. |
| 123 void toHTMLDocument(const HTMLDocument*); | 120 void toHTMLDocument(const HTMLDocument*); |
| 124 | 121 |
| 125 } // namespace WebCore | 122 } // namespace WebCore |
| 126 | 123 |
| 127 #endif // HTMLDocument_h | 124 #endif // HTMLDocument_h |
| OLD | NEW |