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

Side by Side Diff: chrome/common/extensions/docs/examples/api/infobars/sandwichbar/infobar.html

Issue 923463003: [Extensions] Remove the Infobar API (Closed) Base URL: https://chromium.googlesource.com/chromium/src.git@master
Patch Set: Comments Created 5 years, 10 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
OLDNEW
(Empty)
1 <!DOCTYPE html>
2 <!--
3 * Copyright (c) 2010 The Chromium Authors. All rights reserved. Use of this
4 * source code is governed by a BSD-style license that can be found in the
5 * LICENSE file.
6 -->
7 <html>
8 <head>
9 <style>
10 html {
11 height: 40px;
12 }
13 body {
14 background: #fffddd;
15 font: 16px Arial;
16 height: 100%;
17 display: -webkit-box;
18 -webkit-box-orient: vertical;
19 -webkit-box-pack: center;
20 }
21 em {
22 font-weight: bold;
23 font-style: normal;
24 }
25 </style>
26 </head>
27 <body>
28 <div id="wrap">
29 The word <em>sandwich</em> appears <em id="count">X</em> times on this
30 page.
31 </div>
32 <script src="infobar.js"></script>
33 </body>
34 </html>
OLDNEW

Powered by Google App Engine
This is Rietveld 408576698