Chromium Code Reviews
chromiumcodereview-hr@appspot.gserviceaccount.com (chromiumcodereview-hr) | Please choose your nickname with Settings | Help | Chromium Project | Gerrit Changes | Sign out
(114)

Unified Diff: content/test/data/navigation_controller/dynamic_iframe.html

Issue 2380943002: Tell renderer which subframes have history items on back/forward. (Closed)
Patch Set: Fix const ref. Created 4 years, 3 months ago
Use n/p to move between diff chunks; N/P to move between comments. Draft comments are only viewable by you.
Jump to:
View side-by-side diff with in-line comments
Download patch
« no previous file with comments | « content/renderer/render_frame_impl.cc ('k') | no next file » | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
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>
« no previous file with comments | « content/renderer/render_frame_impl.cc ('k') | no next file » | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698