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

Side by Side Diff: chrome/browser/resources/edit_search_engine_dialog.html

Issue 8118012: WebUI Edit Search Engine Dialog (Closed) Base URL: http://git.chromium.org/git/chromium.git@trunk
Patch Set: self review Created 9 years, 2 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
(Empty)
1 <!DOCTYPE HTML>
2 <html i18n-values="dir:textdirection">
3 <head>
4 <meta charset="utf-8">
5 <title id="title"></title>
arv (Not doing code reviews) 2011/10/04 20:55:01 Useless id. You can use document.title from script
wyck 2011/10/04 21:57:57 Done.
6 <link rel="stylesheet" href="edit_search_engine_dialog.css">
7 <link rel="stylesheet" href="chrome://resources/css/button.css">
8 <link rel="stylesheet" href="chrome://resources/css/chrome_shared.css">
9 <script src="strings.js"></script>
10 <script src="chrome://resources/js/cr.js"></script>
11 <script src="chrome://resources/js/cr/ui.js"></script>
12 <script src="chrome://resources/js/i18n_template.js"></script>
13 <script src="chrome://resources/js/util.js"></script>
14 <script src="edit_search_engine_dialog.js"></script>
15 </head>
16
17 <body i18n-values=".style.fontFamily:fontfamily;.style.fontSize:fontsize">
18 <table class="hfill">
19 <tr>
20 <td i18n-content="description-label"></td>
21 <td class="hfill"><input id="description-text" class="hfill"></td>
22 </tr>
23 <tr>
24 <td i18n-content="keyword-label"></td>
25 <td class="hfill"><input id="keyword-text" class="hfill"></td>
26 </tr>
27 <tr>
28 <td i18n-content="url-label"></td>
29 <td class="hfill"><input id="url-text" class="hfill"></td>
30 </tr>
31 </table>
32 <div i18n-content="url-description-label" id="url-description"></div>
33 <div class="hbox" id="buttons-table">
34 <div><button id="cancel" i18n-content="cancel"></button></div>
35 <div><button id="save" i18n-content="save"></button></div>
36 </div>
37 </body>
38 </html>
OLDNEW

Powered by Google App Engine
This is Rietveld 408576698