Index: content/test/data/mixed-content/basic-passive-in-iframe.html |
diff --git a/content/test/data/mixed-content/basic-passive-in-iframe.html b/content/test/data/mixed-content/basic-passive-in-iframe.html |
new file mode 100644 |
index 0000000000000000000000000000000000000000..f29e8d766206b2a25b49efa3725f75e0dba12202 |
--- /dev/null |
+++ b/content/test/data/mixed-content/basic-passive-in-iframe.html |
@@ -0,0 +1,14 @@ |
+<!DOCTYPE html> |
+<html> |
+<head> |
+</head> |
+ |
+<body> |
+</body> |
+<script> |
+var url = "https://a.com:" + window.location.port + "/mixed-content/basic-passive.html"; |
alexmos
2016/01/16 00:49:50
To embed cross-site iframes, we typically use some
estark
2016/01/20 05:56:22
Yeah, works like a charm! Done.
|
+var iframe = document.createElement("iframe"); |
+iframe.src = url; |
+document.body.appendChild(iframe); |
+</script> |
+</html> |