| 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#aboutInfo { | 4 div#aboutInfo { |
| 5 -webkit-columns: 3; | 5 -webkit-columns: 3; |
| 6 } | 6 } |
| 7 | 7 |
| 8 div#aboutInfo h2 { | 8 div#aboutInfo h2 { |
| 9 color: #4a8ee6; | 9 color: #4a8ee6; |
| 10 font-size: 100%; | 10 font-size: 100%; |
| (...skipping 76 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 87 <td class="detail" jscontent="stat_name" width=50%></td> | 87 <td class="detail" jscontent="stat_name" width=50%></td> |
| 88 <td class="value" jscontent="stat_value" width=50%></td> | 88 <td class="value" jscontent="stat_value" width=50%></td> |
| 89 </tr> | 89 </tr> |
| 90 </table> | 90 </table> |
| 91 </div> | 91 </div> |
| 92 | 92 |
| 93 <div class="section"> | 93 <div class="section"> |
| 94 <h2>Type Info</h2> | 94 <h2>Type Info</h2> |
| 95 <table id="typeInfo"> | 95 <table id="typeInfo"> |
| 96 <tr jsselect="type_status" jsvalues="class:$this.status"> | 96 <tr jsselect="type_status" jsvalues="class:$this.status"> |
| 97 <td jscontent="name" width=50% /> | 97 <td jscontent="name" width=50%></td> |
| 98 <td jscontent="value" width=50% /> | 98 <td jscontent="value" width=50%></td> |
| 99 </tr> | 99 </tr> |
| 100 </table> | 100 </table> |
| 101 </div> | 101 </div> |
| 102 | 102 |
| 103 <div class="section" jsdisplay="unrecoverable_error_detected"> | 103 <div class="section" jsdisplay="unrecoverable_error_detected"> |
| 104 <p> | 104 <p> |
| 105 <span class="err" jscontent="unrecoverable_error_message"></span> | 105 <span class="err" jscontent="unrecoverable_error_message"></span> |
| 106 </p> | 106 </p> |
| 107 </div> | 107 </div> |
| 108 | 108 |
| 109 <div class="section" jsdisplay="actionable_error_detected"> | 109 <div class="section" jsdisplay="actionable_error_detected"> |
| 110 <p> | 110 <p> |
| 111 <h2>Actionable Error</h2> | 111 <h2>Actionable Error</h2> |
| 112 <table id="actionableError"> | 112 <table id="actionableError"> |
| 113 <tr jsselect="actionable_error"> | 113 <tr jsselect="actionable_error"> |
| 114 <td jscontent="stat_name"/> | 114 <td jscontent="stat_name"></td> |
| 115 <td jscontent="stat_value"/> | 115 <td jscontent="stat_value"></td> |
| 116 </tr> | 116 </tr> |
| 117 </table> | 117 </table> |
| 118 </p> | 118 </p> |
| 119 </div> | 119 </div> |
| 120 </div> | 120 </div> |
| OLD | NEW |