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

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

Issue 2837483002: [Merge to M59] Feedback: User email section should only be visible when useful (Closed)
Patch Set: Created 3 years, 8 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
« no previous file with comments | « no previous file | chrome/browser/resources/feedback/js/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;lang:language"> 2 <html i18n-values="dir:textdirection;lang:language">
3 <head> 3 <head>
4 <meta charset="utf-8"> 4 <meta charset="utf-8">
5 <link rel="stylesheet" href="chrome://resources/css/text_defaults.css"> 5 <link rel="stylesheet" href="chrome://resources/css/text_defaults.css">
6 <link rel="stylesheet" href="chrome://resources/css/apps/common.css"></link> 6 <link rel="stylesheet" href="chrome://resources/css/apps/common.css"></link>
7 <link rel="stylesheet" href="chrome://resources/css/apps/topbutton_bar.css"></li nk> 7 <link rel="stylesheet" href="chrome://resources/css/apps/topbutton_bar.css"></li nk>
8 <link rel="stylesheet" href="../css/feedback.css"> 8 <link rel="stylesheet" href="../css/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>
(...skipping 31 matching lines...) Expand 10 before | Expand all | Expand 10 after
42 <div id="content-pane" class="content"> 42 <div id="content-pane" class="content">
43 <textarea id="description-text" aria-labelledby="title-bar"></textarea> 43 <textarea id="description-text" aria-labelledby="title-bar"></textarea>
44 <div> 44 <div>
45 <p id="additional-info-label" i18n-content="additionalInfo"><p> 45 <p id="additional-info-label" i18n-content="additionalInfo"><p>
46 </div> 46 </div>
47 <div id="page-url" class="text-field-container"> 47 <div id="page-url" class="text-field-container">
48 <label id="page-url-label" i18n-content="page-url"></label> 48 <label id="page-url-label" i18n-content="page-url"></label>
49 <input id="page-url-text" aria-labelledby="page-url-label" type="text"> 49 <input id="page-url-text" aria-labelledby="page-url-label" type="text">
50 </div> 50 </div>
51 <!-- User e-mail --> 51 <!-- User e-mail -->
52 <div id="user-email" class="text-field-container"> 52 <div id="user-email" class="text-field-container" hidden>
53 <label id="user-email-label" i18n-content="user-email"></label> 53 <label id="user-email-label" i18n-content="user-email"></label>
54 <select id="user-email-drop-down" aria-labelledby="user-email-label"> 54 <select id="user-email-drop-down" aria-labelledby="user-email-label">
55 <option id="anonymous-user-option" value="anonymous_user" 55 <option id="anonymous-user-option" value="anonymous_user"
56 i18n-content="anonymous-user"></option> 56 i18n-content="anonymous-user"></option>
57 </select> 57 </select>
58 </div> 58 </div>
59 <!-- Attach a file --> 59 <!-- Attach a file -->
60 <div id="attach-file-container" class="text-field-container"> 60 <div id="attach-file-container" class="text-field-container">
61 <label id="attach-file-label" i18n-content="attach-file-label"></label> 61 <label id="attach-file-label" i18n-content="attach-file-label"></label>
62 <input id="attach-file" type="file" aria-labelledby="attach-file-label"> 62 <input id="attach-file" type="file" aria-labelledby="attach-file-label">
(...skipping 32 matching lines...) Expand 10 before | Expand all | Expand 10 after
95 <button id="cancel-button" type="submit" 95 <button id="cancel-button" type="submit"
96 class="white-button" i18n-content="cancel"> 96 class="white-button" i18n-content="cancel">
97 </button> 97 </button>
98 <button id="send-report-button" type="submit" 98 <button id="send-report-button" type="submit"
99 class="blue-button" i18n-content="send-report"> 99 class="blue-button" i18n-content="send-report">
100 </button> 100 </button>
101 </div> 101 </div>
102 </div> 102 </div>
103 </body> 103 </body>
104 </html> 104 </html>
OLDNEW
« no previous file with comments | « no previous file | chrome/browser/resources/feedback/js/feedback.js » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698