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

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

Issue 126143005: Remove Chrome Frame code and resources. (Closed) Base URL: svn://svn.chromium.org/chrome/trunk/src
Patch Set: sync to r244038 Created 6 years, 11 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 <html>
2 <head>
3 <script type="text/javascript"
4 src="chrome_frame_tester_helpers.js"></script>
5 </head>
6 <body>
7 <div id="statusPanel" style="border: 1px solid red; width: 100%">
8 Test running....
9 </div>
10
11 <p>This page should not render in Chrome Frame.</p>
12
13 <script type="text/javascript">
14 (function(){
15 var testName = 'FullTabHttpHeaderFrameset';
16 try {
17 if (isRunningInChrome()) {
18 onFailure(testName, 1);
19 } else {
20 parent.reportNotRunningInCF();
21 }
22 } catch (e) {
23 onFailure(testName, 1,
24 testName + ' failed with error: ' + e);
25 }
26 })();
27 </script>
28 </body>
29 </html>
OLDNEW

Powered by Google App Engine
This is Rietveld 408576698