diff options
author | tkent@chromium.org <tkent@chromium.org@0039d316-1c4b-4281-b951-d872f2087c98> | 2012-06-26 06:02:41 +0000 |
---|---|---|
committer | tkent@chromium.org <tkent@chromium.org@0039d316-1c4b-4281-b951-d872f2087c98> | 2012-06-26 06:02:41 +0000 |
commit | 95c448efc6d532c77114d4d7bbb9760de6d2f2be (patch) | |
tree | 62c68e43055312fc5c6f2ec09f3631645b78d5ff /chrome | |
parent | 6138a220b368aa905283eb1a403f09f4d9e37f52 (diff) | |
download | chromium_src-95c448efc6d532c77114d4d7bbb9760de6d2f2be.zip chromium_src-95c448efc6d532c77114d4d7bbb9760de6d2f2be.tar.gz chromium_src-95c448efc6d532c77114d4d7bbb9760de6d2f2be.tar.bz2 |
Remove --disable-interactive-form-validation flag and about:flags UI for it.
We introduced this flag as a workaround for web sites which are not compatible
with HTML5 form validation. However we have received just one bug report [1]
caused by this feature since January 2011.
It's safe to remove the flag because the feature didn't make many
incompatibility issues.
[1] http://webkit.org/b/44436
BUG=none
TEST=none
Review URL: https://chromiumcodereview.appspot.com/10640016
git-svn-id: svn://svn.chromium.org/chrome/trunk/src@144125 0039d316-1c4b-4281-b951-d872f2087c98
Diffstat (limited to 'chrome')
-rw-r--r-- | chrome/app/generated_resources.grd | 6 | ||||
-rw-r--r-- | chrome/browser/about_flags.cc | 7 |
2 files changed, 0 insertions, 13 deletions
diff --git a/chrome/app/generated_resources.grd b/chrome/app/generated_resources.grd index 26c198e..c815f29 100644 --- a/chrome/app/generated_resources.grd +++ b/chrome/app/generated_resources.grd @@ -5382,12 +5382,6 @@ Keep your key file in a safe place. You will need it to create new versions of y Enables experimental extensions to the geolocation feature to use operating system location APIs (where available). </message> </if> - <message name="IDS_FLAGS_DISABLE_INTERACTIVE_FORM_VALIDATION_NAME" desc="Name of the 'Disable HTML5 interactive form validation' lab."> - Disable HTML5 interactive form validation - </message> - <message name="IDS_FLAGS_DISABLE_INTERACTIVE_FORM_VALIDATION_DESCRIPTION" desc="Description of the 'Disable HTML5 interactive form validation' lab."> - Disable showing validation messages and preventing form submission. - </message> <message name="IDS_FLAGS_STATIC_IP_CONFIG_NAME" desc="Name of the static ip config lab."> Experimental static ip configuration </message> diff --git a/chrome/browser/about_flags.cc b/chrome/browser/about_flags.cc index e349f81..0a9582d 100644 --- a/chrome/browser/about_flags.cc +++ b/chrome/browser/about_flags.cc @@ -372,13 +372,6 @@ const Experiment kExperiments[] = { SINGLE_VALUE_TYPE(switches::kExperimentalLocationFeatures) }, { - "disable-interactive-form-validation", - IDS_FLAGS_DISABLE_INTERACTIVE_FORM_VALIDATION_NAME, - IDS_FLAGS_DISABLE_INTERACTIVE_FORM_VALIDATION_DESCRIPTION, - kOsAll, - SINGLE_VALUE_TYPE(switches::kDisableInteractiveFormValidation) - }, - { "tab-groups-context-menu", IDS_FLAGS_TAB_GROUPS_CONTEXT_MENU_NAME, IDS_FLAGS_TAB_GROUPS_CONTEXT_MENU_DESCRIPTION, |