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

Unified Diff: Source/core/rendering/RenderThemeChromiumAndroid.cpp

Issue 97643002: Enable datalist for range input type on Android (Closed) Base URL: svn://svn.chromium.org/blink/trunk
Patch Set: Created 7 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 side-by-side diff with in-line comments
Download patch
« no previous file with comments | « no previous file | no next file » | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: Source/core/rendering/RenderThemeChromiumAndroid.cpp
diff --git a/Source/core/rendering/RenderThemeChromiumAndroid.cpp b/Source/core/rendering/RenderThemeChromiumAndroid.cpp
index 1a24bb4c03b4c2537e1d297ce32e8da1d2163ab9..86d0dbb4182ca50ac942ebda4a0e00beaea0cec1 100644
--- a/Source/core/rendering/RenderThemeChromiumAndroid.cpp
+++ b/Source/core/rendering/RenderThemeChromiumAndroid.cpp
@@ -109,7 +109,8 @@ bool RenderThemeChromiumAndroid::supportsDataListUI(const AtomicString& type) co
// FIXME: Add other input types.
return type == InputTypeNames::text || type == InputTypeNames::search || type == InputTypeNames::url
|| type == InputTypeNames::tel || type == InputTypeNames::email || type == InputTypeNames::number
- || type == InputTypeNames::color;
+ || type == InputTypeNames::color
+ || type == InputTypeNames::range;
}
} // namespace WebCore
« no previous file with comments | « no previous file | no next file » | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698