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

Side by Side Diff: chrome_frame/test/data/no_interference/window_open.html

Issue 2866013: The ChromeFrame JavascriptWindowOpen test tries to open a popup in the onload... (Closed) Base URL: svn://svn.chromium.org/chrome/trunk/src/
Patch Set: Created 10 years, 6 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 | « no previous file | chrome_frame/test/no_interference_test.cc » ('j') | no next file with comments »
Toggle Intra-line Diffs ('i') | Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
OLDNEW
1 <html> 1 <html>
2 <head> 2 <head>
3 <script type="text/javascript"> 3 <script type="text/javascript">
4 window.onload = function() { 4 function popup() {
5 window.open("empty.html", "test"); 5 window.open("empty.html", "test");
6 } 6 }
7 </script> 7 </script>
8 </head> 8 </head>
9 <body> 9
10 <body ondblclick="popup();">
10 Calling window.open... 11 Calling window.open...
11 </body> 12 </body>
12 </html> 13 </html>
OLDNEW
« no previous file with comments | « no previous file | chrome_frame/test/no_interference_test.cc » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698