| OLD | NEW |
| 1 /** | 1 /** |
| 2 * Copyright (C) 2006, 2007, 2010 Apple Inc. All rights reserved. | 2 * Copyright (C) 2006, 2007, 2010 Apple Inc. All rights reserved. |
| 3 * (C) 2008 Torch Mobile Inc. All rights reserved. (http://www.torchmo
bile.com/) | 3 * (C) 2008 Torch Mobile Inc. All rights reserved. (http://www.torchmo
bile.com/) |
| 4 * Copyright (C) 2010 Google Inc. All rights reserved. | 4 * Copyright (C) 2010 Google Inc. All rights reserved. |
| 5 * Copyright (C) 2010 Nokia Corporation and/or its subsidiary(-ies). | 5 * Copyright (C) 2010 Nokia Corporation and/or its subsidiary(-ies). |
| 6 * | 6 * |
| 7 * This library is free software; you can redistribute it and/or | 7 * This library is free software; you can redistribute it and/or |
| 8 * modify it under the terms of the GNU Library General Public | 8 * modify it under the terms of the GNU Library General Public |
| 9 * License as published by the Free Software Foundation; either | 9 * License as published by the Free Software Foundation; either |
| 10 * version 2 of the License, or (at your option) any later version. | 10 * version 2 of the License, or (at your option) any later version. |
| (...skipping 239 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 250 // 2) The frame is active | 250 // 2) The frame is active |
| 251 // 3) The element is focused | 251 // 3) The element is focused |
| 252 // 4) The caps lock is on | 252 // 4) The caps lock is on |
| 253 bool shouldDrawCapsLockIndicator = false; | 253 bool shouldDrawCapsLockIndicator = false; |
| 254 | 254 |
| 255 if (LocalFrame* frame = document().frame()) | 255 if (LocalFrame* frame = document().frame()) |
| 256 shouldDrawCapsLockIndicator = inputElement()->isPasswordField() && frame
->selection().isFocusedAndActive() && document().focusedElement() == node() && P
latformKeyboardEvent::currentCapsLockState(); | 256 shouldDrawCapsLockIndicator = inputElement()->isPasswordField() && frame
->selection().isFocusedAndActive() && document().focusedElement() == node() && P
latformKeyboardEvent::currentCapsLockState(); |
| 257 | 257 |
| 258 if (shouldDrawCapsLockIndicator != m_shouldDrawCapsLockIndicator) { | 258 if (shouldDrawCapsLockIndicator != m_shouldDrawCapsLockIndicator) { |
| 259 m_shouldDrawCapsLockIndicator = shouldDrawCapsLockIndicator; | 259 m_shouldDrawCapsLockIndicator = shouldDrawCapsLockIndicator; |
| 260 paintInvalidationForWholeRenderer(); | 260 setShouldDoFullPaintInvalidation(true); |
| 261 } | 261 } |
| 262 } | 262 } |
| 263 | 263 |
| 264 bool RenderTextControlSingleLine::hasControlClip() const | 264 bool RenderTextControlSingleLine::hasControlClip() const |
| 265 { | 265 { |
| 266 // Apply control clip for text fields with decorations. | 266 // Apply control clip for text fields with decorations. |
| 267 return !!containerElement(); | 267 return !!containerElement(); |
| 268 } | 268 } |
| 269 | 269 |
| 270 LayoutRect RenderTextControlSingleLine::controlClipRect(const LayoutPoint& addit
ionalOffset) const | 270 LayoutRect RenderTextControlSingleLine::controlClipRect(const LayoutPoint& addit
ionalOffset) const |
| (...skipping 140 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 411 if (innerEditorElement()) | 411 if (innerEditorElement()) |
| 412 innerEditorElement()->setScrollTop(newTop); | 412 innerEditorElement()->setScrollTop(newTop); |
| 413 } | 413 } |
| 414 | 414 |
| 415 HTMLInputElement* RenderTextControlSingleLine::inputElement() const | 415 HTMLInputElement* RenderTextControlSingleLine::inputElement() const |
| 416 { | 416 { |
| 417 return toHTMLInputElement(node()); | 417 return toHTMLInputElement(node()); |
| 418 } | 418 } |
| 419 | 419 |
| 420 } | 420 } |
| OLD | NEW |