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

Unified Diff: content/renderer/dom_serializer_browsertest.cc

Issue 1147533005: Disable DomSerializerTests.SerializeHTMLDOMWithDocType (Closed) Base URL: https://chromium.googlesource.com/chromium/src.git@master
Patch Set: Use MAYBE pattern Created 5 years, 7 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 | « no previous file | no next file » | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: content/renderer/dom_serializer_browsertest.cc
diff --git a/content/renderer/dom_serializer_browsertest.cc b/content/renderer/dom_serializer_browsertest.cc
index 2cb395c18da8eb9e265574065b600a0562b80797..4be6a9a35a3f85dbbcc2f390a58c679298d0c650 100644
--- a/content/renderer/dom_serializer_browsertest.cc
+++ b/content/renderer/dom_serializer_browsertest.cc
@@ -779,7 +779,15 @@ class DomSerializerTests : public ContentBrowserTest,
// If original contents have document type, the serialized contents also have
// document type.
-IN_PROC_BROWSER_TEST_F(DomSerializerTests, SerializeHTMLDOMWithDocType) {
+// Disabled by ellyjones@ on 2015-05-18, see https://crbug.com/488495.
+#if defined(OS_MACOSX)
+#define MAYBE_SerializeHTMLDOMWithDocType DISABLED_SerializeHTMLDOMWithDocType
+#else
+#define MAYBE_SerializeHTMLDOMWithDocType SerializeHTMLDOMWithDocType
+#endif
+
+IN_PROC_BROWSER_TEST_F(DomSerializerTests,
+ MAYBE_SerializeHTMLDOMWithDocType) {
base::FilePath page_file_path =
GetTestFilePath("dom_serializer", "youtube_1.htm");
GURL file_url = net::FilePathToFileURL(page_file_path);
« 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