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

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: Better CSS 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
« no previous file with comments | « chrome/browser/resources/feedback.css ('k') | chrome/browser/resources/feedback.js » ('j') | no next file with comments »
Toggle Intra-line Diffs ('i') | Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
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"></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"
Dan Beam 2013/03/21 02:07:38 er, why is this [colspan] here?
benwells 2013/03/21 03:07:38 Good catch, it's now gone here and on the other de
22 i18n-content="launcher-description"></span>
20 <textarea id="description-text" rows="10"></textarea> 23 <textarea id="description-text" rows="10"></textarea>
21 <div id="page-url" class="input-text-container checkbox"> 24 <div id="page-url" class="input-text-container checkbox">
22 <label> 25 <label>
23 <input id="page-url-checkbox" type="checkbox" 26 <input id="page-url-checkbox" type="checkbox"
24 value="pageurl" checked> 27 value="pageurl" checked>
25 <span id="page-url-label" i18n-content="page-url"></span> 28 <span id="page-url-label" i18n-content="page-url"></span>
26 </label> 29 </label>
27 <input id="page-url-text"> 30 <input id="page-url-text">
28 </div> 31 </div>
29 <!-- User e-mail --> 32 <!-- User e-mail -->
(...skipping 66 matching lines...) Expand 10 before | Expand all | Expand 10 after
96 <div id="buttons-pane"> 99 <div id="buttons-pane">
97 <input id="send-report-button" type="submit" 100 <input id="send-report-button" type="submit"
98 class="feedback-button" i18n-values="value:send-report"> 101 class="feedback-button" i18n-values="value:send-report">
99 <input id="cancel-button" type="submit" 102 <input id="cancel-button" type="submit"
100 class="feedback-button" i18n-values="value:cancel"> 103 class="feedback-button" i18n-values="value:cancel">
101 </div> 104 </div>
102 </div> 105 </div>
103 <script src="chrome://resources/js/i18n_template2.js"></script> 106 <script src="chrome://resources/js/i18n_template2.js"></script>
104 </body> 107 </body>
105 </html> 108 </html>
OLDNEW
« no previous file with comments | « chrome/browser/resources/feedback.css ('k') | chrome/browser/resources/feedback.js » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698