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

Side by Side Diff: chrome/browser/resources/sync_internals/about.html

Issue 10828382: Cleanup: Don't close single tags. (Closed) Base URL: svn://svn.chromium.org/chrome/trunk/src
Patch Set: Review fixes. Created 8 years, 4 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 unified diff | Download patch | Annotate | Revision Log
OLDNEW
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
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>
OLDNEW

Powered by Google App Engine
This is Rietveld 408576698