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

Unified Diff: chrome/test/data/ssl/redirect_with_mixed_content.html

Issue 2305093002: Fix incorrect SSL state being shown for client redirects. (Closed)
Patch Set: more tests Created 4 years, 3 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/test/data/ssl/redirect.html ('k') | content/browser/frame_host/navigation_controller_impl.h » ('j') | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: chrome/test/data/ssl/redirect_with_mixed_content.html
diff --git a/chrome/test/data/ssl/redirect_with_mixed_content.html b/chrome/test/data/ssl/redirect_with_mixed_content.html
new file mode 100644
index 0000000000000000000000000000000000000000..c1cac5c1fba5556cc194b948928c0067aaba8580
--- /dev/null
+++ b/chrome/test/data/ssl/redirect_with_mixed_content.html
@@ -0,0 +1,16 @@
+<html>
+<head>
+ <title>Page that displays insecure content</title>
+ <script>
+ function ImageWidth() {
+ return document.getElementById("bad_image").width;
+ }
+ </script>
+</head>
+<body>
+ This page contains an image which is served over an http connection,
+ causing insecure content (when this page is loaded over https).<br>
+ <img id="bad_image" src="http://does-not-exist.test/ssl/google_files/logo.gif" />
+<script>window.location.replace(window.location.search.substring(1));</script>
+</body>
+</html>
« no previous file with comments | « chrome/test/data/ssl/redirect.html ('k') | content/browser/frame_host/navigation_controller_impl.h » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698