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

Unified Diff: webkit/glue/dom_serializer_unittest.cc

Issue 1917007: Test that serializing a document with an iframe that was downloaded doesn't c... (Closed) Base URL: svn://chrome-svn/chrome/trunk/src/
Patch Set: Created 10 years, 8 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 | « webkit/data/dom_serializer/iframe-src-is-exe.htm ('k') | no next file » | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: webkit/glue/dom_serializer_unittest.cc
===================================================================
--- webkit/glue/dom_serializer_unittest.cc (revision 46295)
+++ webkit/glue/dom_serializer_unittest.cc (working copy)
@@ -836,4 +836,18 @@
ASSERT_TRUE(std::string(text_node_contents.utf8()) == "hello world");
}
+// Test that we don't crash when the page contains an iframe that
+// was handled as a download (http://crbug.com/42212).
+TEST_F(DomSerializerTests, SerializeDocumentWithDownloadedIFrame) {
+ FilePath page_file_path = data_dir_;
+ page_file_path = page_file_path.AppendASCII("dom_serializer");
+ page_file_path = page_file_path.AppendASCII("iframe-src-is-exe.htm");
+ GURL file_url = net::FilePathToFileURL(page_file_path);
+ ASSERT_TRUE(file_url.SchemeIsFile());
+ // Load the test file.
+ LoadPageFromURL(file_url);
+ // Do a recursive serialization. We pass if we don't crash.
+ SerializeDomForURL(file_url, true);
+}
+
} // namespace
« no previous file with comments | « webkit/data/dom_serializer/iframe-src-is-exe.htm ('k') | no next file » | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698