[Webkit-unassigned] [Bug 25118] New: Add signal to support AdBlock in WebKit
bugzilla-daemon at webkit.org
bugzilla-daemon at webkit.org
Thu Apr 9 11:16:11 PDT 2009
https://bugs.webkit.org/show_bug.cgi?id=25118
Summary: Add signal to support AdBlock in WebKit
Product: WebKit
Version: 528+ (Nightly build)
Platform: PC
OS/Version: All
Status: UNCONFIRMED
Severity: Enhancement
Priority: P2
Component: Page Loading
AssignedTo: webkit-unassigned at lists.webkit.org
ReportedBy: alex at igalia.com
CC: xan.lopez at gmail.com
We want to add support to block resources inside the webpages based on their
URL, that way the browsers could block parts of the web based on a URL.
The idea is to have a delegate in the DocLoader::requestResource
(WebCore/loader/DocLoader.cpp), something like:
...
KURL fullURL = m_doc->completeURL(url);
if (!fullURL.isValid() || !canRequest(type, fullURL) || (badURL ==
fullURL))
return 0;
For webkit version of epiphany this signal will allow us to keep the ad block
support that is implemented with the current version based on gecko.
--
Configure bugmail: https://bugs.webkit.org/userprefs.cgi?tab=email
------- You are receiving this mail because: -------
You are the assignee for the bug, or are watching the assignee.
More information about the webkit-unassigned
mailing list