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

Side by Side Diff: third_party/WebKit/LayoutTests/http/tests/navigation/resources/ping-cross-origin-from-https-target.html

Issue 1931063004: Stop blocking 'http://127.0.0.1/' as mixed content. (Closed) Base URL: https://chromium.googlesource.com/chromium/src.git@master
Patch Set: Ugh. Created 4 years, 6 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 unified diff | Download patch
OLDNEW
1 <html><head> 1 <html><head>
2 <title>Ping</title> 2 <title>Ping</title>
3 <script> 3 <script>
4 4
5 var testCalled = false; 5 var testCalled = false;
6 6
7 function test() { 7 function test() {
8 if (!testCalled) { 8 if (!testCalled) {
9 if (window.testRunner) { 9 if (window.testRunner) {
10 testRunner.dumpAsText(); 10 testRunner.dumpAsText();
(...skipping 12 matching lines...) Expand all
23 eventSender.mouseMoveTo(a.offsetLeft + 2, a.offsetTop + 2); 23 eventSender.mouseMoveTo(a.offsetLeft + 2, a.offsetTop + 2);
24 eventSender.mouseDown(); 24 eventSender.mouseDown();
25 eventSender.mouseUp(); 25 eventSender.mouseUp();
26 } 26 }
27 } 27 }
28 28
29 </script> 29 </script>
30 </head> 30 </head>
31 <body onload="test();"> 31 <body onload="test();">
32 <img src="resources/delete-ping.php?test=cross-origin-from-https" onload="test() ;" onerror="test();"></img> 32 <img src="resources/delete-ping.php?test=cross-origin-from-https" onload="test() ;" onerror="test();"></img>
33 <a id="a" href="/navigation/resources/notify-done.html" ping="http://localhost:8 000/navigation/resources/save-Ping.php?test=cross-origin-from-https">Navigate an d send ping</a> 33 <a id="a" href="/navigation/resources/notify-done.html" ping="http://example.tes t:8000/navigation/resources/save-Ping.php?test=cross-origin-from-https">Navigate and send ping</a>
34 </body></html> 34 </body></html>
OLDNEW

Powered by Google App Engine
This is Rietveld 408576698