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

Side by Side Diff: devtools-panel.html

Issue 29695580: Issue 5093 - Indicate whether request in devtools panel belongs to tab (Closed)
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:
View unified diff | Download patch
« no previous file with comments | « no previous file | devtools-panel.js » ('j') | no next file with comments »
Toggle Intra-line Diffs ('i') | Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
OLDNEW
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 </tbody> 79 </tbody>
80 </table> 80 </table>
81 <table class="background">
82 <colgroup>
83 <col>
84 <col>
85 <col>
86 </colgroup>
87 <tbody>
88 <tr>
89 <td colspan="3">Requests from background tabs</td>
90 </tr>
91 </tbody>
92 </table>
81 </div> 93 </div>
82 <footer> 94 <footer>
83 <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
84 </footer> 96 </footer>
85 97
86 <template> 98 <template>
87 <tr> 99 <tr>
88 <td> 100 <td>
89 <div class="request-wrapper"> 101 <div class="request-wrapper">
90 <a class="resource-link" href="" target="_blank">&nbsp;</a> 102 <a class="resource-link" href="" target="_blank">&nbsp;</a>
91 <div class="domain"></div> 103 <div class="domain"></div>
92 </div> 104 </div>
93 </td> 105 </td>
94 <td> 106 <td>
95 <div class="type"></div> 107 <div class="type"></div>
96 </td> 108 </td>
97 <td> 109 <td>
98 <div class="action-wrapper"> 110 <div class="action-wrapper">
99 <div class="filter-wrapper"> 111 <div class="filter-wrapper">
100 <div class="filter">&nbsp;</div> 112 <div class="filter">&nbsp;</div>
101 <div class="origin">&nbsp;</div> 113 <div class="origin">&nbsp;</div>
102 </div> 114 </div>
103 </div> 115 </div>
104 </td> 116 </td>
105 </tr> 117 </tr>
106 </template> 118 </template>
107 </body> 119 </body>
108 </html> 120 </html>
OLDNEW
« no previous file with comments | « no previous file | devtools-panel.js » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld