diff options
author | levin@chromium.org <levin@chromium.org@0039d316-1c4b-4281-b951-d872f2087c98> | 2011-07-19 17:46:34 +0000 |
---|---|---|
committer | levin@chromium.org <levin@chromium.org@0039d316-1c4b-4281-b951-d872f2087c98> | 2011-07-19 17:46:34 +0000 |
commit | 8bf640b8f68c570cf41ff665ffad07cfa933b8ae (patch) | |
tree | 793ae11eca6bf955fdfeb836bced866eae7f14b4 | |
parent | 323088387fdb3d3debe60c0280b99cdc18803819 (diff) | |
download | chromium_src-8bf640b8f68c570cf41ff665ffad07cfa933b8ae.zip chromium_src-8bf640b8f68c570cf41ff665ffad07cfa933b8ae.tar.gz chromium_src-8bf640b8f68c570cf41ff665ffad07cfa933b8ae.tar.bz2 |
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
-rw-r--r-- | AUTHORS | 1 | ||||
-rw-r--r-- | chrome/browser/idbbindingutilities_browsertest.cc | 4 |
2 files changed, 4 insertions, 1 deletions
@@ -115,3 +115,4 @@ ruben <chromium@hybridsource.org> NVIDIA Corporation <*@nvidia.com> Torsten Kurbad <google@tk-webart.de> Max Perepelitsyn <pph34r@gmail.com> +Luke Zarko <lukezarko@gmail.com> diff --git a/chrome/browser/idbbindingutilities_browsertest.cc b/chrome/browser/idbbindingutilities_browsertest.cc index 6a2476c..c8e773a 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")); |