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

Unified 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, 8 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
Index: content/test/data/openChildWindow.html
===================================================================
--- content/test/data/openChildWindow.html (revision 0)
+++ content/test/data/openChildWindow.html (working copy)
@@ -0,0 +1,14 @@
+<html>
Charlie Reis 2014/04/29 16:55:25 This file should be use a similar naming scheme to
+<head>
+<script>
+function onloadTest() {
+var a = document.createElement('a');
+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
+a.target = '_blank';
+document.body.appendChild(a);
+a.click();
+}
+</script>
+</head>
+<body onload="onloadTest()">This page has no title.</body>
+</html>

Powered by Google App Engine
This is Rietveld 408576698