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..95487b71564ab5c54cea582d850870bbc274a342 |
--- /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 = "/cross-site/a.com/mixed-content/basic-passive.html"; |
+var iframe = document.createElement("iframe"); |
+iframe.src = url; |
+document.body.appendChild(iframe); |
alexmos
2016/01/20 22:43:55
Is it still necessary to add the iframe via script
estark
2016/01/21 04:40:13
Oops, leftover from when I was using document.loca
|
+</script> |
+</html> |