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

Side by Side Diff: chrome/browser/resources/cleanup_tool/cleanup.html

Issue 2784653004: Cleanup Tool WebUI: Add HTML content and styling with dummy JS (Closed)
Patch Set: Fix broken i18n commands Created 3 years, 8 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
OLDNEW
(Empty)
1 <!doctype html>
2 <html dir="$i18n{textdirection}" lang="$i18n{language}">
3 <head>
4 <meta name="google" value="notranslate">
5 <meta charset="utf-8">
6 <title>$i18n{title}</title>
7 <link rel="stylesheet" href="chrome://resources/css/text_defaults_md.css">
8 <link rel="stylesheet" href="chrome://resources/css/md_colors.css">
9 <script src="chrome://resources/js/load_time_data.js"></script>
Dan Beam 2017/04/04 00:00:00 can you import load_time_data.html instead?
proberge 2017/04/04 16:10:02 Done.
10 <script src="strings.js"></script>
Dan Beam 2017/04/04 00:00:00 can you put these scripts at the bottom of the pag
proberge 2017/04/04 16:10:02 Done.
11
12 <style>
13 html {
14 background: var(--md-background-color);
15 }
16
17 body {
18 margin: 0;
19 }
20
21 :root {
22 --cleanup-card-margin: 25px;
23 --cleanup-card-width: 800px;
24 }
25 </style>
26 </head>
27
28 <body>
29 <cleanup-tool-toolbar></cleanup-tool-toolbar>
30 <cleanup-manager></cleanup-manager>
31 <link rel="import" href="chrome://resources/html/cr.html">
32 <link rel="import" href="chrome://resources/html/polymer.html">
33 <link rel="import" href="chrome://cleanup/toolbar.html">
34 </body>
35
36 <script src="chrome://resources/js/i18n_template.js"></script>
Dan Beam 2017/04/04 00:00:00 indent off why are you using i18n_template.js?
proberge 2017/04/04 16:10:02 It was needed when I was using i18n-content in too
37 </html>
OLDNEW

Powered by Google App Engine
This is Rietveld 408576698