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

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

Issue 12737006: Allow feedback form to be shown in an App Launcher feedback mode. (Closed) Base URL: svn://svn.chromium.org/chrome/trunk/src
Patch Set: Woops Created 7 years, 9 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 unified diff | Download patch | Annotate | Revision Log
OLDNEW
1 <!DOCTYPE HTML> 1 <!DOCTYPE HTML>
2 <html i18n-values="dir:textdirection;"> 2 <html i18n-values="dir:textdirection;">
3 <head> 3 <head>
4 <meta charset="utf-8"> 4 <meta charset="utf-8">
5 <title i18n-content="page-title"></title> 5 <title i18n-content="page-title"></title>
6 <link rel="stylesheet" href="chrome://resources/css/widgets.css"> 6 <link rel="stylesheet" href="chrome://resources/css/widgets.css">
7 <link rel="stylesheet" href="chrome://resources/css/chrome_shared.css"> 7 <link rel="stylesheet" href="chrome://resources/css/chrome_shared.css">
8 <link rel="stylesheet" href="feedback.css"> 8 <link rel="stylesheet" href="feedback.css">
9 9
10 <script src="chrome://resources/js/load_time_data.js"></script> 10 <script src="chrome://resources/js/load_time_data.js"></script>
11 <script src="chrome://resources/js/util.js"></script> 11 <script src="chrome://resources/js/util.js"></script>
12 <script src="chrome://feedback/feedback.js"></script> 12 <script src="chrome://feedback/feedback.js"></script>
13 <script src="chrome://feedback/strings.js"></script> 13 <script src="chrome://feedback/strings.js"></script>
14 </head> 14 </head>
15 <body id="feedback-page" 15 <body id="feedback-page"
16 i18n-values=".style.fontFamily:fontfamily;.style.fontSize:fontsize"> 16 i18n-values=".style.fontFamily:fontfamily;.style.fontSize:fontsize">
17 <h1 i18n-content="title"></h1> 17 <h1 id="title" i18n-content="title"></h1>
18 <h1 id="launcher-title" i18n-content="launcher-title" hidden></h1>
18 <div id="content"> 19 <div id="content">
19 <span id="description" colspan="2" i18n-content="description"></span> 20 <span id="description" colspan="2" i18n-content="description"></span>
21 <span id="launcher-description" colspan="2" i18n-content="launcher-descripti on" hidden></span>
tapted 2013/03/15 05:06:03 nit: split on to 2 lines
benwells 2013/03/15 05:54:34 Done.
20 <textarea id="description-text" rows="10"></textarea> 22 <textarea id="description-text" rows="10"></textarea>
21 <div id="page-url" class="input-text-container checkbox"> 23 <div id="page-url" class="input-text-container checkbox">
22 <label> 24 <label>
23 <input id="page-url-checkbox" type="checkbox" 25 <input id="page-url-checkbox" type="checkbox"
24 value="pageurl" checked> 26 value="pageurl" checked>
25 <span id="page-url-label" i18n-content="page-url"></span> 27 <span id="page-url-label" i18n-content="page-url"></span>
26 </label> 28 </label>
27 <input id="page-url-text"> 29 <input id="page-url-text">
28 </div> 30 </div>
29 <!-- User e-mail --> 31 <!-- User e-mail -->
(...skipping 66 matching lines...) Expand 10 before | Expand all | Expand 10 after
96 <div id="buttons-pane"> 98 <div id="buttons-pane">
97 <input id="send-report-button" type="submit" 99 <input id="send-report-button" type="submit"
98 class="feedback-button" i18n-values="value:send-report"> 100 class="feedback-button" i18n-values="value:send-report">
99 <input id="cancel-button" type="submit" 101 <input id="cancel-button" type="submit"
100 class="feedback-button" i18n-values="value:cancel"> 102 class="feedback-button" i18n-values="value:cancel">
101 </div> 103 </div>
102 </div> 104 </div>
103 <script src="chrome://resources/js/i18n_template2.js"></script> 105 <script src="chrome://resources/js/i18n_template2.js"></script>
104 </body> 106 </body>
105 </html> 107 </html>
OLDNEW

Powered by Google App Engine
This is Rietveld 408576698