Add an exponential backoff to rechecking the app list doodle.
[chromium-blink-merge.git] / third_party / polymer / components-chromium / paper-item / demo.html
blob6a8ad63ccf6aecb3492bfd58ff5e8c1f24c0a132
1 <!doctype html>
2 <!--
3 Copyright 2013 The Polymer Authors. All rights reserved.
4 Use of this source code is governed by a BSD-style
5 license that can be found in the LICENSE file.
6 -->
7 <html>
8 <head>
10 <meta charset="utf-8">
11 <meta http-equiv="X-UA-Compatible" content="IE=edge,chrome=1">
12 <meta name="viewport" content="width=device-width, minimum-scale=1.0, initial-scale=1, user-scalable=yes">
14 <title>paper-item</title>
16 <script src="../webcomponentsjs/webcomponents.js"></script>
18 <link href="../font-roboto/roboto.html" rel="import">
19 <link href="../core-icon/core-icon.html" rel="import">
20 <link href="../core-icons/core-icons.html" rel="import">
21 <link href="../core-selector/core-selector.html" rel="import">
22 <link href="../paper-shadow/paper-shadow.html" rel="import">
24 <link href="paper-item.html" rel="import">
26 <style shim-shadowdom>
27 body {
28 font-family: RobotoDraft, 'Helvetica Neue', Helvetica, Arial;
29 font-size: 14px;
30 margin: 0;
31 padding: 24px;
32 -webkit-tap-highlight-color: rgba(0,0,0,0);
33 -webkit-touch-callout: none;
36 section {
37 padding: 20px 0;
40 section > div {
41 padding: 14px;
42 font-size: 16px;
45 html /deep/ paper-shadow {
46 display: inline-block;
49 core-icon {
50 margin-right: 0.5em;
52 </style>
53 </head>
54 <body unresolved>
56 <section>
58 <div>Default</div>
60 <paper-shadow style="max-width: 10.5em;">
61 <paper-item>Item</paper-item>
62 <paper-item disabled>Disabled</paper-item>
63 <paper-item noink><a href="http://www.polymer-project.org" layout horizontal center>Link</a></paper-item>
64 <paper-item>Long items wrap by default</paper-item>
65 </paper-shadow>
67 </section>
69 <section>
71 <div>In a core-selector</div>
73 <paper-shadow>
74 <core-selector selected="1" selectedAttribute="">
75 <paper-item>Item 1</paper-item>
76 <paper-item>Item 2</paper-item>
77 <paper-item>Item 3</paper-item>
78 </core-selector>
79 </paper-shadow>
81 </section>
83 <section>
85 <div>Custom Content</div>
87 <paper-shadow>
88 <paper-item>
89 <core-icon icon="content-cut"></core-icon>
90 Cut
91 </paper-item>
92 <paper-item>
93 <core-icon icon="content-copy"></core-icon>
94 Copy
95 </paper-item>
96 <paper-item>
97 <core-icon icon="content-paste"></core-icon>
98 Paste
99 </paper-item>
100 </paper-shadow>
102 </section>
104 </body>
105 </html>