2 * Copyright (C) 2018 Apple Inc. All Rights Reserved.
4 * Redistribution and use in source and binary forms, with or without
5 * modification, are permitted provided that the following conditions
7 * 1. Redistributions of source code must retain the above copyright
8 * notice, this list of conditions and the following disclaimer.
9 * 2. Redistributions in binary form must reproduce the above copyright
10 * notice, this list of conditions and the following disclaimer in the
11 * documentation and/or other materials provided with the distribution.
13 * THIS SOFTWARE IS PROVIDED BY APPLE INC. ``AS IS'' AND ANY
14 * EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE
15 * IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR
16 * PURPOSE ARE DISCLAIMED. IN NO EVENT SHALL APPLE INC. OR
17 * CONTRIBUTORS BE LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL,
18 * EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT LIMITED TO,
19 * PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; LOSS OF USE, DATA, OR
20 * PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND ON ANY THEORY
21 * OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT
22 * (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE
23 * OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE.
28 Layout.Box = class Box {
29 constructor(node, id) {
31 this.m_rendererName = null;
34 this.m_nextSibling = null;
35 this.m_previousSibling = null;
36 this.m_isAnonymous = false;
37 this.m_establishedFormattingContext = null;
38 this.m_displayBox = null;
45 setRendererName(name) {
46 this.m_rendererName = name;
50 return this.m_rendererName;
62 return this.m_nextSibling;
66 let nextInFlowSibling = this.nextSibling();
67 while (nextInFlowSibling) {
68 if (nextInFlowSibling.isInFlow())
69 return nextInFlowSibling;
70 nextInFlowSibling = nextInFlowSibling.nextSibling();
76 return this.m_previousSibling;
79 previousInFlowSibling() {
80 let previousInFlowSibling = this.previousSibling();
81 while (previousInFlowSibling) {
82 if (previousInFlowSibling.isInFlow())
83 return previousInFlowSibling;
84 previousInFlowSibling = previousInFlowSibling.previousSibling();
90 this.m_parent = parent;
93 setNextSibling(nextSibling) {
94 this.m_nextSibling = nextSibling;
97 setPreviousSibling(previousSibling) {
98 this.m_previousSibling = previousSibling;
101 setDisplayBox(displayBox) {
102 ASSERT(!this.m_displayBox);
103 this.m_displayBox = displayBox;
107 ASSERT(this.m_displayBox);
108 return this.m_displayBox;
112 return this.displayBox().rect();
116 return this.rect().topLeft();
120 return this.rect().bottomRight();
123 setTopLeft(topLeft) {
124 this.displayBox().setTopLeft(topLeft);
128 this.displayBox().setSize(size);
132 this.displayBox().setWidth(width);
136 this.displayBox().setHeight(height);
144 return Utils.isBlockLevelElement(this.node());
147 isBlockContainerBox() {
148 return Utils.isBlockContainerElement(this.node());
152 return Utils.isInlineLevelElement(this.node());
156 this.m_isAnonymous = true;
160 return this.m_isAnonymous;
163 establishesFormattingContext() {
164 if (this.isAnonymous())
166 return this.establishesBlockFormattingContext() || this.establishesInlineFormattingContext();
169 establishedFormattingContext() {
170 if (this.establishesFormattingContext() && !this.m_establishedFormattingContext)
171 this.m_establishedFormattingContext = this.establishesBlockFormattingContext() ? new BlockFormattingContext(this) : new InlineFormattingContext(this);
172 return this.m_establishedFormattingContext;
175 establishesBlockFormattingContext() {
176 // 9.4.1 Block formatting contexts
177 // Floats, absolutely positioned elements, block containers (such as inline-blocks, table-cells, and table-captions)
178 // that are not block boxes, and block boxes with 'overflow' other than 'visible' (except when that value has been propagated to the viewport)
179 // establish new block formatting contexts for their contents.
180 return this.isFloatingPositioned() || this.isAbsolutePositioned() || (this.isBlockContainerBox() && !this.isBlockLevelBox())
181 || (this.isBlockLevelBox() && !Utils.isOverflowVisible(this));
184 establishesInlineFormattingContext() {
189 return this.isOutOfFlowPositioned() || this.isRelativePositioned();
192 isRelativePositioned() {
193 return Utils.isRelativePositioned(this);
196 isAbsolutePositioned() {
197 return Utils.isAbsolutePositioned(this);
200 isFixedPositioned() {
201 return Utils.isFixedPositioned(this);
205 if (this.isAnonymous())
207 return !this.isFloatingOrOutOfFlowPositioned();
210 isOutOfFlowPositioned() {
211 return this.isAbsolutePositioned() || this.isFixedPositioned();
214 isInFlowPositioned() {
215 return this.isPositioned() && !this.isOutOfFlowPositioned();
218 isFloatingPositioned() {
219 return Utils.isFloatingPositioned(this);
222 isFloatingOrOutOfFlowPositioned() {
223 return this.isFloatingPositioned() || this.isOutOfFlowPositioned();
227 // FIXME: This should just be a simple instanceof check, but we are in the mainframe while the test document is in an iframe
228 // Let's just return root for both the RenderView and the <html> element.
229 return !this.parent() || !this.parent().parent();
235 if (!this.isPositioned() || this.isInFlowPositioned())
236 return this.parent();
237 let parent = this.parent();
238 while (parent.parent()) {
239 if (this.isAbsolutePositioned() && parent.isPositioned())
241 parent = parent.parent();
247 return this.displayBox().borderBox();
251 return this.displayBox().paddingBox();
255 return this.displayBox().contentBox();