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..536ef49a61409e4c2486218f2d17ece92a15bbf6 |
--- /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></title> |
+ <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="descriptionLabel"></td> |
+ <td class="hfill"><input id="description-text" class="hfill"></td> |
+ </tr> |
+ <tr> |
+ <td i18n-content="keywordLabel"></td> |
+ <td class="hfill"><input id="keyword-text" class="hfill"></td> |
+ </tr> |
+ <tr> |
+ <td i18n-content="urlLabel"></td> |
+ <td class="hfill"><input id="url-text" class="hfill"></td> |
+ </tr> |
+ </table> |
+ <div i18n-content="urlDescriptionLabel" 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> |