| 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 378 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 389 #if ENABLE(DATALIST_ELEMENT) | 389 #if ENABLE(DATALIST_ELEMENT) |
| 390 void resetListAttributeTargetObserver(); | 390 void resetListAttributeTargetObserver(); |
| 391 #endif | 391 #endif |
| 392 void parseMaxLengthAttribute(const AtomicString&); | 392 void parseMaxLengthAttribute(const AtomicString&); |
| 393 void updateValueIfNeeded(); | 393 void updateValueIfNeeded(); |
| 394 | 394 |
| 395 // Returns null if this isn't associated with any radio button group. | 395 // Returns null if this isn't associated with any radio button group. |
| 396 CheckedRadioButtons* checkedRadioButtons() const; | 396 CheckedRadioButtons* checkedRadioButtons() const; |
| 397 void addToRadioButtonGroup(); | 397 void addToRadioButtonGroup(); |
| 398 void removeFromRadioButtonGroup(); | 398 void removeFromRadioButtonGroup(); |
| 399 #if ENABLE(INPUT_MULTIPLE_FIELDS_UI) |
| 400 virtual PassRefPtr<RenderStyle> customStyleForRenderer() OVERRIDE; |
| 401 #endif |
| 399 | 402 |
| 400 AtomicString m_name; | 403 AtomicString m_name; |
| 401 String m_valueIfDirty; | 404 String m_valueIfDirty; |
| 402 String m_suggestedValue; | 405 String m_suggestedValue; |
| 403 int m_size; | 406 int m_size; |
| 404 int m_maxLength; | 407 int m_maxLength; |
| 405 short m_maxResults; | 408 short m_maxResults; |
| 406 bool m_isChecked : 1; | 409 bool m_isChecked : 1; |
| 407 bool m_reflectsCheckedAttribute : 1; | 410 bool m_reflectsCheckedAttribute : 1; |
| 408 bool m_isIndeterminate : 1; | 411 bool m_isIndeterminate : 1; |
| (...skipping 13 matching lines...) Expand all Loading... |
| 422 bool m_hasTouchEventHandler : 1; | 425 bool m_hasTouchEventHandler : 1; |
| 423 #endif | 426 #endif |
| 424 OwnPtr<InputType> m_inputType; | 427 OwnPtr<InputType> m_inputType; |
| 425 #if ENABLE(DATALIST_ELEMENT) | 428 #if ENABLE(DATALIST_ELEMENT) |
| 426 OwnPtr<ListAttributeTargetObserver> m_listAttributeTargetObserver; | 429 OwnPtr<ListAttributeTargetObserver> m_listAttributeTargetObserver; |
| 427 #endif | 430 #endif |
| 428 }; | 431 }; |
| 429 | 432 |
| 430 } //namespace | 433 } //namespace |
| 431 #endif | 434 #endif |
| OLD | NEW |