summaryrefslogtreecommitdiffstats
path: root/chrome/browser/resources/edit_search_engine_dialog.html
blob: b0a4b0026c11207b9c19d273c5e0d261933f52a5 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
<!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 id="top-box" class="hfill">
      <tr>
        <td i18n-content="descriptionLabel"></td>
        <td class="hfill"><input id="description-text" class="hfill"></td>
        <td><div class="invalid" id="description-icon"></div></td>
      </tr>
      <tr>
        <td i18n-content="keywordLabel"></td>
        <td class="hfill"><input id="keyword-text" class="hfill"></td>
        <td><div class="invalid" id="keyword-icon"></div></td>
      </tr>
      <tr>
        <td i18n-content="urlLabel"></td>
        <td class="hfill"><input id="url-text" class="hfill"></td>
        <td><div class="invalid" id="url-icon"></div></td>
      </tr>
    </table>
    <div id="middle-box" i18n-content="urlDescriptionLabel"
        id="url-description"></div>
    <div class="action-area">
      <div class="button-strip">
        <button id="save" i18n-content="save"></button>
        <button id="cancel" i18n-content="cancel"></button>
      </div>
    </div>
  </body>
</html>