| Index: LayoutTests/http/tests/security/mixedContent/nonwebby-scheme-in-iframe-allowed.https.html
|
| diff --git a/LayoutTests/http/tests/security/mixedContent/nonwebby-scheme-in-iframe-allowed.https.html b/LayoutTests/http/tests/security/mixedContent/nonwebby-scheme-in-iframe-allowed.https.html
|
| new file mode 100644
|
| index 0000000000000000000000000000000000000000..880e3dd34cd4a53508c501a4fe21d32e94a0ab81
|
| --- /dev/null
|
| +++ b/LayoutTests/http/tests/security/mixedContent/nonwebby-scheme-in-iframe-allowed.https.html
|
| @@ -0,0 +1,18 @@
|
| +<!DOCTYPE html>
|
| +<html>
|
| +<body>
|
| +<p>
|
| + This tests that non-webby URLs are not blocked as mixed content. The test passes if a mixed
|
| + content warning is displayed and the load proceeds. The test fails if a mixed content error
|
| + is displayed, and the load is blocked.
|
| +</p>
|
| +<script>
|
| +if (window.testRunner) {
|
| + testRunner.dumpAsText();
|
| + testRunner.dumpChildFramesAsText();
|
| + testRunner.overridePreference("WebKitAllowRunningInsecureContent", false);
|
| +}
|
| +</script>
|
| +<iframe src="nonwebbyscheme://this-will-fail-but-no-mixed-content-error-should-appear"></iframe>
|
| +</body>
|
| +</html>
|
|
|