Chromium Code Reviews
chromiumcodereview-hr@appspot.gserviceaccount.com (chromiumcodereview-hr) | Please choose your nickname with Settings | Help | Chromium Project | Gerrit Changes | Sign out
(275)

Side by Side Diff: chrome/browser/resources/vr_shell/vr_shell_ui.html

Issue 2740013003: Exiting menu mode when content preview is clicked (Closed)
Patch Set: removing console.log Created 3 years, 9 months ago
Use n/p to move between diff chunks; N/P to move between comments. Draft comments are only viewable by you.
Jump to:
View unified diff | Download patch
OLDNEW
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 55 matching lines...) Expand 10 before | Expand all | Expand 10 after
66 <div id="back-button-caption" class="button-caption ui-element"> 66 <div id="back-button-caption" class="button-caption ui-element">
67 $i18n{back} 67 $i18n{back}
68 </div> 68 </div>
69 <div id="reload-button-caption" class="button-caption ui-element"> 69 <div id="reload-button-caption" class="button-caption ui-element">
70 $i18n{reload} 70 $i18n{reload}
71 </div> 71 </div>
72 <div id="forward-button-caption" class="button-caption ui-element"> 72 <div id="forward-button-caption" class="button-caption ui-element">
73 $i18n{forward} 73 $i18n{forward}
74 </div> 74 </div>
75 <div id="reload-ui-button" class="ui-element">Reload UI</div> 75 <div id="reload-ui-button" class="ui-element">Reload UI</div>
76 <div id="content-interceptor" class="ui-element"></div>
76 <div id="tab-template" class="tab"></div> 77 <div id="tab-template" class="tab"></div>
77 <!--The tab container element behaves like a scroll view (in conjunction 78 <!--The tab container element behaves like a scroll view (in conjunction
78 with the clip view). --> 79 with the clip view). -->
79 <div id="tab-container" class="ui-element"> 80 <div id="tab-container" class="ui-element">
80 <!--The tab clip element's width will be programmatically set to the total 81 <!--The tab clip element's width will be programmatically set to the total
81 width of all it's children (the tabs). By doing so, the tabs can be 82 width of all it's children (the tabs). By doing so, the tabs can be
82 scrolled horizontally in the tab container element.--> 83 scrolled horizontally in the tab container element.-->
83 <div id="tab-clip"> 84 <div id="tab-clip">
84 </div> 85 </div>
85 </div> 86 </div>
(...skipping 14 matching lines...) Expand all
100 </div> 101 </div>
101 </div> 102 </div>
102 </body> 103 </body>
103 104
104 <!-- Run script after creating body, to let it add its own elements. --> 105 <!-- Run script after creating body, to let it add its own elements. -->
105 <script src="vr_shell_ui_api.js"></script> 106 <script src="vr_shell_ui_api.js"></script>
106 <script src="vr_shell_ui_scene.js"></script> 107 <script src="vr_shell_ui_scene.js"></script>
107 <script src="vr_shell_ui.js"></script> 108 <script src="vr_shell_ui.js"></script>
108 <script src="vk.js"></script> 109 <script src="vk.js"></script>
109 </html> 110 </html>
OLDNEW

Powered by Google App Engine
This is Rietveld 408576698