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

Side by Side Diff: polymer_0.5.4/bower_components/core-elements/demo.html

Issue 895523005: Added Polymer 0.5.4 (Closed) Base URL: https://chromium.googlesource.com/infra/third_party/npm_modules.git@master
Patch Set: 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
1 <!doctype html> 1 <!doctype html>
2 <!-- 2 <!--
3 Copyright (c) 2014 The Polymer Project Authors. All rights reserved. 3 Copyright (c) 2014 The Polymer Project Authors. All rights reserved.
4 This code may only be used under the BSD style license found at http://polymer.g ithub.io/LICENSE 4 This code may only be used under the BSD style license found at http://polymer.g ithub.io/LICENSE
5 The complete set of authors may be found at http://polymer.github.io/AUTHORS 5 The complete set of authors may be found at http://polymer.github.io/AUTHORS
6 The complete set of contributors may be found at http://polymer.github.io/CONTRI BUTORS 6 The complete set of contributors may be found at http://polymer.github.io/CONTRI BUTORS
7 Code distributed by Google as part of the polymer project is also 7 Code distributed by Google as part of the polymer project is also
8 subject to an additional IP rights grant found at http://polymer.github.io/PATEN TS 8 subject to an additional IP rights grant found at http://polymer.github.io/PATEN TS
9 --> 9 -->
10 <html> 10 <html>
(...skipping 10 matching lines...) Expand all
21 <link rel="import" href="../sampler-scaffold/sampler-scaffold.html"> 21 <link rel="import" href="../sampler-scaffold/sampler-scaffold.html">
22 <link rel="import" href="../core-item/core-item.html"> 22 <link rel="import" href="../core-item/core-item.html">
23 <link rel="import" href="../core-menu/core-submenu.html"> 23 <link rel="import" href="../core-menu/core-submenu.html">
24 24
25 <style> 25 <style>
26 26
27 body { 27 body {
28 font-family: sans-serif; 28 font-family: sans-serif;
29 color: #333; 29 color: #333;
30 margin: 0; 30 margin: 0;
31 -webkit-user-select: none;
32 -moz-user-select: none;
33 -ms-user-select: none;
34 user-select: none;
35 -webkit-tap-highlight-color: rgba(0,0,0,0); 31 -webkit-tap-highlight-color: rgba(0,0,0,0);
36 -webkit-touch-callout: none; 32 -webkit-touch-callout: none;
37 } 33 }
38 34
39 </style> 35 </style>
40 36
41 </head> 37 </head>
42 <body unresolved> 38 <body unresolved>
43 39
44 <sampler-scaffold label="Core Elements"> 40 <sampler-scaffold label="Core Elements">
(...skipping 59 matching lines...) Expand 10 before | Expand all | Expand 10 after
104 (function(i,s,o,g,r,a,m){i['GoogleAnalyticsObject']=r;i[r]=i[r]||function(){ 100 (function(i,s,o,g,r,a,m){i['GoogleAnalyticsObject']=r;i[r]=i[r]||function(){
105 (i[r].q=i[r].q||[]).push(arguments)},i[r].l=1*new Date();a=s.createElement(o ), 101 (i[r].q=i[r].q||[]).push(arguments)},i[r].l=1*new Date();a=s.createElement(o ),
106 m=s.getElementsByTagName(o)[0];a.async=1;a.src=g;m.parentNode.insertBefore(a ,m) 102 m=s.getElementsByTagName(o)[0];a.async=1;a.src=g;m.parentNode.insertBefore(a ,m)
107 })(window,document,'script','//www.google-analytics.com/analytics.js','ga'); 103 })(window,document,'script','//www.google-analytics.com/analytics.js','ga');
108 104
109 ga('create', 'UA-39334307-1', 'auto'); 105 ga('create', 'UA-39334307-1', 'auto');
110 ga('send', 'pageview'); 106 ga('send', 'pageview');
111 </script> 107 </script>
112 </body> 108 </body>
113 </html> 109 </html>
OLDNEW

Powered by Google App Engine
This is Rietveld 408576698