| 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 313 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 324 virtual void collectStyleForPresentationAttribute(const QualifiedName&, cons
t AtomicString&, MutableStylePropertySet*) OVERRIDE; | 324 virtual void collectStyleForPresentationAttribute(const QualifiedName&, cons
t AtomicString&, MutableStylePropertySet*) OVERRIDE; |
| 325 virtual void finishParsingChildren(); | 325 virtual void finishParsingChildren(); |
| 326 | 326 |
| 327 virtual void copyNonAttributePropertiesFromElement(const Element&); | 327 virtual void copyNonAttributePropertiesFromElement(const Element&); |
| 328 | 328 |
| 329 virtual void attach(const AttachContext& = AttachContext()) OVERRIDE; | 329 virtual void attach(const AttachContext& = AttachContext()) OVERRIDE; |
| 330 | 330 |
| 331 virtual bool appendFormData(FormDataList&, bool) OVERRIDE; | 331 virtual bool appendFormData(FormDataList&, bool) OVERRIDE; |
| 332 virtual String resultForDialogSubmit() OVERRIDE; | 332 virtual String resultForDialogSubmit() OVERRIDE; |
| 333 | 333 |
| 334 virtual bool isSuccessfulSubmitButton() const; | 334 virtual bool canBeSuccessfulSubmitButton() const OVERRIDE; |
| 335 | 335 |
| 336 virtual void resetImpl() OVERRIDE; | 336 virtual void resetImpl() OVERRIDE; |
| 337 | 337 |
| 338 virtual void* preDispatchEventHandler(Event*); | 338 virtual void* preDispatchEventHandler(Event*); |
| 339 virtual void postDispatchEventHandler(Event*, void* dataFromPreDispatch); | 339 virtual void postDispatchEventHandler(Event*, void* dataFromPreDispatch); |
| 340 | 340 |
| 341 virtual bool isURLAttribute(const Attribute&) const OVERRIDE; | 341 virtual bool isURLAttribute(const Attribute&) const OVERRIDE; |
| 342 virtual bool isInRange() const; | 342 virtual bool isInRange() const; |
| 343 virtual bool isOutOfRange() const; | 343 virtual bool isOutOfRange() const; |
| 344 | 344 |
| (...skipping 58 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 403 // that it lives as long as its owning element lives. If we move the loader
into | 403 // that it lives as long as its owning element lives. If we move the loader
into |
| 404 // the ImageInput object we may delete the loader while this element lives o
n. | 404 // the ImageInput object we may delete the loader while this element lives o
n. |
| 405 OwnPtr<HTMLImageLoader> m_imageLoader; | 405 OwnPtr<HTMLImageLoader> m_imageLoader; |
| 406 OwnPtr<ListAttributeTargetObserver> m_listAttributeTargetObserver; | 406 OwnPtr<ListAttributeTargetObserver> m_listAttributeTargetObserver; |
| 407 }; | 407 }; |
| 408 | 408 |
| 409 DEFINE_NODE_TYPE_CASTS(HTMLInputElement, hasTagName(HTMLNames::inputTag)); | 409 DEFINE_NODE_TYPE_CASTS(HTMLInputElement, hasTagName(HTMLNames::inputTag)); |
| 410 | 410 |
| 411 } //namespace | 411 } //namespace |
| 412 #endif | 412 #endif |
| OLD | NEW |