| Left: | ||
| Right: |
| OLD | NEW |
|---|---|
| 1 /* | 1 /* |
| 2 * This file is part of Adblock Plus <http://adblockplus.org/>, | 2 * This file is part of Adblock Plus <http://adblockplus.org/>, |
| 3 * Copyright (C) 2006-2014 Eyeo GmbH | 3 * Copyright (C) 2006-2014 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", | |
|
kzar
2014/12/15 15:45:40
Are these changes relevant to the issue?
Sebastian Noack
2014/12/15 15:58:42
Yes, they are. Initially this mapping were only us
| |
| 23 "audio": "MEDIA", | 24 "audio": "MEDIA", |
| 24 "video": "MEDIA", | 25 "video": "MEDIA", |
| 25 "frame": "SUBDOCUMENT", | 26 "frame": "SUBDOCUMENT", |
| 26 "iframe": "SUBDOCUMENT" | 27 "iframe": "SUBDOCUMENT", |
| 28 "object": "OBJECT", | |
| 29 "embed": "OBJECT" | |
| 27 }; | 30 }; |
| 28 | 31 |
| 29 function checkCollapse(element) | 32 function checkCollapse(element) |
| 30 { | 33 { |
| 31 var tag = element.localName; | 34 var tag = element.localName; |
| 32 if (tag in typeMap) | 35 if (tag in typeMap) |
| 33 { | 36 { |
| 34 // This element failed loading, did we block it? | 37 // This element failed loading, did we block it? |
| 35 var url = element.src; | 38 var url = element.src; |
| 36 if (!url || !/^https?:/i.test(url)) | 39 if (!url || !/^https?:/i.test(url)) |
| (...skipping 206 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... | |
| 243 }, true); | 246 }, true); |
| 244 | 247 |
| 245 ext.backgroundPage.sendMessage({type: "get-selectors"}, setElemhideCSSRules); | 248 ext.backgroundPage.sendMessage({type: "get-selectors"}, setElemhideCSSRules); |
| 246 } | 249 } |
| 247 | 250 |
| 248 if (document instanceof HTMLDocument) | 251 if (document instanceof HTMLDocument) |
| 249 { | 252 { |
| 250 checkSitekey(); | 253 checkSitekey(); |
| 251 init(document); | 254 init(document); |
| 252 } | 255 } |
| OLD | NEW |