| 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 * (C) 2000 Dirk Mueller (mueller@kde.org) | 4 * (C) 2000 Dirk Mueller (mueller@kde.org) |
| 5 * Copyright (C) 2004, 2005, 2006, 2007, 2010 Apple Inc. All rights reserved. | 5 * Copyright (C) 2004, 2005, 2006, 2007, 2010 Apple Inc. All rights reserved. |
| 6 * Copyright (C) 2012 Samsung Electronics. All rights reserved. | 6 * Copyright (C) 2012 Samsung Electronics. All rights reserved. |
| 7 * | 7 * |
| 8 * This library is free software; you can redistribute it and/or | 8 * This library is free software; you can redistribute it and/or |
| 9 * modify it under the terms of the GNU Library General Public | 9 * modify it under the terms of the GNU Library General Public |
| 10 * License as published by the Free Software Foundation; either | 10 * License as published by the Free Software Foundation; either |
| (...skipping 259 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 270 | 270 |
| 271 private: | 271 private: |
| 272 enum AutoCompleteSetting { Uninitialized, On, Off }; | 272 enum AutoCompleteSetting { Uninitialized, On, Off }; |
| 273 | 273 |
| 274 void didAddUserAgentShadowRoot(ShadowRoot&) final; | 274 void didAddUserAgentShadowRoot(ShadowRoot&) final; |
| 275 void willAddFirstAuthorShadowRoot() final; | 275 void willAddFirstAuthorShadowRoot() final; |
| 276 | 276 |
| 277 void willChangeForm() final; | 277 void willChangeForm() final; |
| 278 void didChangeForm() final; | 278 void didChangeForm() final; |
| 279 InsertionNotificationRequest insertedInto(ContainerNode*) override; | 279 InsertionNotificationRequest insertedInto(ContainerNode*) override; |
| 280 void removedFrom(ContainerNode* insertionPoint, Node* next) final; | 280 void removedFrom(ContainerNode*) final; |
| 281 void didMoveToNewDocument(Document& oldDocument) final; | 281 void didMoveToNewDocument(Document& oldDocument) final; |
| 282 void removeAllEventListeners() final; | 282 void removeAllEventListeners() final; |
| 283 | 283 |
| 284 bool hasCustomFocusLogic() const final; | 284 bool hasCustomFocusLogic() const final; |
| 285 bool isKeyboardFocusable() const final; | 285 bool isKeyboardFocusable() const final; |
| 286 bool shouldShowFocusRingOnMouseFocus() const final; | 286 bool shouldShowFocusRingOnMouseFocus() const final; |
| 287 bool isEnumeratable() const final; | 287 bool isEnumeratable() const final; |
| 288 bool isInteractiveContent() const final; | 288 bool isInteractiveContent() const final; |
| 289 bool supportLabels() const final; | 289 bool supportLabels() const final; |
| 290 | 290 |
| (...skipping 102 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 393 // The ImageLoader must be owned by this element because the loader code ass
umes | 393 // The ImageLoader must be owned by this element because the loader code ass
umes |
| 394 // that it lives as long as its owning element lives. If we move the loader
into | 394 // that it lives as long as its owning element lives. If we move the loader
into |
| 395 // the ImageInput object we may delete the loader while this element lives o
n. | 395 // the ImageInput object we may delete the loader while this element lives o
n. |
| 396 OwnPtrWillBeMember<HTMLImageLoader> m_imageLoader; | 396 OwnPtrWillBeMember<HTMLImageLoader> m_imageLoader; |
| 397 OwnPtrWillBeMember<ListAttributeTargetObserver> m_listAttributeTargetObserve
r; | 397 OwnPtrWillBeMember<ListAttributeTargetObserver> m_listAttributeTargetObserve
r; |
| 398 }; | 398 }; |
| 399 | 399 |
| 400 } // namespace blink | 400 } // namespace blink |
| 401 | 401 |
| 402 #endif // HTMLInputElement_h | 402 #endif // HTMLInputElement_h |
| OLD | NEW |