Chromium Code Reviews
chromiumcodereview-hr@appspot.gserviceaccount.com (chromiumcodereview-hr) | Please choose your nickname with Settings | Help | Chromium Project | Gerrit Changes | Sign out
(8084)

Unified Diff: chrome/browser/ui/webui/workers_ui_browsertest.cc

Issue 9724038: DevTools: convert about:workers into about:inspect (Closed) Base URL: svn://svn.chromium.org/chrome/trunk/src
Patch Set: Review comments addressed. Created 8 years, 9 months ago
Use n/p to move between diff chunks; N/P to move between comments. Draft comments are only viewable by you.
Jump to:
View side-by-side diff with in-line comments
Download patch
« no previous file with comments | « chrome/browser/ui/webui/workers_ui.cc ('k') | chrome/chrome_browser.gypi » ('j') | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: chrome/browser/ui/webui/workers_ui_browsertest.cc
diff --git a/chrome/browser/ui/webui/workers_ui_browsertest.cc b/chrome/browser/ui/webui/workers_ui_browsertest.cc
deleted file mode 100644
index c3a3a57bcebefa3018f59ff5d48054be73af7c02..0000000000000000000000000000000000000000
--- a/chrome/browser/ui/webui/workers_ui_browsertest.cc
+++ /dev/null
@@ -1,58 +0,0 @@
-// Copyright (c) 2011 The Chromium Authors. All rights reserved.
-// Use of this source code is governed by a BSD-style license that can be
-// found in the LICENSE file.
-
-#include "chrome/browser/ui/browser.h"
-#include "chrome/common/url_constants.h"
-#include "chrome/test/base/in_process_browser_test.h"
-#include "chrome/test/base/ui_test_utils.h"
-#include "content/public/browser/navigation_details.h"
-#include "content/public/browser/web_contents.h"
-
-using content::WebContents;
-
-namespace {
-
-const char kSharedWorkerTestPage[] =
- "files/workers/workers_ui_shared_worker.html";
-const char kSharedWorkerJs[] =
- "files/workers/workers_ui_shared_worker.js";
-
-class WorkersUITest : public InProcessBrowserTest {
- public:
- WorkersUITest() {
- set_show_window(true);
- EnableDOMAutomation();
- }
-
- private:
- DISALLOW_COPY_AND_ASSIGN(WorkersUITest);
-};
-
-// The test fails on Mac OS X, see crbug.com/89583
-IN_PROC_BROWSER_TEST_F(WorkersUITest, DISABLED_SharedWorkersList) {
- ASSERT_TRUE(test_server()->Start());
- GURL url = test_server()->GetURL(kSharedWorkerTestPage);
- ui_test_utils::NavigateToURL(browser(), url);
-
- ui_test_utils::NavigateToURLWithDisposition(
- browser(),
- GURL(chrome::kChromeUIWorkersURL),
- NEW_FOREGROUND_TAB,
- ui_test_utils::BROWSER_TEST_WAIT_FOR_NAVIGATION);
-
- WebContents* web_contents = browser()->GetSelectedWebContents();
- ASSERT_TRUE(web_contents != NULL);
-
- std::string result;
- ASSERT_TRUE(
- ui_test_utils::ExecuteJavaScriptAndExtractString(
- web_contents->GetRenderViewHost(),
- L"",
- L"window.domAutomationController.send("
- L"'' + document.getElementsByTagName('td')[1].textContent);",
- &result));
- ASSERT_TRUE(result.find(kSharedWorkerJs) != std::string::npos);
-}
-
-} // namespace
« no previous file with comments | « chrome/browser/ui/webui/workers_ui.cc ('k') | chrome/chrome_browser.gypi » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698