Rietveld Code Review Tool
Help | Bug tracker | Discussion group | Source code

Delta Between Two Patch Sets: devtools-panel.html

Issue 29695580: Issue 5093 - Indicate whether request in devtools panel belongs to tab (Closed)
Left Patch Set: Created Feb. 14, 2018, 10:23 a.m.
Right Patch Set: Created March 2, 2018, 3:53 p.m.
Left:
Right:
Use n/p to move between diff chunks; N/P to move between comments.
Jump to:
Left: Side by side diff | Download
Right: Side by side diff | Download
« no previous file with change/comment | « no previous file | devtools-panel.js » ('j') | no next file with change/comment »
Toggle Intra-line Diffs ('i') | Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
LEFTRIGHT
1 <!DOCTYPE html> 1 <!DOCTYPE html>
2 <!-- 2 <!--
3 - This file is part of Adblock Plus <https://adblockplus.org/>, 3 - This file is part of Adblock Plus <https://adblockplus.org/>,
4 - Copyright (C) 2006-present eyeo GmbH 4 - Copyright (C) 2006-present eyeo GmbH
5 - 5 -
6 - Adblock Plus is free software: you can redistribute it and/or modify 6 - Adblock Plus is free software: you can redistribute it and/or modify
7 - it under the terms of the GNU General Public License version 3 as 7 - it under the terms of the GNU General Public License version 3 as
8 - published by the Free Software Foundation. 8 - published by the Free Software Foundation.
9 - 9 -
10 - Adblock Plus is distributed in the hope that it will be useful, 10 - Adblock Plus is distributed in the hope that it will be useful,
(...skipping 51 matching lines...) Expand 10 before | Expand all | Expand 10 after
62 <td> 62 <td>
63 <div class="filter-wrapper"> 63 <div class="filter-wrapper">
64 <div class="filter">Filter</div> 64 <div class="filter">Filter</div>
65 <div class="origin">Origin</div> 65 <div class="origin">Origin</div>
66 </div> 66 </div>
67 </td> 67 </td>
68 </tr> 68 </tr>
69 </table> 69 </table>
70 </header> 70 </header>
71 <div id="items"> 71 <div id="items">
72 <table> 72 <table class="foreground">
73 <colgroup> 73 <colgroup>
74 <col> 74 <col>
75 <col> 75 <col>
76 <col> 76 <col>
77 </colgroup> 77 </colgroup>
78 <tbody> 78 <tbody>
79 <tr id="background-items"> 79 </tbody>
Thomas Greiner 2018/02/28 18:18:08 This implementation appears to cause a bit of over
a.giammarchi 2018/03/02 09:38:21 I've missed this one ... yeah, it was somehow my f
80 </table>
81 <table class="background">
82 <colgroup>
83 <col>
84 <col>
85 <col>
86 </colgroup>
87 <tbody>
88 <tr>
80 <td colspan="3">Requests from background tabs</td> 89 <td colspan="3">Requests from background tabs</td>
81 </tr> 90 </tr>
82 </tbody> 91 </tbody>
83 </table> 92 </table>
84 </div> 93 </div>
85 <footer> 94 <footer>
86 <a id="reload">Reload</a> page to see effect of filter changes 95 <a id="reload">Reload</a> page to see effect of filter changes
87 </footer> 96 </footer>
88 97
89 <template> 98 <template>
(...skipping 12 matching lines...) Expand all
102 <div class="filter-wrapper"> 111 <div class="filter-wrapper">
103 <div class="filter">&nbsp;</div> 112 <div class="filter">&nbsp;</div>
104 <div class="origin">&nbsp;</div> 113 <div class="origin">&nbsp;</div>
105 </div> 114 </div>
106 </div> 115 </div>
107 </td> 116 </td>
108 </tr> 117 </tr>
109 </template> 118 </template>
110 </body> 119 </body>
111 </html> 120 </html>
LEFTRIGHT
« no previous file | devtools-panel.js » ('j') | Toggle Intra-line Diffs ('i') | Expand Comments ('e') | Collapse Comments ('c') | Toggle Comments ('s')

Powered by Google App Engine
This is Rietveld