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

Side by Side Diff: chrome_frame/cfinstall/examples/simple.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 <!--
2 Copyright 2011 Google Inc. All rights reserved.
3 -->
4 <html>
5 <head>
6 <meta http-equiv="X-UA-Compatible" content="chrome=1" />
7 <script
8 src='//google.com/tools/dlpage/res/chromeframe/script/CFInstall.min.js'>
9 </script>
10 </head>
11 <body>
12 <b>Chrome Renderer Active?:</b>
13 <span class="labeled" id="ChromeActive"></span><br />
14 <script>
15 var ua = navigator.userAgent.toLowerCase();
16 document.getElementById('ChromeActive').innerHTML =
17 ua.indexOf('chrome/') >= 0 ? "Yes" : "No";
18 </script>
19 <p>
20 <a href="javascript:CFInstall.require()">
21 This site requires Google Chrome Frame. Click here to install it now.
22 </a>
23 </p>
24 </body>
25 </html>
OLDNEW

Powered by Google App Engine
This is Rietveld 408576698