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

Side by Side Diff: devtools-panel.html

Issue 5646124035604480: Issue 154 - Added UI for devtools panel on Chrome (Closed)
Patch Set: Added new request types Created Jan. 28, 2016, 7:37 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 | « background.js ('k') | 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
(Empty)
1 <!DOCTYPE html>
2 <!--
3 - This file is part of Adblock Plus <https://adblockplus.org/>,
4 - Copyright (C) 2006-2016 Eyeo GmbH
5 -
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
8 - published by the Free Software Foundation.
9 -
10 - Adblock Plus is distributed in the hope that it will be useful,
11 - but WITHOUT ANY WARRANTY; without even the implied warranty of
12 - MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
13 - GNU General Public License for more details.
14 -
15 - You should have received a copy of the GNU General Public License
16 - along with Adblock Plus. If not, see <http://www.gnu.org/licenses/>.
17 -->
18
19 <html>
20 <head>
21 <link type="text/css" rel="stylesheet" href="skin/devtools-panel.css">
22 <script src="ext/common.js"></script>
23 <script src="ext/content.js"></script>
24 <script src="ext/devtools.js"></script>
25 <script src="devtools-panel.js"></script>
26 </head>
27 <body>
28 <header>
29 <table>
30 <colgroup>
31 <col>
32 <col>
33 <col>
34 </colgroup>
35 <tr>
36 <td colspan="3">
37 Show
38 <select id="filter-state">
39 <option value="">all</option>
40 <option>blocked</option>
41 <option>whitelisted</option>
42 </select>
43 items of
44 <select id="filter-type">
45 <option value="">any</option>
46 <option>SUBDOCUMENT</option>
47 <option>IMAGE</option>
48 <option>STYLESHEET</option>
49 <option>SCRIPT</option>
50 <option>OBJECT</option>
51 <option>XMLHTTPREQUEST</option>
52 <option>FONT</option>
53 <option>PING</option>
54 <option>POPUP</option>
55 <option>ELEMHIDE</option>
56 <option>OTHER</option>
57 </select>
58 type
59 </td>
60 </tr>
61 <tr>
62 <td>
63 <div class="request-wrapper">
64 <div class="url">Request</div>
65 <div class="domain">Document domain</div>
66 </div>
67 </td>
68 <td>
69 <div class="type">Type</div>
70 </td>
71 <td>
72 <div class="filter-wrapper">
73 <div class="filter">Filter</div>
74 <div class="origin">Origin</div>
75 </div>
76 </td>
77 </tr>
78 </table>
79 </header>
80 <div id="items">
81 <table>
82 <colgroup>
83 <col>
84 <col>
85 <col>
86 </colgroup>
87 <tbody>
88 </tbody>
89 </table>
90 </div>
91 <footer>
92 <a id="reload">Reload</a> page to see effect of filter changes
93 </footer>
94
95 <template>
96 <tr>
97 <td>
98 <div class="request-wrapper">
99 <div class="url">&nbsp;</div>
100 <div class="domain"></div>
101 </div>
102 </td>
103 <td>
104 <div class="type"></div>
105 </td>
106 <td>
107 <div class="action-wrapper">
108 <div class="filter-wrapper">
109 <div class="filter">&nbsp;</div>
110 <div class="origin">&nbsp;</div>
111 </div>
112 </div>
113 </td>
114 </tr>
115 </template>
116 </body>
117 </html>
OLDNEW
« no previous file with comments | « background.js ('k') | devtools-panel.js » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld