| 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 45 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 56 <div id="session-toolbar" | 56 <div id="session-toolbar" |
| 57 data-ui-mode="in-session" | 57 data-ui-mode="in-session" |
| 58 class="toolbar-container" | 58 class="toolbar-container" |
| 59 hidden> | 59 hidden> |
| 60 <div class="toolbar-border"> | 60 <div class="toolbar-border"> |
| 61 <span id="session-status-message" i18n-content="LABEL_CONNECTED"></span> | 61 <span id="session-status-message" i18n-content="LABEL_CONNECTED"></span> |
| 62 <strong id="connected-to"></strong> | 62 <strong id="connected-to"></strong> |
| 63 <button type="button" onclick="remoting.disconnect();" | 63 <button type="button" onclick="remoting.disconnect();" |
| 64 i18n-content="DISCONNECT_BUTTON"></button> | 64 i18n-content="DISCONNECT_BUTTON"></button> |
| 65 <span class="end-align"> | 65 <span class="end-align"> |
| 66 <button type="button" onclick="remoting.toggleScaleToFit();" | 66 <button id="toggle-scaling" |
| 67 i18n-content="SCALE_BUTTON"></button> | 67 onClick="remoting.toggleScaleToFit(this);"> |
| 68 <img src="scale-to-fit.png"> |
| 69 </button> |
| 68 </span> | 70 </span> |
| 69 </div> | 71 </div> |
| 70 <div class="toolbar-stub"> | 72 <div class="toolbar-stub"> |
| 71 <img src="toolbar-stub.png"> | 73 <img src="toolbar-stub.png"> |
| 72 </div> | 74 </div> |
| 73 </div> <!-- session-toolbar --> | 75 </div> <!-- session-toolbar --> |
| 74 | 76 |
| 75 <div id="main" data-ui-mode="auth host client" hidden> | 77 <div id="main" data-ui-mode="auth host client" hidden> |
| 76 | 78 |
| 77 <header class="choice-header"> | 79 <header class="choice-header"> |
| (...skipping 156 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 234 | 236 |
| 235 <section id="debug-log" dir="ltr" hidden> | 237 <section id="debug-log" dir="ltr" hidden> |
| 236 <div id="statistics"> | 238 <div id="statistics"> |
| 237 </div> | 239 </div> |
| 238 <div id="debug-messages"> | 240 <div id="debug-messages"> |
| 239 </div> | 241 </div> |
| 240 </section> <!-- debug-log --> | 242 </section> <!-- debug-log --> |
| 241 | 243 |
| 242 </body> | 244 </body> |
| 243 </html> | 245 </html> |
| OLD | NEW |