| 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 <head> | 3 <head> |
| 4 <meta charset="utf-8"> | 4 <meta charset="utf-8"> |
| 5 <title id="device-log-title" i18n-content="titleText"></title> | 5 <title id="device-log-title" i18n-content="titleText"></title> |
| 6 <link rel="stylesheet" href="chrome://device-log/device_log_ui.css"> | 6 <link rel="stylesheet" href="chrome://device-log/device_log_ui.css"> |
| 7 <script src="chrome://resources/js/load_time_data.js"></script> | 7 <script src="chrome://resources/js/load_time_data.js"></script> |
| 8 <script src="chrome://resources/js/util.js"></script> | 8 <script src="chrome://resources/js/util.js"></script> |
| 9 <script src="chrome://device-log/strings.js"></script> | 9 <script src="chrome://device-log/strings.js"></script> |
| 10 <script src="chrome://device-log/device_log_ui.js"></script> | 10 <script src="chrome://device-log/device_log_ui.js"></script> |
| (...skipping 28 matching lines...) Expand all Loading... |
| 39 </label> | 39 </label> |
| 40 <label> | 40 <label> |
| 41 <input id="log-type-network" type="checkbox"> | 41 <input id="log-type-network" type="checkbox"> |
| 42 <span i18n-content="logTypeNetworkText"></span> | 42 <span i18n-content="logTypeNetworkText"></span> |
| 43 </label> | 43 </label> |
| 44 <label> | 44 <label> |
| 45 <input id="log-type-power" type="checkbox"> | 45 <input id="log-type-power" type="checkbox"> |
| 46 <span i18n-content="logTypePowerText"></span> | 46 <span i18n-content="logTypePowerText"></span> |
| 47 </label> | 47 </label> |
| 48 <label> | 48 <label> |
| 49 <input id="log-type-bluetooth" type="checkbox"> |
| 50 <span i18n-content="logTypeBluetoothText"></span> |
| 51 </label> |
| 52 <label> |
| 49 <input id="log-type-usb" type="checkbox"> | 53 <input id="log-type-usb" type="checkbox"> |
| 50 <span i18n-content="logTypeUsbText"></span> | 54 <span i18n-content="logTypeUsbText"></span> |
| 51 </label> | 55 </label> |
| 52 <label> | 56 <label> |
| 53 <input id="log-type-hid" type="checkbox"> | 57 <input id="log-type-hid" type="checkbox"> |
| 54 <span i18n-content="logTypeHidText"></span> | 58 <span i18n-content="logTypeHidText"></span> |
| 55 </label> | 59 </label> |
| 56 <label> | 60 <label> |
| 57 <input id="log-fileinfo" type="checkbox"> | 61 <input id="log-fileinfo" type="checkbox"> |
| 58 <span i18n-content="logLevelFileinfoText"></span> | 62 <span i18n-content="logLevelFileinfoText"></span> |
| 59 </label> | 63 </label> |
| 60 <label> | 64 <label> |
| 61 <input id="log-timedetail" type="checkbox"> | 65 <input id="log-timedetail" type="checkbox"> |
| 62 <span i18n-content="logLevelTimeDetailText"></span> | 66 <span i18n-content="logLevelTimeDetailText"></span> |
| 63 </label> | 67 </label> |
| 64 </div> | 68 </div> |
| 65 <div id="log-container"></div> | 69 <div id="log-container"></div> |
| 66 <script src="chrome://resources/js/i18n_template.js"></script> | 70 <script src="chrome://resources/js/i18n_template.js"></script> |
| 67 </body> | 71 </body> |
| 68 </html> | 72 </html> |
| OLD | NEW |