Chromium Code Reviews| 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> |