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 <title>Sync Internals</title> | 6 <title>Sync Internals</title> |
7 <script src="chrome_sync.js"></script> | 7 <script src="chrome_sync.js"></script> |
8 <!-- Used by about.html. --> | |
9 <link rel="stylesheet" href="about.css" /> | |
10 </head> | 8 </head> |
11 <body i18n-values=".style.fontFamily:fontfamily;.style.fontSize:fontsize"> | 9 <body i18n-values=".style.fontFamily:fontfamily;.style.fontSize:fontsize"> |
12 <include src="about.html" /> | 10 |
13 <include src="notifications.html" /> | 11 <style> |
14 <include src="sync_node_browser.html" /> | 12 div.topLevel { |
| 13 display: inline-block; |
| 14 padding-right: 5em; |
| 15 vertical-align: top; |
| 16 } |
| 17 |
| 18 h1.topLevel { |
| 19 font-size: 150%; |
| 20 } |
| 21 </style> |
| 22 |
| 23 <!-- TODO(akalin): Add tab-style navigation. --> |
| 24 |
| 25 <div class="topLevel" id="about"> |
| 26 <h1 class="topLevel">About</h1> |
| 27 <include src="about.html" /> |
| 28 </div> |
| 29 <div class="topLevel" id="notifications"> |
| 30 <h1 class="topLevel">Notifications</h1> |
| 31 <include src="notifications.html" /> |
| 32 </div> |
| 33 <div class="topLevel" id="syncNodeBrowser"> |
| 34 <h1 class="topLevel">Node Browser</h1> |
| 35 <include src="sync_node_browser.html" /> |
| 36 </div> |
| 37 |
15 <include src="sync_events.html" /> | 38 <include src="sync_events.html" /> |
| 39 |
16 </body> | 40 </body> |
17 </html> | 41 </html> |
OLD | NEW |