| OLD | NEW |
| 1 <!doctype html> | 1 <!doctype html> |
| 2 <html i18n-values="dir:textdirection;lang:language"> | 2 <html i18n-values="dir:textdirection;lang:language"> |
| 3 | 3 |
| 4 <head> | 4 <head> |
| 5 <meta charset="utf-8"> | 5 <meta charset="utf-8"> |
| 6 <title id="network" i18n-content="titleText"></title> | 6 <title id="network" i18n-content="titleText"></title> |
| 7 <link rel="stylesheet" href="chrome://resources/css/text_defaults.css"> | 7 <link rel="stylesheet" href="chrome://resources/css/text_defaults.css"> |
| 8 <link rel="stylesheet" href="chrome://network/network_ui.css"> | 8 <link rel="stylesheet" href="chrome://network/network_ui.css"> |
| 9 <link rel="import" href="chrome://resources/cr_elements/network/cr_network_ico
n.html"> | 9 <link rel="import" href="chrome://resources/cr_elements/network/cr_network_ico
n.html"> |
| 10 <link rel="import" href="chrome://resources/cr_elements/network/cr_network_sel
ect.html"> | 10 <link rel="import" href="chrome://resources/cr_elements/network/cr_network_sel
ect.html"> |
| (...skipping 14 matching lines...) Expand all Loading... |
| 25 <span i18n-content="clickToExpandText"></span> | 25 <span i18n-content="clickToExpandText"></span> |
| 26 <span i18n-content="propertyFormatText"></span> | 26 <span i18n-content="propertyFormatText"></span> |
| 27 <select id="get-property-format"> | 27 <select id="get-property-format"> |
| 28 <option value="normal" i18n-content="normalFormatOption"></option> | 28 <option value="normal" i18n-content="normalFormatOption"></option> |
| 29 <option value="managed" i18n-content="managedFormatOption"></option> | 29 <option value="managed" i18n-content="managedFormatOption"></option> |
| 30 <option value="state" i18n-content="stateFormatOption"></option> | 30 <option value="state" i18n-content="stateFormatOption"></option> |
| 31 <option value="shill" i18n-content="shillFormatOption"></option> | 31 <option value="shill" i18n-content="shillFormatOption"></option> |
| 32 </select> | 32 </select> |
| 33 </div> | 33 </div> |
| 34 | 34 |
| 35 <cr-network-select expandable show-active max-height="100"> | 35 <cr-network-select expandable show-active show-buttons max-height="100" |
| 36 handle-network-item-selected> |
| 36 </cr-network-select> | 37 </cr-network-select> |
| 37 | 38 |
| 38 <div> | 39 <div> |
| 39 <paper-button raised class="colored" id="refresh" | 40 <paper-button raised class="colored" id="refresh" |
| 40 i18n-content="networkRefreshText"> | 41 i18n-content="networkRefreshText"> |
| 41 </paper-button> | 42 </paper-button> |
| 42 </div> | 43 </div> |
| 43 </div> | 44 </div> |
| 44 | 45 |
| 45 <h3 i18n-content="visibleNetworksLabel"></h3> | 46 <h3 i18n-content="visibleNetworksLabel"></h3> |
| (...skipping 28 matching lines...) Expand all Loading... |
| 74 <td>Type</td> | 75 <td>Type</td> |
| 75 <td>Profile</td> | 76 <td>Profile</td> |
| 76 <td>Visible</td> | 77 <td>Visible</td> |
| 77 <td>ONC Source</td> | 78 <td>ONC Source</td> |
| 78 </tr> | 79 </tr> |
| 79 </table> | 80 </table> |
| 80 | 81 |
| 81 <script src="chrome://resources/js/i18n_template.js"></script> | 82 <script src="chrome://resources/js/i18n_template.js"></script> |
| 82 </body> | 83 </body> |
| 83 </html> | 84 </html> |
| OLD | NEW |