summaryrefslogtreecommitdiffstats
path: root/chrome/browser/resources/sync_internals/node_browser.html
blob: 47a56c7d952aa1548b435b7f0084ff7999103ec0 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
<!-- TODO(akalin): Move to a three-pane view; node tree on the left
(minus leaf nodes), tree contents list on the upper right, selected
item detail on the lower right. -->

<div id="sync-node-main">
  <!-- TODO(akalin): Figure out how to get this element to be as tall
       as its container (style.height=100% doesn't work).  Also fix
       behavior when tree is too tall (currently it makes you scroll the
       entire page). -->
  <div id="sync-node-tree-container">
    <tree id="sync-node-tree"></tree>
  </div>
  <div id="sync-node-splitter"></div>
  <div id="sync-node-browser-container">
    <table id="node-browser">
      <tr>
        <td>ID</td>
        <td jscontent="id"></td>
      </tr>
      <tr>
        <td>Modification Time</td>
        <td jscontent="modificationTime"></td>
      </tr>
      <tr>
        <td>Parent</td>
        <td jsContent="parentId"></td>
      </tr>
      <tr>
        <td>Is Folder</td>
        <td jscontent="isFolder"></td>
      </tr>
      <tr>
        <td>Title</td>
        <td jscontent="title"></td>
      </tr>
      <tr>
        <td>Type</td>
        <td jscontent="type"></td>
      </tr>
      <tr>
        <td>External ID</td>
        <td jscontent="externalId"></td>
      </tr>
      <tr>
        <td>Predecessor</td>
        <td jscontent="predecessorId"></td>
      </tr>
      <tr>
        <td>Successor</td>
        <td jscontent="successorId"></td>
      </tr>
      <tr>
        <td>First Child</td>
        <td jscontent="firstChildId"></td>
      </tr>
      <tr>
        <td>Entry</td>
        <td><pre jscontent="entry"></pre></td>
      </tr>
    </table>
  </div>
</div>

<script src="chrome://sync-internals/node_browser.js"></script>