| OLD | NEW |
| 1 <!doctype html> | 1 <!doctype html> |
| 2 <html> | 2 <html> |
| 3 <!-- | 3 <!-- |
| 4 Copyright (c) 2012 The Chromium Authors. All rights reserved. | 4 Copyright (c) 2012 The Chromium Authors. All rights reserved. |
| 5 Use of this source code is governed by a BSD-style license that can be | 5 Use of this source code is governed by a BSD-style license that can be |
| 6 found in the LICENSE file. | 6 found in the LICENSE file. |
| 7 --> | 7 --> |
| 8 <head> | 8 <head> |
| 9 <meta charset="utf-8"> | 9 <meta charset="utf-8"> |
| 10 <title>Inspect with Chrome Developer Tools</title> | 10 <title>Inspect with Chrome Developer Tools</title> |
| (...skipping 24 matching lines...) Expand all Loading... |
| 35 Port forwarding...</button> | 35 Port forwarding...</button> |
| 36 </div> | 36 </div> |
| 37 <div class="settings-bar"> | 37 <div class="settings-bar"> |
| 38 <label title="Enable Remote Debugging over network."> | 38 <label title="Enable Remote Debugging over network."> |
| 39 <input id="discover-tcp-devices-enable" type="checkbox" disabled> | 39 <input id="discover-tcp-devices-enable" type="checkbox" disabled> |
| 40 Discover network targets | 40 Discover network targets |
| 41 </label> | 41 </label> |
| 42 <button id="tcp-discovery-config-open"> | 42 <button id="tcp-discovery-config-open"> |
| 43 Configure...</button> | 43 Configure...</button> |
| 44 </div> | 44 </div> |
| 45 <div id="node-frontend" class="action node-frontend-action"> |
| 46 Open dedicated DevTools for Node |
| 47 </div> |
| 45 </div> | 48 </div> |
| 46 <div id="devices-help" hidden="true">No devices detected. Please read the | 49 <div id="devices-help" hidden="true">No devices detected. Please read the |
| 47 <a href="https://developers.google.com/chrome-developer-tools/docs/remot
e-debugging"> | 50 <a href="https://developers.google.com/chrome-developer-tools/docs/remot
e-debugging"> |
| 48 remote debugging documentation</a> to verify your device is enabled for | 51 remote debugging documentation</a> to verify your device is enabled for |
| 49 USB debugging. | 52 USB debugging. |
| 50 </div> | 53 </div> |
| 51 <div id="devices-incognito" hidden="true"> | 54 <div id="devices-incognito" hidden="true"> |
| 52 Remote debugging is not available in Incognito mode. | 55 Remote debugging is not available in Incognito mode. |
| 53 </div> | 56 </div> |
| 54 <div id="devices-list"></div> | 57 <div id="devices-list"></div> |
| (...skipping 41 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 96 </div> | 99 </div> |
| 97 <div class="config-buttons"> | 100 <div class="config-buttons"> |
| 98 <label class="port-forwarding"> | 101 <label class="port-forwarding"> |
| 99 <input id="port-forwarding-enable" type="checkbox" disabled>Enable port fo
rwarding | 102 <input id="port-forwarding-enable" type="checkbox" disabled>Enable port fo
rwarding |
| 100 </label> | 103 </label> |
| 101 <button id="button-done">Done</button> | 104 <button id="button-done">Done</button> |
| 102 </div> | 105 </div> |
| 103 </dialog> | 106 </dialog> |
| 104 </body> | 107 </body> |
| 105 </html> | 108 </html> |
| OLD | NEW |