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

Unified 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 side-by-side diff with in-line comments
Download patch
Index: chrome/browser/resources/edit_search_engine_dialog.html
diff --git a/chrome/browser/resources/edit_search_engine_dialog.html b/chrome/browser/resources/edit_search_engine_dialog.html
new file mode 100644
index 0000000000000000000000000000000000000000..8e8eb7a1f74d201b7a72e2fb2b983f09e37565aa
--- /dev/null
+++ b/chrome/browser/resources/edit_search_engine_dialog.html
@@ -0,0 +1,38 @@
+<!DOCTYPE HTML>
+<html i18n-values="dir:textdirection">
+ <head>
+ <meta charset="utf-8">
+ <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.
+ <link rel="stylesheet" href="edit_search_engine_dialog.css">
+ <link rel="stylesheet" href="chrome://resources/css/button.css">
+ <link rel="stylesheet" href="chrome://resources/css/chrome_shared.css">
+ <script src="strings.js"></script>
+ <script src="chrome://resources/js/cr.js"></script>
+ <script src="chrome://resources/js/cr/ui.js"></script>
+ <script src="chrome://resources/js/i18n_template.js"></script>
+ <script src="chrome://resources/js/util.js"></script>
+ <script src="edit_search_engine_dialog.js"></script>
+ </head>
+
+ <body i18n-values=".style.fontFamily:fontfamily;.style.fontSize:fontsize">
+ <table class="hfill">
+ <tr>
+ <td i18n-content="description-label"></td>
+ <td class="hfill"><input id="description-text" class="hfill"></td>
+ </tr>
+ <tr>
+ <td i18n-content="keyword-label"></td>
+ <td class="hfill"><input id="keyword-text" class="hfill"></td>
+ </tr>
+ <tr>
+ <td i18n-content="url-label"></td>
+ <td class="hfill"><input id="url-text" class="hfill"></td>
+ </tr>
+ </table>
+ <div i18n-content="url-description-label" id="url-description"></div>
+ <div class="hbox" id="buttons-table">
+ <div><button id="cancel" i18n-content="cancel"></button></div>
+ <div><button id="save" i18n-content="save"></button></div>
+ </div>
+ </body>
+</html>

Powered by Google App Engine
This is Rietveld 408576698