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 134 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
145 bool async() const; | 145 bool async() const; |
146 | 146 |
147 CSSStyleSheet* sheet() const { return linkStyle() ? linkStyle()->sheet() : 0
; } | 147 CSSStyleSheet* sheet() const { return linkStyle() ? linkStyle()->sheet() : 0
; } |
148 Document* import() const; | 148 Document* import() const; |
149 | 149 |
150 bool styleSheetIsLoading() const; | 150 bool styleSheetIsLoading() const; |
151 | 151 |
152 bool isImport() const { return linkImport(); } | 152 bool isImport() const { return linkImport(); } |
153 bool isDisabled() const { return linkStyle() && linkStyle()->isDisabled(); } | 153 bool isDisabled() const { return linkStyle() && linkStyle()->isDisabled(); } |
154 bool isEnabledViaScript() const { return linkStyle() && linkStyle()->isEnabl
edViaScript(); } | 154 bool isEnabledViaScript() const { return linkStyle() && linkStyle()->isEnabl
edViaScript(); } |
155 void setEnabledIfExitTransitionStyle(bool); | |
156 | 155 |
157 DOMSettableTokenList* sizes() const; | 156 DOMSettableTokenList* sizes() const; |
158 | 157 |
159 void dispatchPendingEvent(LinkEventSender*); | 158 void dispatchPendingEvent(LinkEventSender*); |
160 void scheduleEvent(); | 159 void scheduleEvent(); |
161 void dispatchEventImmediately(); | 160 void dispatchEventImmediately(); |
162 static void dispatchPendingLoadEvents(); | 161 static void dispatchPendingLoadEvents(); |
163 | 162 |
164 // From LinkLoaderClient | 163 // From LinkLoaderClient |
165 virtual bool shouldLoadLink() override; | 164 virtual bool shouldLoadLink() override; |
(...skipping 53 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
219 Vector<IntSize> m_iconSizes; | 218 Vector<IntSize> m_iconSizes; |
220 LinkRelAttribute m_relAttribute; | 219 LinkRelAttribute m_relAttribute; |
221 | 220 |
222 bool m_createdByParser; | 221 bool m_createdByParser; |
223 bool m_isInShadowTree; | 222 bool m_isInShadowTree; |
224 }; | 223 }; |
225 | 224 |
226 } // namespace blink | 225 } // namespace blink |
227 | 226 |
228 #endif // HTMLLinkElement_h | 227 #endif // HTMLLinkElement_h |
OLD | NEW |