OLD | NEW |
1 <script src="chrome://sync-internals/about.js"></script> | 1 <script src="chrome://sync-internals/about.js"></script> |
2 | 2 |
3 <style> | 3 <style> |
4 div.column { | 4 div.column { |
5 display: inline-block; | 5 display: inline-block; |
6 padding-right: 5em; | 6 padding-right: 5em; |
7 vertical-align: top; | 7 vertical-align: top; |
8 } | 8 } |
9 | 9 |
10 div#aboutInfo h2 { | 10 div#aboutInfo h2 { |
(...skipping 34 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
45 -webkit-animation-duration: 3s; | 45 -webkit-animation-duration: 3s; |
46 -webkit-animation-timing-function: linear; | 46 -webkit-animation-timing-function: linear; |
47 } | 47 } |
48 | 48 |
49 </style> | 49 </style> |
50 | 50 |
51 <div id='aboutInfo'> | 51 <div id='aboutInfo'> |
52 <div class="column"> | 52 <div class="column"> |
53 <h2>Summary</h2> | 53 <h2>Summary</h2> |
54 <p jscontent="summary"/> | 54 <p jscontent="summary"/> |
| 55 <p jsdisplay="summary_explanation_needed"> |
| 56 <span class="err" jscontent="summary_explanation_message"></span> |
| 57 </p> |
55 <p jsdisplay="unrecoverable_error_detected"> | 58 <p jsdisplay="unrecoverable_error_detected"> |
56 <span class="err" jscontent="unrecoverable_error_message"></span> | 59 <span class="err" jscontent="unrecoverable_error_message"></span> |
57 </p> | 60 </p> |
58 | 61 |
59 <p jsdisplay="failed_data_types"> | 62 <p jsdisplay="failed_data_types"> |
60 <span class="err" jscontent="failed_data_types"></span> | 63 <span class="err" jscontent="failed_data_types"></span> |
61 </p> | 64 </p> |
62 | 65 |
63 <h2>Sync URL</h2> | 66 <h2>Sync URL</h2> |
64 <p jscontent="service_url"/> | 67 <p jscontent="service_url"/> |
(...skipping 35 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
100 <div class="column"> | 103 <div class="column"> |
101 <h2>Actionable Error</h2> | 104 <h2>Actionable Error</h2> |
102 <table id="actionableError"> | 105 <table id="actionableError"> |
103 <tr jsselect="actionable_error"> | 106 <tr jsselect="actionable_error"> |
104 <td jscontent="stat_name"/> | 107 <td jscontent="stat_name"/> |
105 <td jscontent="stat_value"/> | 108 <td jscontent="stat_value"/> |
106 </tr> | 109 </tr> |
107 </table> | 110 </table> |
108 </div> | 111 </div> |
109 </div> | 112 </div> |
OLD | NEW |