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

Side by Side Diff: polymer_1.0.4/bower_components/iron-menu-behavior/demo/index.html

Issue 1205703007: Add polymer 1.0 to npm_modules (Closed) Base URL: https://chromium.googlesource.com/infra/third_party/npm_modules.git@master
Patch Set: Renamed folder to 1.0.4 Created 5 years, 6 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 @license
4 Copyright (c) 2015 The Polymer Project Authors. All rights reserved.
5 This code may only be used under the BSD style license found at http://polymer .github.io/LICENSE.txt
6 The complete set of authors may be found at http://polymer.github.io/AUTHORS.t xt
7 The complete set of contributors may be found at http://polymer.github.io/CONT RIBUTORS.txt
8 Code distributed by Google as part of the polymer project is also
9 subject to an additional IP rights grant found at http://polymer.github.io/PAT ENTS.txt
10 -->
11 <html>
12 <head>
13
14 <meta charset="utf-8">
15 <meta http-equiv="X-UA-Compatible" content="IE=edge,chrome=1">
16 <meta name="viewport" content="width=device-width, minimum-scale=1.0, initial- scale=1, user-scalable=yes">
17
18 <title>iron-menu-behavior demo</title>
19
20 <script src="../../webcomponentsjs/webcomponents-lite.js"></script>
21
22 <link rel="import" href="simple-menu.html">
23 <link rel="import" href="simple-menubar.html">
24
25 <link rel="stylesheet" href="../../paper-styles/demo.css">
26
27 <style>
28
29 .list {
30 display: inline-block;
31 border: 1px solid #ccc;
32 padding: 8px 0;
33 }
34
35 .list li {
36 display: block;
37 padding: 8px;
38 }
39
40 .list li[disabled] {
41 color: #ccc;
42 }
43
44 </style>
45 </head>
46 <body>
47
48 <section>
49
50 <div>Simple menu</div>
51
52 <simple-menu class="list">
53 <li>item 0</li>
54 <li>item 1</li>
55 <li disabled>item 2</li>
56 <li>item 3</li>
57 </simple-menu>
58
59 </section>
60
61 <section>
62
63 <div>Multi-select menu</div>
64
65 <simple-menu class="list" multi>
66 <li>item 0</li>
67 <li>item 1</li>
68 <li>item 2</li>
69 <li>item 3</li>
70 <li>item 4</li>
71 </simple-menu>
72
73 </section>
74
75 <section>
76
77 <div>Simple menubar</div>
78
79 <simple-menubar class="list">
80 <li>item 0</li>
81 <li>item 1</li>
82 <li disabled>item 2</li>
83 <li>item 3</li>
84 </simple-menubar>
85
86 </section>
87
88 <section>
89 <div>Multi-select menubar</div>
90
91 <simple-menubar class="list" multi>
92 <li>item 0</li>
93 <li>item 1</li>
94 <li>item 2</li>
95 <li>item 3</li>
96 <li>item 4</li>
97 </simple-menubar>
98 </section>
99 </body>
100 </html>
OLDNEW

Powered by Google App Engine
This is Rietveld 408576698