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

Side by Side Diff: Source/WebCore/html/InputType.cpp

Issue 8336009: Merge 97351 - REGRESSION(r89915): <input type=email multiple> don't show the default value (Closed) Base URL: http://svn.webkit.org/repository/webkit/branches/chromium/874/
Patch Set: Created 9 years, 2 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
« no previous file with comments | « Source/WebCore/html/InputType.h ('k') | Source/WebCore/html/NumberInputType.h » ('j') | 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, 2009, 2010, 2011 Apple Inc. All r ights reserved. 5 * Copyright (C) 2004, 2005, 2006, 2007, 2008, 2009, 2010, 2011 Apple Inc. All r ights reserved.
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 * Copyright (C) 2010 Google Inc. All rights reserved. 8 * Copyright (C) 2010 Google Inc. All rights reserved.
9 * 9 *
10 * This library is free software; you can redistribute it and/or 10 * This library is free software; you can redistribute it and/or
(...skipping 536 matching lines...) Expand 10 before | Expand all | Expand 10 after
547 String InputType::convertFromVisibleValue(const String& visibleValue) const 547 String InputType::convertFromVisibleValue(const String& visibleValue) const
548 { 548 {
549 return visibleValue; 549 return visibleValue;
550 } 550 }
551 551
552 bool InputType::isAcceptableValue(const String&) 552 bool InputType::isAcceptableValue(const String&)
553 { 553 {
554 return true; 554 return true;
555 } 555 }
556 556
557 String InputType::sanitizeValue(const String& proposedValue) 557 String InputType::sanitizeValue(const String& proposedValue) const
558 { 558 {
559 return proposedValue; 559 return proposedValue;
560 } 560 }
561 561
562 bool InputType::hasUnacceptableValue() 562 bool InputType::hasUnacceptableValue()
563 { 563 {
564 return false; 564 return false;
565 } 565 }
566 566
567 void InputType::receiveDroppedFiles(const Vector<String>&) 567 void InputType::receiveDroppedFiles(const Vector<String>&)
(...skipping 282 matching lines...) Expand 10 before | Expand all | Expand 10 after
850 850
851 const AtomicString& week() 851 const AtomicString& week()
852 { 852 {
853 DEFINE_STATIC_LOCAL(AtomicString, name, ("week")); 853 DEFINE_STATIC_LOCAL(AtomicString, name, ("week"));
854 return name; 854 return name;
855 } 855 }
856 856
857 } // namespace WebCore::InputTypeNames 857 } // namespace WebCore::InputTypeNames
858 858
859 } // namespace WebCore 859 } // namespace WebCore
OLDNEW
« no previous file with comments | « Source/WebCore/html/InputType.h ('k') | Source/WebCore/html/NumberInputType.h » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698