OLD | NEW |
---|---|
1 <style> | 1 <style> |
2 | 2 |
3 #export-view-privacy-warning { | 3 #export-view-privacy-warning { |
4 border: 1px solid rgb(238, 0, 0); | 4 border: 1px solid rgb(238, 0, 0); |
5 color: rgb(238, 0, 0); | 5 color: rgb(238, 0, 0); |
6 padding: 5px; | 6 padding: 5px; |
7 } | 7 } |
8 | 8 |
9 #export-view-save-log-file { | 9 #export-view-save-log-file { |
10 font-size: 100%; | 10 font-size: 100%; |
11 font-weight: bold; | 11 font-weight: bold; |
12 } | 12 } |
13 | 13 |
14 #export-view-user-comments { | 14 #export-view-user-comments { |
15 max-width: 100%; | 15 max-width: 100%; |
16 } | 16 } |
17 | 17 |
18 </style> | 18 </style> |
19 | 19 |
20 <div id=export-view-tab-content class=content-box> | 20 <div id=export-view-tab-content class=content-box> |
21 <div> | 21 <div id=export-view-deprecated-notice> |
22 <b>NOTICE</b>: chrome://net-internals is being deprecated. | |
eroman
2017/02/28 00:24:40
How about simplifying the text to just talk about
wangyix1
2017/02/28 01:49:14
Done.
| |
23 <p> | |
24 To generate net logs, please use | |
25 <a href="chrome://net-export" target="_self">chrome://net-export</a>. | |
26 </p> | |
27 <p> | |
28 To import and view net logs, please use | |
29 <a href="https://github.com/catapult-project/catapult/tree/master/netlog_v iewer" target="_blank">Catapult netlog-viewer</a>. | |
30 </p> | |
31 <p> | |
32 To continue using the deprecated export tab anyway, click the button below . | |
33 </p> | |
34 <button id=export-view-show-deprecated-ui>Show export UI</button> | |
35 | |
36 </div> | |
37 | |
38 <div style="display: none" id=export-view-ui-deprecated> | |
22 <input id=export-view-privacy-stripping-checkbox type=checkbox checked=yes> | 39 <input id=export-view-privacy-stripping-checkbox type=checkbox checked=yes> |
23 <label for=export-view-privacy-stripping-checkbox> | 40 <label for=export-view-privacy-stripping-checkbox> |
24 Strip private information (cookies and credentials). | 41 Strip private information (cookies and credentials). |
25 </label> | 42 </label> |
26 <div id=export-view-privacy-warning style="display:none"> | 43 <div id=export-view-privacy-warning style="display:none"> |
27 <b>WARNING</b>: Events were captured while full byte logging was enabled. | 44 <b>WARNING</b>: Events were captured while full byte logging was enabled. |
28 This means the dump may contain private information. | 45 This means the dump may contain private information. |
29 </div> | 46 </div> |
30 | 47 |
31 <div style='margin-top:10px; margin-bottom: 5px'> | 48 <div style='margin-top:10px; margin-bottom: 5px'> |
32 <textarea cols=50 rows=5 placeholder="Explain what went wrong here. (These notes will be included in the dump file. Be sure to mention the specific URLs, so investigators know what to look for!)" id=export-view-user-comments></textare a> | 49 <textarea cols=50 rows=5 placeholder="Explain what went wrong here. (These notes will be included in the dump file. Be sure to mention the specific URLs, so investigators know what to look for!)" id=export-view-user-comments></textare a> |
33 </div> | 50 </div> |
34 <button id=export-view-save-log-file>Save to file</button> | 51 <button id=export-view-save-log-file>Save to file</button> |
35 | 52 |
36 <pre id=export-view-save-status-text></pre> | 53 <pre id=export-view-save-status-text></pre> |
37 | 54 |
38 <div style='margin-top: 10px; margin-left: 10px;'> | 55 <div style='margin-top: 10px; margin-left: 10px;'> |
39 <a href="https://sites.google.com/a/chromium.org/dev/for-testers/providing -network-details" target="_blank"> | 56 <a href="https://sites.google.com/a/chromium.org/dev/for-testers/providing -network-details" target="_blank"> |
40 How to provide data for bug reports | 57 How to provide data for bug reports |
41 </a> | 58 </a> |
42 </div> | 59 </div> |
43 | 60 |
44 </div> | 61 </div> |
45 | 62 |
46 <a style="display: none" id=export-view-download-anchor download="net-internal s-log.json"></a> | 63 <a style="display: none" id=export-view-download-anchor download="net-internal s-log.json"></a> |
47 | 64 |
48 </div> | 65 </div> |
OLD | NEW |