<!DOCTYPE HTML>
<html i18n-values="dir:textdirection;">
<head>
<!-- If you change the title, make sure you also update
chrome/test/functional/special_tabs.py. -->
<title>Sync Internals</title>
<link rel="stylesheet" href="chrome://resources/css/tabs.css">
<link rel="stylesheet" href="chrome://resources/css/tree.css">
<link rel="stylesheet" href="sync_node_browser.css">
<script src="chrome://resources/css/tree.css.js"></script>
<script src="chrome://resources/js/cr.js"></script>
<script src="chrome://resources/js/cr/event_target.js"></script>
<script src="chrome://resources/js/cr/ui.js"></script>
<script src="chrome://resources/js/cr/ui/focus_outline_manager.js"></script>
<script src="chrome://resources/js/cr/ui/splitter.js"></script>
<script src="chrome://resources/js/cr/ui/tabs.js"></script>
<script src="chrome://resources/js/cr/ui/tree.js"></script>
<script src="chrome_sync.js"></script>
<script src="sync_log.js"></script>
<script src="sync_node_browser.js"></script>
</head>
<body i18n-values=".style.fontFamily:fontfamily;.style.fontSize:fontsize">
<style>
#sync-page {
/* TODO(akalin): Figure out a better way to make the tab box the
same height no matter which tab is selected. */
min-height: 650px;
}
</style>
<tabbox id="sync-page">
<tabs>
<tab>About</tab>
<tab>Data</tab>
<tab>Notifications</tab>
<tab>Events</tab>
<tab>Sync Node Browser</tab>
</tabs>
<tabpanels>
<tabpanel>
<include src="about.html" />
</tabpanel>
<tabpanel>
<include src="data.html" />
</tabpanel>
<tabpanel>
<include src="notifications.html" />
</tabpanel>
<tabpanel>
<include src="events.html" />
</tabpanel>
<tabpanel>
<include src="sync_node_browser.html" />
</tabpanel>
</tabpanels>
</tabbox>
<script>
cr.ui.decorate('tabbox', cr.ui.TabBox);
</script>
</body>
</html>