Open
Bug 413028
Opened 17 years ago
Updated 2 years ago
NS_UNCONSTRAINEDSIZE assertions with percentage padding, -moz-inline-grid
Categories
(Core :: XUL, defect)
Tracking
()
NEW
People
(Reporter: jruderman, Unassigned)
References
Details
(Keywords: assertion, testcase)
Attachments
(1 file)
140 bytes,
text/html
|
Details |
Loading the testcase triggers a bunch of NS_UNCONSTRAINEDSIZE assertions, such as:
###!!! ASSERTION: shouldn't use unconstrained widths anymore: 'availableWidth != NS_UNCONSTRAINEDSIZE', file /Users/jruderman/trunk/mozilla/layout/generic/nsHTMLReflowState.cpp, line 295
Comment 1•17 years ago
|
||
nsFrame::RefreshSizeCache is calling BoxReflow() with an unconstrained pref size:
5782 rv = BoxReflow(aState, presContext, desiredSize, rendContext,
5783 rect.x, rect.y,
5784 metrics->mBlockPrefSize.width, NS_UNCONSTRAINEDSIZE);
(gdb) p metrics->mBlockPrefSize
$7 = {width = 1073741824, height = -1}
Blocks: reflow-refactor
Updated•9 years ago
|
Component: Layout → XUL
Updated•2 years ago
|
Severity: normal → S3
You need to log in
before you can comment on or make changes to this bug.
Description
•