From 0a7a4f534901e3c5837617aa314c452340c50cf5 Mon Sep 17 00:00:00 2001 From: "levin@chromium.org" Date: Tue, 19 Jul 2011 17:46:34 +0000 Subject: [PATCH] Disable part of InProcessBrowserTest.InjectIDBKey to prepare for upstream changes. InProcessBrowserTest.InjectIDBKey depends on internal details about the format produced by WebSerializedScriptValue; this format will change should https://bugs.webkit.org/show_bug.cgi?id=63481 land. After the WebKit change is complete, this test will be re-enabled in a way that works with the new format. BUG=None TEST=This is a test modification. Review URL: http://codereview.chromium.org/7400030 git-svn-id: svn://svn.chromium.org/chrome/trunk/src@93053 0039d316-1c4b-4281-b951-d872f2087c98 --- AUTHORS | 1 + chrome/browser/idbbindingutilities_browsertest.cc | 4 +++- 2 files changed, 4 insertions(+), 1 deletion(-) diff --git a/AUTHORS b/AUTHORS index eb56406dbfb..8ef3db78192 100644 --- a/AUTHORS +++ b/AUTHORS @@ -115,3 +115,4 @@ ruben NVIDIA Corporation <*@nvidia.com> Torsten Kurbad Max Perepelitsyn +Luke Zarko diff --git a/chrome/browser/idbbindingutilities_browsertest.cc b/chrome/browser/idbbindingutilities_browsertest.cc index 6a2476c23b8..c8e773acbc9 100644 --- a/chrome/browser/idbbindingutilities_browsertest.cc +++ b/chrome/browser/idbbindingutilities_browsertest.cc @@ -338,7 +338,9 @@ IN_PROC_BROWSER_TEST_F(InProcessBrowserTest, InjectIDBKey) { ScopedIDBKeyPathHelper scoped_helper; scoped_helper.SetExpectedValue(expected_value); - scoped_helper.CheckInjectValue(key, value, UTF8ToUTF16("bar")); + // TODO(lukezarko@gmail.com): re-enable this after the changes described at + // https://bugs.webkit.org/show_bug.cgi?id=63481 land. + // scoped_helper.CheckInjectValue(key, value, UTF8ToUTF16("bar")); scoped_helper.SetExpectedValue(SerializedScriptValue()); // Expect null. scoped_helper.CheckInjectValue(key, value, UTF8ToUTF16("bad.key.path"));