| 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 279 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 290 virtual bool matchesReadWritePseudoClass() const OVERRIDE; | 290 virtual bool matchesReadWritePseudoClass() const OVERRIDE; |
| 291 virtual void setRangeText(const String& replacement, ExceptionCode&) OVERRID
E; | 291 virtual void setRangeText(const String& replacement, ExceptionCode&) OVERRID
E; |
| 292 virtual void setRangeText(const String& replacement, unsigned start, unsigne
d end, const String& selectionMode, ExceptionCode&) OVERRIDE; | 292 virtual void setRangeText(const String& replacement, unsigned start, unsigne
d end, const String& selectionMode, ExceptionCode&) OVERRIDE; |
| 293 | 293 |
| 294 bool hasImageLoader() const { return m_imageLoader; } | 294 bool hasImageLoader() const { return m_imageLoader; } |
| 295 HTMLImageLoader* imageLoader(); | 295 HTMLImageLoader* imageLoader(); |
| 296 | 296 |
| 297 bool setupDateTimeChooserParameters(DateTimeChooserParameters&); | 297 bool setupDateTimeChooserParameters(DateTimeChooserParameters&); |
| 298 virtual void reportMemoryUsage(MemoryObjectInfo*) const OVERRIDE; | 298 virtual void reportMemoryUsage(MemoryObjectInfo*) const OVERRIDE; |
| 299 | 299 |
| 300 virtual void acceptHeapVisitor(Visitor*) const OVERRIDE; | |
| 301 | |
| 302 protected: | 300 protected: |
| 303 HTMLInputElement(const QualifiedName&, Handle<Document>, HTMLFormElement*, b
ool createdByParser); | 301 HTMLInputElement(const QualifiedName&, Handle<Document>, HTMLFormElement*, b
ool createdByParser); |
| 304 | 302 |
| 305 virtual void defaultEventHandler(Event*); | 303 virtual void defaultEventHandler(Event*); |
| 306 | 304 |
| 305 virtual void acceptHeapVisitor(Visitor*) const OVERRIDE; |
| 306 |
| 307 private: | 307 private: |
| 308 enum AutoCompleteSetting { Uninitialized, On, Off }; | 308 enum AutoCompleteSetting { Uninitialized, On, Off }; |
| 309 | 309 |
| 310 // FIXME: Author shadows should be allowed | 310 // FIXME: Author shadows should be allowed |
| 311 // https://bugs.webkit.org/show_bug.cgi?id=92608 | 311 // https://bugs.webkit.org/show_bug.cgi?id=92608 |
| 312 virtual bool areAuthorShadowsAllowed() const OVERRIDE { return false; } | 312 virtual bool areAuthorShadowsAllowed() const OVERRIDE { return false; } |
| 313 | 313 |
| 314 virtual void didAddUserAgentShadowRoot(ShadowRoot*) OVERRIDE; | 314 virtual void didAddUserAgentShadowRoot(ShadowRoot*) OVERRIDE; |
| 315 | 315 |
| 316 virtual void willChangeForm() OVERRIDE; | 316 virtual void willChangeForm() OVERRIDE; |
| (...skipping 109 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 426 // that it lives as long as its owning element lives. If we move the loader
into | 426 // that it lives as long as its owning element lives. If we move the loader
into |
| 427 // the ImageInput object we may delete the loader while this element lives o
n. | 427 // the ImageInput object we may delete the loader while this element lives o
n. |
| 428 OwnPtr<HTMLImageLoader> m_imageLoader; | 428 OwnPtr<HTMLImageLoader> m_imageLoader; |
| 429 #if ENABLE(DATALIST_ELEMENT) | 429 #if ENABLE(DATALIST_ELEMENT) |
| 430 OwnPtr<ListAttributeTargetObserver> m_listAttributeTargetObserver; | 430 OwnPtr<ListAttributeTargetObserver> m_listAttributeTargetObserver; |
| 431 #endif | 431 #endif |
| 432 }; | 432 }; |
| 433 | 433 |
| 434 } //namespace | 434 } //namespace |
| 435 #endif | 435 #endif |
| OLD | NEW |