OLD | NEW |
---|---|
(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> | |
flackr
2011/10/11 18:05:35
To support RTL and have minimal markup, would this
arv (Not doing code reviews)
2011/10/11 18:28:31
Yes.
But we also need to change the order based o
| |
42 </body> | |
43 </html> | |
OLD | NEW |