Chromium Code Reviews| OLD | NEW | 
|---|---|
| 1 | 1 | 
| 2 <div id="status"> | 2 <div id="status"> | 
| 3 <div id="dump"> | 3 <div id="dump"> | 
| 4 <button id="dump-status">Dump status</button> | 4 <button id="dump-status">Dump status</button> | 
| 5 <input type="checkbox" id="include-ids"> | 5 <input type="checkbox" id="include-ids"> | 
| 6 Include Identifiers | 6 Include Identifiers | 
| 7 </input> | 7 </input> | 
| 8 </div> | 8 </div> | 
| 9 <div id="import"> | 9 <div id="import"> | 
| 10 <button id="import-status">Import status</button> | 10 <button id="import-status">Import status</button> | 
| 11 </div> | 11 </div> | 
| 12 <div id="status-data"> | 12 <div id="status-data"> | 
| 13 <textarea rows="10" cols="30" id="status-text"></textarea> | 13 <textarea rows="10" cols="30" id="status-text"></textarea> | 
| 14 </div> | 14 </div> | 
| 15 </div> | 15 </div> | 
| 16 | 16 | 
| 17 <div id='aboutInfo'> | 17 <div id='about-info'> | 
| 18 <div class="section" jsselect="details"> | 18 <div class="section" jsselect="details"> | 
| 19 <h2 jscontent="title"></h2> | 19 <h2 jscontent="title"></h2> | 
| 20 <table class="aboutDetails"> | 20 <table class="about-details"> | 
| 21 <tr jsselect="data" | 21 <tr jsselect="data" | 
| 22 jsvalues="class:$this.is_valid ? '' : 'uninitialized'" | 22 jsvalues="class:$this.is_valid ? '' : 'uninitialized'"> | 
| 23 jseval='highlightIfChanged(this, this.children[1].innerText, stat_va lue)'> | |
| 24 <td class="detail" jscontent="stat_name" width=50%></td> | 23 <td class="detail" jscontent="stat_name" width=50%></td> | 
| 25 <td class="value" jscontent="stat_value" width=50%></td> | 24 <td class="value" jscontent="stat_value" width=50%></td> | 
| 26 </tr> | 25 </tr> | 
| 27 </table> | 26 </table> | 
| 28 </div> | 27 </div> | 
| 29 | 28 | 
| 29 <div id="traffic-event-container-wrapper" jsskip="true"> | |
| 30 <h2>Sync Protocol Log</h2> | |
| 31 <div id="traffic-event-container"> | |
| 32 <div class="traffic-event-entry" jsselect="events" jseval="chrome.sync.abo ut_tab.addExpandListener(this)"> | |
| 
 
James Hawkins
2014/03/24 23:08:32
nit: 80 cols.
 
rlarocque
2014/03/24 23:34:19
I tried to fix it, but I'm not sure if there are a
 
 | |
| 33 <span class="time" jscontent="(new Date(time)).toLocaleString()"></span> | |
| 34 <span class="type" jscontent="type"></span> | |
| 35 <pre class="details" jscontent="details"></pre> | |
| 36 <pre class="proto" jscontent="JSON.stringify(proto, null, 2)"></pre> | |
| 37 </div> | |
| 38 </div> | |
| 39 </div> | |
| 40 | |
| 30 <div class="section" style="overflow-x: auto"> | 41 <div class="section" style="overflow-x: auto"> | 
| 31 <h2>Type Info</h2> | 42 <h2>Type Info</h2> | 
| 32 <table id="typeInfo"> | 43 <table id="typeInfo"> | 
| 33 <tr jsselect="type_status" jsvalues="class:$this.status"> | 44 <tr jsselect="type_status" jsvalues="class:$this.status"> | 
| 34 <td jscontent="name" width=50%></td> | 45 <td jscontent="name" width=50%></td> | 
| 35 <td jscontent="value" width=30%></td> | 46 <td jscontent="value" width=30%></td> | 
| 36 <td jscontent="num_entries" width=10%></td> | 47 <td jscontent="num_entries" width=10%></td> | 
| 37 <td jscontent="num_live" width=10%></td> | 48 <td jscontent="num_live" width=10%></td> | 
| 38 </tr> | 49 </tr> | 
| 39 </table> | 50 </table> | 
| (...skipping 10 matching lines...) Expand all Loading... | |
| 50 <h2>Actionable Error</h2> | 61 <h2>Actionable Error</h2> | 
| 51 <table id="actionableError"> | 62 <table id="actionableError"> | 
| 52 <tr jsselect="actionable_error"> | 63 <tr jsselect="actionable_error"> | 
| 53 <td jscontent="stat_name"></td> | 64 <td jscontent="stat_name"></td> | 
| 54 <td jscontent="stat_value"></td> | 65 <td jscontent="stat_value"></td> | 
| 55 </tr> | 66 </tr> | 
| 56 </table> | 67 </table> | 
| 57 </p> | 68 </p> | 
| 58 </div> | 69 </div> | 
| 59 </div> | 70 </div> | 
| OLD | NEW |