Index: content/test/data/mixed-content/basic-passive-in-iframe-with-strict-blocking.html |
diff --git a/content/test/data/mixed-content/basic-passive-in-iframe-with-strict-blocking.html b/content/test/data/mixed-content/basic-passive-in-iframe-with-strict-blocking.html |
new file mode 100644 |
index 0000000000000000000000000000000000000000..8917d5d203c8c6c7b61292ac32e3e13dbdf70fd3 |
--- /dev/null |
+++ b/content/test/data/mixed-content/basic-passive-in-iframe-with-strict-blocking.html |
@@ -0,0 +1,14 @@ |
+<!DOCTYPE html> |
+<html> |
+<head> |
+</head> |
+<meta http-equiv="Content-Security-Policy" content="block-all-mixed-content"> |
+<body> |
+</body> |
+<script> |
+var url = "https://a.com:" + window.location.port + "/mixed-content/basic-passive.html"; |
+var iframe = document.createElement("iframe"); |
+iframe.src = url; |
+document.body.appendChild(iframe); |
+</script> |
+</html> |