| LEFT | RIGHT |
| (no file at all) | |
| 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 |
| (...skipping 202 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 213 testWnd = testWnd.parent; | 213 testWnd = testWnd.parent; |
| 214 } | 214 } |
| 215 | 215 |
| 216 match = location; | 216 match = location; |
| 217 locationText = match.text.replace(/^.*?#/, '#'); | 217 locationText = match.text.replace(/^.*?#/, '#'); |
| 218 location = locationText; | 218 location = locationText; |
| 219 | 219 |
| 220 if (!match.isActiveOnDomain(docDomain)) | 220 if (!match.isActiveOnDomain(docDomain)) |
| 221 return true; | 221 return true; |
| 222 | 222 |
| 223 let exception = ElemHide.getException(match, docDomain); | 223 let exception = ElemHide.getException(match.selector, docDomain); |
| 224 if (exception) | 224 if (exception) |
| 225 { | 225 { |
| 226 FilterStorage.increaseHitCount(exception, wnd); | 226 FilterStorage.increaseHitCount(exception, wnd); |
| 227 RequestNotifier.addNodeData(node, topWnd, contentType, docDomain, false,
locationText, exception); | 227 RequestNotifier.addNodeData(node, topWnd, contentType, docDomain, false,
locationText, exception); |
| 228 return true; | 228 return true; |
| 229 } | 229 } |
| 230 } | 230 } |
| 231 | 231 |
| 232 let thirdParty = (contentType == Policy.type.ELEMHIDE ? false : isThirdParty
(location, docDomain)); | 232 let thirdParty = (contentType == Policy.type.ELEMHIDE ? false : isThirdParty
(location, docDomain)); |
| 233 | 233 |
| (...skipping 552 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 786 if (!wnd || wnd.closed) | 786 if (!wnd || wnd.closed) |
| 787 return; | 787 return; |
| 788 | 788 |
| 789 if (entry.type == Policy.type.OBJECT) | 789 if (entry.type == Policy.type.OBJECT) |
| 790 { | 790 { |
| 791 node.removeEventListener("mouseover", objectMouseEventHander, true); | 791 node.removeEventListener("mouseover", objectMouseEventHander, true); |
| 792 node.removeEventListener("mouseout", objectMouseEventHander, true); | 792 node.removeEventListener("mouseout", objectMouseEventHander, true); |
| 793 } | 793 } |
| 794 Policy.processNode(wnd, node, entry.type, Utils.makeURI(entry.location), true)
; | 794 Policy.processNode(wnd, node, entry.type, Utils.makeURI(entry.location), true)
; |
| 795 } | 795 } |
| LEFT | RIGHT |