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

Unified 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, 2 months 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 side-by-side diff with in-line comments
Download patch
« 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 »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: chrome/browser/resources/input_window_dialog.html
diff --git a/chrome/browser/resources/input_window_dialog.html b/chrome/browser/resources/input_window_dialog.html
new file mode 100644
index 0000000000000000000000000000000000000000..0ada56f746e11603f9ab8f228349b45c16692037
--- /dev/null
+++ b/chrome/browser/resources/input_window_dialog.html
@@ -0,0 +1,34 @@
+<!DOCTYPE HTML>
+<html i18n-values="dir:textdirection">
+ <head>
+ <meta charset="utf-8">
+ <title i18n-content="title"></title>
+ <link rel="stylesheet" href="chrome://resources/css/button.css">
+ <link rel="stylesheet" href="chrome://resources/css/chrome_shared.css">
+ <link rel="stylesheet" href="input_window_dialog.css">
+ <script src="chrome://input-window-dialog/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="input_window_dialog.js"></script>
+ </head>
+ <body>
+ <div class="vbox">
+ <div class="input-area">
+ <div>
+ <span id="name-label"></span>
+ <input id="name" type="text" autofocus>
+ </div>
+ </div>
+ <div class="buttons-area">
+ <div>
+ <button id="cancel" type="reset" i18n-content="cancel">Cancel</button>
+ </div>
+ <div>
+ <button id="ok" type="submit" i18n-content="ok">OK</button>
+ </div>
+ </div>
+ </div>
+ </body>
+</html>
« 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