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

Unified Diff: content/browser/webkit_browsertest.cc

Issue 8588022: Disable failing test after the recent WebKit roll. (Closed) Base URL: svn://chrome-svn/chrome/trunk/src/
Patch Set: Created 9 years, 1 month 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 | « no previous file | no next file » | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: content/browser/webkit_browsertest.cc
===================================================================
--- content/browser/webkit_browsertest.cc (revision 110419)
+++ content/browser/webkit_browsertest.cc (working copy)
@@ -39,11 +39,18 @@
// destroying the Document, so it is not a use after free unless
// you don't have DumpRenderTree loaded.
+// http://crbug.com/104582
+#if defined(OS_WIN) || defined(OS_CHROMEOS)
+#define MAYBE_XsltBadImport DISABLED_XsltBadImport
+#else
+#define MAYBE_XsltBadImport XsltBadImport
+#endif
+
// TODO(gavinp): remove this browser_test if we can get good LayoutTest
// coverage of the same issue.
const char kXsltBadImportPage[] =
"files/webkit/xslt-bad-import.html";
-IN_PROC_BROWSER_TEST_F(WebKitBrowserTest, XsltBadImport) {
+IN_PROC_BROWSER_TEST_F(WebKitBrowserTest, MAYBE_XsltBadImport) {
ASSERT_TRUE(test_server()->Start());
URLRequestAbortOnEndJob::AddUrlHandler();
GURL url = test_server()->GetURL(kXsltBadImportPage);
@@ -53,4 +60,3 @@
TabContents* tab_contents = browser()->GetSelectedTabContents();
EXPECT_FALSE(tab_contents->is_crashed());
}
-
« no previous file with comments | « no previous file | no next file » | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698