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

Side by Side Diff: chrome/browser/resources/sync_internals/node_browser.html

Issue 8341081: Add icon-visibility attribute to cr.ui.Tree. (Closed) Base URL: svn://svn.chromium.org/chrome/trunk/src
Patch Set: Make default behaviour the same as before change. Created 9 years, 1 month 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 | Annotate | Revision Log
OLDNEW
1 <!-- TODO(akalin): Move to a three-pane view; node tree on the left 1 <!-- TODO(akalin): Move to a three-pane view; node tree on the left
2 (minus leaf nodes), tree contents list on the upper right, selected 2 (minus leaf nodes), tree contents list on the upper right, selected
3 item detail on the lower right. --> 3 item detail on the lower right. -->
4 4
5 <div id="sync-node-main"> 5 <div id="sync-node-main">
6 <!-- TODO(akalin): Figure out how to get this element to be as tall 6 <!-- TODO(akalin): Figure out how to get this element to be as tall
7 as its container (style.height=100% doesn't work). Also fix 7 as its container (style.height=100% doesn't work). Also fix
8 behavior when tree is too tall (currently it makes you scroll the 8 behavior when tree is too tall (currently it makes you scroll the
9 entire page). --> 9 entire page). -->
10 <div id="sync-node-tree-container"> 10 <div id="sync-node-tree-container">
11 <tree id="sync-node-tree"></tree> 11 <tree id="sync-node-tree" icon-visibility="parent"></tree>
12 </div> 12 </div>
13 <div id="sync-node-splitter"></div> 13 <div id="sync-node-splitter"></div>
14 <div id="sync-node-browser-container"> 14 <div id="sync-node-browser-container">
15 <table id="node-browser"> 15 <table id="node-browser">
16 <tr> 16 <tr>
17 <td>ID</td> 17 <td>ID</td>
18 <td jscontent="id"></td> 18 <td jscontent="id"></td>
19 </tr> 19 </tr>
20 <tr> 20 <tr>
21 <td>Modification Time</td> 21 <td>Modification Time</td>
(...skipping 33 matching lines...) Expand 10 before | Expand all | Expand 10 after
55 </tr> 55 </tr>
56 <tr> 56 <tr>
57 <td>Entry</td> 57 <td>Entry</td>
58 <td><pre jscontent="entry"></pre></td> 58 <td><pre jscontent="entry"></pre></td>
59 </tr> 59 </tr>
60 </table> 60 </table>
61 </div> 61 </div>
62 </div> 62 </div>
63 63
64 <script src="chrome://sync-internals/node_browser.js"></script> 64 <script src="chrome://sync-internals/node_browser.js"></script>
OLDNEW

Powered by Google App Engine
This is Rietveld 408576698