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

Side by Side Diff: chrome/test/data/ssl/page_with_dynamic_unsafe_image.html

Issue 1415923015: Downgrade lock icon for broken-HTTPS subresources (Closed) Base URL: https://chromium.googlesource.com/chromium/src.git@master
Patch Set: remove console message; see comment to mike Created 5 years 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 unified diff | Download patch
OLDNEW
(Empty)
1 <html>
2 <head><title>Page with unsafe image loaded dynamically</title>
3 <script>
4 var url = "https://REPLACE_WITH_HOST_AND_PORT/ssl/google_files/logo.gif";
5
6 function AddImage() {
7 var img = document.createElement("img");
8 img.src = url;
9 document.body.appendChild(img);
10 }
11 </script>
12 <body></body>
13 </html>
OLDNEW
« no previous file with comments | « chrome/browser/ssl/ssl_browser_tests.cc ('k') | chrome/test/data/ssl/page_with_unsafe_image.html » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698