2007-03-22 10:30:00 -07:00
|
|
|
/* -*- 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 mozilla.org code.
|
|
|
|
*
|
|
|
|
* The Initial Developer of the Original Code is
|
|
|
|
* Netscape Communications Corporation.
|
|
|
|
* Portions created by the Initial Developer are Copyright (C) 1998
|
|
|
|
* the Initial Developer. All Rights Reserved.
|
|
|
|
*
|
|
|
|
* Contributor(s):
|
|
|
|
*
|
|
|
|
* 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 ***** */
|
|
|
|
|
|
|
|
/*
|
|
|
|
* rendering object that is the root of the frame tree, which contains
|
|
|
|
* the document's scrollbars and contains fixed-positioned elements
|
|
|
|
*/
|
|
|
|
|
|
|
|
#include "nsCOMPtr.h"
|
|
|
|
#include "nsViewportFrame.h"
|
|
|
|
#include "nsHTMLParts.h"
|
|
|
|
#include "nsGkAtoms.h"
|
|
|
|
#include "nsIScrollableFrame.h"
|
|
|
|
#include "nsDisplayList.h"
|
2010-08-08 11:49:06 -07:00
|
|
|
#include "FrameLayerBuilder.h"
|
|
|
|
|
|
|
|
using namespace mozilla;
|
2007-03-22 10:30:00 -07:00
|
|
|
|
|
|
|
nsIFrame*
|
|
|
|
NS_NewViewportFrame(nsIPresShell* aPresShell, nsStyleContext* aContext)
|
|
|
|
{
|
|
|
|
return new (aPresShell) ViewportFrame(aContext);
|
|
|
|
}
|
|
|
|
|
2009-09-12 09:49:24 -07:00
|
|
|
NS_IMPL_FRAMEARENA_HELPERS(ViewportFrame)
|
|
|
|
|
2007-03-22 10:30:00 -07:00
|
|
|
NS_IMETHODIMP
|
|
|
|
ViewportFrame::Init(nsIContent* aContent,
|
|
|
|
nsIFrame* aParent,
|
|
|
|
nsIFrame* aPrevInFlow)
|
|
|
|
{
|
|
|
|
return Super::Init(aContent, aParent, aPrevInFlow);
|
|
|
|
}
|
|
|
|
|
|
|
|
void
|
2009-12-23 21:21:15 -08:00
|
|
|
ViewportFrame::DestroyFrom(nsIFrame* aDestructRoot)
|
2007-03-22 10:30:00 -07:00
|
|
|
{
|
2009-12-23 21:21:15 -08:00
|
|
|
mFixedContainer.DestroyFrames(this, aDestructRoot);
|
|
|
|
nsContainerFrame::DestroyFrom(aDestructRoot);
|
2007-03-22 10:30:00 -07:00
|
|
|
}
|
|
|
|
|
|
|
|
NS_IMETHODIMP
|
|
|
|
ViewportFrame::SetInitialChildList(nsIAtom* aListName,
|
2009-07-28 05:53:20 -07:00
|
|
|
nsFrameList& aChildList)
|
2007-03-22 10:30:00 -07:00
|
|
|
{
|
|
|
|
nsresult rv = NS_OK;
|
|
|
|
|
|
|
|
// See which child list to add the frames to
|
|
|
|
#ifdef NS_DEBUG
|
|
|
|
nsFrame::VerifyDirtyBitSet(aChildList);
|
|
|
|
#endif
|
2007-08-02 15:44:36 -07:00
|
|
|
if (nsGkAtoms::fixedList == aListName) {
|
2007-03-22 10:30:00 -07:00
|
|
|
rv = mFixedContainer.SetInitialChildList(this, aListName, aChildList);
|
|
|
|
}
|
|
|
|
else {
|
|
|
|
rv = nsContainerFrame::SetInitialChildList(aListName, aChildList);
|
|
|
|
}
|
|
|
|
|
|
|
|
return rv;
|
|
|
|
}
|
|
|
|
|
|
|
|
NS_IMETHODIMP
|
|
|
|
ViewportFrame::BuildDisplayList(nsDisplayListBuilder* aBuilder,
|
|
|
|
const nsRect& aDirtyRect,
|
|
|
|
const nsDisplayListSet& aLists)
|
|
|
|
{
|
|
|
|
// We don't need any special painting or event handling. We just need to
|
|
|
|
// mark our visible out-of-flow frames (i.e., the fixed position frames) so
|
|
|
|
// that display list construction is guaranteed to recurse into their
|
|
|
|
// ancestors.
|
2009-07-28 05:51:09 -07:00
|
|
|
aBuilder->MarkFramesForDisplayList(this, mFixedContainer.GetChildList(),
|
|
|
|
aDirtyRect);
|
2007-03-22 10:30:00 -07:00
|
|
|
|
|
|
|
nsIFrame* kid = mFrames.FirstChild();
|
|
|
|
if (!kid)
|
|
|
|
return NS_OK;
|
|
|
|
|
|
|
|
// make the kid's BorderBackground our own. This ensures that the canvas
|
|
|
|
// frame's background becomes our own background and therefore appears
|
|
|
|
// below negative z-index elements.
|
|
|
|
return BuildDisplayListForChild(aBuilder, kid, aDirtyRect, aLists);
|
|
|
|
}
|
|
|
|
|
|
|
|
NS_IMETHODIMP
|
|
|
|
ViewportFrame::AppendFrames(nsIAtom* aListName,
|
2009-07-30 10:23:32 -07:00
|
|
|
nsFrameList& aFrameList)
|
2007-03-22 10:30:00 -07:00
|
|
|
{
|
|
|
|
nsresult rv = NS_OK;
|
|
|
|
|
2007-08-02 15:44:36 -07:00
|
|
|
if (nsGkAtoms::fixedList == aListName) {
|
2007-03-22 10:30:00 -07:00
|
|
|
rv = mFixedContainer.AppendFrames(this, aListName, aFrameList);
|
|
|
|
}
|
|
|
|
else {
|
2009-05-11 19:04:58 -07:00
|
|
|
NS_ASSERTION(!aListName, "unexpected child list");
|
2009-07-28 05:51:09 -07:00
|
|
|
NS_ASSERTION(GetChildList(nsnull).IsEmpty(), "Shouldn't have any kids!");
|
2009-05-11 19:04:58 -07:00
|
|
|
rv = nsContainerFrame::AppendFrames(aListName, aFrameList);
|
2007-03-22 10:30:00 -07:00
|
|
|
}
|
|
|
|
|
|
|
|
return rv;
|
|
|
|
}
|
|
|
|
|
|
|
|
NS_IMETHODIMP
|
|
|
|
ViewportFrame::InsertFrames(nsIAtom* aListName,
|
|
|
|
nsIFrame* aPrevFrame,
|
2009-07-30 10:23:32 -07:00
|
|
|
nsFrameList& aFrameList)
|
2007-03-22 10:30:00 -07:00
|
|
|
{
|
|
|
|
nsresult rv = NS_OK;
|
|
|
|
|
2007-08-02 15:44:36 -07:00
|
|
|
if (nsGkAtoms::fixedList == aListName) {
|
2007-03-22 10:30:00 -07:00
|
|
|
rv = mFixedContainer.InsertFrames(this, aListName, aPrevFrame, aFrameList);
|
|
|
|
}
|
|
|
|
else {
|
2009-05-11 19:04:58 -07:00
|
|
|
NS_ASSERTION(!aListName, "unexpected child list");
|
2009-07-28 05:51:09 -07:00
|
|
|
NS_ASSERTION(GetChildList(nsnull).IsEmpty(), "Shouldn't have any kids!");
|
2009-05-11 19:04:58 -07:00
|
|
|
rv = nsContainerFrame::InsertFrames(aListName, aPrevFrame, aFrameList);
|
2007-03-22 10:30:00 -07:00
|
|
|
}
|
|
|
|
|
|
|
|
return rv;
|
|
|
|
}
|
|
|
|
|
|
|
|
NS_IMETHODIMP
|
|
|
|
ViewportFrame::RemoveFrame(nsIAtom* aListName,
|
|
|
|
nsIFrame* aOldFrame)
|
|
|
|
{
|
|
|
|
nsresult rv = NS_OK;
|
|
|
|
|
2007-08-02 15:44:36 -07:00
|
|
|
if (nsGkAtoms::fixedList == aListName) {
|
2009-09-18 04:09:36 -07:00
|
|
|
mFixedContainer.RemoveFrame(this, aListName, aOldFrame);
|
|
|
|
rv = NS_OK;
|
2007-03-22 10:30:00 -07:00
|
|
|
}
|
|
|
|
else {
|
2009-05-11 19:04:58 -07:00
|
|
|
NS_ASSERTION(!aListName, "unexpected child list");
|
|
|
|
rv = nsContainerFrame::RemoveFrame(aListName, aOldFrame);
|
2007-03-22 10:30:00 -07:00
|
|
|
}
|
|
|
|
|
|
|
|
return rv;
|
|
|
|
}
|
|
|
|
|
|
|
|
nsIAtom*
|
|
|
|
ViewportFrame::GetAdditionalChildListName(PRInt32 aIndex) const
|
|
|
|
{
|
|
|
|
NS_PRECONDITION(aIndex >= 0, "illegal index");
|
|
|
|
|
|
|
|
if (0 == aIndex) {
|
2007-08-02 15:44:36 -07:00
|
|
|
return nsGkAtoms::fixedList;
|
2007-03-22 10:30:00 -07:00
|
|
|
}
|
|
|
|
|
|
|
|
return nsnull;
|
|
|
|
}
|
|
|
|
|
2009-07-28 05:51:09 -07:00
|
|
|
nsFrameList
|
|
|
|
ViewportFrame::GetChildList(nsIAtom* aListName) const
|
2007-03-22 10:30:00 -07:00
|
|
|
{
|
2008-09-08 01:13:17 -07:00
|
|
|
if (nsGkAtoms::fixedList == aListName)
|
2009-07-28 05:51:09 -07:00
|
|
|
return mFixedContainer.GetChildList();
|
2007-03-22 10:30:00 -07:00
|
|
|
|
2009-07-28 05:51:09 -07:00
|
|
|
return nsContainerFrame::GetChildList(aListName);
|
2007-03-22 10:30:00 -07:00
|
|
|
}
|
|
|
|
|
|
|
|
/* virtual */ nscoord
|
|
|
|
ViewportFrame::GetMinWidth(nsIRenderingContext *aRenderingContext)
|
|
|
|
{
|
|
|
|
nscoord result;
|
|
|
|
DISPLAY_MIN_WIDTH(this, result);
|
|
|
|
if (mFrames.IsEmpty())
|
|
|
|
result = 0;
|
|
|
|
else
|
|
|
|
result = mFrames.FirstChild()->GetMinWidth(aRenderingContext);
|
|
|
|
|
|
|
|
// XXXldb Deal with mFixedContainer (matters for SizeToContent)!
|
|
|
|
|
|
|
|
return result;
|
|
|
|
}
|
|
|
|
|
|
|
|
/* virtual */ nscoord
|
|
|
|
ViewportFrame::GetPrefWidth(nsIRenderingContext *aRenderingContext)
|
|
|
|
{
|
|
|
|
nscoord result;
|
|
|
|
DISPLAY_PREF_WIDTH(this, result);
|
|
|
|
if (mFrames.IsEmpty())
|
|
|
|
result = 0;
|
|
|
|
else
|
|
|
|
result = mFrames.FirstChild()->GetPrefWidth(aRenderingContext);
|
|
|
|
|
|
|
|
// XXXldb Deal with mFixedContainer (matters for SizeToContent)!
|
|
|
|
|
|
|
|
return result;
|
|
|
|
}
|
|
|
|
|
|
|
|
nsPoint
|
2008-10-29 17:41:56 -07:00
|
|
|
ViewportFrame::AdjustReflowStateForScrollbars(nsHTMLReflowState* aReflowState) const
|
2007-03-22 10:30:00 -07:00
|
|
|
{
|
|
|
|
// Calculate how much room is available for fixed frames. That means
|
|
|
|
// determining if the viewport is scrollable and whether the vertical and/or
|
|
|
|
// horizontal scrollbars are visible
|
|
|
|
|
|
|
|
// Get our prinicpal child frame and see if we're scrollable
|
|
|
|
nsIFrame* kidFrame = mFrames.FirstChild();
|
2009-01-12 11:20:59 -08:00
|
|
|
nsIScrollableFrame *scrollingFrame = do_QueryFrame(kidFrame);
|
2007-03-22 10:30:00 -07:00
|
|
|
|
|
|
|
if (scrollingFrame) {
|
|
|
|
nsMargin scrollbars = scrollingFrame->GetActualScrollbarSizes();
|
|
|
|
aReflowState->SetComputedWidth(aReflowState->ComputedWidth() -
|
2007-08-02 11:08:05 -07:00
|
|
|
scrollbars.LeftRight());
|
|
|
|
aReflowState->availableWidth -= scrollbars.LeftRight();
|
2009-01-29 12:39:22 -08:00
|
|
|
aReflowState->SetComputedHeightWithoutResettingResizeFlags(
|
|
|
|
aReflowState->ComputedHeight() - scrollbars.TopBottom());
|
2007-03-22 10:30:00 -07:00
|
|
|
return nsPoint(scrollbars.left, scrollbars.top);
|
|
|
|
}
|
|
|
|
return nsPoint(0, 0);
|
|
|
|
}
|
|
|
|
|
|
|
|
NS_IMETHODIMP
|
2008-10-29 17:41:56 -07:00
|
|
|
ViewportFrame::Reflow(nsPresContext* aPresContext,
|
2007-03-22 10:30:00 -07:00
|
|
|
nsHTMLReflowMetrics& aDesiredSize,
|
|
|
|
const nsHTMLReflowState& aReflowState,
|
|
|
|
nsReflowStatus& aStatus)
|
|
|
|
{
|
|
|
|
DO_GLOBAL_REFLOW_COUNT("ViewportFrame");
|
|
|
|
DISPLAY_REFLOW(aPresContext, this, aReflowState, aDesiredSize, aStatus);
|
|
|
|
NS_FRAME_TRACE_REFLOW_IN("ViewportFrame::Reflow");
|
|
|
|
|
|
|
|
// Initialize OUT parameters
|
|
|
|
aStatus = NS_FRAME_COMPLETE;
|
|
|
|
|
|
|
|
// Because |Reflow| sets mComputedHeight on the child to
|
|
|
|
// availableHeight.
|
|
|
|
AddStateBits(NS_FRAME_CONTAINS_RELATIVE_HEIGHT);
|
2010-08-05 14:59:36 -07:00
|
|
|
|
|
|
|
// Set our size up front, since some parts of reflow depend on it
|
|
|
|
// being already set. Note that the computed height may be
|
|
|
|
// unconstrained; that's ok. Consumers should watch out for that.
|
|
|
|
SetSize(nsSize(aReflowState.ComputedWidth(), aReflowState.ComputedHeight()));
|
|
|
|
|
2007-03-22 10:30:00 -07:00
|
|
|
// Reflow the main content first so that the placeholders of the
|
|
|
|
// fixed-position frames will be in the right places on an initial
|
|
|
|
// reflow.
|
2008-03-12 15:04:45 -07:00
|
|
|
nscoord kidHeight = 0;
|
2007-03-22 10:30:00 -07:00
|
|
|
|
|
|
|
nsresult rv = NS_OK;
|
|
|
|
|
|
|
|
if (mFrames.NotEmpty()) {
|
|
|
|
// Deal with a non-incremental reflow or an incremental reflow
|
|
|
|
// targeted at our one-and-only principal child frame.
|
|
|
|
if (aReflowState.ShouldReflowAllKids() ||
|
|
|
|
aReflowState.mFlags.mVResize ||
|
2007-05-06 12:16:51 -07:00
|
|
|
NS_SUBTREE_DIRTY(mFrames.FirstChild())) {
|
2007-03-22 10:30:00 -07:00
|
|
|
// Reflow our one-and-only principal child frame
|
|
|
|
nsIFrame* kidFrame = mFrames.FirstChild();
|
|
|
|
nsHTMLReflowMetrics kidDesiredSize;
|
|
|
|
nsSize availableSpace(aReflowState.availableWidth,
|
|
|
|
aReflowState.availableHeight);
|
|
|
|
nsHTMLReflowState kidReflowState(aPresContext, aReflowState,
|
|
|
|
kidFrame, availableSpace);
|
|
|
|
|
|
|
|
// Reflow the frame
|
2009-01-29 12:39:22 -08:00
|
|
|
kidReflowState.SetComputedHeight(aReflowState.ComputedHeight());
|
2007-03-22 10:30:00 -07:00
|
|
|
rv = ReflowChild(kidFrame, aPresContext, kidDesiredSize, kidReflowState,
|
|
|
|
0, 0, 0, aStatus);
|
2008-03-12 15:04:45 -07:00
|
|
|
kidHeight = kidDesiredSize.height;
|
2007-03-22 10:30:00 -07:00
|
|
|
|
|
|
|
FinishReflowChild(kidFrame, aPresContext, nsnull, kidDesiredSize, 0, 0, 0);
|
2008-03-12 15:04:45 -07:00
|
|
|
} else {
|
|
|
|
kidHeight = mFrames.FirstChild()->GetSize().height;
|
2007-03-22 10:30:00 -07:00
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
NS_ASSERTION(aReflowState.availableWidth != NS_UNCONSTRAINEDSIZE,
|
|
|
|
"shouldn't happen anymore");
|
|
|
|
|
|
|
|
// Return the max size as our desired size
|
|
|
|
aDesiredSize.width = aReflowState.availableWidth;
|
|
|
|
// Being flowed initially at an unconstrained height means we should
|
|
|
|
// return our child's intrinsic size.
|
2009-01-29 12:39:22 -08:00
|
|
|
aDesiredSize.height = aReflowState.ComputedHeight() != NS_UNCONSTRAINEDSIZE
|
|
|
|
? aReflowState.ComputedHeight()
|
2008-03-12 15:04:45 -07:00
|
|
|
: kidHeight;
|
2007-03-22 10:30:00 -07:00
|
|
|
|
|
|
|
// Make a copy of the reflow state and change the computed width and height
|
|
|
|
// to reflect the available space for the fixed items
|
|
|
|
nsHTMLReflowState reflowState(aReflowState);
|
|
|
|
nsPoint offset = AdjustReflowStateForScrollbars(&reflowState);
|
|
|
|
|
|
|
|
#ifdef DEBUG
|
2009-07-28 05:51:09 -07:00
|
|
|
NS_ASSERTION(mFixedContainer.GetChildList().IsEmpty() ||
|
|
|
|
(offset.x == 0 && offset.y == 0),
|
2007-03-22 10:30:00 -07:00
|
|
|
"We don't handle correct positioning of fixed frames with "
|
|
|
|
"scrollbars in odd positions");
|
|
|
|
#endif
|
|
|
|
|
|
|
|
// Just reflow all the fixed-pos frames.
|
2007-10-01 22:57:45 -07:00
|
|
|
rv = mFixedContainer.Reflow(this, aPresContext, reflowState, aStatus,
|
2007-07-25 21:03:29 -07:00
|
|
|
reflowState.ComputedWidth(),
|
2007-08-02 11:08:05 -07:00
|
|
|
reflowState.ComputedHeight(),
|
2010-10-06 21:25:45 -07:00
|
|
|
PR_FALSE, PR_TRUE, PR_TRUE, // XXX could be optimized
|
|
|
|
nsnull /* ignore overflow */);
|
2007-03-22 10:30:00 -07:00
|
|
|
|
|
|
|
// If we were dirty then do a repaint
|
|
|
|
if (GetStateBits() & NS_FRAME_IS_DIRTY) {
|
|
|
|
nsRect damageRect(0, 0, aDesiredSize.width, aDesiredSize.height);
|
2008-09-18 02:47:21 -07:00
|
|
|
Invalidate(damageRect);
|
2007-03-22 10:30:00 -07:00
|
|
|
}
|
|
|
|
|
|
|
|
// XXX Should we do something to clip our children to this?
|
2010-10-06 21:25:46 -07:00
|
|
|
aDesiredSize.SetOverflowAreasToDesiredBounds();
|
2007-03-22 10:30:00 -07:00
|
|
|
|
|
|
|
NS_FRAME_TRACE_REFLOW_OUT("ViewportFrame::Reflow", aStatus);
|
|
|
|
NS_FRAME_SET_TRUNCATION(aStatus, aReflowState, aDesiredSize);
|
|
|
|
return rv;
|
|
|
|
}
|
|
|
|
|
|
|
|
nsIAtom*
|
|
|
|
ViewportFrame::GetType() const
|
|
|
|
{
|
|
|
|
return nsGkAtoms::viewportFrame;
|
|
|
|
}
|
|
|
|
|
|
|
|
/* virtual */ PRBool
|
|
|
|
ViewportFrame::IsContainingBlock() const
|
|
|
|
{
|
|
|
|
return PR_TRUE;
|
|
|
|
}
|
|
|
|
|
|
|
|
void
|
|
|
|
ViewportFrame::InvalidateInternal(const nsRect& aDamageRect,
|
|
|
|
nscoord aX, nscoord aY, nsIFrame* aForChild,
|
2008-09-18 02:47:21 -07:00
|
|
|
PRUint32 aFlags)
|
2007-03-22 10:30:00 -07:00
|
|
|
{
|
2008-09-18 02:47:21 -07:00
|
|
|
nsRect r = aDamageRect + nsPoint(aX, aY);
|
2010-08-30 22:02:08 -07:00
|
|
|
nsPresContext* presContext = PresContext();
|
|
|
|
presContext->NotifyInvalidation(r, aFlags);
|
2008-09-18 02:47:21 -07:00
|
|
|
|
2010-08-08 11:49:06 -07:00
|
|
|
if ((mState & NS_FRAME_HAS_CONTAINER_LAYER) &&
|
|
|
|
!(aFlags & INVALIDATE_NO_THEBES_LAYERS)) {
|
|
|
|
FrameLayerBuilder::InvalidateThebesLayerContents(this, r);
|
|
|
|
// Don't need to invalidate any more Thebes layers
|
|
|
|
aFlags |= INVALIDATE_NO_THEBES_LAYERS;
|
2010-10-14 18:03:46 -07:00
|
|
|
if (aFlags & INVALIDATE_ONLY_THEBES_LAYERS) {
|
|
|
|
return;
|
|
|
|
}
|
2010-08-08 11:49:06 -07:00
|
|
|
}
|
|
|
|
|
2007-03-22 10:30:00 -07:00
|
|
|
nsIFrame* parent = nsLayoutUtils::GetCrossDocParentFrame(this);
|
|
|
|
if (parent) {
|
2010-08-30 22:02:08 -07:00
|
|
|
if (!presContext->PresShell()->IsActive())
|
|
|
|
return;
|
2010-07-18 19:23:48 -07:00
|
|
|
nsPoint pt = -parent->GetOffsetToCrossDoc(this);
|
2010-08-30 22:02:08 -07:00
|
|
|
PRInt32 ourAPD = presContext->AppUnitsPerDevPixel();
|
2010-07-18 19:23:48 -07:00
|
|
|
PRInt32 parentAPD = parent->PresContext()->AppUnitsPerDevPixel();
|
|
|
|
r = r.ConvertAppUnitsRoundOut(ourAPD, parentAPD);
|
2008-09-18 02:47:21 -07:00
|
|
|
parent->InvalidateInternal(r, pt.x, pt.y, this,
|
|
|
|
aFlags | INVALIDATE_CROSS_DOC);
|
2007-03-22 10:30:00 -07:00
|
|
|
return;
|
|
|
|
}
|
2008-09-18 02:47:21 -07:00
|
|
|
InvalidateRoot(r, aFlags);
|
2007-03-22 10:30:00 -07:00
|
|
|
}
|
|
|
|
|
|
|
|
#ifdef DEBUG
|
|
|
|
NS_IMETHODIMP
|
|
|
|
ViewportFrame::GetFrameName(nsAString& aResult) const
|
|
|
|
{
|
|
|
|
return MakeFrameName(NS_LITERAL_STRING("Viewport"), aResult);
|
|
|
|
}
|
|
|
|
#endif
|