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

Side by Side Diff: chrome_frame/test/data/chrome_frame_window_open.html

Issue 340029: Added unit tests for ChromeFrame IE full tab mode. These test the following c... (Closed) Base URL: svn://chrome-svn/chrome/trunk/src/
Patch Set: '' Created 11 years, 1 month 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
Property Changes:
Added: svn:eol-style
+ LF
OLDNEW
(Empty)
1 <!-- saved from url=(0014)about:internet -->
2 <!-- Note that for the above Mark of the Web to work, the comment must
3 be followed by a CR/LF ending, so please do not change the line endings. -- >
4 <html>
5 <!-- This page is meant to load inside a host browser like IE/FF -->
6 <head>
7 <meta http-equiv="X-UA-Compatible" content="chrome=1"/>
8 <script type="text/javascript" src="chrome_frame_tester_helpers.js"></script>
9 <script type="text/javascript">
10
11 function onLoad() {
12 if (!TestIfRunningInChrome()) {
13 onFailure("ChromeFrameWindowOpen", "Window Open failed :-(",
14 "User agent = " + navigator.userAgent.toLowerCase());
15 } else {
16 setTimeout(OpenPopup, 100);
17 }
18 }
19
20 function OpenPopup() {
21 window.open("chrome_frame_window_open_popup.html", "_self");
22 }
23 </script>
24 </head>
25
26 <body onload="onLoad();">
27 <div id="statusPanel" style="border: 1px solid red; width: 100%">
28 ChromeFrame full tab mode window open test running....
29 </div>
30 <p>
31
32 </body>
33 </html>
OLDNEW
« no previous file with comments | « chrome_frame/test/data/chrome_frame_tester_helpers.js ('k') | chrome_frame/test/data/chrome_frame_window_open_popup.html » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698