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

Side by Side Diff: chrome/test/data/window.open.blank.html

Issue 7497058: New windows opened in javascript with target = "_blank" should (Closed) Base URL: http://git.chromium.org/git/chromium.git@trunk
Patch Set: Removed unnecessary code. Created 9 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 unified diff | Download patch | Annotate | Revision Log
OLDNEW
(Empty)
1 <!DOCTYPE html>
2 <html>
3 <head>
4 <title>88129</title>
5 <script>
6 function openWindow1() {
7 var name = window.open('window.open.blank.html', 'blank').name;
8 window.domAutomationController.send(name);
9 }
10
11 function openWindow2() {
12 var name = window.open('window.open.blank.html', '_blank').name;
13 window.domAutomationController.send(name);
14 }
15 </script>
16 </head>
17 <body>
18 <h1>88129</h1>
19 </body>
20 </html>
OLDNEW

Powered by Google App Engine
This is Rietveld 408576698