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

Unified Diff: content/test/data/iframe_doc_write.htm

Issue 233723002: Workarounding fix for save complete page problems. Base URL: https://chromium.googlesource.com/chromium/src.git@master
Patch Set: Created 6 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 | « content/public/browser/download_manager.h ('k') | no next file » | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: content/test/data/iframe_doc_write.htm
diff --git a/content/test/data/iframe_doc_write.htm b/content/test/data/iframe_doc_write.htm
new file mode 100644
index 0000000000000000000000000000000000000000..f5fb1c9473620473035ca33a82db961aa0d92867
--- /dev/null
+++ b/content/test/data/iframe_doc_write.htm
@@ -0,0 +1,17 @@
+<html>
+<head>
+<script type="text/javascript">
+
+window.onload = function() {
+ var iframe_doc = document.getElementById('iframe_elm').contentDocument;
+ iframe_doc.open();
+ iframe_doc.write("<img src=\"fake.jpg\" />");
+ iframe_doc.close();
+};
+
+</script>
+</head>
+<body>
+<iframe id="iframe_elm"></iframe>
+</body>
+</html>
« no previous file with comments | « content/public/browser/download_manager.h ('k') | no next file » | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698