1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 63 64 65 66 67 68 69 70 71 72 73 74 75 76 77 78 79 80 81 82 83 84 85 86 87 88 89 90 91 92 93 94 95 96 97 98 99 100 101 102 103 104 105 106 107 108 109 110 111 112 113 114 115 116 117 118 119 120 121 122 123 124 125 126 127 128 129 130 131 132 133 134 135 136 137 138 139 140 141 142 143 144 145 146 147 148 149 150 151 152 153 154 155 156 157
|
/**
* Copyright (C) 2023 Apple Inc. All rights reserved.
*
* This library is free software; you can redistribute it and/or
* modify it under the terms of the GNU Library General Public
* License as published by the Free Software Foundation; either
* version 2 of the License, or (at your option) any later version.
*
* This library is distributed in the hope that it will be useful,
* but WITHOUT ANY WARRANTY; without even the implied warranty of
* MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU
* Library General Public License for more details.
*
* You should have received a copy of the GNU Library General Public License
* along with this library; see the file COPYING.LIB. If not, write to
* the Free Software Foundation, Inc., 51 Franklin Street, Fifth Floor,
* Boston, MA 02110-1301, USA.
*/
#pragma once
#include "DocumentInlines.h"
#include "FloatQuad.h"
#include "FrameDestructionObserverInlines.h"
#include "LocalFrameInlines.h"
#include "RenderElement.h"
#include "RenderIFrame.h"
#include "RenderObject.h"
#include "RenderReplaced.h"
#include "RenderStyleInlines.h"
#include "RenderView.h"
namespace WebCore {
inline Node& RenderObject::nodeForNonAnonymous() const { ASSERT(!isAnonymous()); return m_node.get(); }
inline bool RenderObject::hasTransformOrPerspective() const { return hasTransformRelatedProperty() && (isTransformed() || style().hasPerspective()); }
inline bool RenderObject::isAtomicInlineLevelBox() const { return style().isDisplayInlineType() && !(style().display() == DisplayType::Inline && !isBlockLevelReplacedOrAtomicInline()); }
inline bool RenderObject::isTransformed() const { return hasTransformRelatedProperty() && (style().affectsTransform() || hasSVGTransform()); }
inline Document& RenderObject::document() const { return m_node.get().document(); }
inline Ref<Document> RenderObject::protectedDocument() const { return document(); }
inline const LocalFrameViewLayoutContext& RenderObject::layoutContext() const { return view().frameView().layoutContext(); }
inline bool RenderObject::isBody() const { return node() && node()->hasTagName(HTMLNames::bodyTag); }
inline bool RenderObject::isHR() const { return node() && node()->hasTagName(HTMLNames::hrTag); }
inline bool RenderObject::isPseudoElement() const { return node() && node()->isPseudoElement(); }
inline Node* RenderObject::nonPseudoNode() const { return isPseudoElement() ? nullptr : node(); }
inline TreeScope& RenderObject::treeScopeForSVGReferences() const { return Ref { m_node.get() }->treeScopeForSVGReferences(); }
inline WritingMode RenderObject::writingMode() const { return style().writingMode(); }
inline Node* RenderObject::node() const
{
if (isAnonymous())
return nullptr;
return m_node.ptr();
}
inline RefPtr<Node> RenderObject::protectedNode() const
{
return node();
}
inline const RenderStyle& RenderObject::style() const
{
if (isRenderText())
return m_parent->style();
return downcast<RenderElement>(*this).style();
}
inline CheckedRef<const RenderStyle> RenderObject::checkedStyle() const
{
return style();
}
inline const RenderStyle& RenderObject::firstLineStyle() const
{
if (isRenderText())
return checkedParent()->firstLineStyle();
return downcast<RenderElement>(*this).firstLineStyle();
}
inline Ref<TreeScope> RenderObject::protectedTreeScopeForSVGReferences() const
{
return treeScopeForSVGReferences();
}
inline bool RenderObject::isDocumentElementRenderer() const
{
return document().documentElement() == m_node.ptr();
}
inline RenderView& RenderObject::view() const
{
return *document().renderView();
}
inline LocalFrame& RenderObject::frame() const
{
return *document().frame();
}
inline Ref<LocalFrame> RenderObject::protectedFrame() const
{
return frame();
}
inline Page& RenderObject::page() const
{
// The render tree will always be torn down before Frame is disconnected from Page,
// so it's safe to assume Frame::page() is non-null as long as there are live RenderObjects.
ASSERT(frame().page());
return *frame().page();
}
inline Ref<Page> RenderObject::protectedPage() const
{
return page();
}
inline Settings& RenderObject::settings() const
{
return page().settings();
}
inline bool RenderObject::renderTreeBeingDestroyed() const
{
return document().renderTreeBeingDestroyed();
}
inline FloatQuad RenderObject::localToAbsoluteQuad(const FloatQuad& quad, OptionSet<MapCoordinatesMode> mode, bool* wasFixed) const
{
return localToContainerQuad(quad, nullptr, mode, wasFixed);
}
inline void RenderObject::setNeedsLayout(MarkingBehavior markParents)
{
ASSERT(!isSetNeedsLayoutForbidden());
if (selfNeedsLayout())
return;
m_stateBitfields.setFlag(StateFlag::NeedsLayout);
if (markParents == MarkContainingBlockChain)
scheduleLayout(CheckedPtr { markContainingBlocksForLayout() }.get());
if (hasLayer())
setLayerNeedsFullRepaint();
}
inline void RenderObject::setNeedsLayoutAndPreferredWidthsUpdate()
{
setNeedsLayout();
setNeedsPreferredWidthsUpdate();
}
inline bool RenderObject::isNonReplacedAtomicInlineLevelBox() const
{
// FIXME: Check if iframe should really behave like non-replaced here.
return (is<RenderIFrame>(*this) && isInline()) || (!is<RenderReplaced>(*this) && isAtomicInlineLevelBox());
}
} // namespace WebCore
|