WebKit Bugzilla
New
Browse
Log In
×
Sign in with GitHub
or
Remember my login
Create Account
·
Forgot Password
Forgotten password account recovery
RESOLVED FIXED
33863
Occasional crash when interacting with page with reflected WebGL
https://bugs.webkit.org/show_bug.cgi?id=33863
Summary
Occasional crash when interacting with page with reflected WebGL
Simon Fraser (smfr)
Reported
2010-01-19 13:42:19 PST
There's an issue where compositing layers for a reflection can be torn down, without clearing the original layer's replicaLayer pointer.
Attachments
Patch
(5.89 KB, patch)
2010-01-19 13:50 PST
,
Simon Fraser (smfr)
mitz: review+
Details
Formatted Diff
Diff
View All
Add attachment
proposed patch, testcase, etc.
Simon Fraser (smfr)
Comment 1
2010-01-19 13:50:09 PST
Created
attachment 46949
[details]
Patch
mitz
Comment 2
2010-01-19 14:39:20 PST
Comment on
attachment 46949
[details]
Patch
> if (layer->backing()) { > + // If we're removing backing on a reflection, clear the source GraphicsLayer's pointer to > + // its replica GraphicsLayer. In practise this should never happen
So can we add an assertion?
> + if (layer->isReflection()) { > + RenderLayer* sourceLayer = toRenderBoxModelObject(layer->renderer()->parent())->layer(); > + if (RenderLayerBacking* backing = sourceLayer->backing()) > + backing->graphicsLayer()->setReplicatedByLayer(0);
And also assert right before here that the graphicsLayer currently thinks that it’s replicated by our layer? r=me
Simon Fraser (smfr)
Comment 3
2010-01-19 16:37:59 PST
http://trac.webkit.org/changeset/53507
Simon Fraser (smfr)
Comment 4
2010-01-19 16:45:37 PST
http://trac.webkit.org/changeset/53507
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