| 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..972a300d15b448b090d1f4a90dddb21a79cb36eb
|
| --- /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 = performance.now();
|
| + var f = document.createElement("iframe");
|
| + f.name = now;
|
| + document.body.appendChild(f);
|
| + f.src = "data:text/html,Time: " + now;
|
| + </script>
|
| +</body>
|
| +</html>
|
|
|