Index: content/test/data/navigation_controller/dynamic_iframe.html |
diff --git a/content/test/data/navigation_controller/dynamic_iframe.html b/content/test/data/navigation_controller/dynamic_iframe.html |
new file mode 100644 |
index 0000000000000000000000000000000000000000..772cb5dcf44d3bbc6e9a15b6b144e87e4ea068df |
--- /dev/null |
+++ b/content/test/data/navigation_controller/dynamic_iframe.html |
@@ -0,0 +1,13 @@ |
+<html> |
+<head></head> |
+<body> |
+ <p>This page creates an iframe with dynamic name and content.</p> |
+ <script> |
+ var now = Date.now(); |
+ var f = document.createElement("iframe"); |
+ f.name = now; |
+ document.body.appendChild(f); |
+ f.src = "data:text/html,Date: " + now; |
+ </script> |
+</body> |
+</html> |