| 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, 2008, 2010 Apple Inc. All rights reserved. | 4 * Copyright (C) 2003, 2008, 2010 Apple Inc. All rights reserved. |
| 5 * Copyright (C) 2011 Google Inc. All rights reserved. | 5 * Copyright (C) 2011 Google Inc. All rights reserved. |
| 6 * | 6 * |
| 7 * This library is free software; you can redistribute it and/or | 7 * This library is free software; you can redistribute it and/or |
| 8 * modify it under the terms of the GNU Library General Public | 8 * modify it under the terms of the GNU Library General Public |
| 9 * License as published by the Free Software Foundation; either | 9 * License as published by the Free Software Foundation; either |
| 10 * version 2 of the License, or (at your option) any later version. | 10 * version 2 of the License, or (at your option) any later version. |
| (...skipping 122 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 133 virtual String target() const; | 133 virtual String target() const; |
| 134 | 134 |
| 135 String type() const; | 135 String type() const; |
| 136 | 136 |
| 137 IconType iconType() const; | 137 IconType iconType() const; |
| 138 | 138 |
| 139 // the icon size string as parsed from the HTML attribute | 139 // the icon size string as parsed from the HTML attribute |
| 140 String iconSizes() const; | 140 String iconSizes() const; |
| 141 | 141 |
| 142 CSSStyleSheet* sheet() const { return linkStyle() ? linkStyle()->sheet() : 0
; } | 142 CSSStyleSheet* sheet() const { return linkStyle() ? linkStyle()->sheet() : 0
; } |
| 143 DocumentFragment* import() const; | 143 Document* import() const; |
| 144 | 144 |
| 145 bool styleSheetIsLoading() const; | 145 bool styleSheetIsLoading() const; |
| 146 | 146 |
| 147 bool isDisabled() const { return linkStyle() && linkStyle()->isDisabled(); } | 147 bool isDisabled() const { return linkStyle() && linkStyle()->isDisabled(); } |
| 148 bool isEnabledViaScript() const { return linkStyle() && linkStyle()->isEnabl
edViaScript(); } | 148 bool isEnabledViaScript() const { return linkStyle() && linkStyle()->isEnabl
edViaScript(); } |
| 149 void setSizes(const String&); | 149 void setSizes(const String&); |
| 150 DOMSettableTokenList* sizes() const; | 150 DOMSettableTokenList* sizes() const; |
| 151 | 151 |
| 152 void dispatchPendingEvent(LinkEventSender*); | 152 void dispatchPendingEvent(LinkEventSender*); |
| 153 static void dispatchPendingLoadEvents(); | 153 static void dispatchPendingLoadEvents(); |
| (...skipping 46 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 200 LinkRelAttribute m_relAttribute; | 200 LinkRelAttribute m_relAttribute; |
| 201 | 201 |
| 202 bool m_createdByParser; | 202 bool m_createdByParser; |
| 203 bool m_isInShadowTree; | 203 bool m_isInShadowTree; |
| 204 int m_beforeLoadRecurseCount; | 204 int m_beforeLoadRecurseCount; |
| 205 }; | 205 }; |
| 206 | 206 |
| 207 } //namespace | 207 } //namespace |
| 208 | 208 |
| 209 #endif | 209 #endif |
| OLD | NEW |