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

Side by Side Diff: third_party/polymer/components-chromium/paper-item/demo.html

Issue 592593002: Inline scripts were extracted from Polymer elements. (Closed) Base URL: https://chromium.googlesource.com/chromium/src.git@master
Patch Set: s/echo ""/echo/ Created 6 years, 2 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 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>
9 <title>paper-item</title>
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, initial-scale=1, user-scala ble=no">
13 <script src="../platform/platform.js"></script>
14 <link href="../font-roboto/roboto.html" rel="import">
15 <link href="../core-icons/core-icons.html" rel="import">
16 <link href="../core-menu/core-menu.html" rel="import">
17 <link href="paper-item.html" rel="import">
18 <style shim-shadowdom>
19 body {
20 font-family: RobotoDraft, 'Helvetica Neue', Helvetica, Arial;
21 }
22
23 paper-item {
24 max-width: 320px;
25 }
26 </style>
27 </head>
28 <body unresolved>
29 <core-menu>
30 <paper-item icon="refresh" label="Item 1"></paper-item>
31 <paper-item label="Item 2"></paper-item>
32 <paper-item label="Item with a link">
33 <a href="http://www.polymer-project.org" target="_self"></a>
34 </paper-item>
35 </core-menu>
36 </body>
37 </html>
OLDNEW

Powered by Google App Engine
This is Rietveld 408576698