| 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 277 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 288 | 288 |
| 289 protected: | 289 protected: |
| 290 HTMLInputElement(const QualifiedName&, Document&, HTMLFormElement*, bool cre
atedByParser); | 290 HTMLInputElement(const QualifiedName&, Document&, HTMLFormElement*, bool cre
atedByParser); |
| 291 | 291 |
| 292 virtual void defaultEventHandler(Event*); | 292 virtual void defaultEventHandler(Event*); |
| 293 | 293 |
| 294 private: | 294 private: |
| 295 enum AutoCompleteSetting { Uninitialized, On, Off }; | 295 enum AutoCompleteSetting { Uninitialized, On, Off }; |
| 296 | 296 |
| 297 virtual void didAddUserAgentShadowRoot(ShadowRoot*) OVERRIDE; | 297 virtual void didAddUserAgentShadowRoot(ShadowRoot*) OVERRIDE; |
| 298 virtual void didAddShadowRoot(ShadowRoot&) OVERRIDE; |
| 298 | 299 |
| 299 virtual void willChangeForm() OVERRIDE; | 300 virtual void willChangeForm() OVERRIDE; |
| 300 virtual void didChangeForm() OVERRIDE; | 301 virtual void didChangeForm() OVERRIDE; |
| 301 virtual InsertionNotificationRequest insertedInto(ContainerNode*) OVERRIDE; | 302 virtual InsertionNotificationRequest insertedInto(ContainerNode*) OVERRIDE; |
| 302 virtual void removedFrom(ContainerNode*) OVERRIDE; | 303 virtual void removedFrom(ContainerNode*) OVERRIDE; |
| 303 virtual void didMoveToNewDocument(Document* oldDocument) OVERRIDE; | 304 virtual void didMoveToNewDocument(Document* oldDocument) OVERRIDE; |
| 304 | 305 |
| 305 virtual bool hasCustomFocusLogic() const OVERRIDE; | 306 virtual bool hasCustomFocusLogic() const OVERRIDE; |
| 306 virtual bool isKeyboardFocusable() const OVERRIDE; | 307 virtual bool isKeyboardFocusable() const OVERRIDE; |
| 307 virtual bool shouldShowFocusRingOnMouseFocus() const OVERRIDE; | 308 virtual bool shouldShowFocusRingOnMouseFocus() const OVERRIDE; |
| (...skipping 114 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 422 ASSERT_WITH_SECURITY_IMPLICATION(!node || node->hasTagName(HTMLNames::inputT
ag)); | 423 ASSERT_WITH_SECURITY_IMPLICATION(!node || node->hasTagName(HTMLNames::inputT
ag)); |
| 423 return static_cast<const HTMLInputElement*>(node); | 424 return static_cast<const HTMLInputElement*>(node); |
| 424 } | 425 } |
| 425 | 426 |
| 426 // This will catch anyone doing an unnecessary cast. | 427 // This will catch anyone doing an unnecessary cast. |
| 427 void toHTMLElement(const HTMLElement*); | 428 void toHTMLElement(const HTMLElement*); |
| 428 | 429 |
| 429 | 430 |
| 430 } //namespace | 431 } //namespace |
| 431 #endif | 432 #endif |
| OLD | NEW |