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

Unified Diff: chrome/browser/resources/md_feedback/feedback_container.html

Issue 2039593002: [Md Feedback] Add initial content/strings to feedback-container element. (Closed) Base URL: https://chromium.googlesource.com/chromium/src.git@master
Patch Set: Created 4 years, 6 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/md_feedback/feedback_container.html
diff --git a/chrome/browser/resources/md_feedback/feedback_container.html b/chrome/browser/resources/md_feedback/feedback_container.html
new file mode 100644
index 0000000000000000000000000000000000000000..7a1ef815d71efc7c75887d5624d691ae789c1de9
--- /dev/null
+++ b/chrome/browser/resources/md_feedback/feedback_container.html
@@ -0,0 +1,28 @@
+<link rel="import" href="chrome://resources/html/polymer.html">
+<link rel="import" href="chrome://resources/html/i18n_behavior.html">
+<link rel="import" href="chrome://resources/polymer/v1_0/paper-button/paper-button.html">
+<link rel="import" href="chrome://resources/polymer/v1_0/paper-input/paper-input.html">
+<link rel="import" href="chrome://resources/polymer/v1_0/paper-input/paper-textarea.html">
+<dom-module name="feedback-container">
+ <link rel="import" type="css" href="feedback_container.css">
+ <template>
+ <div id="header">
+ <span>[[i18n('headingText')]]</span>
+ </div>
+ <div>
+ <paper-textarea label="[[i18n('openEndedLabel')]]">
+ </paper-textarea>
+ <paper-input label="[[i18n('urlLabel')]]"></paper-input>
+ <paper-input label="[[i18n('emailLabel')]]"></paper-input>
+ </div>
+ <div>
+ <paper-button>
+ <span>[[i18n('cancelButton')]]</span>
+ </paper-button>
+ <paper-button id="submit-button">
+ <span>[[i18n('sendReportButton')]]</span>
+ </paper-button>
+ </div>
+ </template>
+<script src="feedback_container.js"></script>
+</dom-module>

Powered by Google App Engine
This is Rietveld 408576698