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

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: 'Address comments' 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
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..7e0a5f0bbeb87c8ee9b5ddd2ff2262cc4ebd53c1
--- /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="input_window_dialog.css">
+ <link rel="stylesheet" href="chrome://resources/css/button.css">
+ <link rel="stylesheet" href="chrome://resources/css/chrome_shared.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="chrome://input-window-dialog/input_window_dialog.js"></script>
xiyuan 2011/10/18 16:11:32 You can just use <script src="input_window_dialog.
mazda 2011/10/18 17:32:02 Done.
+ </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>

Powered by Google App Engine
This is Rietveld 408576698