Closed
Bug 657041
Opened 14 years ago
Closed 14 years ago
"ASSERTION: invalid call to GetPreferredStretchSize"
Categories
(Core :: MathML, defect)
Tracking
()
RESOLVED
FIXED
mozilla6
People
(Reporter: jruderman, Assigned: karlt)
References
Details
(Keywords: assertion, testcase)
Attachments
(2 files)
124 bytes,
application/xhtml+xml
|
Details | |
1.98 KB,
patch
|
fredw
:
review+
|
Details | Diff | Splinter Review |
###!!! ASSERTION: invalid call to GetPreferredStretchSize: 'NS_MATHML_IS_EMBELLISH_OPERATOR(mEmbellishData.flags) || stretchAll', file /builds/slave/cen-osx64-dbg/build/layout/mathml/nsMathMLContainerFrame.cpp, line 251
A recent patch changed the assertion:
changeset: http://hg.mozilla.org/mozilla-central/rev/7835a2b7db2d
user: Karl Tomlinson
date: Fri May 13 12:01:08 2011 +1200
summary: bug 654928: don't assume that the embellished operator is the first child r=fred
Stack:
nsMathMLContainerFrame::GetPreferredStretchSize [layout/mathml/nsMathMLContainerFrame.cpp:252]
nsMathMLmfencedFrame::Reflow [layout/mathml/nsMathMLmfencedFrame.cpp:318]
nsLineLayout::ReflowFrame [layout/generic/nsLineLayout.cpp:852]
nsBlockFrame::ReflowInlineFrame [layout/generic/nsBlockFrame.cpp:3821]
nsBlockFrame::DoReflowInlineFrames [layout/generic/nsBlockFrame.cpp:3617]
nsBlockFrame::ReflowInlineFrames [layout/generic/nsBlockFrame.cpp:3485]
nsBlockFrame::ReflowLine [layout/generic/nsBlockFrame.cpp:2569]
nsBlockFrame::ReflowDirtyLines [layout/generic/nsBlockFrame.cpp:1995]
nsBlockFrame::Reflow [layout/generic/nsBlockFrame.cpp:1075]
nsBlockReflowContext::ReflowBlock [layout/generic/nsBlockReflowContext.cpp:296]
nsBlockFrame::ReflowBlockFrame [layout/generic/nsBlockFrame.cpp:3206]
nsBlockFrame::ReflowLine [layout/generic/nsBlockFrame.cpp:2513]
nsBlockFrame::ReflowDirtyLines [layout/generic/nsBlockFrame.cpp:1995]
nsBlockFrame::Reflow [layout/generic/nsBlockFrame.cpp:1075]
nsContainerFrame::ReflowChild [layout/generic/nsContainerFrame.cpp:959]
nsCanvasFrame::Reflow [layout/generic/nsCanvasFrame.cpp:458]
nsContainerFrame::ReflowChild [layout/generic/nsContainerFrame.cpp:959]
nsHTMLScrollFrame::ReflowScrolledFrame [layout/generic/nsGfxScrollFrame.cpp:546]
nsHTMLScrollFrame::ReflowContents [layout/generic/nsGfxScrollFrame.cpp:672]
nsHTMLScrollFrame::Reflow [layout/generic/nsGfxScrollFrame.cpp:879]
nsContainerFrame::ReflowChild [layout/generic/nsContainerFrame.cpp:959]
ViewportFrame::Reflow [layout/generic/nsViewportFrame.cpp:225]
PresShell::DoReflow [layout/base/nsPresShell.cpp:8005]
PresShell::ProcessReflowCommands [layout/base/nsPresShell.cpp:8137]
PresShell::FlushPendingNotifications [layout/base/nsPresShell.cpp:4869]
DocumentViewerImpl::LoadComplete [layout/base/nsDocumentViewer.cpp:993]
nsDocShell::EndPageLoad [docshell/base/nsDocShell.cpp:6058]
nsDocShell::OnStateChange [docshell/base/nsDocShell.cpp:5917]
nsDocLoader::FireOnStateChange [uriloader/base/nsDocLoader.cpp:1323]
nsDocLoader::doStopDocumentLoad [uriloader/base/nsDocLoader.cpp:958]
nsDocLoader::DocLoaderIsEmpty [uriloader/base/nsDocLoader.cpp:825]
nsDocLoader::OnStopRequest [uriloader/base/nsDocLoader.cpp:710]
nsLoadGroup::RemoveRequest [netwerk/base/src/nsLoadGroup.cpp:680]
nsDocument::DoUnblockOnload [content/base/src/nsDocument.cpp:7342]
nsDocument::UnblockOnload [content/base/src/nsDocument.cpp:7280]
nsDocument::DispatchContentLoadedEvents [content/base/src/nsDocument.cpp:4195]
nsRunnableMethodImpl<void (nsDocument::*)(),true>::Run [nsThreadUtils.h:346]
nsThread::ProcessNextEvent [xpcom/threads/nsThread.cpp:618]
NS_ProcessPendingEvents_P [obj-firefox/xpcom/build/nsThreadUtils.cpp:200]
nsBaseAppShell::NativeEventCallback [widget/src/xpwidgets/nsBaseAppShell.cpp:131]
nsAppShell::ProcessGeckoEvents [widget/src/cocoa/nsAppShell.mm:423]
CoreFoundation + 0x4e401
CoreFoundation + 0x4c5f9
CoreFoundation + 0x4bdbf
HIToolbox + 0x2e7ee
HIToolbox + 0x2e5f3
HIToolbox + 0x2e4ac
AppKit + 0x43e64
-AppKit + 0x437a9
-AppKit + 0x948b
nsAppShell::Run [widget/src/cocoa/nsAppShell.mm:769]
nsAppStartup::Run [toolkit/components/startup/nsAppStartup.cpp:224]
XRE_main [toolkit/xre/nsAppRunner.cpp:3698]
main [browser/app/nsBrowserApp.cpp:159]
Comment 1•14 years ago
|
||
It seems that
mPresentationData.flags |= NS_MATHML_STRETCH_ALL_CHILDREN_VERTICALLY
is done in nsMathMLmfencedFrame::InheritAutomaticData and this should prevent this assertion.
Maybe the function is not called in that testcase.
Assignee | ||
Comment 2•14 years ago
|
||
Yes, it won't get called when the parent is not a mathml frame to call RebuildAutomaticDataForChildren.
Assignee: nobody → karlt
Assignee | ||
Comment 3•14 years ago
|
||
Attachment #532556 -
Flags: review?(fred.wang)
Assignee | ||
Updated•14 years ago
|
OS: Mac OS X → All
Comment 4•14 years ago
|
||
Comment on attachment 532556 [details] [diff] [review]
initialize with NS_MATHML_STRETCH_ALL_CHILDREN_VERTICALLY for when InheritAutomaticData does not get called
Review of attachment 532556 [details] [diff] [review]:
-----------------------------------------------------------------
Attachment #532556 -
Flags: review?(fred.wang) → review+
Assignee | ||
Comment 5•14 years ago
|
||
Status: NEW → RESOLVED
Closed: 14 years ago
Flags: in-testsuite+
Resolution: --- → FIXED
Target Milestone: --- → mozilla6
You need to log in
before you can comment on or make changes to this bug.
Description
•