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

Side by Side Diff: content/test/data/openChildWindow.html

Issue 196283013: Make to call WebContentsImpl::RenderViewCreated() when we create child window. (Closed) Base URL: https://src.chromium.org/chrome/trunk/src/
Patch Set: Created 6 years, 7 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>
Charlie Reis 2014/04/29 16:55:25 This file should be use a similar naming scheme to
2 <head>
3 <script>
4 function onloadTest() {
5 var a = document.createElement('a');
6 a.href='http://www.google.com';
Charlie Reis 2014/04/29 16:55:25 Let's not use a network link here. Would title1.h
7 a.target = '_blank';
8 document.body.appendChild(a);
9 a.click();
10 }
11 </script>
12 </head>
13 <body onload="onloadTest()">This page has no title.</body>
14 </html>
OLDNEW

Powered by Google App Engine
This is Rietveld 408576698