OLD | NEW |
1 /* | 1 /* |
2 * This file is part of Adblock Plus <https://adblockplus.org/>, | 2 * This file is part of Adblock Plus <https://adblockplus.org/>, |
3 * Copyright (C) 2006-2015 Eyeo GmbH | 3 * Copyright (C) 2006-2015 Eyeo GmbH |
4 * | 4 * |
5 * Adblock Plus is free software: you can redistribute it and/or modify | 5 * Adblock Plus is free software: you can redistribute it and/or modify |
6 * it under the terms of the GNU General Public License version 3 as | 6 * it under the terms of the GNU General Public License version 3 as |
7 * published by the Free Software Foundation. | 7 * published by the Free Software Foundation. |
8 * | 8 * |
9 * Adblock Plus is distributed in the hope that it will be useful, | 9 * Adblock Plus is distributed in the hope that it will be useful, |
10 * but WITHOUT ANY WARRANTY; without even the implied warranty of | 10 * but WITHOUT ANY WARRANTY; without even the implied warranty of |
11 * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the | 11 * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the |
12 * GNU General Public License for more details. | 12 * GNU General Public License for more details. |
13 * | 13 * |
14 * You should have received a copy of the GNU General Public License | 14 * You should have received a copy of the GNU General Public License |
15 * along with Adblock Plus. If not, see <http://www.gnu.org/licenses/>. | 15 * along with Adblock Plus. If not, see <http://www.gnu.org/licenses/>. |
16 */ | 16 */ |
17 | 17 |
18 var SELECTOR_GROUP_SIZE = 20; | 18 var SELECTOR_GROUP_SIZE = 20; |
19 | 19 |
20 var typeMap = { | 20 var typeMap = { |
21 "img": "IMAGE", | 21 "img": "IMAGE", |
22 "input": "IMAGE", | 22 "input": "IMAGE", |
23 "picture": "IMAGE", | |
24 "audio": "MEDIA", | 23 "audio": "MEDIA", |
25 "video": "MEDIA", | 24 "video": "MEDIA", |
26 "frame": "SUBDOCUMENT", | 25 "frame": "SUBDOCUMENT", |
27 "iframe": "SUBDOCUMENT", | 26 "iframe": "SUBDOCUMENT" |
28 "object": "OBJECT", | |
29 "embed": "OBJECT" | |
30 }; | 27 }; |
31 | 28 |
32 function checkCollapse(element) | 29 function checkCollapse(element) |
33 { | 30 { |
34 var tag = element.localName; | 31 var tag = element.localName; |
35 if (tag in typeMap) | 32 if (tag in typeMap) |
36 { | 33 { |
37 // This element failed loading, did we block it? | 34 // This element failed loading, did we block it? |
38 var url = element.src; | 35 var url = element.src; |
39 if (!url || !/^https?:/i.test(url)) | 36 if (!url || !/^https?:/i.test(url)) |
(...skipping 226 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
266 }, true); | 263 }, true); |
267 | 264 |
268 ext.backgroundPage.sendMessage({type: "get-selectors"}, setElemhideCSSRules); | 265 ext.backgroundPage.sendMessage({type: "get-selectors"}, setElemhideCSSRules); |
269 } | 266 } |
270 | 267 |
271 if (document instanceof HTMLDocument) | 268 if (document instanceof HTMLDocument) |
272 { | 269 { |
273 checkSitekey(); | 270 checkSitekey(); |
274 init(document); | 271 init(document); |
275 } | 272 } |
OLD | NEW |