Chromium Code Reviews
chromiumcodereview-hr@appspot.gserviceaccount.com (chromiumcodereview-hr) | Please choose your nickname with Settings | Help | Chromium Project | Gerrit Changes | Sign out
(91)

Side by Side Diff: chrome/browser/resources/sync_internals/sync_index.html

Issue 6538047: [Sync] Clean up about:sync (Closed) Base URL: svn://svn.chromium.org/chrome/trunk/src
Patch Set: Fix HTML errors Created 9 years, 10 months ago
Use n/p to move between diff chunks; N/P to move between comments. Draft comments are only viewable by you.
Jump to:
View unified diff | Download patch | Annotate | Revision Log
OLDNEW
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>
OLDNEW

Powered by Google App Engine
This is Rietveld 408576698