summaryrefslogtreecommitdiffstats
path: root/third_party/polymer/components-chromium/core-dropdown
diff options
context:
space:
mode:
Diffstat (limited to 'third_party/polymer/components-chromium/core-dropdown')
-rw-r--r--third_party/polymer/components-chromium/core-dropdown/.bower.json23
-rw-r--r--third_party/polymer/components-chromium/core-dropdown/README.md6
-rw-r--r--third_party/polymer/components-chromium/core-dropdown/bower.json12
-rw-r--r--third_party/polymer/components-chromium/core-dropdown/core-dropdown-extracted.js125
-rw-r--r--third_party/polymer/components-chromium/core-dropdown/core-dropdown.css36
-rw-r--r--third_party/polymer/components-chromium/core-dropdown/core-dropdown.html79
-rw-r--r--third_party/polymer/components-chromium/core-dropdown/demo.html349
-rw-r--r--third_party/polymer/components-chromium/core-dropdown/index.html22
8 files changed, 652 insertions, 0 deletions
diff --git a/third_party/polymer/components-chromium/core-dropdown/.bower.json b/third_party/polymer/components-chromium/core-dropdown/.bower.json
new file mode 100644
index 0000000..7f671db
--- /dev/null
+++ b/third_party/polymer/components-chromium/core-dropdown/.bower.json
@@ -0,0 +1,23 @@
+{
+ "name": "core-dropdown",
+ "private": false,
+ "dependencies": {
+ "polymer": "Polymer/polymer#>=0.3.0 <1.0.0",
+ "core-icon": "Polymer/core-icon#>=0.3.0 <1.0.0",
+ "core-icons": "Polymer/core-icon#>=0.3.0 <1.0.0",
+ "core-item": "Polymer/core-item#>=0.3.0 <1.0.0",
+ "core-menu": "Polymer/core-menu#>=0.3.0 <1.0.0",
+ "core-overlay": "Polymer/core-overlay"
+ },
+ "homepage": "https://github.com/Polymer/core-dropdown",
+ "version": "0.3.5",
+ "_release": "0.3.5",
+ "_resolution": {
+ "type": "version",
+ "tag": "0.3.5",
+ "commit": "9fff79ebe5f462917fc466a2d9bc7eeb403b9bb3"
+ },
+ "_source": "git://github.com/Polymer/core-dropdown.git",
+ "_target": "0.3.5",
+ "_originalSource": "Polymer/core-dropdown"
+} \ No newline at end of file
diff --git a/third_party/polymer/components-chromium/core-dropdown/README.md b/third_party/polymer/components-chromium/core-dropdown/README.md
new file mode 100644
index 0000000..8344443
--- /dev/null
+++ b/third_party/polymer/components-chromium/core-dropdown/README.md
@@ -0,0 +1,6 @@
+core-dropdown
+=============
+
+owner: @morethanreal
+
+See the [component page](http://polymer-project.org/docs/elements/core-elements.html#core-dropdown) for more information.
diff --git a/third_party/polymer/components-chromium/core-dropdown/bower.json b/third_party/polymer/components-chromium/core-dropdown/bower.json
new file mode 100644
index 0000000..cd36db2
--- /dev/null
+++ b/third_party/polymer/components-chromium/core-dropdown/bower.json
@@ -0,0 +1,12 @@
+{
+ "name": "core-dropdown",
+ "private": false,
+ "dependencies": {
+ "polymer": "Polymer/polymer#>=0.3.0 <1.0.0",
+ "core-icon": "Polymer/core-icon#>=0.3.0 <1.0.0",
+ "core-icons": "Polymer/core-icon#>=0.3.0 <1.0.0",
+ "core-item": "Polymer/core-item#>=0.3.0 <1.0.0",
+ "core-menu": "Polymer/core-menu#>=0.3.0 <1.0.0",
+ "core-overlay": "Polymer/core-overlay"
+ }
+} \ No newline at end of file
diff --git a/third_party/polymer/components-chromium/core-dropdown/core-dropdown-extracted.js b/third_party/polymer/components-chromium/core-dropdown/core-dropdown-extracted.js
new file mode 100644
index 0000000..f44acb8
--- /dev/null
+++ b/third_party/polymer/components-chromium/core-dropdown/core-dropdown-extracted.js
@@ -0,0 +1,125 @@
+
+
+ Polymer('core-dropdown',{
+
+ publish: {
+
+ /**
+ * True if the menu is open.
+ *
+ * @attribute opened
+ * @type boolean
+ * @default false
+ */
+ opened: false,
+
+ /**
+ * A label for the control. The label is displayed if no item is selected.
+ *
+ * @attribute label
+ * @type string
+ * @default 'Select an item'
+ */
+ label: 'Select an item',
+
+ /**
+ * The currently selected element. By default this is the index of the item element.
+ * If you want a specific attribute value of the element to be used instead of the
+ * index, set `valueattr` to that attribute name.
+ *
+ * @attribute selected
+ * @type Object
+ * @default null
+ */
+ selected: null,
+
+ /**
+ * Specifies the attribute to be used for "selected" attribute.
+ *
+ * @attribute valueattr
+ * @type string
+ * @default 'name'
+ */
+ valueattr: 'name',
+
+ /**
+ * Specifies the CSS class to be used to add to the selected element.
+ *
+ * @attribute selectedClass
+ * @type string
+ * @default 'core-selected'
+ */
+ selectedClass: 'core-selected',
+
+ /**
+ * Specifies the property to be used to set on the selected element
+ * to indicate its active state.
+ *
+ * @attribute selectedProperty
+ * @type string
+ * @default ''
+ */
+ selectedProperty: '',
+
+ /**
+ * Specifies the attribute to set on the selected element to indicate
+ * its active state.
+ *
+ * @attribute selectedAttribute
+ * @type string
+ * @default 'active'
+ */
+ selectedAttribute: 'selected',
+
+ /**
+ * The currently selected element.
+ *
+ * @attribute selectedItem
+ * @type Object
+ * @default null
+ */
+ selectedItem: null,
+
+ /**
+ * Horizontally align the overlay with the control.
+ * @attribute halign
+ * @type "left"|"right"
+ * @default "left"
+ */
+ halign: {value: 'left', reflect: true},
+
+ /**
+ * Vertically align the dropdown menu with the control.
+ * @attribute valign
+ * @type "top"|"bottom"
+ * @default "bottom"
+ */
+ valign: {value: 'bottom', reflect: true}
+
+ },
+
+ toggle: function() {
+ this.opened = !this.opened;
+ },
+
+ openAction: function(e) {
+ if (e.detail) {
+ var rect = this.$.control.getBoundingClientRect();
+ if (this.valign === 'top') {
+ this.$.menu.style.top = 'auto';
+ this.$.menu.style.bottom = rect.height + 'px';
+ this.$.menu.style.maxHeight = (window.innerHeight - (window.innerHeight - rect.top) - 12) + 'px';
+ } else {
+ this.$.menu.style.top = rect.height + 'px';
+ this.$.menu.style.bottom = 'auto';
+ this.$.menu.style.maxHeight = (window.innerHeight - rect.height - rect.top - 12) + 'px';
+ }
+ this.$.menu.style.minWidth = rect.width + 'px';
+ }
+ },
+
+ selectAction: function() {
+ this.opened = false;
+ }
+ });
+
diff --git a/third_party/polymer/components-chromium/core-dropdown/core-dropdown.css b/third_party/polymer/components-chromium/core-dropdown/core-dropdown.css
new file mode 100644
index 0000000..ea2a6e3
--- /dev/null
+++ b/third_party/polymer/components-chromium/core-dropdown/core-dropdown.css
@@ -0,0 +1,36 @@
+:host {
+ position: relative;
+ display: inline-block;
+ background-color: #fff;
+}
+
+#control core-item {
+ margin-left: 12px;
+ max-width: inherit;
+}
+
+#control core-item::shadow #label {
+ overflow: hidden;
+ /* FIXME not working for some reason */
+ white-space: nowrap;
+ text-overflow: ellipsis;
+}
+
+#arrow {
+ margin: 0 12px;
+}
+
+#menu {
+ position: absolute;
+ left: 0;
+ margin: 0;
+ padding: 0 12px;
+ overflow: scroll;
+ -webkit-overflow-scrolling: touch;
+ background-color: #fff;
+}
+
+:host([halign="right"]) #menu {
+ left: auto;
+ right: 0;
+}
diff --git a/third_party/polymer/components-chromium/core-dropdown/core-dropdown.html b/third_party/polymer/components-chromium/core-dropdown/core-dropdown.html
new file mode 100644
index 0000000..3d0920a
--- /dev/null
+++ b/third_party/polymer/components-chromium/core-dropdown/core-dropdown.html
@@ -0,0 +1,79 @@
+<!--
+Copyright (c) 2014 The Polymer Project Authors. All rights reserved.
+This code may only be used under the BSD style license found at http://polymer.github.io/LICENSE.txt
+The complete set of authors may be found at http://polymer.github.io/AUTHORS.txt
+The complete set of contributors may be found at http://polymer.github.io/CONTRIBUTORS.txt
+Code distributed by Google as part of the polymer project is also
+subject to an additional IP rights grant found at http://polymer.github.io/PATENTS.txt
+-->
+
+<!--
+
+`core-dropdown` is a control where the user can choose from an array of options in a drop-down
+menu. The currently selected option is displayed in the control.
+
+Example:
+
+ <core-dropdown selected="Financier" valueattr="label">
+ <core-item label="Croissant"></core-item>
+ <core-item label="Donut"></core-item>
+ <core-item label="Financier"></core-item>
+ <core-item label="Madeleine"></core-item>
+ </core-dropdown>
+
+This example renders a drop-down menu with 4 options, with the option `Financier` pre-selected.
+
+Theming
+-------
+
+Style the drop-down menu with the `core-dropdown::shadow #menu` selector.
+
+Example:
+
+ core-dropdown::shadow #menu {
+ background-color: #eee;
+ border: 1px solid #ccc;
+ }
+
+@group Polymer Core Elements
+@element core-dropdown
+@status beta
+@homepage github.io
+-->
+
+<!--
+Fired when an item's selection state is changed. This event is fired both
+when an item is selected or deselected. The `isSelected` detail property
+contains the selection state.
+
+@event core-select
+@param {Object} detail
+ @param {boolean} detail.isSelected true for selection and false for deselection
+ @param {Object} detail.item the item element
+-->
+<link href="../polymer/polymer.html" rel="import">
+<link href="../core-icon/core-icon.html" rel="import">
+<link href="../core-icons/core-icons.html" rel="import">
+<link href="../core-item/core-item.html" rel="import">
+<link href="../core-menu/core-menu.html" rel="import">
+<link href="../core-overlay/core-overlay.html" rel="import">
+
+<polymer-element name="core-dropdown" assetpath="">
+<template>
+
+ <link href="core-dropdown.css" rel="stylesheet">
+
+ <div id="control" layout="" horizontal="" center="" on-tap="{{toggle}}">
+ <core-item flex="" src="{{selectedItem.src}}" icon="{{selectedItem.icon}}" label="{{selectedItem ? selectedItem.label : label}}"></core-item>
+ <core-icon id="arrow" icon="{{opened ? &apos;arrow-drop-up&apos; : &apos;arrow-drop-down&apos;}}"></core-icon>
+ </div>
+
+ <core-overlay target="{{$.menu}}" opened="{{opened}}" on-core-overlay-open="{{openAction}}"></core-overlay>
+
+ <core-menu id="menu" selected="{{selected}}" selecteditem="{{selectedItem}}" selectedclass="{{selectedClass}}" valueattr="{{valueattr}}" selectedproperty="{{selectedProperty}}" selectedattribute="{{selectedAttribute}}" on-core-select="{{selectAction}}">
+ <content select="*"></content>
+ </core-menu>
+
+</template>
+
+</polymer-element><script src="core-dropdown-extracted.js"></script> \ No newline at end of file
diff --git a/third_party/polymer/components-chromium/core-dropdown/demo.html b/third_party/polymer/components-chromium/core-dropdown/demo.html
new file mode 100644
index 0000000..2892df4
--- /dev/null
+++ b/third_party/polymer/components-chromium/core-dropdown/demo.html
@@ -0,0 +1,349 @@
+<!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>
+
+ <meta charset="utf-8">
+ <meta http-equiv="X-UA-Compatible" content="IE=edge,chrome=1">
+ <meta name="viewport" content="width=device-width, initial-scale=1, user-scalable=no">
+
+ <title>core-dropdown</title>
+
+ <script src="../platform/platform.js"></script>
+
+ <link href="core-dropdown.html" rel="import">
+
+ <style shim-shadowdom>
+ html, body {
+ height: 100%;
+ }
+
+ dropdown-demo {
+ display: block;
+ }
+
+ dropdown-demo::shadow > section {
+ padding: 12px;
+ }
+
+ body /deep/ core-dropdown {
+ background-color: #eee;
+ }
+
+ body /deep/ core-dropdown.narrow {
+ max-width: 100px;
+ }
+
+ body /deep/ core-dropdown::shadow #menu {
+ background-color: #eee;
+ border: 1px solid #ccc;
+ }
+ </style>
+
+</head>
+<body unresolved>
+
+ <polymer-element name="dropdown-demo">
+ <template>
+ <section layout vertical fit>
+ <section layout horizontal>
+
+ <core-dropdown>
+ <template repeat="{{countries}}">
+ <core-item label="{{name}}"></core-item>
+ </template>
+ </core-dropdown>
+
+ <div style="margin:0 12px;">
+ narrow:
+ <core-dropdown class="narrow">
+ <template repeat="{{countries}}">
+ <core-item label="{{name}}"></core-item>
+ </template>
+ </core-dropdown>
+ </div>
+
+ <div flex></div>
+
+ <core-dropdown halign="right">
+ <template repeat="{{countries}}">
+ <core-item label="{{name}}"></core-item>
+ </template>
+ </core-dropdown>
+
+ </section>
+
+ <div flex></div>
+
+ <section>
+ drop-up:
+ <core-dropdown valign="top" valueattr="label" selected="Donut">
+ <core-item label="Croissant"></core-item>
+ <core-item label="Donut"></core-item>
+ <core-item label="Financier"></core-item>
+ <core-item label="Madeleine"></core-item>
+ </core-dropdown>
+ </section>
+
+ </section>
+
+ </template>
+ <script>
+ Polymer('dropdown-demo', {
+ countries: [
+ {name: 'Afghanistan', code: 'AF'},
+ {name: 'Ă…land Islands', code: 'AX'},
+ {name: 'Albania', code: 'AL'},
+ {name: 'Algeria', code: 'DZ'},
+ {name: 'American Samoa', code: 'AS'},
+ {name: 'Andorra', code: 'AD'},
+ {name: 'Angola', code: 'AO'},
+ {name: 'Anguilla', code: 'AI'},
+ {name: 'Antarctica', code: 'AQ'},
+ {name: 'Antigua and Barbuda', code: 'AG'},
+ {name: 'Argentina', code: 'AR'},
+ {name: 'Armenia', code: 'AM'},
+ {name: 'Aruba', code: 'AW'},
+ {name: 'Australia', code: 'AU'},
+ {name: 'Austria', code: 'AT'},
+ {name: 'Azerbaijan', code: 'AZ'},
+ {name: 'Bahamas', code: 'BS'},
+ {name: 'Bahrain', code: 'BH'},
+ {name: 'Bangladesh', code: 'BD'},
+ {name: 'Barbados', code: 'BB'},
+ {name: 'Belarus', code: 'BY'},
+ {name: 'Belgium', code: 'BE'},
+ {name: 'Belize', code: 'BZ'},
+ {name: 'Benin', code: 'BJ'},
+ {name: 'Bermuda', code: 'BM'},
+ {name: 'Bhutan', code: 'BT'},
+ {name: 'Bolivia', code: 'BO'},
+ {name: 'Bosnia and Herzegovina', code: 'BA'},
+ {name: 'Botswana', code: 'BW'},
+ {name: 'Bouvet Island', code: 'BV'},
+ {name: 'Brazil', code: 'BR'},
+ {name: 'British Indian Ocean Territory', code: 'IO'},
+ {name: 'Brunei Darussalam', code: 'BN'},
+ {name: 'Bulgaria', code: 'BG'},
+ {name: 'Burkina Faso', code: 'BF'},
+ {name: 'Burundi', code: 'BI'},
+ {name: 'Cambodia', code: 'KH'},
+ {name: 'Cameroon', code: 'CM'},
+ {name: 'Canada', code: 'CA'},
+ {name: 'Cape Verde', code: 'CV'},
+ {name: 'Cayman Islands', code: 'KY'},
+ {name: 'Central African Republic', code: 'CF'},
+ {name: 'Chad', code: 'TD'},
+ {name: 'Chile', code: 'CL'},
+ {name: 'China', code: 'CN'},
+ {name: 'Christmas Island', code: 'CX'},
+ {name: 'Cocos (Keeling) Islands', code: 'CC'},
+ {name: 'Colombia', code: 'CO'},
+ {name: 'Comoros', code: 'KM'},
+ {name: 'Congo', code: 'CG'},
+ {name: 'Congo, The Democratic Republic of the', code: 'CD'},
+ {name: 'Cook Islands', code: 'CK'},
+ {name: 'Costa Rica', code: 'CR'},
+ {name: 'Cote D\'Ivoire', code: 'CI'},
+ {name: 'Croatia', code: 'HR'},
+ {name: 'Cuba', code: 'CU'},
+ {name: 'Cyprus', code: 'CY'},
+ {name: 'Czech Republic', code: 'CZ'},
+ {name: 'Denmark', code: 'DK'},
+ {name: 'Djibouti', code: 'DJ'},
+ {name: 'Dominica', code: 'DM'},
+ {name: 'Dominican Republic', code: 'DO'},
+ {name: 'Ecuador', code: 'EC'},
+ {name: 'Egypt', code: 'EG'},
+ {name: 'El Salvador', code: 'SV'},
+ {name: 'Equatorial Guinea', code: 'GQ'},
+ {name: 'Eritrea', code: 'ER'},
+ {name: 'Estonia', code: 'EE'},
+ {name: 'Ethiopia', code: 'ET'},
+ {name: 'Falkland Islands (Malvinas)', code: 'FK'},
+ {name: 'Faroe Islands', code: 'FO'},
+ {name: 'Fiji', code: 'FJ'},
+ {name: 'Finland', code: 'FI'},
+ {name: 'France', code: 'FR'},
+ {name: 'French Guiana', code: 'GF'},
+ {name: 'French Polynesia', code: 'PF'},
+ {name: 'French Southern Territories', code: 'TF'},
+ {name: 'Gabon', code: 'GA'},
+ {name: 'Gambia', code: 'GM'},
+ {name: 'Georgia', code: 'GE'},
+ {name: 'Germany', code: 'DE'},
+ {name: 'Ghana', code: 'GH'},
+ {name: 'Gibraltar', code: 'GI'},
+ {name: 'Greece', code: 'GR'},
+ {name: 'Greenland', code: 'GL'},
+ {name: 'Grenada', code: 'GD'},
+ {name: 'Guadeloupe', code: 'GP'},
+ {name: 'Guam', code: 'GU'},
+ {name: 'Guatemala', code: 'GT'},
+ {name: 'Guernsey', code: 'GG'},
+ {name: 'Guinea', code: 'GN'},
+ {name: 'Guinea-Bissau', code: 'GW'},
+ {name: 'Guyana', code: 'GY'},
+ {name: 'Haiti', code: 'HT'},
+ {name: 'Heard Island and Mcdonald Islands', code: 'HM'},
+ {name: 'Holy See (Vatican City State)', code: 'VA'},
+ {name: 'Honduras', code: 'HN'},
+ {name: 'Hong Kong', code: 'HK'},
+ {name: 'Hungary', code: 'HU'},
+ {name: 'Iceland', code: 'IS'},
+ {name: 'India', code: 'IN'},
+ {name: 'Indonesia', code: 'ID'},
+ {name: 'Iran, Islamic Republic Of', code: 'IR'},
+ {name: 'Iraq', code: 'IQ'},
+ {name: 'Ireland', code: 'IE'},
+ {name: 'Isle of Man', code: 'IM'},
+ {name: 'Israel', code: 'IL'},
+ {name: 'Italy', code: 'IT'},
+ {name: 'Jamaica', code: 'JM'},
+ {name: 'Japan', code: 'JP'},
+ {name: 'Jersey', code: 'JE'},
+ {name: 'Jordan', code: 'JO'},
+ {name: 'Kazakhstan', code: 'KZ'},
+ {name: 'Kenya', code: 'KE'},
+ {name: 'Kiribati', code: 'KI'},
+ {name: 'Korea, Democratic People\'S Republic of', code: 'KP'},
+ {name: 'Korea, Republic of', code: 'KR'},
+ {name: 'Kuwait', code: 'KW'},
+ {name: 'Kyrgyzstan', code: 'KG'},
+ {name: 'Lao People\'S Democratic Republic', code: 'LA'},
+ {name: 'Latvia', code: 'LV'},
+ {name: 'Lebanon', code: 'LB'},
+ {name: 'Lesotho', code: 'LS'},
+ {name: 'Liberia', code: 'LR'},
+ {name: 'Libyan Arab Jamahiriya', code: 'LY'},
+ {name: 'Liechtenstein', code: 'LI'},
+ {name: 'Lithuania', code: 'LT'},
+ {name: 'Luxembourg', code: 'LU'},
+ {name: 'Macao', code: 'MO'},
+ {name: 'Macedonia, The Former Yugoslav Republic of', code: 'MK'},
+ {name: 'Madagascar', code: 'MG'},
+ {name: 'Malawi', code: 'MW'},
+ {name: 'Malaysia', code: 'MY'},
+ {name: 'Maldives', code: 'MV'},
+ {name: 'Mali', code: 'ML'},
+ {name: 'Malta', code: 'MT'},
+ {name: 'Marshall Islands', code: 'MH'},
+ {name: 'Martinique', code: 'MQ'},
+ {name: 'Mauritania', code: 'MR'},
+ {name: 'Mauritius', code: 'MU'},
+ {name: 'Mayotte', code: 'YT'},
+ {name: 'Mexico', code: 'MX'},
+ {name: 'Micronesia, Federated States of', code: 'FM'},
+ {name: 'Moldova, Republic of', code: 'MD'},
+ {name: 'Monaco', code: 'MC'},
+ {name: 'Mongolia', code: 'MN'},
+ {name: 'Montserrat', code: 'MS'},
+ {name: 'Morocco', code: 'MA'},
+ {name: 'Mozambique', code: 'MZ'},
+ {name: 'Myanmar', code: 'MM'},
+ {name: 'Namibia', code: 'NA'},
+ {name: 'Nauru', code: 'NR'},
+ {name: 'Nepal', code: 'NP'},
+ {name: 'Netherlands', code: 'NL'},
+ {name: 'Netherlands Antilles', code: 'AN'},
+ {name: 'New Caledonia', code: 'NC'},
+ {name: 'New Zealand', code: 'NZ'},
+ {name: 'Nicaragua', code: 'NI'},
+ {name: 'Niger', code: 'NE'},
+ {name: 'Nigeria', code: 'NG'},
+ {name: 'Niue', code: 'NU'},
+ {name: 'Norfolk Island', code: 'NF'},
+ {name: 'Northern Mariana Islands', code: 'MP'},
+ {name: 'Norway', code: 'NO'},
+ {name: 'Oman', code: 'OM'},
+ {name: 'Pakistan', code: 'PK'},
+ {name: 'Palau', code: 'PW'},
+ {name: 'Palestinian Territory, Occupied', code: 'PS'},
+ {name: 'Panama', code: 'PA'},
+ {name: 'Papua New Guinea', code: 'PG'},
+ {name: 'Paraguay', code: 'PY'},
+ {name: 'Peru', code: 'PE'},
+ {name: 'Philippines', code: 'PH'},
+ {name: 'Pitcairn', code: 'PN'},
+ {name: 'Poland', code: 'PL'},
+ {name: 'Portugal', code: 'PT'},
+ {name: 'Puerto Rico', code: 'PR'},
+ {name: 'Qatar', code: 'QA'},
+ {name: 'Reunion', code: 'RE'},
+ {name: 'Romania', code: 'RO'},
+ {name: 'Russian Federation', code: 'RU'},
+ {name: 'RWANDA', code: 'RW'},
+ {name: 'Saint Helena', code: 'SH'},
+ {name: 'Saint Kitts and Nevis', code: 'KN'},
+ {name: 'Saint Lucia', code: 'LC'},
+ {name: 'Saint Pierre and Miquelon', code: 'PM'},
+ {name: 'Saint Vincent and the Grenadines', code: 'VC'},
+ {name: 'Samoa', code: 'WS'},
+ {name: 'San Marino', code: 'SM'},
+ {name: 'Sao Tome and Principe', code: 'ST'},
+ {name: 'Saudi Arabia', code: 'SA'},
+ {name: 'Senegal', code: 'SN'},
+ {name: 'Serbia and Montenegro', code: 'CS'},
+ {name: 'Seychelles', code: 'SC'},
+ {name: 'Sierra Leone', code: 'SL'},
+ {name: 'Singapore', code: 'SG'},
+ {name: 'Slovakia', code: 'SK'},
+ {name: 'Slovenia', code: 'SI'},
+ {name: 'Solomon Islands', code: 'SB'},
+ {name: 'Somalia', code: 'SO'},
+ {name: 'South Africa', code: 'ZA'},
+ {name: 'South Georgia and the South Sandwich Islands', code: 'GS'},
+ {name: 'Spain', code: 'ES'},
+ {name: 'Sri Lanka', code: 'LK'},
+ {name: 'Sudan', code: 'SD'},
+ {name: 'Suriname', code: 'SR'},
+ {name: 'Svalbard and Jan Mayen', code: 'SJ'},
+ {name: 'Swaziland', code: 'SZ'},
+ {name: 'Sweden', code: 'SE'},
+ {name: 'Switzerland', code: 'CH'},
+ {name: 'Syrian Arab Republic', code: 'SY'},
+ {name: 'Taiwan, Province of China', code: 'TW'},
+ {name: 'Tajikistan', code: 'TJ'},
+ {name: 'Tanzania, United Republic of', code: 'TZ'},
+ {name: 'Thailand', code: 'TH'},
+ {name: 'Timor-Leste', code: 'TL'},
+ {name: 'Togo', code: 'TG'},
+ {name: 'Tokelau', code: 'TK'},
+ {name: 'Tonga', code: 'TO'},
+ {name: 'Trinidad and Tobago', code: 'TT'},
+ {name: 'Tunisia', code: 'TN'},
+ {name: 'Turkey', code: 'TR'},
+ {name: 'Turkmenistan', code: 'TM'},
+ {name: 'Turks and Caicos Islands', code: 'TC'},
+ {name: 'Tuvalu', code: 'TV'},
+ {name: 'Uganda', code: 'UG'},
+ {name: 'Ukraine', code: 'UA'},
+ {name: 'United Arab Emirates', code: 'AE'},
+ {name: 'United Kingdom', code: 'GB'},
+ {name: 'United States', code: 'US'},
+ {name: 'United States Minor Outlying Islands', code: 'UM'},
+ {name: 'Uruguay', code: 'UY'},
+ {name: 'Uzbekistan', code: 'UZ'},
+ {name: 'Vanuatu', code: 'VU'},
+ {name: 'Venezuela', code: 'VE'},
+ {name: 'Viet Nam', code: 'VN'},
+ {name: 'Virgin Islands, British', code: 'VG'},
+ {name: 'Virgin Islands, U.S.', code: 'VI'},
+ {name: 'Wallis and Futuna', code: 'WF'},
+ {name: 'Western Sahara', code: 'EH'},
+ {name: 'Yemen', code: 'YE'},
+ {name: 'Zambia', code: 'ZM'},
+ {name: 'Zimbabwe', code: 'ZW'}
+ ]
+ });
+ </script>
+ </polymer-element>
+
+ <dropdown-demo fit></dropdown-demo>
+
+</body>
+</html> \ No newline at end of file
diff --git a/third_party/polymer/components-chromium/core-dropdown/index.html b/third_party/polymer/components-chromium/core-dropdown/index.html
new file mode 100644
index 0000000..58856f3
--- /dev/null
+++ b/third_party/polymer/components-chromium/core-dropdown/index.html
@@ -0,0 +1,22 @@
+<!doctype html>
+<!--
+Copyright (c) 2014 The Polymer Project Authors. All rights reserved.
+This code may only be used under the BSD style license found at http://polymer.github.io/LICENSE
+The complete set of authors may be found at http://polymer.github.io/AUTHORS
+The complete set of contributors may be found at http://polymer.github.io/CONTRIBUTORS
+Code distributed by Google as part of the polymer project is also
+subject to an additional IP rights grant found at http://polymer.github.io/PATENTS
+-->
+<html>
+<head>
+
+ <script src="../platform/platform.js"></script>
+ <link rel="import" href="../core-component-page/core-component-page.html">
+
+</head>
+<body unresolved>
+
+ <core-component-page></core-component-page>
+
+</body>
+</html>