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

Side by Side Diff: chrome/browser/resources/settings/people_page/manage_profile.html

Issue 1873613002: Settings People Revamp: Add Manage Profile browsertests. (Closed) Base URL: https://chromium.googlesource.com/chromium/src.git@0137-settings-people-manage-profile-update-to-promise
Patch Set: restrict test to non-ChromeOS only Created 4 years, 8 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
« no previous file with comments | « no previous file | chrome/test/data/webui/settings/cr_settings_browsertest.js » ('j') | no next file with comments »
Toggle Intra-line Diffs ('i') | Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
OLDNEW
1 <link rel="import" href="chrome://resources/html/polymer.html"> 1 <link rel="import" href="chrome://resources/html/polymer.html">
2 <link rel="import" href="chrome://resources/html/web_ui_listener_behavior.html"> 2 <link rel="import" href="chrome://resources/html/web_ui_listener_behavior.html">
3 <link rel="import" href="chrome://resources/polymer/v1_0/iron-selector/iron-sele ctor.html"> 3 <link rel="import" href="chrome://resources/polymer/v1_0/iron-selector/iron-sele ctor.html">
4 <link rel="import" href="chrome://resources/polymer/v1_0/paper-button/paper-butt on.html"> 4 <link rel="import" href="chrome://resources/polymer/v1_0/paper-button/paper-butt on.html">
5 <link rel="import" href="chrome://resources/polymer/v1_0/paper-input/paper-input .html"> 5 <link rel="import" href="chrome://resources/polymer/v1_0/paper-input/paper-input .html">
6 <link rel="import" href="chrome://resources/polymer/v1_0/paper-styles/shadow.htm l"> 6 <link rel="import" href="chrome://resources/polymer/v1_0/paper-styles/shadow.htm l">
7 <link rel="import" href="chrome://md-settings/people_page/manage_profile_browser _proxy.html"> 7 <link rel="import" href="chrome://md-settings/people_page/manage_profile_browser _proxy.html">
8 <link rel="import" href="chrome://md-settings/settings_shared_css.html"> 8 <link rel="import" href="chrome://md-settings/settings_shared_css.html">
9 9
10 <dom-module id="settings-manage-profile"> 10 <dom-module id="settings-manage-profile">
(...skipping 26 matching lines...) Expand all
37 37
38 paper-button:hover { 38 paper-button:hover {
39 @apply(--shadow-elevation-2dp); 39 @apply(--shadow-elevation-2dp);
40 } 40 }
41 41
42 paper-button.iron-selected { 42 paper-button.iron-selected {
43 border: 1px solid var(--google-blue-500); 43 border: 1px solid var(--google-blue-500);
44 } 44 }
45 </style> 45 </style>
46 <div class="settings-box first"> 46 <div class="settings-box first">
47 <paper-input value="{{profileName}}" pattern=".*\S.*" auto-validate 47 <paper-input id="name" value="{{profileName}}" pattern=".*\S.*"
48 required on-change="onProfileNameChanged_"> 48 auto-validate required on-change="onProfileNameChanged_">
49 </paper-input> 49 </paper-input>
50 </div> 50 </div>
51 <div id="availableIcons"> 51 <div id="availableIcons">
52 <iron-selector id="selector" on-iron-activate="onIconActivate_" 52 <iron-selector id="selector" on-iron-activate="onIconActivate_"
53 selected="[[profileIconUrl]]" attr-for-selected="data-icon-url"> 53 selected="[[profileIconUrl]]" attr-for-selected="data-icon-url">
54 <template is="dom-repeat" items="[[availableIconUrls]]"> 54 <template is="dom-repeat" items="[[availableIconUrls]]">
55 <paper-button data-icon-url$="[[item]]"> 55 <paper-button data-icon-url$="[[item]]">
56 <img src="[[item]]"> 56 <img src="[[item]]">
57 </paper-button> 57 </paper-button>
58 </template> 58 </template>
59 </iron-selector> 59 </iron-selector>
60 </div> 60 </div>
61 </template> 61 </template>
62 <script src="manage_profile.js"></script> 62 <script src="manage_profile.js"></script>
63 </dom-module> 63 </dom-module>
OLDNEW
« no previous file with comments | « no previous file | chrome/test/data/webui/settings/cr_settings_browsertest.js » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698