| OLD | NEW |
| (Empty) |
| 1 <!doctype html> | |
| 2 <html i18n-values="dir:textdirection;lang:language"> | |
| 3 <head> | |
| 4 <!-- If you change the title, make sure you also update | |
| 5 chrome/test/functional/special_tabs.py. --> | |
| 6 <meta charset="utf-8"> | |
| 7 <title>Sync Internals</title> | |
| 8 <link rel="stylesheet" href="chrome://resources/css/text_defaults.css"> | |
| 9 <link rel="stylesheet" href="chrome://resources/css/list.css"> | |
| 10 <link rel="stylesheet" href="chrome://resources/css/tabs.css"> | |
| 11 <link rel="stylesheet" href="chrome://resources/css/tree.css"> | |
| 12 <link rel="stylesheet" href="about.css"> | |
| 13 <link rel="stylesheet" href="events.css"> | |
| 14 <link rel="stylesheet" href="types.css"> | |
| 15 <link rel="stylesheet" href="sync_search.css"> | |
| 16 <link rel="stylesheet" href="sync_node_browser.css"> | |
| 17 | |
| 18 <script src="chrome://resources/js/event_tracker.js"></script> | |
| 19 <script src="chrome://resources/js/cr.js"></script> | |
| 20 <script src="chrome://resources/js/cr/event_target.js"></script> | |
| 21 <script src="chrome://resources/js/cr/ui/touch_handler.js"></script> | |
| 22 <script src="chrome://resources/js/cr/ui.js"></script> | |
| 23 <script src="chrome://resources/js/cr/ui/focus_outline_manager.js"></script> | |
| 24 <script src="chrome://resources/js/cr/ui/splitter.js"></script> | |
| 25 <script src="chrome://resources/js/load_time_data.js"></script> | |
| 26 | |
| 27 <!-- List stuff. --> | |
| 28 <script src="chrome://resources/js/cr/ui/array_data_model.js"></script> | |
| 29 <script src="chrome://resources/js/cr/ui/list_item.js"></script> | |
| 30 <script src="chrome://resources/js/cr/ui/list_selection_controller.js"></script> | |
| 31 <script src="chrome://resources/js/cr/ui/list_selection_model.js"></script> | |
| 32 <script src="chrome://resources/js/cr/ui/list.js"></script> | |
| 33 <script src="chrome://resources/js/cr/ui/tabs.js"></script> | |
| 34 <script src="chrome://resources/js/cr/ui/tree.js"></script> | |
| 35 <script src="chrome://resources/js/util.js"></script> | |
| 36 <script src="chrome://sync-internals/chrome_sync.js"></script> | |
| 37 <script src="chrome://sync-internals/about.js"></script> | |
| 38 <script src="chrome://sync-internals/events.js"></script> | |
| 39 <script src="chrome://sync-internals/types.js"></script> | |
| 40 <script src="chrome://sync-internals/sync_log.js"></script> | |
| 41 <script src="chrome://sync-internals/sync_node_browser.js"></script> | |
| 42 <script src="chrome://sync-internals/sync_search.js"></script> | |
| 43 <script src="chrome://sync-internals/strings.js"></script> | |
| 44 </head> | |
| 45 <body> | |
| 46 | |
| 47 <style> | |
| 48 #sync-page { | |
| 49 /* TODO(akalin): Figure out a better way to make the tab box the | |
| 50 same height no matter which tab is selected. */ | |
| 51 min-height: 650px; | |
| 52 } | |
| 53 </style> | |
| 54 | |
| 55 <tabbox id="sync-page"> | |
| 56 <tabs> | |
| 57 <tab id="sync-about-tab">About</tab> | |
| 58 <tab id="sync-types-tab">Types</tab> | |
| 59 <tab id="sync-data-tab">Data</tab> | |
| 60 <tab id="sync-events-tab">Events</tab> | |
| 61 <tab id="sync-browser-tab">Sync Node Browser</tab> | |
| 62 <tab id="sync-search-tab">Search</tab> | |
| 63 </tabs> | |
| 64 <tabpanels> | |
| 65 <tabpanel> | |
| 66 <include src="about.html"> | |
| 67 </tabpanel> | |
| 68 <tabpanel> | |
| 69 <include src="types.html"> | |
| 70 </tabpanel> | |
| 71 <tabpanel> | |
| 72 <include src="data.html"> | |
| 73 </tabpanel> | |
| 74 <tabpanel> | |
| 75 <include src="events.html"> | |
| 76 </tabpanel> | |
| 77 <tabpanel> | |
| 78 <include src="node_browser.html"> | |
| 79 </tabpanel> | |
| 80 <tabpanel> | |
| 81 <include src="search.html"> | |
| 82 </tabpanel> | |
| 83 </tabpanels> | |
| 84 </tabbox> | |
| 85 | |
| 86 <script src="chrome://resources/js/i18n_template.js"></script> | |
| 87 <script src="chrome://resources/js/jstemplate_compiled.js"></script> | |
| 88 <script src="chrome://sync-internals/sync_index.js"></script> | |
| 89 </body> | |
| 90 </html> | |
| OLD | NEW |