Commit 3dfb43de authored by eroman@chromium.org's avatar eroman@chromium.org

Revert 107810 (The NetInternalsDNSView tests are timeout out and causing bots...

Revert 107810 (The NetInternalsDNSView tests are timeout out and causing bots to go red) - Roll webkit 98723:98752

TBR=caseq
BUG=none
TEST=none
Review URL: http://codereview.chromium.org/8343072

TBR=johnnyg@chromium.org
Review URL: http://codereview.chromium.org/8343076

git-svn-id: svn://svn.chromium.org/chrome/trunk/src@107828 0039d316-1c4b-4281-b951-d872f2087c98
parent b7b9227c
...@@ -5,7 +5,7 @@ vars = { ...@@ -5,7 +5,7 @@ vars = {
"sourceforge_url": "http://%(repo)s.svn.sourceforge.net/svnroot/%(repo)s", "sourceforge_url": "http://%(repo)s.svn.sourceforge.net/svnroot/%(repo)s",
"webkit_trunk": "http://svn.webkit.org/repository/webkit/trunk", "webkit_trunk": "http://svn.webkit.org/repository/webkit/trunk",
"nacl_trunk": "http://src.chromium.org/native_client/trunk", "nacl_trunk": "http://src.chromium.org/native_client/trunk",
"webkit_revision": "98752", "webkit_revision": "98723",
"chromium_git": "http://git.chromium.org/git", "chromium_git": "http://git.chromium.org/git",
"swig_revision": "69281", "swig_revision": "69281",
"nacl_revision": "6965", "nacl_revision": "6965",
......
...@@ -274,24 +274,23 @@ IN_PROC_BROWSER_TEST_F(NetInternalsTest, NetInternalsExportImportDump) { ...@@ -274,24 +274,23 @@ IN_PROC_BROWSER_TEST_F(NetInternalsTest, NetInternalsExportImportDump) {
// dns_view.js // dns_view.js
//////////////////////////////////////////////////////////////////////////////// ////////////////////////////////////////////////////////////////////////////////
// TODO: These tests started timing out somewhere around webkit 98733:98738.
// Adds a successful lookup to the DNS cache, then clears the cache. // Adds a successful lookup to the DNS cache, then clears the cache.
IN_PROC_BROWSER_TEST_F(NetInternalsTest, FAILS_NetInternalsDnsViewSuccess) { IN_PROC_BROWSER_TEST_F(NetInternalsTest, NetInternalsDnsViewSuccess) {
EXPECT_TRUE(RunJavascriptAsyncTest("netInternalsDnsViewSuccess")); EXPECT_TRUE(RunJavascriptAsyncTest("netInternalsDnsViewSuccess"));
} }
// Adds a failed lookup to the DNS cache, then clears the cache. // Adds a failed lookup to the DNS cache, then clears the cache.
IN_PROC_BROWSER_TEST_F(NetInternalsTest, FAILS_NetInternalsDnsViewFail) { IN_PROC_BROWSER_TEST_F(NetInternalsTest, NetInternalsDnsViewFail) {
EXPECT_TRUE(RunJavascriptAsyncTest("netInternalsDnsViewFail")); EXPECT_TRUE(RunJavascriptAsyncTest("netInternalsDnsViewFail"));
} }
// Adds an expired successful lookup to the DNS cache, then clears the cache. // Adds an expired successful lookup to the DNS cache, then clears the cache.
IN_PROC_BROWSER_TEST_F(NetInternalsTest, FAILS_NetInternalsDnsViewExpired) { IN_PROC_BROWSER_TEST_F(NetInternalsTest, NetInternalsDnsViewExpired) {
EXPECT_TRUE(RunJavascriptAsyncTest("netInternalsDnsViewExpired")); EXPECT_TRUE(RunJavascriptAsyncTest("netInternalsDnsViewExpired"));
} }
// Adds two entries to the DNS cache, clears the cache, and then repeats. // Adds two entries to the DNS cache, clears the cache, and then repeats.
IN_PROC_BROWSER_TEST_F(NetInternalsTest, FAILS_NetInternalsDnsViewAddTwoTwice) { IN_PROC_BROWSER_TEST_F(NetInternalsTest, NetInternalsDnsViewAddTwoTwice) {
EXPECT_TRUE(RunJavascriptAsyncTest("netInternalsDnsViewAddTwoTwice")); EXPECT_TRUE(RunJavascriptAsyncTest("netInternalsDnsViewAddTwoTwice"));
} }
......
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