Closed
Bug 1230425
Opened 10 years ago
Closed 9 years ago
Assertion failure: mFrame->Combines3DTransformWithAncestors() || IsTransformSeparator()
Categories
(Core :: Layout, defect)
Core
Layout
Tracking
()
RESOLVED
FIXED
mozilla52
People
(Reporter: jruderman, Assigned: sinker)
References
Details
(Keywords: assertion, testcase)
Attachments
(3 files, 1 obsolete file)
Assertion failure: mFrame->Combines3DTransformWithAncestors() || IsTransformSeparator(), at layout/base/nsDisplayList.h:4006
Reporter | ||
Comment 1•10 years ago
|
||
I suspect either Matt or Thinker would know about this.
Flags: needinfo?(tlee)
Flags: needinfo?(matt.woodrow)
Assignee | ||
Comment 3•10 years ago
|
||
I already has a fix at another bug. I would move the patch to here.
Flags: needinfo?(tlee)
Updated•10 years ago
|
Assignee: nobody → tlee
Flags: needinfo?(matt.woodrow)
Assignee | ||
Comment 4•9 years ago
|
||
Matt, |BuildDisplayListForStackingContext()| decides if to install a transform item according the value of |IsTransformed()|. |Combines3DTransformWithAncestors()| also checks if the frame is transformed, but in a bit different way. The difference makes them inconsistent.
My idea is to call |IsTransformed()| in |Combines3DTransformWithAncestors()| instead of doing test by itself. How do you think?
Attachment #8809251 -
Flags: feedback?(matt.woodrow)
Comment 5•9 years ago
|
||
(In reply to Thinker Li [:sinker] from comment #4)
> Created attachment 8809251 [details] [diff] [review]
> WIP.diff
>
> Matt, |BuildDisplayListForStackingContext()| decides if to install a
> transform item according the value of |IsTransformed()|.
> |Combines3DTransformWithAncestors()| also checks if the frame is
> transformed, but in a bit different way. The difference makes them
> inconsistent.
>
> My idea is to call |IsTransformed()| in |Combines3DTransformWithAncestors()|
> instead of doing test by itself. How do you think?
This sounds good, but it's different what's in the attached patch.
Assignee | ||
Comment 6•9 years ago
|
||
Attachment #8809251 -
Attachment is obsolete: true
Attachment #8809251 -
Flags: feedback?(matt.woodrow)
Attachment #8809375 -
Flags: review?(matt.woodrow)
Assignee | ||
Comment 7•9 years ago
|
||
Updated•9 years ago
|
Attachment #8809375 -
Flags: review?(matt.woodrow) → review+
Assignee | ||
Updated•9 years ago
|
Keywords: checkin-needed
Pushed by ryanvm@gmail.com:
https://hg.mozilla.org/integration/mozilla-inbound/rev/0c62b9c32517
Fix the test of transform of Combines3DTransformWithAncestors. r=mattwoodrow
Keywords: checkin-needed
Comment 9•9 years ago
|
||
bugherder |
Status: NEW → RESOLVED
Closed: 9 years ago
status-firefox52:
--- → fixed
Resolution: --- → FIXED
Target Milestone: --- → mozilla52
You need to log in
before you can comment on or make changes to this bug.
Description
•