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 278 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
289 | 289 |
290 virtual bool matchesReadOnlyPseudoClass() const OVERRIDE; | 290 virtual bool matchesReadOnlyPseudoClass() const OVERRIDE; |
291 virtual bool matchesReadWritePseudoClass() const OVERRIDE; | 291 virtual bool matchesReadWritePseudoClass() const OVERRIDE; |
292 virtual void setRangeText(const String& replacement, ExceptionCode&) OVERRID
E; | 292 virtual void setRangeText(const String& replacement, ExceptionCode&) OVERRID
E; |
293 virtual void setRangeText(const String& replacement, unsigned start, unsigne
d end, const String& selectionMode, ExceptionCode&) OVERRIDE; | 293 virtual void setRangeText(const String& replacement, unsigned start, unsigne
d end, const String& selectionMode, ExceptionCode&) OVERRIDE; |
294 | 294 |
295 bool hasImageLoader() const { return m_imageLoader; } | 295 bool hasImageLoader() const { return m_imageLoader; } |
296 HTMLImageLoader* imageLoader(); | 296 HTMLImageLoader* imageLoader(); |
297 | 297 |
298 bool setupDateTimeChooserParameters(DateTimeChooserParameters&); | 298 bool setupDateTimeChooserParameters(DateTimeChooserParameters&); |
299 virtual void reportMemoryUsage(MemoryObjectInfo*) const OVERRIDE; | |
300 | 299 |
301 protected: | 300 protected: |
302 HTMLInputElement(const QualifiedName&, Document*, HTMLFormElement*, bool cre
atedByParser); | 301 HTMLInputElement(const QualifiedName&, Document*, HTMLFormElement*, bool cre
atedByParser); |
303 | 302 |
304 virtual void defaultEventHandler(Event*); | 303 virtual void defaultEventHandler(Event*); |
305 | 304 |
306 private: | 305 private: |
307 enum AutoCompleteSetting { Uninitialized, On, Off }; | 306 enum AutoCompleteSetting { Uninitialized, On, Off }; |
308 | 307 |
309 // FIXME: Author shadows should be allowed | 308 // FIXME: Author shadows should be allowed |
(...skipping 121 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
431 // that it lives as long as its owning element lives. If we move the loader
into | 430 // that it lives as long as its owning element lives. If we move the loader
into |
432 // the ImageInput object we may delete the loader while this element lives o
n. | 431 // the ImageInput object we may delete the loader while this element lives o
n. |
433 OwnPtr<HTMLImageLoader> m_imageLoader; | 432 OwnPtr<HTMLImageLoader> m_imageLoader; |
434 #if ENABLE(DATALIST_ELEMENT) | 433 #if ENABLE(DATALIST_ELEMENT) |
435 OwnPtr<ListAttributeTargetObserver> m_listAttributeTargetObserver; | 434 OwnPtr<ListAttributeTargetObserver> m_listAttributeTargetObserver; |
436 #endif | 435 #endif |
437 }; | 436 }; |
438 | 437 |
439 } //namespace | 438 } //namespace |
440 #endif | 439 #endif |
OLD | NEW |