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

Unified Diff: netlog_viewer/import_view.html

Issue 2162963002: [polymer] Merge of master into polymer10-migration (Closed) Base URL: git@github.com:catapult-project/catapult.git@polymer10-migration
Patch Set: Merge polymer10-migration int polymer10-merge Created 4 years, 5 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
« no previous file with comments | « netlog_viewer/http_cache_view.js ('k') | netlog_viewer/import_view.js » ('j') | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: netlog_viewer/import_view.html
diff --git a/netlog_viewer/import_view.html b/netlog_viewer/import_view.html
new file mode 100644
index 0000000000000000000000000000000000000000..7e94815d04d7f34e774d0f33f658aed30887ce2f
--- /dev/null
+++ b/netlog_viewer/import_view.html
@@ -0,0 +1,80 @@
+<style>
+#import-view-command-line,
+#import-view-user-comments {
+ /* Wrap long lines inside of PREs */
+ white-space: pre-wrap;
+}
+
+#import-view-load-status-text {
+ /* Wrap long lines inside of PREs */
+ white-space: pre-wrap;
+}
+
+.import-view-pending-log {
+ color: blue;
+ font-weight: bold;
+}
+
+.import-view-success-log {
+ color: green;
+ font-weight: bold;
+}
+
+.import-view-error-log {
+ color: #e00;
+ padding: 5px;
+ border: 1px solid #e00;
+}
+
+.import-view-warning-log {
+ color: #e00;
+}
+
+</style>
+
+<div id=import-view-tab-content class=content-box>
+ <div>
+ <div style='margin-bottom:20px'><b>TIP</b>: Drag-and-drop files into this window.</div>
+ <input type=file value="Load log from file" id=import-view-load-log-file></input>
+ <pre id=import-view-load-status-text></pre>
+ </div>
+
+ <div id=import-view-loaded-div style="display: none">
+ <h2>Data Loaded</h2>
+ <table class=styled-table>
+ <tr>
+ <th>Export date</th>
+ <td id=import-view-numericDate></td>
+ </tr>
+ <tr>
+ <th>Build</th>
+ <td><span id=import-view-name></span>
+ <span id=import-view-version></span>
+ (<span id=import-view-official></span>
+ <span id=import-view-cl></span>)
+ <span id=import-view-version-mod>
+ </td>
+ </tr>
+ <tr>
+ <th>OS info</th>
+ <td id=import-view-os-type></td>
+ </tr>
+ <tr>
+ <th>Command line</th>
+ <td><pre id=import-view-command-line></pre></td>
+ </tr>
+ <tr>
+ <th>Active Field Trial Groups</th>
+ <td>
+ <span id=import-view-activeFieldTrialGroups></span>
+ </td>
+ </tr>
+ <tr>
+ <th>User comments</th>
+ <td>
+ <pre id=import-view-user-comments></pre>
+ </td>
+ </tr>
+ </table>
+ </div>
+</div>
« no previous file with comments | « netlog_viewer/http_cache_view.js ('k') | netlog_viewer/import_view.js » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698