Home | History | Annotate | Download | only in sync_internals
      1 <!DOCTYPE HTML>
      2 <html i18n-values="dir:textdirection;">
      3 <head>
      4 <!-- If you change the title, make sure you also update
      5 chrome/test/functional/special_tabs.py. -->
      6 <title>Sync Internals</title>
      7 <link rel="stylesheet" href="chrome://resources/css/tabs.css">
      8 <link rel="stylesheet" href="chrome://resources/css/tree.css">
      9 <link rel="stylesheet" href="sync_node_browser.css">
     10 
     11 <script src="chrome://resources/css/tree.css.js"></script>
     12 
     13 <script src="chrome://resources/js/cr.js"></script>
     14 <script src="chrome://resources/js/cr/event_target.js"></script>
     15 <script src="chrome://resources/js/cr/ui.js"></script>
     16 <script src="chrome://resources/js/cr/ui/focus_outline_manager.js"></script>
     17 <script src="chrome://resources/js/cr/ui/splitter.js"></script>
     18 <script src="chrome://resources/js/cr/ui/tabs.js"></script>
     19 <script src="chrome://resources/js/cr/ui/tree.js"></script>
     20 <script src="chrome_sync.js"></script>
     21 <script src="sync_log.js"></script>
     22 <script src="sync_node_browser.js"></script>
     23 </head>
     24 <body i18n-values=".style.fontFamily:fontfamily;.style.fontSize:fontsize">
     25 
     26 <style>
     27 #sync-page {
     28   /* TODO(akalin): Figure out a better way to make the tab box the
     29      same height no matter which tab is selected. */
     30   min-height: 650px;
     31 }
     32 </style>
     33 
     34 <tabbox id="sync-page">
     35   <tabs>
     36     <tab>About</tab>
     37     <tab>Data</tab>
     38     <tab>Notifications</tab>
     39     <tab>Events</tab>
     40     <tab>Sync Node Browser</tab>
     41   </tabs>
     42   <tabpanels>
     43     <tabpanel>
     44       <include src="about.html" />
     45     </tabpanel>
     46     <tabpanel>
     47       <include src="data.html" />
     48     </tabpanel>
     49     <tabpanel>
     50       <include src="notifications.html" />
     51     </tabpanel>
     52     <tabpanel>
     53       <include src="events.html" />
     54     </tabpanel>
     55     <tabpanel>
     56       <include src="sync_node_browser.html" />
     57     </tabpanel>
     58   </tabpanels>
     59 </tabbox>
     60 
     61 <script>
     62 cr.ui.decorate('tabbox', cr.ui.TabBox);
     63 </script>
     64 
     65 </body>
     66 </html>
     67