gecko-dev/layout/svg/base/src/nsSVGOuterSVGFrame.cpp

683 lines
22 KiB
C++
Raw Normal View History

/* -*- Mode: C++; tab-width: 2; indent-tabs-mode: nil; c-basic-offset: 2 -*- */
/* ***** BEGIN LICENSE BLOCK *****
* Version: MPL 1.1/GPL 2.0/LGPL 2.1
*
* The contents of this file are subject to the Mozilla Public License Version
* 1.1 (the "License"); you may not use this file except in compliance with
* the License. You may obtain a copy of the License at
* http://www.mozilla.org/MPL/
*
* Software distributed under the License is distributed on an "AS IS" basis,
* WITHOUT WARRANTY OF ANY KIND, either express or implied. See the License
* for the specific language governing rights and limitations under the
* License.
*
* The Original Code is the Mozilla SVG project.
*
* The Initial Developer of the Original Code is
* Crocodile Clips Ltd..
* Portions created by the Initial Developer are Copyright (C) 2001
* the Initial Developer. All Rights Reserved.
*
* Contributor(s):
* Alex Fritze <alex.fritze@crocodile-clips.com> (original author)
*
* Alternatively, the contents of this file may be used under the terms of
* either of the GNU General Public License Version 2 or later (the "GPL"),
* or the GNU Lesser General Public License Version 2.1 or later (the "LGPL"),
* in which case the provisions of the GPL or the LGPL are applicable instead
* of those above. If you wish to allow use of your version of this file only
* under the terms of either the GPL or the LGPL, and not to allow others to
* use your version of this file under the terms of the MPL, indicate your
* decision by deleting the provisions above and replace them with the notice
* and other provisions required by the GPL or the LGPL. If you do not delete
* the provisions above, a recipient may use your version of this file under
* the terms of any one of the MPL, the GPL or the LGPL.
*
* ***** END LICENSE BLOCK ***** */
#include "nsSVGOuterSVGFrame.h"
#include "nsIDOMSVGSVGElement.h"
#include "nsSVGSVGElement.h"
#include "nsSVGTextFrame.h"
#include "nsSVGRect.h"
#include "nsDisplayList.h"
#include "nsStubMutationObserver.h"
#include "gfxContext.h"
#if defined(DEBUG) && defined(SVG_DEBUG_PRINTING)
#include "nsIDeviceContext.h"
#include "nsTransform2D.h"
#endif
class nsSVGMutationObserver : public nsStubMutationObserver
{
public:
// nsIMutationObserver interface
void AttributeChanged(nsIDocument *aDocument,
nsIContent *aContent,
PRInt32 aNameSpaceID,
nsIAtom *aAttribute,
PRInt32 aModType);
// nsISupports interface:
NS_IMETHOD QueryInterface(const nsIID& aIID, void** aInstancePtr);
private:
NS_IMETHOD_(nsrefcnt) AddRef() { return 1; }
NS_IMETHOD_(nsrefcnt) Release() { return 1; }
static void UpdateTextFragmentTrees(nsIFrame *aFrame);
};
//----------------------------------------------------------------------
// nsISupports methods
NS_INTERFACE_MAP_BEGIN(nsSVGMutationObserver)
NS_INTERFACE_MAP_ENTRY(nsIMutationObserver)
NS_INTERFACE_MAP_END
static nsSVGMutationObserver sSVGMutationObserver;
//----------------------------------------------------------------------
// nsIMutationObserver methods
void
nsSVGMutationObserver::AttributeChanged(nsIDocument *aDocument,
nsIContent *aContent,
PRInt32 aNameSpaceID,
nsIAtom *aAttribute,
PRInt32 aModType)
{
if (aNameSpaceID != kNameSpaceID_XML || aAttribute != nsGkAtoms::space) {
return;
}
PRUint32 count = aDocument->GetNumberOfShells();
for (PRUint32 i = 0; i < count; ++i) {
nsIFrame *frame = aDocument->GetShellAt(i)->GetPrimaryFrameFor(aContent);
if (!frame) {
continue;
}
// is the content a child of a text element
nsISVGTextContentMetrics* metrics;
CallQueryInterface(frame, &metrics);
if (metrics) {
nsSVGTextContainerFrame *containerFrame =
NS_STATIC_CAST(nsSVGTextContainerFrame *, frame);
containerFrame->UpdateGraphic();
continue;
}
// if not, are there text elements amongst its descendents
UpdateTextFragmentTrees(frame);
}
}
//----------------------------------------------------------------------
// Implementation helpers
void
nsSVGMutationObserver::UpdateTextFragmentTrees(nsIFrame *aFrame)
{
nsIFrame* kid = aFrame->GetFirstChild(nsnull);
while (kid) {
if (kid->GetType() == nsGkAtoms::svgTextFrame) {
nsSVGTextFrame* textFrame = NS_STATIC_CAST(nsSVGTextFrame*, kid);
textFrame->NotifyGlyphMetricsChange();
} else {
UpdateTextFragmentTrees(kid);
}
kid = kid->GetNextSibling();
}
}
//----------------------------------------------------------------------
// Implementation
nsIFrame*
NS_NewSVGOuterSVGFrame(nsIPresShell* aPresShell, nsIContent* aContent, nsStyleContext* aContext)
{
nsCOMPtr<nsIDOMSVGSVGElement> svgElement = do_QueryInterface(aContent);
if (!svgElement) {
#ifdef DEBUG
printf("warning: trying to construct an SVGOuterSVGFrame for a content element that doesn't support the right interfaces\n");
#endif
return nsnull;
}
return new (aPresShell) nsSVGOuterSVGFrame(aContext);
}
nsSVGOuterSVGFrame::nsSVGOuterSVGFrame(nsStyleContext* aContext)
: nsSVGOuterSVGFrameBase(aContext),
mRedrawSuspendCount(0),
mNeedsReflow(PR_FALSE),
mViewportInitialized(PR_FALSE)
{
}
NS_IMETHODIMP
nsSVGOuterSVGFrame::InitSVG()
{
nsCOMPtr<nsISVGSVGElement> SVGElement = do_QueryInterface(mContent);
NS_ASSERTION(SVGElement, "wrong content element");
nsIDocument* doc = mContent->GetCurrentDoc();
if (doc) {
// we only care about our content's zoom and pan values if it's the root element
if (doc->GetRootContent() == mContent) {
SVGElement->GetZoomAndPanEnum(getter_AddRefs(mZoomAndPan));
SVGElement->GetCurrentTranslate(getter_AddRefs(mCurrentTranslate));
SVGElement->GetCurrentScaleNumber(getter_AddRefs(mCurrentScale));
}
// AddMutationObserver checks that the observer is not already added.
// sSVGMutationObserver has the same lifetime as the document so does
// not need to be removed
doc->AddMutationObserver(&sSVGMutationObserver);
}
SuspendRedraw();
AddStateBits(NS_STATE_IS_OUTER_SVG);
return NS_OK;
}
//----------------------------------------------------------------------
// nsISupports methods
NS_INTERFACE_MAP_BEGIN(nsSVGOuterSVGFrame)
NS_INTERFACE_MAP_ENTRY(nsISVGSVGFrame)
NS_INTERFACE_MAP_END_INHERITING(nsSVGOuterSVGFrameBase)
//----------------------------------------------------------------------
// nsIFrame methods
//----------------------------------------------------------------------
// reflowing
NS_IMETHODIMP
nsSVGOuterSVGFrame::Reflow(nsPresContext* aPresContext,
nsHTMLReflowMetrics& aDesiredSize,
const nsHTMLReflowState& aReflowState,
nsReflowStatus& aStatus)
{
if (!aReflowState.ShouldReflowAllKids()) {
// We're not the target of the incremental reflow, so just bail.
// This means that something happened to one of our descendants
// (excluding those inside svg:foreignObject, since
// nsSVGForeignObjectFrame is a reflow root).
aStatus = NS_FRAME_COMPLETE;
return NS_OK;
}
// SVG CR 20001102: When the SVG content is embedded inline within
// a containing document, and that document is styled using CSS,
// then if there are CSS positioning properties specified on the
// outermost 'svg' element that are sufficient to establish the
// width of the viewport, then these positioning properties
// establish the viewport's width; otherwise, the width attribute
// on the outermost 'svg' element establishes the viewport's width.
// Similarly, if there are CSS positioning properties specified on
// the outermost 'svg' element that are sufficient to establish the
// height of the viewport, then these positioning properties
// establish the viewport's height; otherwise, the height attribute
// on the outermost 'svg' element establishes the viewport's
// height.
#ifdef DEBUG
// printf("--- nsSVGOuterSVGFrame(%p)::Reflow(frame:%p,reason:%d) ---\n",this,aReflowState.frame,aReflowState.reason);
#endif
nsCOMPtr<nsISVGSVGElement> SVGElement = do_QueryInterface(mContent);
NS_ENSURE_TRUE(SVGElement, NS_ERROR_FAILURE);
// The width/height attribs given on the <svg>-element might be
// percentage values of the parent viewport. We will set the parent
// coordinate context dimensions to the available space.
nsRect maxRect, preferredRect;
CalculateAvailableSpace(&maxRect, &preferredRect, aPresContext, aReflowState);
float preferredWidth = nsPresContext::AppUnitsToFloatCSSPixels(preferredRect.width);
float preferredHeight = nsPresContext::AppUnitsToFloatCSSPixels(preferredRect.height);
SuspendRedraw();
nsCOMPtr<nsIDOMSVGRect> r;
NS_NewSVGRect(getter_AddRefs(r), 0, 0, preferredWidth, preferredHeight);
nsSVGSVGElement *svgElem = NS_STATIC_CAST(nsSVGSVGElement*, mContent);
NS_ENSURE_TRUE(svgElem, NS_ERROR_FAILURE);
svgElem->SetCoordCtxRect(r);
#ifdef DEBUG
// some debug stuff:
// {
// nsRect r=aPresContext->GetVisibleArea();
// printf("******* aw: %d, ah: %d visiw: %d, visih: %d\n",
// aReflowState.availableWidth,
// aReflowState.availableHeight,
// r.width, r.height);
// printf("******* cw: %d, ch: %d \n cmaxw: %d, cmaxh: %d\n",
// aReflowState.ComputedWidth(),
// aReflowState.mComputedHeight,
// aReflowState.mComputedMaxWidth,
// aReflowState.mComputedMaxHeight);
// if (aReflowState.parentReflowState) {
// printf("******* parent aw: %d, parent ah: %d \n",
// aReflowState.parentReflowState->availableWidth,
// aReflowState.parentReflowState->availableHeight);
// printf("******* parent cw: %d, parent ch: %d \n parent cmaxw: %d, parent cmaxh: %d\n",
// aReflowState.parentReflowState->ComputedWidth(),
// aReflowState.parentReflowState->mComputedHeight,
// aReflowState.parentReflowState->mComputedMaxWidth,
// aReflowState.parentReflowState->mComputedMaxHeight);
// }
// }
#endif
// now that the parent coord ctx dimensions have been set, the
// width/height attributes will be valid.
// Let's work out our desired dimensions.
nsSVGSVGElement *svg = NS_STATIC_CAST(nsSVGSVGElement*, mContent);
aDesiredSize.width =
nsPresContext::CSSPixelsToAppUnits(svg->mViewportWidth);
aDesiredSize.height =
nsPresContext::CSSPixelsToAppUnits(svg->mViewportHeight);
// XXX add in CSS borders ??
aStatus = NS_FRAME_COMPLETE;
NS_FRAME_SET_TRUNCATION(aStatus, aReflowState, aDesiredSize);
// tell our element that the viewbox to viewport transform needs refreshing,
// and set us up to draw
NotifyViewportChange();
UnsuspendRedraw();
return NS_OK;
}
NS_IMETHODIMP
nsSVGOuterSVGFrame::DidReflow(nsPresContext* aPresContext,
const nsHTMLReflowState* aReflowState,
nsDidReflowStatus aStatus)
{
nsresult rv = nsSVGOuterSVGFrameBase::DidReflow(aPresContext,aReflowState,aStatus);
if (!mViewportInitialized) {
// it is now
mViewportInitialized = PR_TRUE;
// call InitialUpdate() on all frames:
nsIFrame* kid = mFrames.FirstChild();
while (kid) {
nsISVGChildFrame* SVGFrame = nsnull;
CallQueryInterface(kid, &SVGFrame);
if (SVGFrame) {
SVGFrame->InitialUpdate();
}
kid = kid->GetNextSibling();
}
UnsuspendRedraw();
}
return rv;
}
//----------------------------------------------------------------------
// container methods
NS_IMETHODIMP
nsSVGOuterSVGFrame::InsertFrames(nsIAtom* aListName,
nsIFrame* aPrevFrame,
nsIFrame* aFrameList)
{
SuspendRedraw();
nsSVGOuterSVGFrameBase::InsertFrames(aListName, aPrevFrame, aFrameList);
UnsuspendRedraw();
return NS_OK;
}
class nsDisplaySVG : public nsDisplayItem {
public:
nsDisplaySVG(nsSVGOuterSVGFrame* aFrame) : nsDisplayItem(aFrame) {
MOZ_COUNT_CTOR(nsDisplaySVG);
}
#ifdef NS_BUILD_REFCNT_LOGGING
virtual ~nsDisplaySVG() {
MOZ_COUNT_DTOR(nsDisplaySVG);
}
#endif
virtual nsIFrame* HitTest(nsDisplayListBuilder* aBuilder, nsPoint aPt);
virtual void Paint(nsDisplayListBuilder* aBuilder, nsIRenderingContext* aCtx,
const nsRect& aDirtyRect);
NS_DISPLAY_DECL_NAME("SVGEventReceiver")
};
nsIFrame*
nsDisplaySVG::HitTest(nsDisplayListBuilder* aBuilder, nsPoint aPt)
{
return NS_STATIC_CAST(nsSVGOuterSVGFrame*, mFrame)->
GetFrameForPoint(aPt - aBuilder->ToReferenceFrame(mFrame));
}
void
nsDisplaySVG::Paint(nsDisplayListBuilder* aBuilder, nsIRenderingContext* aCtx,
const nsRect& aDirtyRect)
{
NS_STATIC_CAST(nsSVGOuterSVGFrame*, mFrame)->
Paint(*aCtx, aDirtyRect, aBuilder->ToReferenceFrame(mFrame));
}
NS_IMETHODIMP
nsSVGOuterSVGFrame::AttributeChanged(PRInt32 aNameSpaceID,
nsIAtom* aAttribute,
PRInt32 aModType)
{
if (aNameSpaceID == kNameSpaceID_None &&
!(GetStateBits() & NS_FRAME_FIRST_REFLOW) &&
(aAttribute == nsGkAtoms::width || aAttribute == nsGkAtoms::height)) {
AddStateBits(NS_FRAME_IS_DIRTY);
GetPresContext()->PresShell()->
FrameNeedsReflow(this, nsIPresShell::eStyleChange);
}
return NS_OK;
}
nsIFrame*
nsSVGOuterSVGFrame::GetFrameForPoint(const nsPoint& aPoint)
{
// XXX This algorithm is really bad. Because we only have a
// singly-linked list we have to test each and every SVG element for
// a hit. What we really want is a double-linked list.
float x = GetPresContext()->AppUnitsToDevPixels(aPoint.x);
float y = GetPresContext()->AppUnitsToDevPixels(aPoint.y);
nsRect thisRect(nsPoint(0,0), GetSize());
if (!thisRect.Contains(aPoint)) {
return nsnull;
}
nsIFrame* hit;
nsSVGUtils::HitTestChildren(this, x, y, &hit);
return hit;
}
//----------------------------------------------------------------------
// painting
NS_IMETHODIMP
nsSVGOuterSVGFrame::BuildDisplayList(nsDisplayListBuilder* aBuilder,
const nsRect& aDirtyRect,
const nsDisplayListSet& aLists)
{
// XXX Not sure why this nsSVGOuterSVGFrame::Paint doesn't paint its
// background or respect CSS visiblity
return aLists.Content()->AppendNewToTop(new (aBuilder) nsDisplaySVG(this));
}
void
nsSVGOuterSVGFrame::Paint(nsIRenderingContext& aRenderingContext,
const nsRect& aDirtyRect, nsPoint aPt)
{
#if defined(DEBUG) && defined(SVG_DEBUG_PRINTING)
{
nsCOMPtr<nsIDeviceContext> dx;
aRenderingContext.GetDeviceContext(*getter_AddRefs(dx));
float zoom,tzoom,scale;
dx->GetZoom(zoom);
dx->GetTextZoom(tzoom);
dx->GetCanonicalPixelScale(scale);
printf("nsSVGOuterSVGFrame(%p)::Paint()[ z=%f tz=%f ps=%f\n",this,zoom,tzoom,scale);
printf("dirtyrect= %d, %d, %d, %d\n", aDirtyRect.x, aDirtyRect.y, aDirtyRect.width, aDirtyRect.height);
nsTransform2D* xform;
aRenderingContext.GetCurrentTransform(xform);
printf("translation=(%f,%f)\n", xform->GetXTranslation(), xform->GetYTranslation());
float sx=1.0f,sy=1.0f;
xform->TransformNoXLate(&sx,&sy);
printf("scale=(%f,%f)\n", sx, sy);
float twipsPerScPx = aPresContext->ScaledPixelsToTwips();
float twipsPerPx = aPresContext->PixelsToTwips();
printf("tw/sc(px)=%f tw/px=%f\n", twipsPerScPx, twipsPerPx);
int fontsc;
GetPresContext()->GetFontScaler(&fontsc);
printf("font scale=%d\n",fontsc);
printf("]\n");
}
#endif
// initialize Mozilla rendering context
aRenderingContext.PushState();
nsRect clipRect;
clipRect.IntersectRect(aDirtyRect, nsRect(aPt, GetSize()));
aRenderingContext.SetClipRect(clipRect, nsClipCombine_kIntersect);
aRenderingContext.Translate(aPt.x, aPt.y);
nsRect dirtyRect = clipRect - aPt;
#if defined(DEBUG) && defined(SVG_DEBUG_PAINT_TIMING)
PRTime start = PR_Now();
#endif
dirtyRect.ScaleRoundOut(1.0f / GetPresContext()->AppUnitsPerDevPixel());
nsSVGRenderState ctx(&aRenderingContext);
// nquartz fallback paths, which svg tends to trigger, need
// a non-window context target
#ifdef XP_MACOSX
ctx.GetGfxContext()->PushGroup(gfxASurface::CONTENT_COLOR_ALPHA);
#endif
// paint children:
2003-07-08 11:00:00 +00:00
for (nsIFrame* kid = mFrames.FirstChild(); kid;
kid = kid->GetNextSibling()) {
nsSVGUtils::PaintChildWithEffects(&ctx, &dirtyRect, kid);
}
// show the surface we pushed earlier for nquartz fallbacks
#ifdef XP_MACOSX
ctx.GetGfxContext()->PopGroupToSource();
ctx.GetGfxContext()->Paint();
#endif
#if defined(DEBUG) && defined(SVG_DEBUG_PAINT_TIMING)
PRTime end = PR_Now();
printf("SVG Paint Timing: %f ms\n", (end-start)/1000.0);
#endif
aRenderingContext.PopState();
}
nsIAtom *
nsSVGOuterSVGFrame::GetType() const
{
return nsGkAtoms::svgOuterSVGFrame;
}
//----------------------------------------------------------------------
// nsSVGOuterSVGFrame methods:
2006-06-15 19:45:26 +00:00
nsresult
nsSVGOuterSVGFrame::InvalidateRect(nsRect aRect)
{
aRect.ScaleRoundOut(GetPresContext()->AppUnitsPerDevPixel());
Invalidate(aRect);
return NS_OK;
}
2006-06-15 19:45:26 +00:00
nsresult
nsSVGOuterSVGFrame::IsRedrawSuspended(PRBool* isSuspended)
{
*isSuspended = (mRedrawSuspendCount>0) || !mViewportInitialized;
return NS_OK;
}
//----------------------------------------------------------------------
// nsISVGSVGFrame methods:
NS_IMETHODIMP
nsSVGOuterSVGFrame::SuspendRedraw()
{
#ifdef DEBUG
//printf("suspend redraw (count=%d)\n", mRedrawSuspendCount);
#endif
if (++mRedrawSuspendCount != 1)
return NS_OK;
2003-07-08 11:00:00 +00:00
for (nsIFrame* kid = mFrames.FirstChild(); kid;
kid = kid->GetNextSibling()) {
nsISVGChildFrame* SVGFrame=nsnull;
CallQueryInterface(kid, &SVGFrame);
if (SVGFrame) {
SVGFrame->NotifyRedrawSuspended();
}
}
return NS_OK;
}
NS_IMETHODIMP
nsSVGOuterSVGFrame::UnsuspendRedraw()
{
#ifdef DEBUG
// printf("unsuspend redraw (count=%d)\n", mRedrawSuspendCount);
#endif
if (--mRedrawSuspendCount > 0)
return NS_OK;
NS_ASSERTION(mRedrawSuspendCount >=0, "unbalanced suspend count!");
// If we need to reflow, do so before we update any of our
// children. Reflows are likely to affect the display of children:
if (mNeedsReflow)
InitiateReflow();
2003-07-08 11:00:00 +00:00
for (nsIFrame* kid = mFrames.FirstChild(); kid;
kid = kid->GetNextSibling()) {
nsISVGChildFrame* SVGFrame=nsnull;
CallQueryInterface(kid, &SVGFrame);
if (SVGFrame) {
SVGFrame->NotifyRedrawUnsuspended();
}
}
return NS_OK;
}
NS_IMETHODIMP
nsSVGOuterSVGFrame::NotifyViewportChange()
{
// no point in doing anything when were not init'ed yet:
if (!mViewportInitialized) return NS_OK;
// make sure canvas transform matrix gets (lazily) recalculated:
mCanvasTM = nsnull;
// inform children
SuspendRedraw();
nsIFrame* kid = mFrames.FirstChild();
while (kid) {
nsISVGChildFrame* SVGFrame = nsnull;
CallQueryInterface(kid, &SVGFrame);
if (SVGFrame)
SVGFrame->NotifyCanvasTMChanged(PR_FALSE);
kid = kid->GetNextSibling();
}
UnsuspendRedraw();
return NS_OK;
}
//----------------------------------------------------------------------
// nsSVGContainerFrame methods:
already_AddRefed<nsIDOMSVGMatrix>
nsSVGOuterSVGFrame::GetCanvasTM()
{
if (!mCanvasTM) {
nsSVGSVGElement *svgElement = NS_STATIC_CAST(nsSVGSVGElement*, mContent);
svgElement->GetViewboxToViewportTransform(getter_AddRefs(mCanvasTM));
if (mZoomAndPan) {
// our content is the document element so we must premultiply the values
// of it's currentScale and currentTranslate properties
PRUint16 val;
mZoomAndPan->GetIntegerValue(val);
if (val == nsIDOMSVGZoomAndPan::SVG_ZOOMANDPAN_MAGNIFY) {
nsCOMPtr<nsIDOMSVGMatrix> zoomPanMatrix;
nsCOMPtr<nsIDOMSVGMatrix> temp;
float scale, x, y;
mCurrentScale->GetValue(&scale);
mCurrentTranslate->GetX(&x);
mCurrentTranslate->GetY(&y);
svgElement->CreateSVGMatrix(getter_AddRefs(zoomPanMatrix));
zoomPanMatrix->Translate(x, y, getter_AddRefs(temp));
temp->Scale(scale, getter_AddRefs(zoomPanMatrix));
zoomPanMatrix->Multiply(mCanvasTM, getter_AddRefs(temp));
temp.swap(mCanvasTM);
}
}
}
nsIDOMSVGMatrix* retval = mCanvasTM.get();
NS_IF_ADDREF(retval);
return retval;
}
//----------------------------------------------------------------------
// Implementation helpers
void nsSVGOuterSVGFrame::InitiateReflow()
{
mNeedsReflow = PR_FALSE;
nsIPresShell* presShell = GetPresContext()->PresShell();
presShell->FrameNeedsReflow(this, nsIPresShell::eStyleChange);
// XXXbz why is this synchronously flushing reflows, exactly? If it
// needs to, why is it not using the presshell's reflow batching
// instead of hacking its own?
presShell->FlushPendingNotifications(Flush_OnlyReflow);
}
void
nsSVGOuterSVGFrame::CalculateAvailableSpace(nsRect *maxRect,
nsRect *preferredRect,
nsPresContext* aPresContext,
const nsHTMLReflowState& aReflowState)
{
*preferredRect = aPresContext->GetVisibleArea();
// XXXldb What about margin?
if (aReflowState.availableWidth != NS_INTRINSICSIZE)
maxRect->width = aReflowState.availableWidth;
else if (aReflowState.parentReflowState &&
aReflowState.parentReflowState->ComputedWidth() != NS_INTRINSICSIZE)
maxRect->width = aReflowState.parentReflowState->ComputedWidth();
else
maxRect->width = NS_MAXSIZE;
if (aReflowState.availableHeight != NS_INTRINSICSIZE)
maxRect->height = aReflowState.availableHeight;
else if (aReflowState.parentReflowState &&
aReflowState.parentReflowState->mComputedHeight != NS_INTRINSICSIZE)
maxRect->height = aReflowState.parentReflowState->mComputedHeight;
else
maxRect->height = NS_MAXSIZE;
if (preferredRect->width > maxRect->width)
preferredRect->width = maxRect->width;
if (preferredRect->height > maxRect->height)
preferredRect->height = maxRect->height;
}