Chromium Code Reviews| OLD | NEW |
|---|---|
| 1 <!-- Copyright 2016 The Chromium Authors. All rights reserved. | |
| 2 Use of this source code is governed by a BSD-style license that can be | |
| 3 found in the LICENSE file. --> | |
| 4 | |
| 5 <link rel="import" href="chrome://resources/polymer/v1_0/iron-flex-layout/classe s/iron-flex-layout.html"> | |
| 6 <link rel="import" href="chrome://resources/polymer/v1_0/neon-animation/animatio ns/slide-from-left-animation.html"> | |
| 7 <link rel="import" href="chrome://resources/polymer/v1_0/neon-animation/animatio ns/slide-from-right-animation.html"> | |
| 8 <link rel="import" href="chrome://resources/polymer/v1_0/neon-animation/animatio ns/slide-left-animation.html"> | |
| 9 <link rel="import" href="chrome://resources/polymer/v1_0/neon-animation/animatio ns/slide-right-animation.html"> | |
| 10 <link rel="import" href="chrome://resources/polymer/v1_0/neon-animation/neon-ani matable.html"> | |
| 11 <link rel="import" href="chrome://resources/polymer/v1_0/neon-animation/neon-ani mated-pages.html"> | |
| 12 <link rel="import" href="chrome://resources/polymer/v1_0/paper-dialog/paper-dial og.html"> | |
| 13 | |
|
dzhioev_at_google
2016/05/25 01:01:32
Please move these imports to the HTML file with 'o
Alexander Alekseev
2016/05/25 23:47:29
Done.
| |
| 1 <div class="step hidden animated" id="connect" role="group" hidden> | 14 <div class="step hidden animated" id="connect" role="group" hidden> |
| 2 <div class="step-contents"> | 15 <div id="oobe-poly-connect"> |
| 3 <div id="welcome-message" i18n-content="networkScreenGreeting"> | 16 <div class="step-contents"> |
| 17 <oobe-welcome-md id="oobe-welcome-md" class="fit"></oobe-welcome-md> | |
| 4 </div> | 18 </div> |
| 5 <div class="control-with-label"> | 19 </div> |
| 6 <label for="language-select" i18n-content="selectLanguage" | 20 <div id="oobe-connect"> |
| 7 class="label"></label> | 21 <div class="step-contents"> |
| 8 <div class="menu-area"> | 22 <div id="welcome-message" i18n-content="networkScreenGreeting"> |
| 9 <select id="language-select" class="menu-control"></select> | 23 </div> |
| 24 <div class="control-with-label"> | |
| 25 <label for="language-select" i18n-content="selectLanguage" | |
| 26 class="label"></label> | |
| 27 <div class="menu-area"> | |
| 28 <select id="language-select" class="menu-control"></select> | |
| 29 </div> | |
| 30 </div> | |
| 31 <div class="control-with-label"> | |
| 32 <label for="keyboard-select" i18n-content="selectKeyboard" | |
| 33 class="label"></label> | |
| 34 <div class="menu-area"> | |
| 35 <select id="keyboard-select" class="menu-control"></select> | |
| 36 </div> | |
| 37 </div> | |
| 38 <div class="control-with-label" id="network-timezone-setting"> | |
| 39 <label for="timezone-select" i18n-content="selectTimezone" | |
| 40 class="label"></label> | |
| 41 <div class="menu-area"> | |
| 42 <select id="timezone-select" class="menu-control"></select> | |
| 43 </div> | |
| 44 </div> | |
| 45 <div class="control-with-label"> | |
| 46 <label for="networks-list-dropdown" i18n-content="selectNetwork" | |
| 47 class="label"></label> | |
| 48 <div class="menu-area"> | |
| 49 <div id="networks-list" class="menu-control"></div> | |
| 50 </div> | |
| 10 </div> | 51 </div> |
| 11 </div> | 52 </div> |
| 12 <div class="control-with-label"> | 53 <div id="connect-controls" class="step-controls"></div> |
| 13 <label for="keyboard-select" i18n-content="selectKeyboard" | 54 <div id="connect-extra-controls" class="step-extra-controls"> |
| 14 class="label"></label> | 55 <div id="connect-accessibility"> |
| 15 <div class="menu-area"> | 56 <a id="connect-accessibility-link" href="#" role="button" |
| 16 <select id="keyboard-select" class="menu-control"></select> | 57 i18n-content="accessibilityLink"></a> |
| 17 </div> | 58 </div> |
| 18 </div> | 59 <div class="connect-debugging-specific"> |
| 19 <div class="control-with-label" id="network-timezone-setting"> | 60 <a id="connect-debugging-features-link" href="#" role="button" |
| 20 <label for="timezone-select" i18n-content="selectTimezone" | 61 i18n-content="debuggingFeaturesLink"></a> |
| 21 class="label"></label> | |
| 22 <div class="menu-area"> | |
| 23 <select id="timezone-select" class="menu-control"></select> | |
| 24 </div> | |
| 25 </div> | |
| 26 <div class="control-with-label"> | |
| 27 <label for="networks-list-dropdown" i18n-content="selectNetwork" | |
| 28 class="label"></label> | |
| 29 <div class="menu-area"> | |
| 30 <div id="networks-list" class="menu-control"></div> | |
| 31 </div> | 62 </div> |
| 32 </div> | 63 </div> |
| 33 </div> | 64 </div> |
| 34 <div id="connect-controls" class="step-controls"></div> | |
| 35 <div id="connect-extra-controls" class="step-extra-controls"> | |
| 36 <div id="connect-accessibility"> | |
| 37 <a id="connect-accessibility-link" href="#" role="button" | |
| 38 i18n-content="accessibilityLink"></a> | |
| 39 </div> | |
| 40 <div class="connect-debugging-specific"> | |
| 41 <a id="connect-debugging-features-link" href="#" role="button" | |
| 42 i18n-content="debuggingFeaturesLink"></a> | |
| 43 </div> | |
| 44 </div> | |
| 45 </div> | 65 </div> |
| OLD | NEW |