initial import
[vuplus_webkit] / Source / WebCore / rendering / RenderFrameBase.cpp
1 /*
2  * Copyright (C) 2010 Apple Inc. All rights reserved.
3  *
4  * Redistribution and use in source and binary forms, with or without
5  * modification, are permitted provided that the following conditions
6  * are met:
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.
12  *
13  * THIS SOFTWARE IS PROVIDED BY APPLE COMPUTER, 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 COMPUTER, 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. 
24  */
25
26 #include "config.h"
27 #include "RenderFrameBase.h"
28
29 #include "Frame.h"
30 #include "FrameView.h"
31 #include "HTMLFrameElementBase.h"
32 #include "RenderView.h"
33
34 namespace WebCore {
35     
36 RenderFrameBase::RenderFrameBase(Element* element)
37     : RenderPart(element)
38 {
39 }
40
41 void RenderFrameBase::layoutWithFlattening(bool fixedWidth, bool fixedHeight)
42 {
43     FrameView* childFrameView = static_cast<FrameView*>(widget());
44     RenderView* childRoot = childFrameView ? static_cast<RenderView*>(childFrameView->frame()->contentRenderer()) : 0;
45
46     // Do not expand frames which has zero width or height
47     if (!width() || !height() || !childRoot) {
48         updateWidgetPosition();
49         if (childFrameView)
50             childFrameView->layout();
51         setNeedsLayout(false);
52         return;
53     }
54
55     // need to update to calculate min/max correctly
56     updateWidgetPosition();
57     if (childRoot->preferredLogicalWidthsDirty())
58         childRoot->computePreferredLogicalWidths();
59
60     // if scrollbars are off, and the width or height are fixed
61     // we obey them and do not expand. With frame flattening
62     // no subframe much ever become scrollable.
63
64     HTMLFrameElementBase* element = static_cast<HTMLFrameElementBase*>(node());
65     bool isScrollable = element->scrollingMode() != ScrollbarAlwaysOff;
66
67     // consider iframe inset border
68     int hBorder = borderLeft() + borderRight();
69     int vBorder = borderTop() + borderBottom();
70
71     // make sure minimum preferred width is enforced
72     if (isScrollable || !fixedWidth) {
73         setWidth(max(width(), childRoot->minPreferredLogicalWidth() + hBorder));
74         // update again to pass the new width to the child frame
75         updateWidgetPosition();
76         childFrameView->layout();
77     }
78
79     // expand the frame by setting frame height = content height
80     if (isScrollable || !fixedHeight || childRoot->isFrameSet())
81         setHeight(max(height(), childFrameView->contentsHeight() + vBorder));
82     if (isScrollable || !fixedWidth || childRoot->isFrameSet())
83         setWidth(max(width(), childFrameView->contentsWidth() + hBorder));
84
85     updateWidgetPosition();
86
87     ASSERT(!childFrameView->layoutPending());
88     ASSERT(!childRoot->needsLayout());
89     ASSERT(!childRoot->firstChild() || !childRoot->firstChild()->firstChild() || !childRoot->firstChild()->firstChild()->needsLayout());
90
91     setNeedsLayout(false);
92 }
93
94 }