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

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

Issue 12159003: Merge 141195 (Closed) Base URL: http://svn.webkit.org/repository/webkit/branches/chromium/1364/
Patch Set: Created 7 years, 10 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/shadow/DateTimeEditElement.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 716 matching lines...) Expand 10 before | Expand all | Expand 10 after
727 return String(); 727 return String();
728 } 728 }
729 #endif 729 #endif
730 730
731 Icon* InputType::icon() const 731 Icon* InputType::icon() const
732 { 732 {
733 ASSERT_NOT_REACHED(); 733 ASSERT_NOT_REACHED();
734 return 0; 734 return 0;
735 } 735 }
736 736
737 bool InputType::shouldApplyLocaleDirection() const
738 {
739 return false;
740 }
741
737 bool InputType::shouldResetOnDocumentActivation() 742 bool InputType::shouldResetOnDocumentActivation()
738 { 743 {
739 return false; 744 return false;
740 } 745 }
741 746
742 bool InputType::shouldRespectListAttribute() 747 bool InputType::shouldRespectListAttribute()
743 { 748 {
744 return false; 749 return false;
745 } 750 }
746 751
(...skipping 372 matching lines...) Expand 10 before | Expand all | Expand 10 after
1119 if (n > 1) 1124 if (n > 1)
1120 applyStep(n - 1, AnyIsDefaultStep, DispatchInputAndChangeEvent, ec); 1125 applyStep(n - 1, AnyIsDefaultStep, DispatchInputAndChangeEvent, ec);
1121 else if (n < -1) 1126 else if (n < -1)
1122 applyStep(n + 1, AnyIsDefaultStep, DispatchInputAndChangeEvent, ec); 1127 applyStep(n + 1, AnyIsDefaultStep, DispatchInputAndChangeEvent, ec);
1123 } else 1128 } else
1124 applyStep(n, AnyIsDefaultStep, DispatchInputAndChangeEvent, ec); 1129 applyStep(n, AnyIsDefaultStep, DispatchInputAndChangeEvent, ec);
1125 } 1130 }
1126 } 1131 }
1127 1132
1128 } // namespace WebCore 1133 } // namespace WebCore
OLDNEW
« no previous file with comments | « Source/WebCore/html/InputType.h ('k') | Source/WebCore/html/shadow/DateTimeEditElement.h » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698