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

Side by Side Diff: chrome/browser/resources/input_window_dialog.html

Issue 8298019: Implement InputWindowDialog with WebUI for bookmark folder management. (Closed) Base URL: svn://svn.chromium.org/chrome/trunk/src
Patch Set: Rebase again Created 9 years, 1 month 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 unified diff | Download patch | Annotate | Revision Log
OLDNEW
(Empty)
1 <!DOCTYPE HTML>
2 <html i18n-values="dir:textdirection">
3 <head>
4 <meta charset="utf-8">
5 <title i18n-content="title"></title>
6 <link rel="stylesheet" href="chrome://resources/css/button.css">
7 <link rel="stylesheet" href="chrome://resources/css/chrome_shared.css">
8 <link rel="stylesheet" href="input_window_dialog.css">
9 <script src="chrome://input-window-dialog/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="input_window_dialog.js"></script>
15 </head>
16 <body>
17 <div class="vbox">
18 <div class="input-area">
19 <div>
20 <span id="name-label"></span>
21 <input id="name" type="text" autofocus>
22 </div>
23 </div>
24 <div class="buttons-area">
25 <div>
26 <button id="cancel" type="reset" i18n-content="cancel">Cancel</button>
27 </div>
28 <div>
29 <button id="ok" type="submit" i18n-content="ok">OK</button>
30 </div>
31 </div>
32 </div>
33 </body>
34 </html>
OLDNEW
« no previous file with comments | « chrome/browser/resources/input_window_dialog.css ('k') | chrome/browser/resources/input_window_dialog.js » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698