| OLD | NEW |
| 1 <!-- | 1 <!-- |
| 2 Copyright 2016 The Chromium Authors. All rights reserved. | 2 Copyright 2016 The Chromium Authors. All rights reserved. |
| 3 Use of this source code is governed by a BSD-style license that can be | 3 Use of this source code is governed by a BSD-style license that can be |
| 4 found in the LICENSE file. | 4 found in the LICENSE file. |
| 5 --> | 5 --> |
| 6 <!DOCTYPE html> | 6 <!DOCTYPE html> |
| 7 <html> | 7 <html> |
| 8 <head> | 8 <head> |
| 9 <meta charset="utf-8"> | 9 <meta charset="utf-8"> |
| 10 <if expr="is_android or is_ios"> | 10 <if expr="is_android or is_ios"> |
| 11 <meta name="viewport" content="width=device-width, initial-scale=1.0, | 11 <meta name="viewport" content="width=device-width, initial-scale=1.0, |
| 12 maximum-scale=1.0, user-scalable=no"> | 12 maximum-scale=1.0, user-scalable=no"> |
| 13 <meta http-equiv="cache-control" content="no-cache"> | 13 <meta http-equiv="cache-control" content="no-cache"> |
| 14 <meta http-equiv="pragma" content="no-cache"> | 14 <meta http-equiv="pragma" content="no-cache"> |
| 15 </if> | 15 </if> |
| 16 <title>Vr Shell UIs</title> | 16 <title>Vr Shell UIs</title> |
| 17 <link rel="stylesheet" href="vr_shell_ui.css"> | 17 <link rel="stylesheet" href="vr_shell_ui.css"> |
| 18 <link rel="stylesheet" href="chrome://resources/css/text_defaults_md.css"> | 18 <link rel="stylesheet" href="chrome://resources/css/text_defaults_md.css"> |
| 19 </head> | 19 </head> |
| 20 <body> | 20 <body> |
| 21 <div id="webvr-not-secure-permanent" class="webvr-message-box"> | 21 <div id="ui"> |
| 22 <div class="webvr-box"> | 22 <div id="webvr-not-secure-permanent" class="webvr-message-box"> |
| 23 <img class="webvr-not-secure-icon" width="36" height="36" | 23 <div class="webvr-box"> |
| 24 <img class="webvr-not-secure-icon" width="36" height="36" |
| 25 src="../../../../ui/webui/resources/images/i_circle.svg"> |
| 26 <div class="webvr-string">$i18n{insecureWebVrContentPermanent}</div> |
| 27 </div> |
| 28 </div> |
| 29 <div id="webvr-not-secure-transient" class="webvr-message-box"> |
| 30 <div> |
| 31 <div>$i18n{insecureWebVrContentTransient}</div> |
| 32 </div> |
| 33 </div> |
| 34 |
| 35 <div id="omni"> |
| 36 <img id="connection-security" |
| 24 src="../../../../ui/webui/resources/images/i_circle.svg"> | 37 src="../../../../ui/webui/resources/images/i_circle.svg"> |
| 25 <div class="webvr-string">$i18n{insecureWebVrContentPermanent}</div> | 38 <div id="url"> |
| 39 <span id="domain"></span><span id="path"></span> |
| 40 </div> |
| 26 </div> | 41 </div> |
| 42 |
| 43 <div class="round-button" id="back"> |
| 44 <div class="button"></div> |
| 45 <div class="caption">$i18n{back}</div> |
| 46 </div> |
| 47 <div class="round-button" id="reload"> |
| 48 <div class="button"></div> |
| 49 <div class="caption">$i18n{reload}</div> |
| 50 </div> |
| 51 <div class="round-button" id="forward"> |
| 52 <div class="button"></div> |
| 53 <div class="caption">$i18n{forward}</div> |
| 54 </div> |
| 55 <div id="reload-ui-button">Reload UI</div> |
| 27 </div> | 56 </div> |
| 28 <div id="webvr-not-secure-transient" class="webvr-message-box"> | |
| 29 <div> | |
| 30 <div>$i18n{insecureWebVrContentTransient}</div> | |
| 31 </div> | |
| 32 </div> | |
| 33 <div class="round-button" id="back"> | |
| 34 <div class="button"></div> | |
| 35 <div class="caption">$i18n{back}</div> | |
| 36 </div> | |
| 37 <div class="round-button" id="reload"> | |
| 38 <div class="button"></div> | |
| 39 <div class="caption">$i18n{reload}</div> | |
| 40 </div> | |
| 41 <div class="round-button" id="forward"> | |
| 42 <div class="button"></div> | |
| 43 <div class="caption">$i18n{forward}</div> | |
| 44 </div> | |
| 45 <div id="reload-ui-button">Reload UI</div> | |
| 46 </body> | 57 </body> |
| 47 | 58 |
| 48 <!-- Run script after creating body, to let it add its own elements. --> | 59 <!-- Run script after creating body, to let it add its own elements. --> |
| 49 <script src="vr_shell_ui_api.js"></script> | 60 <script src="vr_shell_ui_api.js"></script> |
| 50 <script src="vr_shell_ui_scene.js"></script> | 61 <script src="vr_shell_ui_scene.js"></script> |
| 51 <script src="vr_shell_ui.js"></script> | 62 <script src="vr_shell_ui.js"></script> |
| 52 </html> | 63 </html> |
| OLD | NEW |