| 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"> |
| (...skipping 64 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 75 <div id="tab-template" class="tab"></div> | 75 <div id="tab-template" class="tab"></div> |
| 76 <!--The tab container element behaves like a scroll view (in conjunction | 76 <!--The tab container element behaves like a scroll view (in conjunction |
| 77 with the clip view). --> | 77 with the clip view). --> |
| 78 <div id="tab-container" class="ui-element"> | 78 <div id="tab-container" class="ui-element"> |
| 79 <!--The tab clip element's width will be programmatically set to the total | 79 <!--The tab clip element's width will be programmatically set to the total |
| 80 width of all it's children (the tabs). By doing so, the tabs can be | 80 width of all it's children (the tabs). By doing so, the tabs can be |
| 81 scrolled horizontally in the tab container element.--> | 81 scrolled horizontally in the tab container element.--> |
| 82 <div id="tab-clip"> | 82 <div id="tab-clip"> |
| 83 </div> | 83 </div> |
| 84 </div> | 84 </div> |
| 85 <div id="content-quad-element"></div> |
| 85 </div> | 86 </div> |
| 86 </body> | 87 </body> |
| 87 | 88 |
| 88 <!-- Run script after creating body, to let it add its own elements. --> | 89 <!-- Run script after creating body, to let it add its own elements. --> |
| 89 <script src="vr_shell_ui_api.js"></script> | 90 <script src="vr_shell_ui_api.js"></script> |
| 90 <script src="vr_shell_ui_scene.js"></script> | 91 <script src="vr_shell_ui_scene.js"></script> |
| 91 <script src="vr_shell_ui.js"></script> | 92 <script src="vr_shell_ui.js"></script> |
| 92 </html> | 93 </html> |
| OLD | NEW |