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

Side by Side Diff: chrome/test/data/popup_blocker/popup-on-unload.html

Issue 10913043: Convert the popups pyauto test to browser_tests. (Closed) Base URL: svn://chrome-svn/chrome/trunk/src/
Patch Set: fix cros Created 8 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
« no previous file with comments | « chrome/test/data/popup_blocker/popup-many.html ('k') | chrome/test/functional/PYAUTO_TESTS » ('j') | no next file with comments »
Toggle Intra-line Diffs ('i') | Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Property Changes:
Added: svn:mime-type
+ text/html
Added: svn:eol-style
+ LF
OLDNEW
(Empty)
1 <html>
2 <head>
3 <title>Popup created using window.open</title>
4 <script>
5 function popup() {
6 window.open("data:text/html,<title>Popup Success!</title>" +
7 "you should not see this message if popup blocker is enabled",
8 "_blank", "menubar=1, resizable=1, width=350, height=250");
9 }
10
11 </script>
12 </head>
13 <body onunload="popup()">
14 pop-up test page
15 </body>
16 </html>
OLDNEW
« no previous file with comments | « chrome/test/data/popup_blocker/popup-many.html ('k') | chrome/test/functional/PYAUTO_TESTS » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698