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> |