Don't override system malloc when built with MemorySanitizer.
[chromium-blink-merge.git] / chrome_frame / cfinstall / examples / simple.html
blob812a71745496ee401293eee38ece7d171ac2165b
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>