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

Side by Side Diff: third_party/WebKit/LayoutTests/http/tests/security/mixedContent/strict-mode-websocket-blocked.https.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 <!DOCTYPE html> 1 <!DOCTYPE html>
2 <html> 2 <html>
3 <head> 3 <head>
4 <meta http-equiv="Content-Security-Policy" content="block-all-mixed-content" > 4 <meta http-equiv="Content-Security-Policy" content="block-all-mixed-content" >
5 <script src="/js-test-resources/testharness.js"></script> 5 <script src="/js-test-resources/testharness.js"></script>
6 <script src="/js-test-resources/testharnessreport.js"></script> 6 <script src="/js-test-resources/testharnessreport.js"></script>
7 </head> 7 </head>
8 <body> 8 <body>
9 <script> 9 <script>
10 test(function () { 10 test(function () {
11 assert_throws("SecurityError", 11 assert_throws("SecurityError",
12 function () { 12 function () {
13 new WebSocket("ws://127.0.0.1:8880/echo"); 13 new WebSocket("ws://example.test:8880/echo");
14 }); 14 });
15 }, "Test that insecure websocket construction throws."); 15 }, "Test that insecure websocket construction throws.");
16 </script> 16 </script>
17 </body> 17 </body>
18 </html> 18 </html>
OLDNEW

Powered by Google App Engine
This is Rietveld 408576698