| 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 235 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 246 HTMLElement* list() const; | 246 HTMLElement* list() const; |
| 247 HTMLDataListElement* dataList() const; | 247 HTMLDataListElement* dataList() const; |
| 248 void listAttributeTargetChanged(); | 248 void listAttributeTargetChanged(); |
| 249 #endif | 249 #endif |
| 250 | 250 |
| 251 HTMLInputElement* checkedRadioButtonForGroup() const; | 251 HTMLInputElement* checkedRadioButtonForGroup() const; |
| 252 bool isInRequiredRadioButtonGroup(); | 252 bool isInRequiredRadioButtonGroup(); |
| 253 | 253 |
| 254 // Functions for InputType classes. | 254 // Functions for InputType classes. |
| 255 void setValueInternal(const String&, TextFieldEventBehavior); | 255 void setValueInternal(const String&, TextFieldEventBehavior); |
| 256 bool isTextFormControlFocusable() const; | |
| 257 bool isTextFormControlKeyboardFocusable(KeyboardEvent*) const; | 256 bool isTextFormControlKeyboardFocusable(KeyboardEvent*) const; |
| 258 bool isTextFormControlMouseFocusable() const; | 257 bool isTextFormControlMouseFocusable() const; |
| 259 bool valueAttributeWasUpdatedAfterParsing() const { return m_valueAttributeW
asUpdatedAfterParsing; } | 258 bool valueAttributeWasUpdatedAfterParsing() const { return m_valueAttributeW
asUpdatedAfterParsing; } |
| 260 | 259 |
| 261 void cacheSelectionInResponseToSetValue(int caretOffset) { cacheSelection(ca
retOffset, caretOffset, SelectionHasNoDirection); } | 260 void cacheSelectionInResponseToSetValue(int caretOffset) { cacheSelection(ca
retOffset, caretOffset, SelectionHasNoDirection); } |
| 262 | 261 |
| 263 #if ENABLE(INPUT_TYPE_COLOR) | 262 #if ENABLE(INPUT_TYPE_COLOR) |
| 264 // For test purposes. | 263 // For test purposes. |
| 265 void selectColorInColorChooser(const Color&); | 264 void selectColorInColorChooser(const Color&); |
| 266 #endif | 265 #endif |
| (...skipping 167 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 434 // that it lives as long as its owning element lives. If we move the loader
into | 433 // that it lives as long as its owning element lives. If we move the loader
into |
| 435 // the ImageInput object we may delete the loader while this element lives o
n. | 434 // the ImageInput object we may delete the loader while this element lives o
n. |
| 436 OwnPtr<HTMLImageLoader> m_imageLoader; | 435 OwnPtr<HTMLImageLoader> m_imageLoader; |
| 437 #if ENABLE(DATALIST_ELEMENT) | 436 #if ENABLE(DATALIST_ELEMENT) |
| 438 OwnPtr<ListAttributeTargetObserver> m_listAttributeTargetObserver; | 437 OwnPtr<ListAttributeTargetObserver> m_listAttributeTargetObserver; |
| 439 #endif | 438 #endif |
| 440 }; | 439 }; |
| 441 | 440 |
| 442 } //namespace | 441 } //namespace |
| 443 #endif | 442 #endif |
| OLD | NEW |