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

Side by Side Diff: Source/WebCore/html/NumberInputType.h

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.cpp ('k') | Source/WebCore/html/NumberInputType.cpp » ('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) 2010 Google Inc. All rights reserved. 2 * Copyright (C) 2010 Google Inc. All rights reserved.
3 * 3 *
4 * Redistribution and use in source and binary forms, with or without 4 * Redistribution and use in source and binary forms, with or without
5 * modification, are permitted provided that the following conditions are 5 * modification, are permitted provided that the following conditions are
6 * met: 6 * met:
7 * 7 *
8 * * Redistributions of source code must retain the above copyright 8 * * Redistributions of source code must retain the above copyright
9 * notice, this list of conditions and the following disclaimer. 9 * notice, this list of conditions and the following disclaimer.
10 * * Redistributions in binary form must reproduce the above 10 * * Redistributions in binary form must reproduce the above
(...skipping 50 matching lines...) Expand 10 before | Expand all | Expand 10 after
61 virtual void handleKeydownEvent(KeyboardEvent*); 61 virtual void handleKeydownEvent(KeyboardEvent*);
62 virtual void handleWheelEvent(WheelEvent*); 62 virtual void handleWheelEvent(WheelEvent*);
63 virtual double parseToDouble(const String&, double) const; 63 virtual double parseToDouble(const String&, double) const;
64 virtual double parseToDoubleWithDecimalPlaces(const String&, double, unsigne d*) const; 64 virtual double parseToDoubleWithDecimalPlaces(const String&, double, unsigne d*) const;
65 virtual String serialize(double) const; 65 virtual String serialize(double) const;
66 virtual double acceptableError(double) const; 66 virtual double acceptableError(double) const;
67 virtual void willBlur(); 67 virtual void willBlur();
68 virtual String visibleValue() const; 68 virtual String visibleValue() const;
69 virtual String convertFromVisibleValue(const String&) const; 69 virtual String convertFromVisibleValue(const String&) const;
70 virtual bool isAcceptableValue(const String&); 70 virtual bool isAcceptableValue(const String&);
71 virtual String sanitizeValue(const String&); 71 virtual String sanitizeValue(const String&) const;
72 virtual bool hasUnacceptableValue(); 72 virtual bool hasUnacceptableValue();
73 virtual bool shouldRespectSpeechAttribute(); 73 virtual bool shouldRespectSpeechAttribute();
74 virtual bool supportsPlaceholder() const; 74 virtual bool supportsPlaceholder() const;
75 virtual bool isNumberField() const; 75 virtual bool isNumberField() const;
76 virtual void minOrMaxAttributeChanged(); 76 virtual void minOrMaxAttributeChanged();
77 virtual void stepAttributeChanged(); 77 virtual void stepAttributeChanged();
78 }; 78 };
79 79
80 } // namespace WebCore 80 } // namespace WebCore
81 81
82 #endif // NumberInputType_h 82 #endif // NumberInputType_h
OLDNEW
« no previous file with comments | « Source/WebCore/html/InputType.cpp ('k') | Source/WebCore/html/NumberInputType.cpp » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698