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

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

Issue 2698033002: PROTOTYPE: Generic custom CSS property parsing (Closed)
Patch Set: Rebase to ToT (native support is now in tip). 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 64 matching lines...) Expand 10 before | Expand all | Expand 10 after
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>
OLDNEW
« no previous file with comments | « chrome/browser/resources/vr_shell/vr_shell_ui.css ('k') | chrome/browser/resources/vr_shell/vr_shell_ui.js » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698