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

Side by Side Diff: lib/src/paper-tooltip/test/test-button.html

Issue 1418513006: update elements and fix some bugs (Closed) Base URL: git@github.com:dart-lang/polymer_elements.git@master
Patch Set: code review updates Created 5 years, 1 month 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
« no previous file with comments | « lib/src/paper-tooltip/test/basic.html ('k') | lib/src/prism/CHANGELOG.md » ('j') | no next file with comments »
Toggle Intra-line Diffs ('i') | Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
OLDNEW
1 <!-- 1 <!--
2 @license 2 @license
3 Copyright (c) 2015 The Polymer Project Authors. All rights reserved. 3 Copyright (c) 2015 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.txt 4 This code may only be used under the BSD style license found at http://polymer.g ithub.io/LICENSE.txt
5 The complete set of authors may be found at http://polymer.github.io/AUTHORS.txt 5 The complete set of authors may be found at http://polymer.github.io/AUTHORS.txt
6 The complete set of contributors may be found at http://polymer.github.io/CONTRI BUTORS.txt 6 The complete set of contributors may be found at http://polymer.github.io/CONTRI BUTORS.txt
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.txt 8 subject to an additional IP rights grant found at http://polymer.github.io/PATEN TS.txt
9 --> 9 -->
10 10
11 <link rel="import" href="../../polymer/polymer.html"> 11 <link rel="import" href="../../polymer/polymer.html">
12 <link rel="import" href="../paper-tooltip.html"> 12 <link rel="import" href="../paper-tooltip.html">
13 13
14 <dom-module id="test-button"> 14 <dom-module id="test-button">
15 <template> 15 <template>
16 <style> 16 <style>
17 :host { 17 :host {
18 display: inline-block; 18 display: inline-block;
19 } 19 }
20 20
21 #button { 21 #button {
22 width: 100px; 22 width: 100px;
23 height: 20px; 23 height: 20px;
24 background-color: red; 24 background-color: red;
25 } 25 }
26
26 paper-tooltip { 27 paper-tooltip {
27 width: 70px; 28 width: 70px;
29 height: 30px;
28 } 30 }
29 31
30 </style> 32 </style>
31 33
32 <div id="button"></div> 34 <div id="button"></div>
33 <paper-tooltip id="tooltip" for="button">Tooltip text</paper-tooltip> 35 <paper-tooltip id="buttonTooltip" for="button">Tooltip text</paper-tooltip>
34 </template> 36 </template>
35 37
36 <script> 38 <script>
37 Polymer({ 39 Polymer({
38 is: 'test-button' 40 is: 'test-button'
39 }); 41 });
40 </script> 42 </script>
41 </dom-module> 43 </dom-module>
OLDNEW
« no previous file with comments | « lib/src/paper-tooltip/test/basic.html ('k') | lib/src/prism/CHANGELOG.md » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698