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

Unified Diff: pkg/polymer/lib/elements/polymer-ui-submenu-item/demo.html

Issue 175443005: [polymer] import all elements (Closed) Base URL: https://dart.googlecode.com/svn/branches/bleeding_edge/dart
Patch Set: updated from bower Created 6 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 side-by-side diff with in-line comments
Download patch
Index: pkg/polymer/lib/elements/polymer-ui-submenu-item/demo.html
diff --git a/pkg/polymer/lib/elements/polymer-ui-submenu-item/demo.html b/pkg/polymer/lib/elements/polymer-ui-submenu-item/demo.html
new file mode 100644
index 0000000000000000000000000000000000000000..7e6ac7eef35476f8e3d0f3bd71af17c1bb350e6c
--- /dev/null
+++ b/pkg/polymer/lib/elements/polymer-ui-submenu-item/demo.html
@@ -0,0 +1,38 @@
+
+<!doctype html>
+<!--
+Copyright 2013 The Polymer Authors. All rights reserved.
+Use of this source code is governed by a BSD-style
+license that can be found in the LICENSE file.
+-->
+<html>
+ <head>
+ <title>polymer-ui-submenu-item</title>
+ <script src="../platform/platform.js"></script>
+ <link rel="import" href="polymer-ui-submenu-item.html">
+ <link rel="import" href="../polymer-ui-menu-item/polymer-ui-menu-item.html">
+ <link rel="stylesheet" href="../polymer-ui-base/base.css">
+ <style>
+ section {
+ width: 300px;
+ padding: 10px;
+ }
+ </style>
+ </head>
+ <body class="polymer-ui-body-text" unresolved>
+ <h2>polymer-ui-light-theme</h2>
+ <section theme="polymer-ui-light-theme">
+ <polymer-ui-submenu-item icon="settings" label="Topics" active>
+ <polymer-ui-menu-item label="Topics 1"></polymer-ui-menu-item>
+ <polymer-ui-menu-item label="Topics 2"></polymer-ui-menu-item>
+ </polymer-ui-submenu-item>
+ </section>
+ <h2>polymer-ui-dark-theme</h2>
+ <section style="background: #333;" theme="polymer-ui-dark-theme">
+ <polymer-ui-submenu-item icon="settings" label="Topics" active>
+ <polymer-ui-menu-item label="Topics 1"></polymer-ui-menu-item>
+ <polymer-ui-menu-item label="Topics 2"></polymer-ui-menu-item>
+ </polymer-ui-submenu-item>
+ </section>
+ </body>
+</html>

Powered by Google App Engine
This is Rietveld 408576698