Chromium Code Reviews
chromiumcodereview-hr@appspot.gserviceaccount.com (chromiumcodereview-hr) | Please choose your nickname with Settings | Help | Chromium Project | Gerrit Changes | Sign out
(136)

Side by Side Diff: Source/core/html/HTMLTextAreaElement.cpp

Issue 576073003: Removal of more temporary Range objects. (Closed) Base URL: svn://svn.chromium.org/blink/trunk
Patch Set: Fix build; accidentally removed .get() call Created 6 years, 3 months ago
Use n/p to move between diff chunks; N/P to move between comments. Draft comments are only viewable by you.
Jump to:
View unified diff | Download patch | Annotate | Revision Log
« no previous file with comments | « Source/core/editing/VisiblePosition.h ('k') | no next file » | no next file with comments »
Toggle Intra-line Diffs ('i') | Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
OLDNEW
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) 2001 Dirk Mueller (mueller@kde.org) 4 * (C) 2001 Dirk Mueller (mueller@kde.org)
5 * Copyright (C) 2004, 2005, 2006, 2007, 2008, 2010 Apple Inc. All rights reserv ed. 5 * Copyright (C) 2004, 2005, 2006, 2007, 2008, 2010 Apple Inc. All rights reserv ed.
6 * (C) 2006 Alexey Proskuryakov (ap@nypop.com) 6 * (C) 2006 Alexey Proskuryakov (ap@nypop.com)
7 * Copyright (C) 2007 Samuel Weinig (sam@webkit.org) 7 * Copyright (C) 2007 Samuel Weinig (sam@webkit.org)
8 * 8 *
9 * This library is free software; you can redistribute it and/or 9 * This library is free software; you can redistribute it and/or
10 * modify it under the terms of the GNU Library General Public 10 * modify it under the terms of the GNU Library General Public
(...skipping 282 matching lines...) Expand 10 before | Expand all | Expand 10 after
293 const String& currentValue = innerEditorValue(); 293 const String& currentValue = innerEditorValue();
294 unsigned currentLength = computeLengthForSubmission(currentValue); 294 unsigned currentLength = computeLengthForSubmission(currentValue);
295 if (currentLength + computeLengthForSubmission(event->text()) < unsignedMaxL ength) 295 if (currentLength + computeLengthForSubmission(event->text()) < unsignedMaxL ength)
296 return; 296 return;
297 297
298 // selectionLength represents the selection length of this text field to be 298 // selectionLength represents the selection length of this text field to be
299 // removed by this insertion. 299 // removed by this insertion.
300 // If the text field has no focus, we don't need to take account of the 300 // If the text field has no focus, we don't need to take account of the
301 // selection length. The selection is the source of text drag-and-drop in 301 // selection length. The selection is the source of text drag-and-drop in
302 // that case, and nothing in the text field will be removed. 302 // that case, and nothing in the text field will be removed.
303 unsigned selectionLength = focused() ? computeLengthForSubmission(plainText( document().frame()->selection().selection().toNormalizedRange().get())) : 0; 303 unsigned selectionLength = 0;
304 if (focused()) {
305 Position start, end;
306 document().frame()->selection().selection().toNormalizedPositions(start, end);
307 selectionLength = computeLengthForSubmission(plainText(start, end));
308 }
304 ASSERT(currentLength >= selectionLength); 309 ASSERT(currentLength >= selectionLength);
305 unsigned baseLength = currentLength - selectionLength; 310 unsigned baseLength = currentLength - selectionLength;
306 unsigned appendableLength = unsignedMaxLength > baseLength ? unsignedMaxLeng th - baseLength : 0; 311 unsigned appendableLength = unsignedMaxLength > baseLength ? unsignedMaxLeng th - baseLength : 0;
307 event->setText(sanitizeUserInputValue(event->text(), appendableLength)); 312 event->setText(sanitizeUserInputValue(event->text(), appendableLength));
308 } 313 }
309 314
310 String HTMLTextAreaElement::sanitizeUserInputValue(const String& proposedValue, unsigned maxLength) 315 String HTMLTextAreaElement::sanitizeUserInputValue(const String& proposedValue, unsigned maxLength)
311 { 316 {
312 if (maxLength > 0 && U16_IS_LEAD(proposedValue[maxLength - 1])) 317 if (maxLength > 0 && U16_IS_LEAD(proposedValue[maxLength - 1]))
313 --maxLength; 318 --maxLength;
(...skipping 257 matching lines...) Expand 10 before | Expand all | Expand 10 after
571 { 576 {
572 return true; 577 return true;
573 } 578 }
574 579
575 bool HTMLTextAreaElement::supportsAutofocus() const 580 bool HTMLTextAreaElement::supportsAutofocus() const
576 { 581 {
577 return true; 582 return true;
578 } 583 }
579 584
580 } 585 }
OLDNEW
« no previous file with comments | « Source/core/editing/VisiblePosition.h ('k') | no next file » | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698