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

Side by Side Diff: third_party/polymer/v1_0/components-chromium/paper-menu/paper-submenu.html

Issue 2839293002: Roll some polymer elements and remove stuff from chromium.patch (Closed)
Patch Set: . Created 3 years, 7 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 <!-- 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 --><html><head><link rel="import" href="../polymer/polymer.html"> 9 --><html><head><link rel="import" href="../polymer/polymer.html">
10 <link rel="import" href="../iron-menu-behavior/iron-menu-behavior.html">
11 <link rel="import" href="../iron-behaviors/iron-control-state.html"> 10 <link rel="import" href="../iron-behaviors/iron-control-state.html">
12 <link rel="import" href="../iron-collapse/iron-collapse.html"> 11 <link rel="import" href="../iron-collapse/iron-collapse.html">
13 <link rel="import" href="../iron-flex-layout/iron-flex-layout.html">
14 <link rel="import" href="../paper-styles/default-theme.html">
15 <link rel="import" href="../paper-styles/color.html">
16 <link rel="import" href="paper-menu-shared-styles.html"> 12 <link rel="import" href="paper-menu-shared-styles.html">
17 13
18 <!-- 14 <!--
19 `<paper-submenu>` is a nested menu inside of a parent `<paper-menu>`. It 15 `<paper-submenu>` is a nested menu inside of a parent `<paper-menu>`. It
20 consists of a trigger that expands or collapses another `<paper-menu>`: 16 consists of a trigger that expands or collapses another `<paper-menu>`:
21 17
22 <paper-menu> 18 <paper-menu>
23 <paper-submenu> 19 <paper-submenu>
24 <paper-item class="menu-trigger">Topics</paper-item> 20 <paper-item class="menu-trigger">Topics</paper-item>
25 <paper-menu class="menu-content"> 21 <paper-menu class="menu-content">
(...skipping 36 matching lines...) Expand 10 before | Expand all | Expand 10 after
62 <div class="selectable-content" on-tap="_onTap"> 58 <div class="selectable-content" on-tap="_onTap">
63 <content id="trigger" select=".menu-trigger"></content> 59 <content id="trigger" select=".menu-trigger"></content>
64 </div> 60 </div>
65 <iron-collapse id="collapse" opened="{{opened}}"> 61 <iron-collapse id="collapse" opened="{{opened}}">
66 <content id="content" select=".menu-content"></content> 62 <content id="content" select=".menu-content"></content>
67 </iron-collapse> 63 </iron-collapse>
68 </template> 64 </template>
69 65
70 </dom-module> 66 </dom-module>
71 <script src="paper-submenu-extracted.js"></script></body></html> 67 <script src="paper-submenu-extracted.js"></script></body></html>
OLDNEW

Powered by Google App Engine
This is Rietveld 408576698