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

Side by Side Diff: polymer_1.0.4/bower_components/paper-dialog-behavior/test/test-dialog.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, 5 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 <!--
2 @license
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
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
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
9 -->
10
11 <link rel="import" href="../../polymer/polymer.html">
12 <link rel="import" href="../../paper-styles/paper-styles.html">
13
14 <link rel="import" href="../paper-dialog-behavior.html">
15
16 <dom-module id="test-dialog">
17
18 <link rel="import" type="css" href="../paper-dialog-common.css">
19
20 <template>
21 <content></content>
22 </template>
23
24 </dom-module>
25
26 <script>
27
28 (function() {
29
30 Polymer({
31
32 is: 'test-dialog',
33
34 behaviors: [
35 Polymer.PaperDialogBehavior
36 ]
37
38 });
39
40 })();
41
42 </script>
OLDNEW

Powered by Google App Engine
This is Rietveld 408576698