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

Unified Diff: chrome/browser/resources/options/chromeos/proxy.html

Issue 6737035: Proxy settings automation hooks and related proxy settings fixes. (Closed) Base URL: svn://svn.chromium.org/chrome/trunk/src
Patch Set: Fix outdated header. Created 9 years, 9 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 side-by-side diff with in-line comments
Download patch
Index: chrome/browser/resources/options/chromeos/proxy.html
diff --git a/chrome/browser/resources/options/chromeos/proxy.html b/chrome/browser/resources/options/chromeos/proxy.html
index ae9efe521e0f998e914aad24fa7f0e88a861d6b2..81c3d1ee3eb7f89ed93c78edc4bd12112daf42bc 100644
--- a/chrome/browser/resources/options/chromeos/proxy.html
+++ b/chrome/browser/resources/options/chromeos/proxy.html
@@ -32,7 +32,7 @@
</td><td>
<span
i18n-content="proxyPort"></span>
- <input id="proxyHostSinglePort" type="text" size="5" pref="cros.session.proxy.singlehttpport" disabled>
+ <input id="proxyHostSinglePort" type="text" dataType="number" size="5" pref="cros.session.proxy.singlehttpport" disabled>
</td></tr>
</table>
</div>
@@ -45,7 +45,7 @@
</td><td>
<span
i18n-content="proxyPort"></span></td><td>
- <input id="proxyHostPort" type="text" size="5" pref="cros.session.proxy.httpport" disabled>
+ <input id="proxyHostPort" type="text" dataType="number" size="5" pref="cros.session.proxy.httpport" disabled>
</td></tr>
<tr>
<td><span
@@ -54,7 +54,7 @@
</td><td>
<span
i18n-content="proxyPort"></span></td><td>
- <input id="secureProxyPort" type="text" size="5" pref="cros.session.proxy.httpsport" disabled>
+ <input id="secureProxyPort" type="text" dataType="number" size="5" pref="cros.session.proxy.httpsport" disabled>
</td></tr>
<tr>
<td><span
@@ -63,7 +63,7 @@
</td><td>
<span
i18n-content="proxyPort"></span></td><td>
- <input id="ftpProxyPort" type="text" size="5" pref="cros.session.proxy.ftpport" disabled>
+ <input id="ftpProxyPort" type="text" dataType="number" size="5" pref="cros.session.proxy.ftpport" disabled>
</td></tr>
<tr>
<td><span
@@ -72,7 +72,7 @@
</td><td>
<span
i18n-content="proxyPort"></span></td><td>
- <input id="socksPort" type="text" size="5" pref="cros.session.proxy.socksport" disabled>
+ <input id="socksPort" type="text" dataType="number" size="5" pref="cros.session.proxy.socksport" disabled>
</td></tr>
</table>
</div>
« no previous file with comments | « chrome/browser/chromeos/proxy_cros_settings_provider.cc ('k') | chrome/browser/resources/options/pref_ui.js » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698