OLD | NEW |
---|---|
(Empty) | |
1 <!DOCTYPE html> | |
2 <script src="/js-test-resources/testharness.js"></script> | |
3 <script src="/js-test-resources/testharnessreport.js"></script> | |
4 <script> | |
5 if (window.testRunner) { | |
6 testRunner.overridePreference("WebKitAllowRunningInsecureContent", false); | |
7 } | |
8 | |
9 var test = async_test("Opens a HTTPS window that loads insecure data via XHR. W e should trigger a mixed content callback and block the load."); | |
10 | |
11 window.addEventListener("message", test.step_func(function (e) { | |
12 assert_equals(e.data, "DONE"); | |
13 test.done(); | |
14 }), false); | |
15 window.open("http://127.0.0.1:8000/security/mixedContent/resources/frame-with-in secure-async-xhr-post.html"); | |
hiroshige
2015/08/11 09:54:42
The description says "Opens a HTTPS window" but he
tyoshino (SeeGerritForStatus)
2016/01/29 12:36:52
Right! Fixed
tyoshino (SeeGerritForStatus)
2016/01/29 12:37:56
Oh, this reply had to be published before.
| |
16 </script> | |
OLD | NEW |