WebKit Bugzilla
New
Browse
Log In
×
Sign in with GitHub
or
Remember my login
Create Account
·
Forgot Password
Forgotten password account recovery
RESOLVED WONTFIX
106348
Plug-ins shouldn’t be added to list to autostart if you start a plugin in private browsing
https://bugs.webkit.org/show_bug.cgi?id=106348
Summary
Plug-ins shouldn’t be added to list to autostart if you start a plugin in pri...
Brian Weinstein
Reported
2013-01-08 10:54:27 PST
Plug-ins shouldn’t be added to list to autostart if you start a plugin in private browsing <
rdar://problem/12968442
>
Attachments
Fix
(2.38 KB, patch)
2013-01-08 10:58 PST
,
Brian Weinstein
andersca
: review+
Details
Formatted Diff
Diff
View All
Add attachment
proposed patch, testcase, etc.
Brian Weinstein
Comment 1
2013-01-08 10:58:40 PST
Created
attachment 181709
[details]
Fix
Anders Carlsson
Comment 2
2013-01-08 12:17:28 PST
Comment on
attachment 181709
[details]
Fix View in context:
https://bugs.webkit.org/attachment.cgi?id=181709&action=review
> Source/WebCore/html/HTMLPlugInImageElement.cpp:271 > - if (document()->page()) > + if (document()->page() && document()->settings() && !document()->settings()->privateBrowsingEnabled()) > document()->page()->plugInClient()->addAutoStartOrigin(document()->page()->mainFrame()->document()->baseURL().host(), m_plugInOriginHash);
I don't think you need to null check document()->settings() here since settings can only be null if page is null. I think this'd read better as if (Page* page = document->page()) { if (!settings->privateBrowsingEnabled()) page->plugInClient()-> etc etc }
Brian Weinstein
Comment 3
2013-01-08 12:47:24 PST
Landed in
http://trac.webkit.org/changeset/139096
.
WebKit Review Bot
Comment 4
2013-01-08 12:58:09 PST
Re-opened since this is blocked by
bug 106367
Note
You need to
log in
before you can comment on or make changes to this bug.
Top of Page
Format For Printing
XML
Clone This Bug