| OLD | NEW |
| 1 <!doctype html> | 1 <!doctype html> |
| 2 <!-- | 2 <!-- |
| 3 Copyright (c) 2011 The Chromium Authors. All rights reserved. | 3 Copyright (c) 2011 The Chromium Authors. All rights reserved. |
| 4 Use of this source code is governed by a BSD-style license that can be | 4 Use of this source code is governed by a BSD-style license that can be |
| 5 found in the LICENSE file. | 5 found in the LICENSE file. |
| 6 --> | 6 --> |
| 7 | 7 |
| 8 <html> | 8 <html> |
| 9 <head> | 9 <head> |
| 10 <meta charset="utf-8" /> | 10 <meta charset="utf-8" /> |
| (...skipping 48 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 59 </div> | 59 </div> |
| 60 | 60 |
| 61 <div id="session-toolbar" | 61 <div id="session-toolbar" |
| 62 data-ui-mode="in-session" | 62 data-ui-mode="in-session" |
| 63 class="toolbar-container" | 63 class="toolbar-container" |
| 64 hidden> | 64 hidden> |
| 65 <div class="toolbar-border"> | 65 <div class="toolbar-border"> |
| 66 <span id="session-status-message" i18n-content="LABEL_CONNECTED"></span> | 66 <span id="session-status-message" i18n-content="LABEL_CONNECTED"></span> |
| 67 <strong id="connected-to"></strong> | 67 <strong id="connected-to"></strong> |
| 68 <button type="button" onclick="remoting.disconnect();" | 68 <button type="button" onclick="remoting.disconnect();" |
| 69 i18n-content="DISCONNECT_BUTTON"></button> | 69 i18n-content="DISCONNECT_MYSELF_BUTTON"></button> |
| 70 <span class="end-align"> | 70 <span class="end-align"> |
| 71 <button id="toggle-scaling" | 71 <button id="toggle-scaling" |
| 72 onClick="remoting.toggleScaleToFit(this);"> | 72 onClick="remoting.toggleScaleToFit(this);"> |
| 73 <img src="scale-to-fit.png"> | 73 <img src="scale-to-fit.png"> |
| 74 </button> | 74 </button> |
| 75 </span> | 75 </span> |
| 76 </div> | 76 </div> |
| 77 <div class="toolbar-stub"> | 77 <div class="toolbar-stub"> |
| 78 <div class="arrow-down"></div> | 78 <div class="arrow-down"></div> |
| 79 </div> | 79 </div> |
| (...skipping 173 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 253 | 253 |
| 254 <section id="debug-log" dir="ltr" hidden> | 254 <section id="debug-log" dir="ltr" hidden> |
| 255 <div id="statistics"> | 255 <div id="statistics"> |
| 256 </div> | 256 </div> |
| 257 <div id="debug-messages"> | 257 <div id="debug-messages"> |
| 258 </div> | 258 </div> |
| 259 </section> <!-- debug-log --> | 259 </section> <!-- debug-log --> |
| 260 | 260 |
| 261 </body> | 261 </body> |
| 262 </html> | 262 </html> |
| OLD | NEW |