| OLD | NEW |
| 1 <!doctype html> | 1 <!doctype html> |
| 2 <html i18n-values="dir:textdirection;"> | 2 <html i18n-values="dir:textdirection;"> |
| 3 <head> | 3 <head> |
| 4 <!-- If you change the title, make sure you also update | 4 <!-- If you change the title, make sure you also update |
| 5 chrome/test/functional/special_tabs.py. --> | 5 chrome/test/functional/special_tabs.py. --> |
| 6 <meta charset="utf-8"> | 6 <meta charset="utf-8"> |
| 7 <title>Sync Internals</title> | 7 <title>Sync Internals</title> |
| 8 <link rel="stylesheet" href="chrome://resources/css/text_defaults.css"> |
| 8 <link rel="stylesheet" href="chrome://resources/css/list.css"> | 9 <link rel="stylesheet" href="chrome://resources/css/list.css"> |
| 9 <link rel="stylesheet" href="chrome://resources/css/tabs.css"> | 10 <link rel="stylesheet" href="chrome://resources/css/tabs.css"> |
| 10 <link rel="stylesheet" href="chrome://resources/css/tree.css"> | 11 <link rel="stylesheet" href="chrome://resources/css/tree.css"> |
| 11 <link rel="stylesheet" href="about.css"> | 12 <link rel="stylesheet" href="about.css"> |
| 12 <link rel="stylesheet" href="events.css"> | 13 <link rel="stylesheet" href="events.css"> |
| 13 <link rel="stylesheet" href="types.css"> | 14 <link rel="stylesheet" href="types.css"> |
| 14 <link rel="stylesheet" href="sync_search.css"> | 15 <link rel="stylesheet" href="sync_search.css"> |
| 15 <link rel="stylesheet" href="sync_node_browser.css"> | 16 <link rel="stylesheet" href="sync_node_browser.css"> |
| 16 | 17 |
| 17 <script src="chrome://resources/css/tree.css.js"></script> | 18 <script src="chrome://resources/css/tree.css.js"></script> |
| (...skipping 18 matching lines...) Expand all Loading... |
| 36 <script src="chrome://resources/js/util.js"></script> | 37 <script src="chrome://resources/js/util.js"></script> |
| 37 <script src="chrome://sync-internals/chrome_sync.js"></script> | 38 <script src="chrome://sync-internals/chrome_sync.js"></script> |
| 38 <script src="chrome://sync-internals/about.js"></script> | 39 <script src="chrome://sync-internals/about.js"></script> |
| 39 <script src="chrome://sync-internals/events.js"></script> | 40 <script src="chrome://sync-internals/events.js"></script> |
| 40 <script src="chrome://sync-internals/types.js"></script> | 41 <script src="chrome://sync-internals/types.js"></script> |
| 41 <script src="chrome://sync-internals/sync_log.js"></script> | 42 <script src="chrome://sync-internals/sync_log.js"></script> |
| 42 <script src="chrome://sync-internals/sync_node_browser.js"></script> | 43 <script src="chrome://sync-internals/sync_node_browser.js"></script> |
| 43 <script src="chrome://sync-internals/sync_search.js"></script> | 44 <script src="chrome://sync-internals/sync_search.js"></script> |
| 44 <script src="chrome://sync-internals/strings.js"></script> | 45 <script src="chrome://sync-internals/strings.js"></script> |
| 45 </head> | 46 </head> |
| 46 <body i18n-values=".style.fontFamily:fontfamily;.style.fontSize:fontsize"> | 47 <body> |
| 47 | 48 |
| 48 <style> | 49 <style> |
| 49 #sync-page { | 50 #sync-page { |
| 50 /* TODO(akalin): Figure out a better way to make the tab box the | 51 /* TODO(akalin): Figure out a better way to make the tab box the |
| 51 same height no matter which tab is selected. */ | 52 same height no matter which tab is selected. */ |
| 52 min-height: 650px; | 53 min-height: 650px; |
| 53 } | 54 } |
| 54 </style> | 55 </style> |
| 55 | 56 |
| 56 <tabbox id="sync-page"> | 57 <tabbox id="sync-page"> |
| (...skipping 25 matching lines...) Expand all Loading... |
| 82 <include src="search.html"> | 83 <include src="search.html"> |
| 83 </tabpanel> | 84 </tabpanel> |
| 84 </tabpanels> | 85 </tabpanels> |
| 85 </tabbox> | 86 </tabbox> |
| 86 | 87 |
| 87 <script src="chrome://resources/js/i18n_template2.js"></script> | 88 <script src="chrome://resources/js/i18n_template2.js"></script> |
| 88 <script src="chrome://resources/js/jstemplate_compiled.js"></script> | 89 <script src="chrome://resources/js/jstemplate_compiled.js"></script> |
| 89 <script src="chrome://sync-internals/sync_index.js"></script> | 90 <script src="chrome://sync-internals/sync_index.js"></script> |
| 90 </body> | 91 </body> |
| 91 </html> | 92 </html> |
| OLD | NEW |