WebKit Bugzilla
New
Browse
Log In
×
Sign in with GitHub
or
Remember my login
Create Account
·
Forgot Password
Forgotten password account recovery
RESOLVED FIXED
114702
PlugIn Snapshotting: Crashes refreshing non-main-frame PDFPlugins
https://bugs.webkit.org/show_bug.cgi?id=114702
Summary
PlugIn Snapshotting: Crashes refreshing non-main-frame PDFPlugins
Tim Horton
Reported
2013-04-16 14:57:43 PDT
If a plugin shouldAlwaysAutoStart() and is also detected as primary, setIsPrimarySnapshottedPlugIn can switch displayState() to Restarting and reattach, but then when the plugin is created, we're pushed forward to Playing, and things go very very poorly from there on out (we keep two plugin instances around, etc.) This is reproducible with PDFPlugin, clicking Chase.com account statements. <
rdar://problem/13542020
>
Attachments
patch
(5.72 KB, patch)
2013-04-16 15:09 PDT
,
Tim Horton
dino
: review+
Details
Formatted Diff
Diff
View All
Add attachment
proposed patch, testcase, etc.
Tim Horton
Comment 1
2013-04-16 15:09:48 PDT
Created
attachment 198439
[details]
patch
Dean Jackson
Comment 2
2013-04-16 15:15:47 PDT
Comment on
attachment 198439
[details]
patch View in context:
https://bugs.webkit.org/attachment.cgi?id=198439&action=review
> Source/WebCore/html/HTMLPlugInImageElement.cpp:86 > + , m_plugInWasCreated(false)
Could we use the value of the SnapshotDecision enum to avoid this?
> Source/WebCore/html/HTMLPlugInImageElement.cpp:519 > + if (m_plugInWasCreated) { > + LOG(Plugins, "%p Plug-in was detected as the primary element in the page. Restart.", this); > + restartSnapshottedPlugIn(); > + restartSimilarPlugIns(); > + } else { > + LOG(Plugins, "%p Plug-in was detected as the primary element in the page, but is not yet created. Will restart later.", this); > + m_deferredPromotionToPrimaryPlugIn = true; > + }
And we could set snapshotDecision to NeverSnapshot here.
Tim Horton
Comment 3
2013-04-16 15:39:20 PDT
(In reply to
comment #2
)
> (From update of
attachment 198439
[details]
) > View in context:
https://bugs.webkit.org/attachment.cgi?id=198439&action=review
> > > Source/WebCore/html/HTMLPlugInImageElement.cpp:86 > > + , m_plugInWasCreated(false) > > Could we use the value of the SnapshotDecision enum to avoid this?
Nope, because we need to know if we are strictly between willCreatePlugIn and didCreatePlugIn, which isn't something we can tell from SnapshotDecision.
> > Source/WebCore/html/HTMLPlugInImageElement.cpp:519 > > + if (m_plugInWasCreated) { > > + LOG(Plugins, "%p Plug-in was detected as the primary element in the page. Restart.", this); > > + restartSnapshottedPlugIn(); > > + restartSimilarPlugIns(); > > + } else { > > + LOG(Plugins, "%p Plug-in was detected as the primary element in the page, but is not yet created. Will restart later.", this); > > + m_deferredPromotionToPrimaryPlugIn = true; > > + } > > And we could set snapshotDecision to NeverSnapshot here.
Nope, because nothing ever consults snapshotDecision again after willCreatePlugin. And even if we added a check for snapshotDecision in didCreatePlugin, we wouldn't know to restart *similar* plugins as well (like we do for primary plugins).
Dean Jackson
Comment 4
2013-04-16 15:52:45 PDT
Comment on
attachment 198439
[details]
patch View in context:
https://bugs.webkit.org/attachment.cgi?id=198439&action=review
>>> Source/WebCore/html/HTMLPlugInImageElement.cpp:86 >>> + , m_plugInWasCreated(false) >> >> Could we use the value of the SnapshotDecision enum to avoid this? > > Nope, because we need to know if we are strictly between willCreatePlugIn and didCreatePlugIn, which isn't something we can tell from SnapshotDecision.
Bummer.
>>> Source/WebCore/html/HTMLPlugInImageElement.cpp:519 >>> + } >> >> And we could set snapshotDecision to NeverSnapshot here. > > Nope, because nothing ever consults snapshotDecision again after willCreatePlugin. And even if we added a check for snapshotDecision in didCreatePlugin, we wouldn't know to restart *similar* plugins as well (like we do for primary plugins).
Double bummer.
Tim Horton
Comment 5
2013-04-16 15:57:16 PDT
Bummer x2, indeed :(
https://trac.webkit.org/changeset/148560
Thanks, Dean!
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