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

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: changed webui class names as per precedent 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></title>
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="descriptionLabel"></td>
21 <td class="hfill"><input id="description-text" class="hfill"></td>
22 <td><div class="invalid" id="description-icon"></div></td>
23 </tr>
24 <tr>
25 <td i18n-content="keywordLabel"></td>
26 <td class="hfill"><input id="keyword-text" class="hfill"></td>
27 <td><div class="invalid" id="keyword-icon"></div></td>
28 </tr>
29 <tr>
30 <td i18n-content="urlLabel"></td>
31 <td class="hfill"><input id="url-text" class="hfill"></td>
32 <td><div class="invalid" id="url-icon"></div></td>
33 </tr>
34 </table>
35 <div i18n-content="urlDescriptionLabel" id="url-description"></div>
36 <div class="action-area">
37 <div class="button-strip">
38 <button id="cancel" i18n-content="cancel"></button>
39 <button id="save" i18n-content="save"></button>
40 </div>
41 </div>
42 </body>
43 </html>
OLDNEW
« no previous file with comments | « chrome/browser/resources/edit_search_engine_dialog.css ('k') | chrome/browser/resources/edit_search_engine_dialog.js » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698