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

Side by Side Diff: content/test/data/navigation_controller/dynamic_iframe.html

Issue 2380943002: Tell renderer which subframes have history items on back/forward. (Closed)
Patch Set: Add test Created 4 years, 2 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 unified diff | Download patch
OLDNEW
(Empty)
1 <html>
2 <head></head>
3 <body>
4 <p>This page creates an iframe with dynamic name and content.</p>
5 <script>
6 var now = Date.now();
7 var f = document.createElement("iframe");
8 f.name = now;
9 document.body.appendChild(f);
10 f.src = "data:text/html,Date: " + now;
11 </script>
12 </body>
13 </html>
OLDNEW
« content/renderer/render_frame_impl.cc ('K') | « content/renderer/render_frame_impl.cc ('k') | no next file » | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698