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

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

Issue 11415195: Merge 135829 - :read-only selector should match to date/time input types (Closed) Base URL: http://svn.webkit.org/repository/webkit/branches/chromium/1312/
Patch Set: Created 8 years 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/TextFieldInputType.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) 2009, 2010, 2011, 2012 Google Inc. All rights reserved. 8 * Copyright (C) 2009, 2010, 2011, 2012 Google Inc. All rights reserved.
9 * Copyright (C) 2012 Samsung Electronics. All rights reserved. 9 * Copyright (C) 2012 Samsung Electronics. All rights reserved.
10 * 10 *
(...skipping 863 matching lines...) Expand 10 before | Expand all | Expand 10 after
874 bool InputType::usesFixedPlaceholder() const 874 bool InputType::usesFixedPlaceholder() const
875 { 875 {
876 return false; 876 return false;
877 } 877 }
878 878
879 String InputType::fixedPlaceholder() 879 String InputType::fixedPlaceholder()
880 { 880 {
881 return String(); 881 return String();
882 } 882 }
883 883
884 bool InputType::supportsReadOnly() const
885 {
886 return false;
887 }
888
884 void InputType::updateInnerTextValue() 889 void InputType::updateInnerTextValue()
885 { 890 {
886 } 891 }
887 892
888 void InputType::updatePlaceholderText() 893 void InputType::updatePlaceholderText()
889 { 894 {
890 } 895 }
891 896
892 void InputType::multipleAttributeChanged() 897 void InputType::multipleAttributeChanged()
893 { 898 {
(...skipping 219 matching lines...) Expand 10 before | Expand all | Expand 10 after
1113 if (n > 1) 1118 if (n > 1)
1114 applyStep(n - 1, AnyIsDefaultStep, DispatchInputAndChangeEvent, ec); 1119 applyStep(n - 1, AnyIsDefaultStep, DispatchInputAndChangeEvent, ec);
1115 else if (n < -1) 1120 else if (n < -1)
1116 applyStep(n + 1, AnyIsDefaultStep, DispatchInputAndChangeEvent, ec); 1121 applyStep(n + 1, AnyIsDefaultStep, DispatchInputAndChangeEvent, ec);
1117 } else 1122 } else
1118 applyStep(n, AnyIsDefaultStep, DispatchInputAndChangeEvent, ec); 1123 applyStep(n, AnyIsDefaultStep, DispatchInputAndChangeEvent, ec);
1119 } 1124 }
1120 } 1125 }
1121 1126
1122 } // namespace WebCore 1127 } // namespace WebCore
OLDNEW
« no previous file with comments | « Source/WebCore/html/InputType.h ('k') | Source/WebCore/html/TextFieldInputType.h » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698