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

Unified Diff: LayoutTests/http/tests/security/mixedContent/websocket/insecure-websocket-in-secure-page-worker.html

Issue 222153002: Disallow connecting an insecure WebSocket from a secure page. (Closed) Base URL: svn://svn.chromium.org/blink/trunk
Patch Set: Rebase 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
Index: LayoutTests/http/tests/security/mixedContent/websocket/insecure-websocket-in-secure-page-worker.html
diff --git a/LayoutTests/http/tests/security/mixedContent/websocket/insecure-websocket-in-secure-page-worker.html b/LayoutTests/http/tests/security/mixedContent/websocket/insecure-websocket-in-secure-page-worker.html
new file mode 100644
index 0000000000000000000000000000000000000000..471d46219f1f6626fd222ed2453d3b851e6d047e
--- /dev/null
+++ b/LayoutTests/http/tests/security/mixedContent/websocket/insecure-websocket-in-secure-page-worker.html
@@ -0,0 +1,30 @@
+<!DOCTYPE html>
+<html>
+<head>
+<script src="/js-test-resources/testharness.js"></script>
+<script src="/js-test-resources/testharnessreport.js"></script>
+<script>
+
+if (window.testRunner) {
+ testRunner.setCanOpenWindows();
+ testRunner.setCloseRemainingWindowsWhenComplete(true);
+ testRunner.overridePreference("WebKitAllowRunningInsecureContent", false);
+}
+
+var test = async_test("Test that an insecure WebSocket connection is blocked when created in a worker created from HTTPS resource.");
+test.step(function ()
+{
+ window.addEventListener("message", test.step_func(function (evt)
+ {
+ assert_equals(evt.data, "DONE", "evt.data");
+ test.done();
+ }), false);
+
+ window.open("https://127.0.0.1:8443/security/mixedContent/websocket/resources/expect-throw-on-construction-worker.html");
+});
+
+</script>
+</head>
+<body>
+</body>
+</html>

Powered by Google App Engine
This is Rietveld 408576698