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

Side by Side Diff: chrome/browser/resources/settings/internet_page/network_config_input.html

Issue 2848683003: MD Settings: Add settings-internet-config (WiFi only, no certs) (Closed)
Patch Set: More Feedback 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
(Empty)
1 <link rel="import" href="chrome://resources/html/polymer.html">
2 <link rel="import" href="chrome://resources/polymer/v1_0/iron-input/iron-input.h tml">
3 <link rel="import" href="chrome://resources/polymer/v1_0/paper-input/paper-input -container.html">
4 <link rel="import" href="../settings_shared_css.html">
5
6 <dom-module id="network-config-input">
7 <template>
8 <style include="settings-shared">
9 </style>
10
11 <div class="settings-box">
12 <div id="label" class="start">[[label]]</div>
13 <paper-input-container no-label-float>
14 <input is="iron-input" value="{{value::change}}"
15 disabled="[[disabled]]" aria-labelledby="label">
16 </paper-input-container>
17 </div>
18 </template>
19 <script src="network_config_input.js"></script>
20 </dom-module>
OLDNEW

Powered by Google App Engine
This is Rietveld 408576698