Commit 4f986527 authored by kkania@chromium.org's avatar kkania@chromium.org

[chromedriver] Stop supporting chrome 26. Don't run tests against it.

BUG=none
R=chrisgao@chromium.org

Review URL: https://codereview.chromium.org/15859013

git-svn-id: svn://svn.chromium.org/chrome/trunk/src@202912 0039d316-1c4b-4281-b951-d872f2087c98
parent 0279a31c
......@@ -14,7 +14,6 @@ sys.path.insert(0, os.path.join(_THIS_DIR, os.pardir, 'pylib'))
from common import util
CHROME_26_REVISION = '181664'
CHROME_27_REVISION = '190466'
CHROME_28_REVISION = '198276'
......
......@@ -8,7 +8,7 @@
namespace {
const int kMinimumSupportedChromeVersion[] = {26, 0, 1395, 0};
const int kMinimumSupportedChromeVersion[] = {27, 0, 1453, 0};
} // namespace
......
......@@ -217,16 +217,6 @@ Status ExecuteSendKeysToElement(
if (status.IsError())
return status;
if (is_input && is_file) {
// File upload is only supported for chrome 27+.
if (session->chrome->GetBuildNo() < 1420) {
return Status(
kUnknownError,
base::StringPrintf(
"file upload requires chrome 27+, build 1420+,"
"while current one is %s",
session->chrome->GetVersion().c_str()));
}
// Compress array into a single string.
base::FilePath::StringType paths_string;
for (size_t i = 0; i < key_list->GetSize(); ++i) {
......
......@@ -153,8 +153,7 @@ def main():
versions = [
['HEAD', latest_snapshot_revision],
['28', archive.CHROME_28_REVISION],
['27', archive.CHROME_27_REVISION],
['26', archive.CHROME_26_REVISION]
['27', archive.CHROME_27_REVISION]
]
code = 0
for version in versions:
......
......@@ -72,9 +72,6 @@ _DESKTOP_NEGATIVE_FILTER['28'] = (
_DESKTOP_NEGATIVE_FILTER['27'] = (
_DESKTOP_NEGATIVE_FILTER['HEAD'] + []
)
_DESKTOP_NEGATIVE_FILTER['26'] = (
_DESKTOP_NEGATIVE_FILTER['HEAD'] + []
)
_ANDROID_NEGATIVE_FILTER = {}
......
......@@ -89,15 +89,6 @@ _REVISION_NEGATIVE_FILTER['HEAD'] = [
]
_REVISION_NEGATIVE_FILTER['28'] = [] + _REVISION_NEGATIVE_FILTER['HEAD']
_REVISION_NEGATIVE_FILTER['27'] = [] + _REVISION_NEGATIVE_FILTER['HEAD']
_REVISION_NEGATIVE_FILTER['26'] = [
'AlertsTest.testHandlesTwoAlertsFromOneInteraction',
'AlertsTest.testShouldAllowAUserToSetTheValueOfAPrompt',
'UploadTest.testFileUploading',
'CorrectEventFiringTest.testUploadingFileShouldFireOnChangeEvent',
'FormHandlingTest.testShouldBeAbleToAlterTheContentsOfAFileUploadInputElement',
'FormHandlingTest.testShouldBeAbleToUploadTheSameFileTwice',
'FormHandlingTest.testShouldBeAbleToSendKeysToAFileUploadInputElementInAnXhtmlDocument',
] + _REVISION_NEGATIVE_FILTER['HEAD']
_OS_NEGATIVE_FILTER = {}
_OS_NEGATIVE_FILTER['win'] = [
......
Markdown is supported
0%
or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment