2017-10-27 20:33:53 +03:00
|
|
|
/* -*- Mode: C++; tab-width: 8; indent-tabs-mode: nil; c-basic-offset: 2 -*- */
|
|
|
|
/* vim: set ts=8 sts=2 et sw=2 tw=80: */
|
2012-05-21 15:12:37 +04:00
|
|
|
/* This Source Code Form is subject to the terms of the Mozilla Public
|
|
|
|
* License, v. 2.0. If a copy of the MPL was not distributed with this
|
|
|
|
* file, You can obtain one at http://mozilla.org/MPL/2.0/. */
|
2006-03-29 22:29:03 +04:00
|
|
|
|
|
|
|
/* rendering object that goes directly inside the document's scrollbars */
|
|
|
|
|
2009-10-08 10:18:18 +04:00
|
|
|
#include "nsCanvasFrame.h"
|
2014-10-19 16:22:22 +04:00
|
|
|
|
2017-06-09 22:14:53 +03:00
|
|
|
#include "gfxContext.h"
|
2014-10-19 16:22:22 +04:00
|
|
|
#include "gfxUtils.h"
|
2011-12-28 00:18:48 +04:00
|
|
|
#include "nsContainerFrame.h"
|
2018-08-01 23:58:02 +03:00
|
|
|
#include "nsContentCreatorFunctions.h"
|
1998-09-26 03:39:06 +04:00
|
|
|
#include "nsCSSRendering.h"
|
2004-08-01 03:15:21 +04:00
|
|
|
#include "nsPresContext.h"
|
2018-06-05 04:02:32 +03:00
|
|
|
#include "nsPopupSetFrame.h"
|
2007-01-30 03:06:41 +03:00
|
|
|
#include "nsGkAtoms.h"
|
2017-03-07 03:11:44 +03:00
|
|
|
#include "nsIFrameInlines.h"
|
2006-01-26 05:29:17 +03:00
|
|
|
#include "nsDisplayList.h"
|
2009-09-18 15:09:35 +04:00
|
|
|
#include "nsCSSFrameConstructor.h"
|
2009-09-03 08:10:13 +04:00
|
|
|
#include "nsFrameManager.h"
|
2013-08-27 06:08:05 +04:00
|
|
|
#include "gfxPlatform.h"
|
2014-06-04 00:21:39 +04:00
|
|
|
#include "nsPrintfCString.h"
|
2018-09-01 00:19:44 +03:00
|
|
|
#include "mozilla/AccessibleCaretEventHub.h"
|
2018-03-22 21:20:41 +03:00
|
|
|
#include "mozilla/ComputedStyle.h"
|
2020-02-20 18:55:58 +03:00
|
|
|
#include "mozilla/StaticPrefs_browser.h"
|
2014-10-28 13:15:25 +03:00
|
|
|
#include "mozilla/dom/AnonymousContent.h"
|
2017-05-03 15:48:08 +03:00
|
|
|
#include "mozilla/layers/StackingContextHelper.h"
|
2019-01-08 00:33:10 +03:00
|
|
|
#include "mozilla/layers/RenderRootStateManager.h"
|
2016-11-30 06:14:28 +03:00
|
|
|
#include "mozilla/PresShell.h"
|
2001-05-23 03:52:17 +04:00
|
|
|
// for focus
|
|
|
|
#include "nsIScrollableFrame.h"
|
2013-08-22 22:32:52 +04:00
|
|
|
#ifdef DEBUG_CANVAS_FOCUS
|
2001-05-23 03:52:17 +04:00
|
|
|
# include "nsIDocShell.h"
|
2013-08-22 22:32:52 +04:00
|
|
|
#endif
|
2001-05-23 03:52:17 +04:00
|
|
|
|
|
|
|
//#define DEBUG_CANVAS_FOCUS
|
1998-10-19 04:44:28 +04:00
|
|
|
|
2013-10-02 07:46:04 +04:00
|
|
|
using namespace mozilla;
|
2014-10-28 13:15:25 +03:00
|
|
|
using namespace mozilla::dom;
|
2013-04-01 19:26:02 +04:00
|
|
|
using namespace mozilla::layout;
|
2013-10-02 13:12:34 +04:00
|
|
|
using namespace mozilla::gfx;
|
2016-11-24 08:11:29 +03:00
|
|
|
using namespace mozilla::layers;
|
1998-09-09 02:34:40 +04:00
|
|
|
|
2019-04-16 10:24:49 +03:00
|
|
|
nsCanvasFrame* NS_NewCanvasFrame(PresShell* aPresShell, ComputedStyle* aStyle) {
|
2019-02-05 19:45:54 +03:00
|
|
|
return new (aPresShell) nsCanvasFrame(aStyle, aPresShell->GetPresContext());
|
1998-09-09 02:34:40 +04:00
|
|
|
}
|
|
|
|
|
2009-10-08 10:18:18 +04:00
|
|
|
NS_IMPL_FRAMEARENA_HELPERS(nsCanvasFrame)
|
2009-09-12 20:49:24 +04:00
|
|
|
|
2009-10-08 10:18:18 +04:00
|
|
|
NS_QUERYFRAME_HEAD(nsCanvasFrame)
|
2018-12-07 23:00:18 +03:00
|
|
|
NS_QUERYFRAME_ENTRY(nsCanvasFrame)
|
|
|
|
NS_QUERYFRAME_ENTRY(nsIAnonymousContentCreator)
|
|
|
|
NS_QUERYFRAME_ENTRY(nsIPopupContainer)
|
2011-12-28 00:18:48 +04:00
|
|
|
NS_QUERYFRAME_TAIL_INHERITING(nsContainerFrame)
|
2001-05-23 03:52:17 +04:00
|
|
|
|
2015-01-20 21:20:04 +03:00
|
|
|
void nsCanvasFrame::ShowCustomContentContainer() {
|
|
|
|
if (mCustomContentContainer) {
|
|
|
|
mCustomContentContainer->UnsetAttr(kNameSpaceID_None, nsGkAtoms::hidden,
|
|
|
|
true);
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
void nsCanvasFrame::HideCustomContentContainer() {
|
|
|
|
if (mCustomContentContainer) {
|
|
|
|
mCustomContentContainer->SetAttr(kNameSpaceID_None, nsGkAtoms::hidden,
|
2020-07-01 11:29:29 +03:00
|
|
|
u"true"_ns, true);
|
2015-01-20 21:20:04 +03:00
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2014-06-03 11:08:25 +04:00
|
|
|
nsresult nsCanvasFrame::CreateAnonymousContent(
|
|
|
|
nsTArray<ContentInfo>& aElements) {
|
2018-08-13 12:56:48 +03:00
|
|
|
MOZ_ASSERT(!mCustomContentContainer);
|
|
|
|
|
2014-06-05 00:58:00 +04:00
|
|
|
if (!mContent) {
|
2014-06-03 11:08:25 +04:00
|
|
|
return NS_OK;
|
|
|
|
}
|
|
|
|
|
2019-01-02 16:05:23 +03:00
|
|
|
nsCOMPtr<Document> doc = mContent->OwnerDoc();
|
2018-08-13 12:56:48 +03:00
|
|
|
|
|
|
|
RefPtr<AccessibleCaretEventHub> eventHub =
|
|
|
|
PresShell()->GetAccessibleCaretEventHub();
|
|
|
|
|
2019-03-21 03:28:24 +03:00
|
|
|
// This will go through InsertAnonymousContent and such, and we don't really
|
|
|
|
// want it to end up inserting into our content container.
|
|
|
|
//
|
|
|
|
// FIXME(emilio): The fact that this enters into InsertAnonymousContent is a
|
|
|
|
// bit nasty, can we avoid it, maybe doing this off a scriptrunner?
|
2018-08-13 12:56:48 +03:00
|
|
|
if (eventHub) {
|
2019-03-21 03:28:24 +03:00
|
|
|
eventHub->Init();
|
2018-08-13 12:56:48 +03:00
|
|
|
}
|
2014-06-03 11:08:25 +04:00
|
|
|
|
2014-10-28 13:15:25 +03:00
|
|
|
// Create the custom content container.
|
|
|
|
mCustomContentContainer = doc->CreateHTMLElement(nsGkAtoms::div);
|
2015-07-23 18:51:09 +03:00
|
|
|
#ifdef DEBUG
|
|
|
|
// We restyle our mCustomContentContainer, even though it's root anonymous
|
|
|
|
// content. Normally that's not OK because the frame constructor doesn't know
|
|
|
|
// how to order the frame tree in such cases, but we make this work for this
|
|
|
|
// particular case, so it's OK.
|
|
|
|
mCustomContentContainer->SetProperty(nsGkAtoms::restylableAnonymousNode,
|
|
|
|
reinterpret_cast<void*>(true));
|
|
|
|
#endif // DEBUG
|
|
|
|
|
Bug 1440258: Flag doc level anonymous content instead of guessing. r=bholley
Poking at the frame tree has problems: If we poke in negative (using
eSkipNativeAnonymousContent), as we were doing, we mess up the case where we're
actually _not_ doc-level, and _not_ ::before or ::after. This can't happen for
content documents, but can happen for chrome (since nsDocElementBoxFrame
implements nsIAnonymousContentCreator).
If we poke in positive, as we used to, you get that right, but mess up the
root scrollbar case.
Instead, use a node property to mark doc level anon content. This is a case rare
enough that it seems worth to not steal a node bit.
To recap the failure:
* The initial value of -moz-control-character-visiblity is different on beta
and nightly.
* XUL has a global rule setting -moz-control-character-visibility on the root,
to a value so that it's the initial one on nightly, but the non-initial one
on beta.
* Changes to this property cause a reframe.
* Reframes of a nsIAnonymousContentCreator anon content reframe the container.
* We were failing to inherit correctly for the nsIAnonymousContentCreator
content for the root XUL element on the initial styling, inheriting from the
default computed values instead, since we failed to reach the root element's
primary frame from GetFlattenedTreeParentForDocumentElementNAC ->
AppendDocumentLevelNativeAnonymousContentTo, since the primary frame is set
_after_ processing children.
This seems somewhat risky to change, and inconsistent with any other stuff
the frame constructor does, see bug 973390.
* Given that, the next restyle of the root element, in this case caused due to
the customizable UI, we _found_ the actual correct parent, recomputed the
style, saw that -moz-control-character-visiblity had changed, and reframed.
But we were reframing the whole window, not just the NAC, because of the
fourth bullet point. Reframing the whole window caused us to lose the popup
state (that's bug 1440506).
Worse than that is the fact that given we reframe and reconstruct the
anonymous countent again, we go back to the initial bogus state, just
awaiting for the next restyle to reframe the whole window.
I wish there was a bullet-proof way to test it that isn't just counting reframes
and relying on which properties reframe or not, but due to the nature of
nsIAnonymousContentCreator's NAC, it's not possible in any easy way I can think
of.
MozReview-Commit-ID: IPYB5trsN8R
2018-02-23 04:30:00 +03:00
|
|
|
mCustomContentContainer->SetProperty(
|
|
|
|
nsGkAtoms::docLevelNativeAnonymousContent, reinterpret_cast<void*>(true));
|
|
|
|
|
2018-08-13 12:56:48 +03:00
|
|
|
// This will usually be done by the caller, but in this case we do it here,
|
|
|
|
// since we reuse the document's AnoymousContent list, and those survive
|
|
|
|
// across reframes and thus may already be flagged as being in an anonymous
|
|
|
|
// subtree. We don't really want to have this semi-broken state where
|
|
|
|
// anonymous nodes have a non-anonymous.
|
|
|
|
mCustomContentContainer->SetIsNativeAnonymousRoot();
|
|
|
|
|
2014-10-28 13:15:25 +03:00
|
|
|
aElements.AppendElement(mCustomContentContainer);
|
|
|
|
|
2018-01-08 23:00:33 +03:00
|
|
|
// Do not create an accessible object for the container.
|
|
|
|
mCustomContentContainer->SetAttr(kNameSpaceID_None, nsGkAtoms::role,
|
2020-07-01 11:29:29 +03:00
|
|
|
u"presentation"_ns, false);
|
2018-01-08 23:00:33 +03:00
|
|
|
|
2020-07-01 11:29:29 +03:00
|
|
|
mCustomContentContainer->SetAttr(kNameSpaceID_None, nsGkAtoms::_class,
|
|
|
|
u"moz-custom-content-container"_ns, false);
|
2014-10-28 13:15:25 +03:00
|
|
|
|
2015-01-20 21:20:04 +03:00
|
|
|
// Only create a frame for mCustomContentContainer if it has some children.
|
2018-08-13 12:56:48 +03:00
|
|
|
if (doc->GetAnonymousContents().IsEmpty()) {
|
2015-01-20 21:20:04 +03:00
|
|
|
HideCustomContentContainer();
|
|
|
|
}
|
|
|
|
|
2018-08-13 12:56:48 +03:00
|
|
|
for (RefPtr<AnonymousContent>& anonContent : doc->GetAnonymousContents()) {
|
|
|
|
if (nsCOMPtr<nsINode> parent = anonContent->ContentNode().GetParentNode()) {
|
|
|
|
// Parent had better be an old custom content container already removed
|
|
|
|
// from a reframe. Forget about it since we're about to get inserted in a
|
|
|
|
// new one.
|
|
|
|
//
|
|
|
|
// TODO(emilio): Maybe we should extend PostDestroyData and do this stuff
|
|
|
|
// there instead, or something...
|
|
|
|
MOZ_ASSERT(parent != mCustomContentContainer);
|
|
|
|
MOZ_ASSERT(parent->IsElement());
|
|
|
|
MOZ_ASSERT(parent->AsElement()->IsRootOfNativeAnonymousSubtree());
|
|
|
|
MOZ_ASSERT(!parent->IsInComposedDoc());
|
|
|
|
MOZ_ASSERT(!parent->GetParentNode());
|
|
|
|
|
|
|
|
parent->RemoveChildNode(&anonContent->ContentNode(), false);
|
|
|
|
}
|
|
|
|
|
|
|
|
mCustomContentContainer->AppendChildTo(&anonContent->ContentNode(), false);
|
2015-11-16 13:16:43 +03:00
|
|
|
}
|
|
|
|
|
2020-04-30 00:52:51 +03:00
|
|
|
// Create a popupgroup element for system privileged non-XUL documents to
|
|
|
|
// support context menus and tooltips.
|
|
|
|
if (XRE_IsParentProcess() && doc->NodePrincipal()->IsSystemPrincipal()) {
|
2018-06-05 04:02:32 +03:00
|
|
|
nsNodeInfoManager* nodeInfoManager = doc->NodeInfoManager();
|
|
|
|
RefPtr<NodeInfo> nodeInfo =
|
|
|
|
nodeInfoManager->GetNodeInfo(nsGkAtoms::popupgroup, nullptr,
|
|
|
|
kNameSpaceID_XUL, nsINode::ELEMENT_NODE);
|
|
|
|
|
2018-08-13 12:56:48 +03:00
|
|
|
nsresult rv = NS_NewXULElement(getter_AddRefs(mPopupgroupContent),
|
|
|
|
nodeInfo.forget(), dom::NOT_FROM_PARSER);
|
2018-06-05 04:02:32 +03:00
|
|
|
NS_ENSURE_SUCCESS(rv, rv);
|
|
|
|
|
2019-12-12 01:27:07 +03:00
|
|
|
mPopupgroupContent->SetProperty(nsGkAtoms::docLevelNativeAnonymousContent,
|
|
|
|
reinterpret_cast<void*>(true));
|
|
|
|
|
2018-06-05 04:02:32 +03:00
|
|
|
aElements.AppendElement(mPopupgroupContent);
|
2018-07-04 00:20:43 +03:00
|
|
|
|
|
|
|
nodeInfo = nodeInfoManager->GetNodeInfo(
|
|
|
|
nsGkAtoms::tooltip, nullptr, kNameSpaceID_XUL, nsINode::ELEMENT_NODE);
|
|
|
|
|
|
|
|
rv = NS_NewXULElement(getter_AddRefs(mTooltipContent), nodeInfo.forget(),
|
|
|
|
dom::NOT_FROM_PARSER);
|
|
|
|
NS_ENSURE_SUCCESS(rv, rv);
|
|
|
|
|
2020-07-01 11:29:29 +03:00
|
|
|
mTooltipContent->SetAttr(kNameSpaceID_None, nsGkAtoms::_default, u"true"_ns,
|
|
|
|
false);
|
2020-05-26 19:16:32 +03:00
|
|
|
// Set the page attribute so XULTooltipElement::PostHandleEvent will find
|
|
|
|
// the text for the tooltip from the currently hovered element.
|
2020-07-01 11:29:29 +03:00
|
|
|
mTooltipContent->SetAttr(kNameSpaceID_None, nsGkAtoms::page, u"true"_ns,
|
|
|
|
false);
|
2018-07-04 00:20:43 +03:00
|
|
|
|
2019-12-12 01:27:07 +03:00
|
|
|
mTooltipContent->SetProperty(nsGkAtoms::docLevelNativeAnonymousContent,
|
|
|
|
reinterpret_cast<void*>(true));
|
|
|
|
|
2018-07-04 00:20:43 +03:00
|
|
|
aElements.AppendElement(mTooltipContent);
|
2018-06-05 04:02:32 +03:00
|
|
|
}
|
|
|
|
|
2019-12-12 01:27:07 +03:00
|
|
|
#ifdef DEBUG
|
|
|
|
for (auto& element : aElements) {
|
|
|
|
MOZ_ASSERT(element.mContent->GetProperty(
|
|
|
|
nsGkAtoms::docLevelNativeAnonymousContent),
|
|
|
|
"NAC from the canvas frame needs to be document-level, otherwise"
|
|
|
|
" it (1) inherits from the document which is unexpected, and (2)"
|
|
|
|
" StyleChildrenIterator won't be able to find it properly");
|
|
|
|
}
|
|
|
|
#endif
|
2014-06-03 11:08:25 +04:00
|
|
|
return NS_OK;
|
|
|
|
}
|
|
|
|
|
2014-07-16 22:41:57 +04:00
|
|
|
void nsCanvasFrame::AppendAnonymousContentTo(nsTArray<nsIContent*>& aElements,
|
|
|
|
uint32_t aFilter) {
|
2017-06-18 12:57:55 +03:00
|
|
|
if (mCustomContentContainer) {
|
|
|
|
aElements.AppendElement(mCustomContentContainer);
|
|
|
|
}
|
2018-06-05 04:02:32 +03:00
|
|
|
if (mPopupgroupContent) {
|
|
|
|
aElements.AppendElement(mPopupgroupContent);
|
|
|
|
}
|
2018-07-04 00:20:43 +03:00
|
|
|
if (mTooltipContent) {
|
|
|
|
aElements.AppendElement(mTooltipContent);
|
|
|
|
}
|
2014-06-03 11:08:25 +04:00
|
|
|
}
|
|
|
|
|
2017-11-07 03:20:33 +03:00
|
|
|
void nsCanvasFrame::DestroyFrom(nsIFrame* aDestructRoot,
|
|
|
|
PostDestroyData& aPostDestroyData) {
|
2009-09-03 08:10:13 +04:00
|
|
|
nsIScrollableFrame* sf =
|
|
|
|
PresContext()->GetPresShell()->GetRootScrollFrameAsScrollable();
|
|
|
|
if (sf) {
|
|
|
|
sf->RemoveScrollPositionListener(this);
|
2002-07-09 08:30:28 +04:00
|
|
|
}
|
2001-05-23 03:52:17 +04:00
|
|
|
|
2017-11-07 03:20:33 +03:00
|
|
|
aPostDestroyData.AddAnonymousContent(mCustomContentContainer.forget());
|
2018-06-05 04:02:32 +03:00
|
|
|
if (mPopupgroupContent) {
|
|
|
|
aPostDestroyData.AddAnonymousContent(mPopupgroupContent.forget());
|
|
|
|
}
|
2018-07-04 00:20:43 +03:00
|
|
|
if (mTooltipContent) {
|
|
|
|
aPostDestroyData.AddAnonymousContent(mTooltipContent.forget());
|
|
|
|
}
|
2014-10-28 13:15:25 +03:00
|
|
|
|
2018-06-05 04:02:32 +03:00
|
|
|
MOZ_ASSERT(!mPopupSetFrame ||
|
|
|
|
nsLayoutUtils::IsProperAncestorFrame(this, mPopupSetFrame),
|
|
|
|
"Someone forgot to clear popup set frame");
|
2017-11-07 03:20:33 +03:00
|
|
|
nsContainerFrame::DestroyFrom(aDestructRoot, aPostDestroyData);
|
2001-05-23 03:52:17 +04:00
|
|
|
}
|
|
|
|
|
2009-09-09 09:40:01 +04:00
|
|
|
void nsCanvasFrame::ScrollPositionWillChange(nscoord aX, nscoord aY) {
|
2001-05-23 03:52:17 +04:00
|
|
|
if (mDoPaintFocus) {
|
2011-10-17 18:59:28 +04:00
|
|
|
mDoPaintFocus = false;
|
2018-03-06 12:25:21 +03:00
|
|
|
PresShell()->GetRootFrame()->InvalidateFrameSubtree();
|
2001-05-23 03:52:17 +04:00
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2005-09-29 17:16:46 +04:00
|
|
|
NS_IMETHODIMP
|
2011-09-29 10:19:26 +04:00
|
|
|
nsCanvasFrame::SetHasFocus(bool aHasFocus) {
|
2005-09-29 17:16:46 +04:00
|
|
|
if (mDoPaintFocus != aHasFocus) {
|
|
|
|
mDoPaintFocus = aHasFocus;
|
2018-03-06 12:25:21 +03:00
|
|
|
PresShell()->GetRootFrame()->InvalidateFrameSubtree();
|
2010-03-05 03:10:41 +03:00
|
|
|
|
|
|
|
if (!mAddedScrollPositionListener) {
|
|
|
|
nsIScrollableFrame* sf =
|
|
|
|
PresContext()->GetPresShell()->GetRootScrollFrameAsScrollable();
|
2010-03-11 08:37:27 +03:00
|
|
|
if (sf) {
|
|
|
|
sf->AddScrollPositionListener(this);
|
2011-10-17 18:59:28 +04:00
|
|
|
mAddedScrollPositionListener = true;
|
2010-03-11 08:37:27 +03:00
|
|
|
}
|
2010-03-05 03:10:41 +03:00
|
|
|
}
|
2005-09-29 17:16:46 +04:00
|
|
|
}
|
|
|
|
return NS_OK;
|
|
|
|
}
|
|
|
|
|
2011-08-25 00:54:30 +04:00
|
|
|
void nsCanvasFrame::SetInitialChildList(ChildListID aListID,
|
2010-03-21 00:54:19 +03:00
|
|
|
nsFrameList& aChildList) {
|
2011-08-25 00:54:30 +04:00
|
|
|
NS_ASSERTION(aListID != kPrincipalList || aChildList.IsEmpty() ||
|
|
|
|
aChildList.OnlyChild(),
|
2008-09-08 12:13:17 +04:00
|
|
|
"Primary child list can have at most one frame in it");
|
2014-05-28 23:36:58 +04:00
|
|
|
nsContainerFrame::SetInitialChildList(aListID, aChildList);
|
2008-09-08 12:13:17 +04:00
|
|
|
}
|
|
|
|
|
2011-08-25 00:54:30 +04:00
|
|
|
void nsCanvasFrame::AppendFrames(ChildListID aListID, nsFrameList& aFrameList) {
|
2017-02-28 20:58:30 +03:00
|
|
|
#ifdef DEBUG
|
2014-05-28 23:36:59 +04:00
|
|
|
MOZ_ASSERT(aListID == kPrincipalList, "unexpected child list");
|
2014-06-03 11:08:25 +04:00
|
|
|
if (!mFrames.IsEmpty()) {
|
|
|
|
for (nsFrameList::Enumerator e(aFrameList); !e.AtEnd(); e.Next()) {
|
2015-12-22 09:14:12 +03:00
|
|
|
// We only allow native anonymous child frames to be in principal child
|
|
|
|
// list in canvas frame.
|
2014-06-03 11:08:25 +04:00
|
|
|
MOZ_ASSERT(e.get()->GetContent()->IsInNativeAnonymousSubtree(),
|
|
|
|
"invalid child list");
|
|
|
|
}
|
|
|
|
}
|
2010-03-21 00:54:19 +03:00
|
|
|
nsFrame::VerifyDirtyBitSet(aFrameList);
|
2017-02-28 20:58:30 +03:00
|
|
|
#endif
|
2014-05-28 23:36:59 +04:00
|
|
|
nsContainerFrame::AppendFrames(aListID, aFrameList);
|
1999-07-27 18:15:42 +04:00
|
|
|
}
|
|
|
|
|
2011-08-25 00:54:30 +04:00
|
|
|
void nsCanvasFrame::InsertFrames(ChildListID aListID, nsIFrame* aPrevFrame,
|
2019-07-18 02:34:45 +03:00
|
|
|
const nsLineList::iterator* aPrevFrameLine,
|
2010-03-21 00:54:19 +03:00
|
|
|
nsFrameList& aFrameList) {
|
1999-07-27 18:15:42 +04:00
|
|
|
// Because we only support a single child frame inserting is the same
|
|
|
|
// as appending
|
2014-05-28 23:36:58 +04:00
|
|
|
MOZ_ASSERT(!aPrevFrame, "unexpected previous sibling frame");
|
|
|
|
AppendFrames(aListID, aFrameList);
|
1999-07-27 18:15:42 +04:00
|
|
|
}
|
|
|
|
|
2017-02-28 20:58:30 +03:00
|
|
|
#ifdef DEBUG
|
2011-08-25 00:54:30 +04:00
|
|
|
void nsCanvasFrame::RemoveFrame(ChildListID aListID, nsIFrame* aOldFrame) {
|
2014-05-28 23:36:59 +04:00
|
|
|
MOZ_ASSERT(aListID == kPrincipalList, "unexpected child list");
|
|
|
|
nsContainerFrame::RemoveFrame(aListID, aOldFrame);
|
1999-07-27 18:15:42 +04:00
|
|
|
}
|
2014-05-28 23:36:59 +04:00
|
|
|
#endif
|
1999-07-27 18:15:42 +04:00
|
|
|
|
2009-10-08 10:18:18 +04:00
|
|
|
nsRect nsCanvasFrame::CanvasArea() const {
|
2010-10-07 08:25:47 +04:00
|
|
|
// Not clear which overflow rect we want here, but it probably doesn't
|
|
|
|
// matter.
|
|
|
|
nsRect result(GetVisualOverflowRect());
|
2006-03-15 19:55:19 +03:00
|
|
|
|
2009-01-12 22:20:59 +03:00
|
|
|
nsIScrollableFrame* scrollableFrame = do_QueryFrame(GetParent());
|
2006-03-15 19:55:19 +03:00
|
|
|
if (scrollableFrame) {
|
2009-09-03 08:26:00 +04:00
|
|
|
nsRect portRect = scrollableFrame->GetScrollPortRect();
|
|
|
|
result.UnionRect(result, nsRect(nsPoint(0, 0), portRect.Size()));
|
2006-03-15 19:55:19 +03:00
|
|
|
}
|
|
|
|
return result;
|
2006-01-26 05:29:17 +03:00
|
|
|
}
|
|
|
|
|
2018-06-05 04:02:32 +03:00
|
|
|
nsPopupSetFrame* nsCanvasFrame::GetPopupSetFrame() { return mPopupSetFrame; }
|
|
|
|
|
|
|
|
void nsCanvasFrame::SetPopupSetFrame(nsPopupSetFrame* aPopupSet) {
|
|
|
|
MOZ_ASSERT(!aPopupSet || !mPopupSetFrame,
|
|
|
|
"Popup set is already defined! Only 1 allowed.");
|
|
|
|
mPopupSetFrame = aPopupSet;
|
|
|
|
}
|
|
|
|
|
|
|
|
Element* nsCanvasFrame::GetDefaultTooltip() { return mTooltipContent; }
|
|
|
|
|
|
|
|
void nsCanvasFrame::SetDefaultTooltip(Element* aTooltip) {
|
2018-07-04 00:20:43 +03:00
|
|
|
MOZ_ASSERT(!aTooltip || aTooltip == mTooltipContent,
|
|
|
|
"Default tooltip should be anonymous content tooltip.");
|
|
|
|
mTooltipContent = aTooltip;
|
2018-06-05 04:02:32 +03:00
|
|
|
}
|
|
|
|
|
2012-12-13 05:15:55 +04:00
|
|
|
void nsDisplayCanvasBackgroundColor::Paint(nsDisplayListBuilder* aBuilder,
|
2017-06-09 22:14:53 +03:00
|
|
|
gfxContext* aCtx) {
|
2012-12-13 05:15:55 +04:00
|
|
|
nsCanvasFrame* frame = static_cast<nsCanvasFrame*>(mFrame);
|
|
|
|
nsPoint offset = ToReferenceFrame();
|
|
|
|
nsRect bgClipRect = frame->CanvasArea() + offset;
|
|
|
|
if (NS_GET_A(mColor) > 0) {
|
2014-10-19 16:22:22 +04:00
|
|
|
DrawTarget* drawTarget = aCtx->GetDrawTarget();
|
|
|
|
int32_t appUnitsPerDevPixel = mFrame->PresContext()->AppUnitsPerDevPixel();
|
2014-10-22 15:29:06 +04:00
|
|
|
Rect devPxRect =
|
|
|
|
NSRectToSnappedRect(bgClipRect, appUnitsPerDevPixel, *drawTarget);
|
2014-10-19 16:22:22 +04:00
|
|
|
drawTarget->FillRect(devPxRect, ColorPattern(ToDeviceColor(mColor)));
|
2012-12-13 05:15:55 +04:00
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2016-11-24 08:11:29 +03:00
|
|
|
already_AddRefed<Layer> nsDisplayCanvasBackgroundColor::BuildLayer(
|
|
|
|
nsDisplayListBuilder* aBuilder, LayerManager* aManager,
|
|
|
|
const ContainerLayerParameters& aContainerParameters) {
|
|
|
|
if (NS_GET_A(mColor) == 0) {
|
|
|
|
return nullptr;
|
|
|
|
}
|
|
|
|
|
|
|
|
RefPtr<ColorLayer> layer = static_cast<ColorLayer*>(
|
|
|
|
aManager->GetLayerBuilder()->GetLeafLayerFor(aBuilder, this));
|
|
|
|
if (!layer) {
|
|
|
|
layer = aManager->CreateColorLayer();
|
|
|
|
if (!layer) {
|
|
|
|
return nullptr;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
layer->SetColor(ToDeviceColor(mColor));
|
|
|
|
|
|
|
|
nsCanvasFrame* frame = static_cast<nsCanvasFrame*>(mFrame);
|
|
|
|
nsPoint offset = ToReferenceFrame();
|
|
|
|
nsRect bgClipRect = frame->CanvasArea() + offset;
|
|
|
|
|
|
|
|
int32_t appUnitsPerDevPixel = mFrame->PresContext()->AppUnitsPerDevPixel();
|
|
|
|
|
|
|
|
layer->SetBounds(bgClipRect.ToNearestPixels(appUnitsPerDevPixel));
|
|
|
|
layer->SetBaseTransform(gfx::Matrix4x4::Translation(
|
|
|
|
aContainerParameters.mOffset.x, aContainerParameters.mOffset.y, 0));
|
|
|
|
|
|
|
|
return layer.forget();
|
|
|
|
}
|
|
|
|
|
2017-03-20 09:41:55 +03:00
|
|
|
bool nsDisplayCanvasBackgroundColor::CreateWebRenderCommands(
|
|
|
|
mozilla::wr::DisplayListBuilder& aBuilder,
|
2017-09-14 19:48:55 +03:00
|
|
|
mozilla::wr::IpcResourceUpdateQueue& aResources,
|
2019-01-08 00:33:10 +03:00
|
|
|
const StackingContextHelper& aSc, RenderRootStateManager* aManager,
|
2017-07-01 03:23:20 +03:00
|
|
|
nsDisplayListBuilder* aDisplayListBuilder) {
|
2017-10-03 23:31:07 +03:00
|
|
|
ContainerLayerParameters parameter;
|
2017-07-01 03:23:20 +03:00
|
|
|
|
|
|
|
nsCanvasFrame* frame = static_cast<nsCanvasFrame*>(mFrame);
|
2017-03-20 09:41:55 +03:00
|
|
|
nsPoint offset = ToReferenceFrame();
|
|
|
|
nsRect bgClipRect = frame->CanvasArea() + offset;
|
|
|
|
int32_t appUnitsPerDevPixel = mFrame->PresContext()->AppUnitsPerDevPixel();
|
|
|
|
|
2017-04-27 19:04:13 +03:00
|
|
|
LayoutDeviceRect rect =
|
|
|
|
LayoutDeviceRect::FromAppUnits(bgClipRect, appUnitsPerDevPixel);
|
2017-03-20 09:41:55 +03:00
|
|
|
|
2019-09-14 19:17:04 +03:00
|
|
|
wr::LayoutRect r = wr::ToLayoutRect(rect);
|
|
|
|
aBuilder.PushRect(r, r, !BackfaceIsHidden(),
|
2017-07-19 01:32:46 +03:00
|
|
|
wr::ToColorF(ToDeviceColor(mColor)));
|
2017-07-01 03:23:20 +03:00
|
|
|
return true;
|
2017-03-20 09:41:55 +03:00
|
|
|
}
|
|
|
|
|
2014-11-25 16:45:19 +03:00
|
|
|
void nsDisplayCanvasBackgroundColor::WriteDebugInfo(
|
|
|
|
std::stringstream& aStream) {
|
|
|
|
aStream << " (rgba " << (int)NS_GET_R(mColor) << "," << (int)NS_GET_G(mColor)
|
|
|
|
<< "," << (int)NS_GET_B(mColor) << "," << (int)NS_GET_A(mColor)
|
|
|
|
<< ")";
|
2014-06-04 00:21:39 +04:00
|
|
|
}
|
|
|
|
|
2012-12-13 05:15:55 +04:00
|
|
|
void nsDisplayCanvasBackgroundImage::Paint(nsDisplayListBuilder* aBuilder,
|
2017-06-09 22:14:53 +03:00
|
|
|
gfxContext* aCtx) {
|
2010-07-16 01:07:53 +04:00
|
|
|
nsCanvasFrame* frame = static_cast<nsCanvasFrame*>(mFrame);
|
2010-08-13 14:01:58 +04:00
|
|
|
nsPoint offset = ToReferenceFrame();
|
2010-07-16 01:07:53 +04:00
|
|
|
nsRect bgClipRect = frame->CanvasArea() + offset;
|
2006-03-15 19:55:19 +03:00
|
|
|
|
2018-05-16 06:56:32 +03:00
|
|
|
PaintInternal(aBuilder, aCtx, GetPaintRect(), &bgClipRect);
|
2010-07-16 01:07:53 +04:00
|
|
|
}
|
2006-03-15 19:55:19 +03:00
|
|
|
|
2016-04-22 08:50:11 +03:00
|
|
|
bool nsDisplayCanvasBackgroundImage::IsSingleFixedPositionImage(
|
|
|
|
nsDisplayListBuilder* aBuilder, const nsRect& aClipRect,
|
|
|
|
gfxRect* aDestRect) {
|
|
|
|
if (!mBackgroundStyle) return false;
|
|
|
|
|
2018-04-04 07:17:25 +03:00
|
|
|
if (mBackgroundStyle->StyleBackground()->mImage.mLayers.Length() != 1)
|
2016-04-22 08:50:11 +03:00
|
|
|
return false;
|
|
|
|
|
|
|
|
nsPresContext* presContext = mFrame->PresContext();
|
|
|
|
uint32_t flags = aBuilder->GetBackgroundPaintFlags();
|
|
|
|
nsRect borderArea = nsRect(ToReferenceFrame(), mFrame->GetSize());
|
2018-04-04 07:17:25 +03:00
|
|
|
const nsStyleImageLayers::Layer& layer =
|
|
|
|
mBackgroundStyle->StyleBackground()->mImage.mLayers[mLayer];
|
2016-04-22 08:50:11 +03:00
|
|
|
|
|
|
|
if (layer.mAttachment != StyleImageLayerAttachment::Fixed) return false;
|
|
|
|
|
2018-04-04 07:17:25 +03:00
|
|
|
nsBackgroundLayerState state = nsCSSRendering::PrepareImageLayer(
|
2016-04-22 08:50:11 +03:00
|
|
|
presContext, mFrame, flags, borderArea, aClipRect, layer);
|
|
|
|
|
|
|
|
// We only care about images here, not gradients.
|
|
|
|
if (!mIsRasterImage) return false;
|
|
|
|
|
|
|
|
int32_t appUnitsPerDevPixel = presContext->AppUnitsPerDevPixel();
|
|
|
|
*aDestRect =
|
|
|
|
nsLayoutUtils::RectToGfxRect(state.mFillArea, appUnitsPerDevPixel);
|
|
|
|
|
|
|
|
return true;
|
|
|
|
}
|
|
|
|
|
2013-07-18 10:34:58 +04:00
|
|
|
void nsDisplayCanvasThemedBackground::Paint(nsDisplayListBuilder* aBuilder,
|
2017-06-09 22:14:53 +03:00
|
|
|
gfxContext* aCtx) {
|
2013-07-18 10:34:58 +04:00
|
|
|
nsCanvasFrame* frame = static_cast<nsCanvasFrame*>(mFrame);
|
|
|
|
nsPoint offset = ToReferenceFrame();
|
|
|
|
nsRect bgClipRect = frame->CanvasArea() + offset;
|
|
|
|
|
2018-05-16 06:56:32 +03:00
|
|
|
PaintInternal(aBuilder, aCtx, GetPaintRect(), &bgClipRect);
|
2013-07-18 10:34:58 +04:00
|
|
|
}
|
|
|
|
|
2006-03-15 19:55:19 +03:00
|
|
|
/**
|
|
|
|
* A display item to paint the focus ring for the document.
|
|
|
|
*
|
|
|
|
* The only reason this can't use nsDisplayGeneric is overriding GetBounds.
|
|
|
|
*/
|
2019-05-08 16:49:56 +03:00
|
|
|
class nsDisplayCanvasFocus : public nsPaintedDisplayItem {
|
2006-03-15 19:55:19 +03:00
|
|
|
public:
|
2010-08-13 14:01:13 +04:00
|
|
|
nsDisplayCanvasFocus(nsDisplayListBuilder* aBuilder, nsCanvasFrame* aFrame)
|
2019-05-08 16:49:56 +03:00
|
|
|
: nsPaintedDisplayItem(aBuilder, aFrame) {
|
2010-06-21 20:19:46 +04:00
|
|
|
MOZ_COUNT_CTOR(nsDisplayCanvasFocus);
|
|
|
|
}
|
2020-02-20 14:40:14 +03:00
|
|
|
MOZ_COUNTED_DTOR_OVERRIDE(nsDisplayCanvasFocus)
|
2006-03-15 19:55:19 +03:00
|
|
|
|
2014-02-24 18:41:56 +04:00
|
|
|
virtual nsRect GetBounds(nsDisplayListBuilder* aBuilder,
|
2017-08-24 18:09:44 +03:00
|
|
|
bool* aSnap) const override {
|
2012-04-10 15:24:18 +04:00
|
|
|
*aSnap = false;
|
2006-03-15 19:55:19 +03:00
|
|
|
// This is an overestimate, but that's not a problem.
|
2009-10-08 10:18:18 +04:00
|
|
|
nsCanvasFrame* frame = static_cast<nsCanvasFrame*>(mFrame);
|
2010-08-13 14:01:58 +04:00
|
|
|
return frame->CanvasArea() + ToReferenceFrame();
|
2006-03-15 19:55:19 +03:00
|
|
|
}
|
|
|
|
|
|
|
|
virtual void Paint(nsDisplayListBuilder* aBuilder,
|
2017-06-09 22:14:53 +03:00
|
|
|
gfxContext* aCtx) override {
|
2009-10-08 10:18:18 +04:00
|
|
|
nsCanvasFrame* frame = static_cast<nsCanvasFrame*>(mFrame);
|
2015-12-04 06:16:59 +03:00
|
|
|
frame->PaintFocus(aCtx->GetDrawTarget(), ToReferenceFrame());
|
2006-03-15 19:55:19 +03:00
|
|
|
}
|
|
|
|
|
2010-07-16 01:07:49 +04:00
|
|
|
NS_DISPLAY_DECL_NAME("CanvasFocus", TYPE_CANVAS_FOCUS)
|
2006-03-15 19:55:19 +03:00
|
|
|
};
|
|
|
|
|
2009-10-08 10:18:18 +04:00
|
|
|
void nsCanvasFrame::BuildDisplayList(nsDisplayListBuilder* aBuilder,
|
2010-03-21 00:54:19 +03:00
|
|
|
const nsDisplayListSet& aLists) {
|
2008-09-08 12:13:17 +04:00
|
|
|
if (GetPrevInFlow()) {
|
2017-08-07 05:23:35 +03:00
|
|
|
DisplayOverflowContainers(aBuilder, aLists);
|
2008-09-08 12:13:17 +04:00
|
|
|
}
|
|
|
|
|
2006-01-26 05:29:17 +03:00
|
|
|
// Force a background to be shown. We may have a background propagated to us,
|
2013-02-17 01:51:02 +04:00
|
|
|
// in which case StyleBackground wouldn't have the right background
|
2006-01-26 05:29:17 +03:00
|
|
|
// and the code in nsFrame::DisplayBorderBackgroundOutline might not give us
|
|
|
|
// a background.
|
2006-03-15 19:55:19 +03:00
|
|
|
// We don't have any border or outline, and our background draws over
|
|
|
|
// the overflow area, so just add nsDisplayCanvasBackground instead of
|
|
|
|
// calling DisplayBorderBackgroundOutline.
|
2018-12-06 22:40:50 +03:00
|
|
|
if (IsVisibleForPainting()) {
|
2018-04-04 07:17:25 +03:00
|
|
|
ComputedStyle* bg = nullptr;
|
2017-10-04 05:02:45 +03:00
|
|
|
nsIFrame* dependentFrame = nullptr;
|
2012-11-08 08:08:40 +04:00
|
|
|
bool isThemed = IsThemed();
|
2017-10-04 05:02:45 +03:00
|
|
|
if (!isThemed &&
|
|
|
|
nsCSSRendering::FindBackgroundFrame(this, &dependentFrame)) {
|
2018-04-04 07:17:25 +03:00
|
|
|
bg = dependentFrame->Style();
|
2017-10-04 05:02:45 +03:00
|
|
|
if (dependentFrame == this) {
|
|
|
|
dependentFrame = nullptr;
|
|
|
|
}
|
2012-09-13 14:34:23 +04:00
|
|
|
}
|
2020-01-23 16:35:45 +03:00
|
|
|
aLists.BorderBackground()->AppendNewToTop<nsDisplayCanvasBackgroundColor>(
|
|
|
|
aBuilder, this);
|
2017-07-06 15:00:35 +03:00
|
|
|
|
2012-12-14 02:16:14 +04:00
|
|
|
if (isThemed) {
|
2019-04-01 19:53:11 +03:00
|
|
|
aLists.BorderBackground()
|
|
|
|
->AppendNewToTop<nsDisplayCanvasThemedBackground>(aBuilder, this);
|
2013-02-14 15:12:27 +04:00
|
|
|
return;
|
2012-12-14 02:16:14 +04:00
|
|
|
}
|
|
|
|
|
|
|
|
if (!bg) {
|
2013-02-14 15:12:27 +04:00
|
|
|
return;
|
2012-12-14 02:16:14 +04:00
|
|
|
}
|
2012-12-13 05:15:55 +04:00
|
|
|
|
2017-02-01 01:07:35 +03:00
|
|
|
const ActiveScrolledRoot* asr = aBuilder->CurrentActiveScrolledRoot();
|
2016-03-08 22:22:36 +03:00
|
|
|
|
2014-07-16 23:04:00 +04:00
|
|
|
bool needBlendContainer = false;
|
2017-02-01 01:07:35 +03:00
|
|
|
nsDisplayListBuilder::AutoContainerASRTracker contASRTracker(aBuilder);
|
2014-07-16 23:04:00 +04:00
|
|
|
|
2020-02-20 18:55:58 +03:00
|
|
|
// In high-contrast-mode, we suppress background-image on the canvas frame
|
|
|
|
// (even when backplating), because users expect site backgrounds to conform
|
|
|
|
// to their HCM background color when a solid color is rendered, and some
|
|
|
|
// websites use solid-color images instead of an overwritable background
|
|
|
|
// color.
|
|
|
|
const bool suppressBackgroundImage =
|
|
|
|
!PresContext()->PrefSheetPrefs().mUseDocumentColors &&
|
|
|
|
StaticPrefs::
|
|
|
|
browser_display_suppress_canvas_background_image_on_forced_colors();
|
|
|
|
|
2012-09-13 14:34:23 +04:00
|
|
|
// Create separate items for each background layer.
|
2020-01-23 16:35:45 +03:00
|
|
|
const nsStyleImageLayers& layers = bg->StyleBackground()->mImage;
|
2016-01-28 08:24:00 +03:00
|
|
|
NS_FOR_VISIBLE_IMAGE_LAYERS_BACK_TO_FRONT(i, layers) {
|
2020-02-20 18:55:58 +03:00
|
|
|
if (layers.mLayers[i].mImage.IsNone() || suppressBackgroundImage) {
|
2012-12-14 02:16:14 +04:00
|
|
|
continue;
|
|
|
|
}
|
2020-03-15 00:24:11 +03:00
|
|
|
if (layers.mLayers[i].mBlendMode != StyleBlend::Normal) {
|
2014-07-16 23:04:00 +04:00
|
|
|
needBlendContainer = true;
|
|
|
|
}
|
2016-03-08 22:22:36 +03:00
|
|
|
|
2016-08-20 02:36:57 +03:00
|
|
|
nsRect bgRect =
|
|
|
|
GetRectRelativeToSelf() + aBuilder->ToReferenceFrame(this);
|
2017-02-01 01:07:35 +03:00
|
|
|
|
|
|
|
const ActiveScrolledRoot* thisItemASR = asr;
|
2017-11-16 06:09:28 +03:00
|
|
|
nsDisplayList thisItemList;
|
2016-08-20 02:36:57 +03:00
|
|
|
nsDisplayBackgroundImage::InitData bgData =
|
2018-02-12 09:03:09 +03:00
|
|
|
nsDisplayBackgroundImage::GetInitData(aBuilder, this, i, bgRect, bg);
|
2016-08-20 02:36:57 +03:00
|
|
|
|
|
|
|
if (bgData.shouldFixToViewport) {
|
2017-02-01 01:07:35 +03:00
|
|
|
auto* displayData = aBuilder->GetCurrentFixedBackgroundDisplayData();
|
|
|
|
nsDisplayListBuilder::AutoBuildingDisplayList buildingDisplayList(
|
2017-10-04 04:28:38 +03:00
|
|
|
aBuilder, this, aBuilder->GetVisibleRect(),
|
2019-02-18 18:32:10 +03:00
|
|
|
aBuilder->GetDirtyRect());
|
2017-02-01 01:07:35 +03:00
|
|
|
|
|
|
|
DisplayListClipState::AutoSaveRestore clipState(aBuilder);
|
|
|
|
nsDisplayListBuilder::AutoCurrentActiveScrolledRootSetter asrSetter(
|
|
|
|
aBuilder);
|
|
|
|
if (displayData) {
|
2017-08-07 05:23:35 +03:00
|
|
|
nsPoint offset =
|
|
|
|
GetOffsetTo(PresContext()->GetPresShell()->GetRootFrame());
|
2017-10-04 04:28:38 +03:00
|
|
|
aBuilder->SetVisibleRect(displayData->mVisibleRect + offset);
|
2017-08-07 05:23:35 +03:00
|
|
|
aBuilder->SetDirtyRect(displayData->mDirtyRect + offset);
|
|
|
|
|
2017-02-01 01:07:35 +03:00
|
|
|
clipState.SetClipChainForContainingBlockDescendants(
|
|
|
|
displayData->mContainingBlockClipChain);
|
|
|
|
asrSetter.SetCurrentActiveScrolledRoot(
|
|
|
|
displayData->mContainingBlockActiveScrolledRoot);
|
|
|
|
thisItemASR = displayData->mContainingBlockActiveScrolledRoot;
|
|
|
|
}
|
|
|
|
nsDisplayCanvasBackgroundImage* bgItem = nullptr;
|
|
|
|
{
|
|
|
|
DisplayListClipState::AutoSaveRestore bgImageClip(aBuilder);
|
|
|
|
bgImageClip.Clear();
|
2020-05-11 19:59:14 +03:00
|
|
|
bgItem = MakeDisplayItemWithIndex<nsDisplayCanvasBackgroundImage>(
|
|
|
|
aBuilder, this, /* aIndex = */ i, bgData);
|
2019-04-01 19:53:11 +03:00
|
|
|
if (bgItem) {
|
|
|
|
bgItem->SetDependentFrame(aBuilder, dependentFrame);
|
|
|
|
}
|
|
|
|
}
|
|
|
|
if (bgItem) {
|
|
|
|
thisItemList.AppendToTop(
|
2020-05-11 19:56:38 +03:00
|
|
|
nsDisplayFixedPosition::CreateForFixedBackground(
|
|
|
|
aBuilder, this, nullptr, bgItem, i));
|
2017-02-01 01:07:35 +03:00
|
|
|
}
|
|
|
|
|
2016-01-26 03:36:48 +03:00
|
|
|
} else {
|
2018-02-13 03:43:28 +03:00
|
|
|
nsDisplayCanvasBackgroundImage* bgItem =
|
2020-05-11 19:59:14 +03:00
|
|
|
MakeDisplayItemWithIndex<nsDisplayCanvasBackgroundImage>(
|
|
|
|
aBuilder, this, /* aIndex = */ i, bgData);
|
2019-04-01 19:53:11 +03:00
|
|
|
if (bgItem) {
|
|
|
|
bgItem->SetDependentFrame(aBuilder, dependentFrame);
|
|
|
|
thisItemList.AppendToTop(bgItem);
|
|
|
|
}
|
2016-03-08 22:22:36 +03:00
|
|
|
}
|
|
|
|
|
2020-03-15 00:24:11 +03:00
|
|
|
if (layers.mLayers[i].mBlendMode != StyleBlend::Normal) {
|
2017-02-01 01:07:35 +03:00
|
|
|
DisplayListClipState::AutoSaveRestore blendClip(aBuilder);
|
2020-05-11 19:59:01 +03:00
|
|
|
thisItemList.AppendNewToTopWithIndex<nsDisplayBlendMode>(
|
|
|
|
aBuilder, this, i + 1, &thisItemList, layers.mLayers[i].mBlendMode,
|
|
|
|
thisItemASR, true);
|
2016-01-26 03:36:48 +03:00
|
|
|
}
|
2016-03-08 22:22:36 +03:00
|
|
|
aLists.BorderBackground()->AppendToTop(&thisItemList);
|
2012-09-13 14:34:23 +04:00
|
|
|
}
|
2014-07-16 23:04:00 +04:00
|
|
|
|
|
|
|
if (needBlendContainer) {
|
2017-02-01 01:07:35 +03:00
|
|
|
const ActiveScrolledRoot* containerASR = contASRTracker.GetContainerASR();
|
|
|
|
DisplayListClipState::AutoSaveRestore blendContainerClip(aBuilder);
|
2017-12-13 20:23:04 +03:00
|
|
|
aLists.BorderBackground()->AppendToTop(
|
2016-05-10 03:48:59 +03:00
|
|
|
nsDisplayBlendContainer::CreateForBackgroundBlendMode(
|
2020-05-11 19:59:01 +03:00
|
|
|
aBuilder, this, nullptr, aLists.BorderBackground(),
|
|
|
|
containerASR));
|
2014-07-16 23:04:00 +04:00
|
|
|
}
|
2006-03-15 19:55:19 +03:00
|
|
|
}
|
2006-01-26 05:29:17 +03:00
|
|
|
|
2016-01-29 17:42:15 +03:00
|
|
|
for (nsIFrame* kid : PrincipalChildList()) {
|
2006-01-26 05:29:17 +03:00
|
|
|
// Put our child into its own pseudo-stack.
|
2017-08-07 05:23:35 +03:00
|
|
|
BuildDisplayListForChild(aBuilder, kid, aLists);
|
2002-12-11 07:00:18 +03:00
|
|
|
}
|
|
|
|
|
2001-05-23 03:52:17 +04:00
|
|
|
#ifdef DEBUG_CANVAS_FOCUS
|
2006-01-26 05:29:17 +03:00
|
|
|
nsCOMPtr<nsIContent> focusContent;
|
|
|
|
aPresContext->EventStateManager()->GetFocusedContent(
|
|
|
|
getter_AddRefs(focusContent));
|
|
|
|
|
2011-09-29 10:19:26 +04:00
|
|
|
bool hasFocus = false;
|
2006-01-26 05:29:17 +03:00
|
|
|
nsCOMPtr<nsISupports> container;
|
|
|
|
aPresContext->GetContainer(getter_AddRefs(container));
|
|
|
|
nsCOMPtr<nsIDocShell> docShell(do_QueryInterface(container));
|
|
|
|
if (docShell) {
|
|
|
|
docShell->GetHasFocus(&hasFocus);
|
2017-08-07 05:23:35 +03:00
|
|
|
nsRect dirty = aBuilder->GetDirtyRect();
|
2009-10-08 10:18:18 +04:00
|
|
|
printf("%p - nsCanvasFrame::Paint R:%d,%d,%d,%d DR: %d,%d,%d,%d\n", this,
|
2006-01-26 05:29:17 +03:00
|
|
|
mRect.x, mRect.y, mRect.width, mRect.height, dirty.x, dirty.y,
|
2017-08-07 05:23:35 +03:00
|
|
|
dirty.width, dirty.height);
|
2006-01-26 05:29:17 +03:00
|
|
|
}
|
|
|
|
printf("%p - Focus: %s c: %p DoPaint:%s\n", docShell.get(),
|
|
|
|
hasFocus ? "Y" : "N", focusContent.get(), mDoPaintFocus ? "Y" : "N");
|
2001-05-23 03:52:17 +04:00
|
|
|
#endif
|
|
|
|
|
2006-01-26 05:29:17 +03:00
|
|
|
if (!mDoPaintFocus) return;
|
|
|
|
// Only paint the focus if we're visible
|
2013-02-17 01:51:02 +04:00
|
|
|
if (!StyleVisibility()->IsVisible()) return;
|
2017-07-06 15:00:35 +03:00
|
|
|
|
2019-04-01 19:53:11 +03:00
|
|
|
aLists.Outlines()->AppendNewToTop<nsDisplayCanvasFocus>(aBuilder, this);
|
2006-01-26 05:29:17 +03:00
|
|
|
}
|
|
|
|
|
2015-12-04 06:16:59 +03:00
|
|
|
void nsCanvasFrame::PaintFocus(DrawTarget* aDrawTarget, nsPoint aPt) {
|
2006-03-15 19:55:19 +03:00
|
|
|
nsRect focusRect(aPt, GetSize());
|
|
|
|
|
2009-01-12 22:20:59 +03:00
|
|
|
nsIScrollableFrame* scrollableFrame = do_QueryFrame(GetParent());
|
2006-03-15 19:55:19 +03:00
|
|
|
if (scrollableFrame) {
|
2009-09-03 08:26:00 +04:00
|
|
|
nsRect portRect = scrollableFrame->GetScrollPortRect();
|
|
|
|
focusRect.width = portRect.width;
|
|
|
|
focusRect.height = portRect.height;
|
|
|
|
focusRect.MoveBy(scrollableFrame->GetScrollPosition());
|
2001-05-23 03:52:17 +04:00
|
|
|
}
|
2006-01-26 05:29:17 +03:00
|
|
|
|
2006-04-29 03:21:01 +04:00
|
|
|
// XXX use the root frame foreground color, but should we find BODY frame
|
|
|
|
// for HTML documents?
|
|
|
|
nsIFrame* root = mFrames.FirstChild();
|
2019-05-31 17:48:22 +03:00
|
|
|
const auto* text = root ? root->StyleText() : StyleText();
|
2015-12-04 06:16:59 +03:00
|
|
|
nsCSSRendering::PaintFocus(PresContext(), aDrawTarget, focusRect,
|
2019-05-31 17:48:22 +03:00
|
|
|
text->mColor.ToColor());
|
2001-04-24 05:01:16 +04:00
|
|
|
}
|
|
|
|
|
2019-02-26 01:09:24 +03:00
|
|
|
/* virtual */
|
|
|
|
nscoord nsCanvasFrame::GetMinISize(gfxContext* aRenderingContext) {
|
Bug 300030: Move intrinsic width computation out of nsIFrame::Reflow and into its own methods on nsIFrame. Replace reflow reasons, types, and commands with dirty bits/notifications. Thanks to bzbarsky for almost all of the HTML form controls (mozilla/layout/forms) changes, and many others for help testing and patching. For detailed commit logs, see REFLOW_YYYYMMDD_BRANCH, where YYYYMMDD is one of 20061031, 20060830, 20060603, 20060302, 20060119, 20051011, 20050804, 20050429, 20050315, 20050111, and 20041213.
2006-12-08 08:38:33 +03:00
|
|
|
nscoord result;
|
2018-09-12 15:35:47 +03:00
|
|
|
DISPLAY_MIN_INLINE_SIZE(this, result);
|
Bug 300030: Move intrinsic width computation out of nsIFrame::Reflow and into its own methods on nsIFrame. Replace reflow reasons, types, and commands with dirty bits/notifications. Thanks to bzbarsky for almost all of the HTML form controls (mozilla/layout/forms) changes, and many others for help testing and patching. For detailed commit logs, see REFLOW_YYYYMMDD_BRANCH, where YYYYMMDD is one of 20061031, 20060830, 20060603, 20060302, 20060119, 20051011, 20050804, 20050429, 20050315, 20050111, and 20041213.
2006-12-08 08:38:33 +03:00
|
|
|
if (mFrames.IsEmpty())
|
|
|
|
result = 0;
|
|
|
|
else
|
2014-07-24 21:03:25 +04:00
|
|
|
result = mFrames.FirstChild()->GetMinISize(aRenderingContext);
|
Bug 300030: Move intrinsic width computation out of nsIFrame::Reflow and into its own methods on nsIFrame. Replace reflow reasons, types, and commands with dirty bits/notifications. Thanks to bzbarsky for almost all of the HTML form controls (mozilla/layout/forms) changes, and many others for help testing and patching. For detailed commit logs, see REFLOW_YYYYMMDD_BRANCH, where YYYYMMDD is one of 20061031, 20060830, 20060603, 20060302, 20060119, 20051011, 20050804, 20050429, 20050315, 20050111, and 20041213.
2006-12-08 08:38:33 +03:00
|
|
|
return result;
|
|
|
|
}
|
|
|
|
|
2019-02-26 01:09:24 +03:00
|
|
|
/* virtual */
|
|
|
|
nscoord nsCanvasFrame::GetPrefISize(gfxContext* aRenderingContext) {
|
Bug 300030: Move intrinsic width computation out of nsIFrame::Reflow and into its own methods on nsIFrame. Replace reflow reasons, types, and commands with dirty bits/notifications. Thanks to bzbarsky for almost all of the HTML form controls (mozilla/layout/forms) changes, and many others for help testing and patching. For detailed commit logs, see REFLOW_YYYYMMDD_BRANCH, where YYYYMMDD is one of 20061031, 20060830, 20060603, 20060302, 20060119, 20051011, 20050804, 20050429, 20050315, 20050111, and 20041213.
2006-12-08 08:38:33 +03:00
|
|
|
nscoord result;
|
2018-09-12 15:35:47 +03:00
|
|
|
DISPLAY_PREF_INLINE_SIZE(this, result);
|
Bug 300030: Move intrinsic width computation out of nsIFrame::Reflow and into its own methods on nsIFrame. Replace reflow reasons, types, and commands with dirty bits/notifications. Thanks to bzbarsky for almost all of the HTML form controls (mozilla/layout/forms) changes, and many others for help testing and patching. For detailed commit logs, see REFLOW_YYYYMMDD_BRANCH, where YYYYMMDD is one of 20061031, 20060830, 20060603, 20060302, 20060119, 20051011, 20050804, 20050429, 20050315, 20050111, and 20041213.
2006-12-08 08:38:33 +03:00
|
|
|
if (mFrames.IsEmpty())
|
|
|
|
result = 0;
|
|
|
|
else
|
2014-07-24 21:03:25 +04:00
|
|
|
result = mFrames.FirstChild()->GetPrefISize(aRenderingContext);
|
Bug 300030: Move intrinsic width computation out of nsIFrame::Reflow and into its own methods on nsIFrame. Replace reflow reasons, types, and commands with dirty bits/notifications. Thanks to bzbarsky for almost all of the HTML form controls (mozilla/layout/forms) changes, and many others for help testing and patching. For detailed commit logs, see REFLOW_YYYYMMDD_BRANCH, where YYYYMMDD is one of 20061031, 20060830, 20060603, 20060302, 20060119, 20051011, 20050804, 20050429, 20050315, 20050111, and 20041213.
2006-12-08 08:38:33 +03:00
|
|
|
return result;
|
|
|
|
}
|
|
|
|
|
2009-10-08 10:18:18 +04:00
|
|
|
void nsCanvasFrame::Reflow(nsPresContext* aPresContext,
|
2016-07-21 13:36:38 +03:00
|
|
|
ReflowOutput& aDesiredSize,
|
2016-07-21 13:36:39 +03:00
|
|
|
const ReflowInput& aReflowInput,
|
2012-11-27 13:05:10 +04:00
|
|
|
nsReflowStatus& aStatus) {
|
2015-03-30 01:38:40 +03:00
|
|
|
MarkInReflow();
|
2009-10-08 10:18:18 +04:00
|
|
|
DO_GLOBAL_REFLOW_COUNT("nsCanvasFrame");
|
2016-07-21 13:36:39 +03:00
|
|
|
DISPLAY_REFLOW(aPresContext, this, aReflowInput, aDesiredSize, aStatus);
|
2017-09-13 13:00:25 +03:00
|
|
|
MOZ_ASSERT(aStatus.IsEmpty(), "Caller should pass a fresh reflow status!");
|
2009-10-08 10:18:18 +04:00
|
|
|
NS_FRAME_TRACE_REFLOW_IN("nsCanvasFrame::Reflow");
|
1998-09-09 02:34:40 +04:00
|
|
|
|
2009-10-08 10:18:18 +04:00
|
|
|
nsCanvasFrame* prevCanvasFrame = static_cast<nsCanvasFrame*>(GetPrevInFlow());
|
2008-09-08 12:13:17 +04:00
|
|
|
if (prevCanvasFrame) {
|
2013-04-01 19:26:02 +04:00
|
|
|
AutoFrameListPtr overflow(aPresContext,
|
|
|
|
prevCanvasFrame->StealOverflowFrames());
|
2008-09-08 12:13:17 +04:00
|
|
|
if (overflow) {
|
2009-07-28 16:51:09 +04:00
|
|
|
NS_ASSERTION(overflow->OnlyChild(),
|
2008-09-08 12:13:17 +04:00
|
|
|
"must have doc root as canvas frame's only child");
|
2014-02-07 02:07:47 +04:00
|
|
|
nsContainerFrame::ReparentFrameViewList(*overflow, prevCanvasFrame, this);
|
2008-09-08 12:13:17 +04:00
|
|
|
// Prepend overflow to the our child list. There may already be
|
|
|
|
// children placeholders for fixed-pos elements, which don't get
|
|
|
|
// reflowed but must not be lost until the canvas frame is destroyed.
|
2012-07-30 18:20:58 +04:00
|
|
|
mFrames.InsertFrames(this, nullptr, *overflow);
|
2008-09-08 12:13:17 +04:00
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2010-08-06 01:59:36 +04: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.
|
2016-07-21 13:36:39 +03:00
|
|
|
SetSize(nsSize(aReflowInput.ComputedWidth(), aReflowInput.ComputedHeight()));
|
2010-08-06 01:59:36 +04:00
|
|
|
|
2008-09-08 12:13:17 +04:00
|
|
|
// Reflow our one and only normal child frame. It's either the root
|
|
|
|
// element's frame or a placeholder for that frame, if the root element
|
|
|
|
// is abs-pos or fixed-pos. We may have additional children which
|
|
|
|
// are placeholders for continuations of fixed-pos content, but those
|
|
|
|
// don't need to be reflowed. The normal child is always comes before
|
|
|
|
// the fixed-pos placeholders, because we insert it at the start
|
|
|
|
// of the child list, above.
|
2016-07-21 13:36:39 +03:00
|
|
|
ReflowOutput kidDesiredSize(aReflowInput);
|
1999-01-31 21:46:22 +03:00
|
|
|
if (mFrames.IsEmpty()) {
|
1999-07-27 18:15:42 +04:00
|
|
|
// We have no child frame, so return an empty size
|
2013-12-27 21:59:52 +04:00
|
|
|
aDesiredSize.Width() = aDesiredSize.Height() = 0;
|
2018-06-05 04:02:32 +03:00
|
|
|
} else if (mFrames.FirstChild() != mPopupSetFrame) {
|
1999-01-26 03:05:21 +03:00
|
|
|
nsIFrame* kidFrame = mFrames.FirstChild();
|
2020-06-27 16:16:23 +03:00
|
|
|
bool kidDirty = kidFrame->HasAnyStateBits(NS_FRAME_IS_DIRTY);
|
1998-10-01 08:46:11 +04:00
|
|
|
|
2016-07-21 13:36:39 +03:00
|
|
|
ReflowInput kidReflowInput(
|
|
|
|
aPresContext, aReflowInput, kidFrame,
|
|
|
|
aReflowInput.AvailableSize(kidFrame->GetWritingMode()));
|
2002-05-10 22:22:41 +04:00
|
|
|
|
2016-07-21 13:36:39 +03:00
|
|
|
if (aReflowInput.IsBResizeForWM(kidReflowInput.GetWritingMode()) &&
|
2020-06-27 16:16:23 +03:00
|
|
|
kidFrame->HasAnyStateBits(NS_FRAME_CONTAINS_RELATIVE_BSIZE)) {
|
2015-06-18 09:33:50 +03:00
|
|
|
// Tell our kid it's being block-dir resized too. Bit of a
|
2007-10-19 07:45:30 +04:00
|
|
|
// hack for framesets.
|
2016-07-21 13:36:39 +03:00
|
|
|
kidReflowInput.SetBResize(true);
|
2007-10-19 07:45:30 +04:00
|
|
|
}
|
2008-09-08 12:13:17 +04:00
|
|
|
|
2016-07-21 13:36:39 +03:00
|
|
|
WritingMode wm = aReflowInput.GetWritingMode();
|
|
|
|
WritingMode kidWM = kidReflowInput.GetWritingMode();
|
|
|
|
nsSize containerSize = aReflowInput.ComputedPhysicalSize();
|
2015-01-07 10:10:07 +03:00
|
|
|
|
2016-07-21 13:36:39 +03:00
|
|
|
LogicalMargin margin = kidReflowInput.ComputedLogicalMargin();
|
2015-01-07 10:10:07 +03:00
|
|
|
LogicalPoint kidPt(kidWM, margin.IStart(kidWM), margin.BStart(kidWM));
|
2013-07-16 04:28:09 +04:00
|
|
|
|
1998-12-22 06:49:04 +03:00
|
|
|
// Reflow the frame
|
2016-07-21 13:36:39 +03:00
|
|
|
ReflowChild(kidFrame, aPresContext, kidDesiredSize, kidReflowInput, kidWM,
|
2019-08-08 22:48:19 +03:00
|
|
|
kidPt, containerSize, ReflowChildFlags::Default, aStatus);
|
1999-10-30 06:52:11 +04:00
|
|
|
|
1999-11-19 18:33:29 +03:00
|
|
|
// Complete the reflow and position and size the child frame
|
2016-07-21 13:36:39 +03:00
|
|
|
FinishReflowChild(kidFrame, aPresContext, kidDesiredSize, &kidReflowInput,
|
2019-08-08 23:04:40 +03:00
|
|
|
kidWM, kidPt, containerSize,
|
|
|
|
ReflowChildFlags::ApplyRelativePositioning);
|
2008-09-08 12:13:17 +04:00
|
|
|
|
2017-02-11 17:38:48 +03:00
|
|
|
if (!aStatus.IsFullyComplete()) {
|
2008-09-08 12:13:17 +04:00
|
|
|
nsIFrame* nextFrame = kidFrame->GetNextInFlow();
|
2017-02-13 09:56:45 +03:00
|
|
|
NS_ASSERTION(
|
|
|
|
nextFrame || aStatus.NextInFlowNeedsReflow(),
|
2008-09-08 12:13:17 +04:00
|
|
|
"If it's incomplete and has no nif yet, it must flag a nif reflow.");
|
|
|
|
if (!nextFrame) {
|
2013-03-20 05:47:49 +04:00
|
|
|
nextFrame = aPresContext->PresShell()
|
|
|
|
->FrameConstructor()
|
2020-03-13 00:50:23 +03:00
|
|
|
->CreateContinuingFrame(kidFrame, this);
|
2014-02-07 02:07:47 +04:00
|
|
|
SetOverflowFrames(nsFrameList(nextFrame, nextFrame));
|
2008-09-08 12:13:17 +04:00
|
|
|
// Root overflow containers will be normal children of
|
|
|
|
// the canvas frame, but that's ok because there
|
|
|
|
// aren't any other frames we need to isolate them from
|
|
|
|
// during reflow.
|
|
|
|
}
|
2017-02-11 17:54:26 +03:00
|
|
|
if (aStatus.IsOverflowIncomplete()) {
|
2008-09-08 12:13:17 +04:00
|
|
|
nextFrame->AddStateBits(NS_FRAME_IS_OVERFLOW_CONTAINER);
|
|
|
|
}
|
|
|
|
}
|
1999-07-27 18:15:42 +04:00
|
|
|
|
1999-10-30 06:52:11 +04:00
|
|
|
// If the child frame was just inserted, then we're responsible for making
|
|
|
|
// sure it repaints
|
Bug 300030: Move intrinsic width computation out of nsIFrame::Reflow and into its own methods on nsIFrame. Replace reflow reasons, types, and commands with dirty bits/notifications. Thanks to bzbarsky for almost all of the HTML form controls (mozilla/layout/forms) changes, and many others for help testing and patching. For detailed commit logs, see REFLOW_YYYYMMDD_BRANCH, where YYYYMMDD is one of 20061031, 20060830, 20060603, 20060302, 20060119, 20051011, 20050804, 20050429, 20050315, 20050111, and 20041213.
2006-12-08 08:38:33 +03:00
|
|
|
if (kidDirty) {
|
2005-01-21 07:42:30 +03:00
|
|
|
// But we have a new child, which will affect our background, so
|
|
|
|
// invalidate our whole rect.
|
|
|
|
// Note: Even though we request to be sized to our child's size, our
|
|
|
|
// scroll frame ensures that we are always the size of the viewport.
|
|
|
|
// Also note: GetPosition() on a CanvasFrame is always going to return
|
2010-10-07 08:25:47 +04:00
|
|
|
// (0, 0). We only want to invalidate GetRect() since Get*OverflowRect()
|
2005-01-21 07:42:30 +03:00
|
|
|
// could also include overflow to our top and left (out of the viewport)
|
|
|
|
// which doesn't need to be painted.
|
2007-07-21 00:14:43 +04:00
|
|
|
nsIFrame* viewport = PresContext()->GetPresShell()->GetRootFrame();
|
2012-08-29 09:39:31 +04:00
|
|
|
viewport->InvalidateFrame();
|
1998-10-01 08:46:11 +04:00
|
|
|
}
|
2017-07-06 15:00:35 +03:00
|
|
|
|
2008-12-09 03:33:46 +03:00
|
|
|
// Return our desired size. Normally it's what we're told, but
|
|
|
|
// sometimes we can be given an unconstrained height (when a window
|
|
|
|
// is sizing-to-content), and we should compute our desired height.
|
2014-07-24 12:30:07 +04:00
|
|
|
LogicalSize finalSize(wm);
|
2016-07-21 13:36:39 +03:00
|
|
|
finalSize.ISize(wm) = aReflowInput.ComputedISize();
|
|
|
|
if (aReflowInput.ComputedBSize() == NS_UNCONSTRAINEDSIZE) {
|
2014-07-24 12:30:07 +04:00
|
|
|
finalSize.BSize(wm) =
|
|
|
|
kidFrame->GetLogicalSize(wm).BSize(wm) +
|
2016-07-21 13:36:39 +03:00
|
|
|
kidReflowInput.ComputedLogicalMargin().BStartEnd(wm);
|
2008-12-09 03:33:46 +03:00
|
|
|
} else {
|
2016-07-21 13:36:39 +03:00
|
|
|
finalSize.BSize(wm) = aReflowInput.ComputedBSize();
|
2008-12-09 03:33:46 +03:00
|
|
|
}
|
2006-03-15 19:55:19 +03:00
|
|
|
|
2014-07-24 12:30:07 +04:00
|
|
|
aDesiredSize.SetSize(wm, finalSize);
|
2010-10-07 08:25:46 +04:00
|
|
|
aDesiredSize.SetOverflowAreasToDesiredBounds();
|
|
|
|
aDesiredSize.mOverflowAreas.UnionWith(kidDesiredSize.mOverflowAreas +
|
2015-01-07 10:10:07 +03:00
|
|
|
kidFrame->GetPosition());
|
1999-01-26 03:05:21 +03:00
|
|
|
}
|
1998-09-09 02:34:40 +04:00
|
|
|
|
2008-09-08 12:13:17 +04:00
|
|
|
if (prevCanvasFrame) {
|
2016-07-21 13:36:39 +03:00
|
|
|
ReflowOverflowContainerChildren(aPresContext, aReflowInput,
|
2019-08-08 22:48:19 +03:00
|
|
|
aDesiredSize.mOverflowAreas,
|
|
|
|
ReflowChildFlags::Default, aStatus);
|
2008-09-08 12:13:17 +04:00
|
|
|
}
|
|
|
|
|
2018-06-05 04:02:32 +03:00
|
|
|
if (mPopupSetFrame) {
|
|
|
|
MOZ_ASSERT(mFrames.ContainsFrame(mPopupSetFrame),
|
|
|
|
"Only normal flow supported.");
|
|
|
|
nsReflowStatus popupStatus;
|
|
|
|
ReflowOutput popupDesiredSize(aReflowInput.GetWritingMode());
|
|
|
|
WritingMode wm = mPopupSetFrame->GetWritingMode();
|
|
|
|
LogicalSize availSize = aReflowInput.ComputedSize(wm);
|
|
|
|
availSize.BSize(wm) = NS_UNCONSTRAINEDSIZE;
|
|
|
|
ReflowInput popupReflowInput(aPresContext, aReflowInput, mPopupSetFrame,
|
|
|
|
availSize);
|
|
|
|
ReflowChild(mPopupSetFrame, aPresContext, popupDesiredSize,
|
2019-08-08 22:48:19 +03:00
|
|
|
popupReflowInput, 0, 0, ReflowChildFlags::NoMoveFrame,
|
|
|
|
popupStatus);
|
2018-06-05 04:02:32 +03:00
|
|
|
FinishReflowChild(mPopupSetFrame, aPresContext, popupDesiredSize,
|
2019-08-08 22:48:19 +03:00
|
|
|
&popupReflowInput, 0, 0, ReflowChildFlags::NoMoveFrame);
|
2018-06-05 04:02:32 +03:00
|
|
|
}
|
|
|
|
|
2016-07-21 13:36:39 +03:00
|
|
|
FinishReflowWithAbsoluteFrames(aPresContext, aDesiredSize, aReflowInput,
|
|
|
|
aStatus);
|
2008-09-08 12:13:17 +04:00
|
|
|
|
2009-10-08 10:18:18 +04:00
|
|
|
NS_FRAME_TRACE_REFLOW_OUT("nsCanvasFrame::Reflow", aStatus);
|
2016-07-21 13:36:39 +03:00
|
|
|
NS_FRAME_SET_TRUNCATION(aStatus, aReflowInput, aDesiredSize);
|
1998-09-09 02:34:40 +04:00
|
|
|
}
|
|
|
|
|
2017-04-30 18:30:08 +03:00
|
|
|
nsresult nsCanvasFrame::GetContentForEvent(WidgetEvent* aEvent,
|
|
|
|
nsIContent** aContent) {
|
2001-05-19 03:08:00 +04:00
|
|
|
NS_ENSURE_ARG_POINTER(aContent);
|
2018-08-13 12:56:48 +03:00
|
|
|
nsresult rv = nsFrame::GetContentForEvent(aEvent, aContent);
|
2001-05-19 03:08:00 +04:00
|
|
|
if (NS_FAILED(rv) || !*aContent) {
|
|
|
|
nsIFrame* kid = mFrames.FirstChild();
|
|
|
|
if (kid) {
|
2011-09-27 00:55:04 +04:00
|
|
|
rv = kid->GetContentForEvent(aEvent, aContent);
|
2001-05-19 03:08:00 +04:00
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
return rv;
|
|
|
|
}
|
|
|
|
|
2014-01-06 03:31:14 +04:00
|
|
|
#ifdef DEBUG_FRAME_DUMP
|
2009-10-08 10:18:18 +04:00
|
|
|
nsresult nsCanvasFrame::GetFrameName(nsAString& aResult) const {
|
2020-07-01 11:29:29 +03:00
|
|
|
return MakeFrameName(u"Canvas"_ns, aResult);
|
1998-11-13 05:20:31 +03:00
|
|
|
}
|
1999-09-01 05:02:16 +04:00
|
|
|
#endif
|