Upstream version 7.36.149.0
[platform/framework/web/crosswalk.git] / src / third_party / WebKit / LayoutTests / http / tests / security / mixedContent / websocket / insecure-websocket-in-secure-page.html
index a680708..bea658d 100644 (file)
@@ -1,25 +1,30 @@
+<!DOCTYPE html>
 <html>
-<body>
+<head>
+<script src="/js-test-resources/testharness.js"></script>
+<script src="/js-test-resources/testharnessreport.js"></script>
 <script>
+
 if (window.testRunner) {
-    testRunner.waitUntilDone();
-    testRunner.dumpAsText();
     testRunner.setCanOpenWindows();
     testRunner.setCloseRemainingWindowsWhenComplete(true);
-    testRunner.overridePreference("WebKitAllowRunningInsecureContent", true);
+    // Disallow insecure WebSockets.
+    testRunner.overridePreference("WebKitAllowRunningInsecureContent", false);
 }
 
-window.addEventListener("message", function (e) {
-    if (window.testRunner)
-        testRunner.notifyDone();
-}, false);
+var test = async_test("Test that when a HTTPS window that creates an insecure WebSocket connection is opened, the mixed content callback is triggered because the main frame in the window is HTTPS but is trying connecting to an insecure WebSocket server.");
+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.html");
+});
 
 </script>
-<p>This test opens a HTTPS window that creates an insecure WebSocket connection. We should
-trigger a mixed content callback because the main frame in the window is HTTPS but
-is trying connecting to an insecure WebSocket server.</p>
-<script>
-window.open("https://127.0.0.1:8443/websocket/send-empty.html");
-</script>
+</head>
+<body>
 </body>
 </html>