| 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 242 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 253 void setValueInternal(const String&, TextFieldEventBehavior); | 253 void setValueInternal(const String&, TextFieldEventBehavior); |
| 254 bool isTextFormControlKeyboardFocusable(KeyboardEvent*) const; | 254 bool isTextFormControlKeyboardFocusable(KeyboardEvent*) const; |
| 255 bool isTextFormControlMouseFocusable() const; | 255 bool isTextFormControlMouseFocusable() const; |
| 256 bool valueAttributeWasUpdatedAfterParsing() const { return m_valueAttributeW
asUpdatedAfterParsing; } | 256 bool valueAttributeWasUpdatedAfterParsing() const { return m_valueAttributeW
asUpdatedAfterParsing; } |
| 257 | 257 |
| 258 void cacheSelectionInResponseToSetValue(int caretOffset) { cacheSelection(ca
retOffset, caretOffset, SelectionHasNoDirection); } | 258 void cacheSelectionInResponseToSetValue(int caretOffset) { cacheSelection(ca
retOffset, caretOffset, SelectionHasNoDirection); } |
| 259 | 259 |
| 260 #if ENABLE(INPUT_TYPE_COLOR) | 260 #if ENABLE(INPUT_TYPE_COLOR) |
| 261 // For test purposes. | 261 // For test purposes. |
| 262 void selectColorInColorChooser(const Color&); | 262 void selectColorInColorChooser(const Color&); |
| 263 bool isColorChooserShown() const; |
| 263 #endif | 264 #endif |
| 264 | 265 |
| 265 String defaultToolTip() const; | 266 String defaultToolTip() const; |
| 266 | 267 |
| 267 #if ENABLE(MEDIA_CAPTURE) | 268 #if ENABLE(MEDIA_CAPTURE) |
| 268 String capture() const; | 269 String capture() const; |
| 269 void setCapture(const String& value); | 270 void setCapture(const String& value); |
| 270 #endif | 271 #endif |
| 271 | 272 |
| 272 static const int maximumLength; | 273 static const int maximumLength; |
| (...skipping 150 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 423 // that it lives as long as its owning element lives. If we move the loader
into | 424 // that it lives as long as its owning element lives. If we move the loader
into |
| 424 // the ImageInput object we may delete the loader while this element lives o
n. | 425 // the ImageInput object we may delete the loader while this element lives o
n. |
| 425 OwnPtr<HTMLImageLoader> m_imageLoader; | 426 OwnPtr<HTMLImageLoader> m_imageLoader; |
| 426 #if ENABLE(DATALIST_ELEMENT) | 427 #if ENABLE(DATALIST_ELEMENT) |
| 427 OwnPtr<ListAttributeTargetObserver> m_listAttributeTargetObserver; | 428 OwnPtr<ListAttributeTargetObserver> m_listAttributeTargetObserver; |
| 428 #endif | 429 #endif |
| 429 }; | 430 }; |
| 430 | 431 |
| 431 } //namespace | 432 } //namespace |
| 432 #endif | 433 #endif |
| OLD | NEW |