зеркало из https://github.com/mozilla/gecko-dev.git
Backed out changeset ffd9c7bbd2fe (bug 261037) for compilation failures in nsCSSFrameConstructor on a CLOSED TREE
This commit is contained in:
Родитель
102c9c0f8c
Коммит
45a4b4555f
|
@ -502,8 +502,8 @@ Element::GetScrollFrame(nsIFrame **aStyledFrame, bool aFlushLayout)
|
|||
|
||||
// menu frames implement GetScrollTargetFrame but we don't want
|
||||
// to use it here. Similar for comboboxes.
|
||||
nsIAtom* type = frame->GetType();
|
||||
if (type != nsGkAtoms::menuFrame && type != nsGkAtoms::comboboxControlFrame) {
|
||||
if (frame->GetType() != nsGkAtoms::menuFrame &&
|
||||
frame->GetType() != nsGkAtoms::comboboxControlFrame) {
|
||||
nsIScrollableFrame *scrollFrame = frame->GetScrollTargetFrame();
|
||||
if (scrollFrame)
|
||||
return scrollFrame;
|
||||
|
|
|
@ -3050,51 +3050,39 @@ nsCSSFrameConstructor::ConstructFieldSetFrame(nsFrameConstructorState& aState,
|
|||
nsIContent* const content = aItem.mContent;
|
||||
nsStyleContext* const styleContext = aItem.mStyleContext;
|
||||
|
||||
nsIFrame* fieldsetFrame = NS_NewFieldSetFrame(mPresShell, styleContext);
|
||||
nsIFrame* newFrame = NS_NewFieldSetFrame(mPresShell, styleContext);
|
||||
|
||||
// Initialize it
|
||||
InitAndRestoreFrame(aState, content,
|
||||
aState.GetGeometricParent(aStyleDisplay, aParentFrame),
|
||||
fieldsetFrame);
|
||||
newFrame);
|
||||
|
||||
// Resolve style and initialize the frame
|
||||
nsRefPtr<nsStyleContext> fieldsetContentStyle;
|
||||
fieldsetContentStyle = mPresShell->StyleSet()->
|
||||
ResolveAnonymousBoxStyle(nsCSSAnonBoxes::fieldsetContent, styleContext);
|
||||
|
||||
const nsStyleDisplay* fieldsetContentDisplay = fieldsetContentStyle->StyleDisplay();
|
||||
bool isScrollable = fieldsetContentDisplay->IsScrollableOverflow();
|
||||
nsIFrame* scrollFrame = nullptr;
|
||||
if (isScrollable) {
|
||||
fieldsetContentStyle =
|
||||
BeginBuildingScrollFrame(aState, content, fieldsetContentStyle,
|
||||
aState.GetGeometricParent(fieldsetContentDisplay, fieldsetFrame),
|
||||
nsCSSAnonBoxes::scrolledContent,
|
||||
false, scrollFrame);
|
||||
}
|
||||
|
||||
nsIFrame* blockFrame = NS_NewBlockFrame(mPresShell, fieldsetContentStyle,
|
||||
NS_BLOCK_FLOAT_MGR |
|
||||
NS_BLOCK_MARGIN_ROOT);
|
||||
InitAndRestoreFrame(aState, content,
|
||||
scrollFrame ? scrollFrame : fieldsetFrame, blockFrame);
|
||||
InitAndRestoreFrame(aState, content, newFrame, blockFrame);
|
||||
|
||||
aState.AddChild(fieldsetFrame, aFrameItems, content, styleContext, aParentFrame);
|
||||
aState.AddChild(newFrame, aFrameItems, content, styleContext, aParentFrame);
|
||||
|
||||
// Process children
|
||||
nsFrameConstructorSaveState absoluteSaveState;
|
||||
nsFrameItems childItems;
|
||||
|
||||
blockFrame->AddStateBits(NS_FRAME_CAN_HAVE_ABSPOS_CHILDREN);
|
||||
if (fieldsetFrame->IsPositioned()) {
|
||||
aState.PushAbsoluteContainingBlock(blockFrame, fieldsetFrame, absoluteSaveState);
|
||||
newFrame->AddStateBits(NS_FRAME_CAN_HAVE_ABSPOS_CHILDREN);
|
||||
if (newFrame->IsPositioned()) {
|
||||
aState.PushAbsoluteContainingBlock(newFrame, newFrame, absoluteSaveState);
|
||||
}
|
||||
|
||||
ProcessChildren(aState, content, styleContext, blockFrame, true,
|
||||
childItems, true, aItem.mPendingBinding);
|
||||
|
||||
nsFrameItems fieldsetKids;
|
||||
fieldsetKids.AddChild(scrollFrame ? scrollFrame : blockFrame);
|
||||
fieldsetKids.AddChild(blockFrame);
|
||||
|
||||
for (nsFrameList::Enumerator e(childItems); !e.AtEnd(); e.Next()) {
|
||||
nsIFrame* child = e.get();
|
||||
|
@ -3106,25 +3094,21 @@ nsCSSFrameConstructor::ConstructFieldSetFrame(nsFrameConstructorState& aState,
|
|||
// GetAdjustedParentFrame() below depends on this frame order.
|
||||
childItems.RemoveFrame(child);
|
||||
// Make sure to reparent the legend so it has the fieldset as the parent.
|
||||
fieldsetKids.InsertFrame(fieldsetFrame, nullptr, child);
|
||||
fieldsetKids.InsertFrame(newFrame, nullptr, child);
|
||||
break;
|
||||
}
|
||||
}
|
||||
|
||||
if (isScrollable) {
|
||||
FinishBuildingScrollFrame(scrollFrame, blockFrame);
|
||||
}
|
||||
|
||||
// Set the inner frame's initial child lists
|
||||
blockFrame->SetInitialChildList(kPrincipalList, childItems);
|
||||
|
||||
// Set the outer frame's initial child list
|
||||
fieldsetFrame->SetInitialChildList(kPrincipalList, fieldsetKids);
|
||||
newFrame->SetInitialChildList(kPrincipalList, fieldsetKids);
|
||||
|
||||
fieldsetFrame->AddStateBits(NS_FRAME_MAY_HAVE_GENERATED_CONTENT);
|
||||
newFrame->AddStateBits(NS_FRAME_MAY_HAVE_GENERATED_CONTENT);
|
||||
|
||||
// Our new frame returned is the outer frame, which is the fieldset frame.
|
||||
return fieldsetFrame;
|
||||
return newFrame;
|
||||
}
|
||||
|
||||
static nsIFrame*
|
||||
|
@ -3278,17 +3262,6 @@ nsCSSFrameConstructor::FindDataByTag(nsIAtom* aTag,
|
|||
#define COMPLEX_TAG_CREATE(_tag, _func) \
|
||||
{ &nsGkAtoms::_tag, FULL_CTOR_FCDATA(0, _func) }
|
||||
|
||||
static bool
|
||||
IsFrameForFieldSet(nsIFrame* aFrame, nsIAtom* aFrameType)
|
||||
{
|
||||
nsIAtom* pseudo = aFrame->StyleContext()->GetPseudo();
|
||||
if (pseudo == nsCSSAnonBoxes::fieldsetContent ||
|
||||
pseudo == nsCSSAnonBoxes::scrolledContent) {
|
||||
return IsFrameForFieldSet(aFrame->GetParent(), aFrame->GetParent()->GetType());
|
||||
}
|
||||
return aFrameType == nsGkAtoms::fieldSetFrame;
|
||||
}
|
||||
|
||||
/* static */
|
||||
const nsCSSFrameConstructor::FrameConstructionData*
|
||||
nsCSSFrameConstructor::FindHTMLData(Element* aElement,
|
||||
|
@ -3311,7 +3284,9 @@ nsCSSFrameConstructor::FindHTMLData(Element* aElement,
|
|||
"Unexpected parent for fieldset content anon box");
|
||||
if (aTag == nsGkAtoms::legend &&
|
||||
(!aParentFrame ||
|
||||
!IsFrameForFieldSet(aParentFrame, aParentFrame->GetType()) ||
|
||||
(aParentFrame->GetType() != nsGkAtoms::fieldSetFrame &&
|
||||
aParentFrame->StyleContext()->GetPseudo() !=
|
||||
nsCSSAnonBoxes::fieldsetContent) ||
|
||||
!aElement->GetParent() ||
|
||||
!aElement->GetParent()->IsHTML(nsGkAtoms::fieldset) ||
|
||||
aStyleContext->StyleDisplay()->IsFloatingStyle() ||
|
||||
|
@ -6009,7 +5984,9 @@ nsCSSFrameConstructor::IsValidSibling(nsIFrame* aSibling,
|
|||
|
||||
return true;
|
||||
}
|
||||
else if (IsFrameForFieldSet(parentFrame, parentType)) {
|
||||
else if (nsGkAtoms::fieldSetFrame == parentType ||
|
||||
(nsGkAtoms::fieldSetFrame == grandparentType &&
|
||||
nsGkAtoms::blockFrame == parentType)) {
|
||||
// Legends can be sibling of legends but not of other content in the fieldset
|
||||
nsIAtom* sibType = aSibling->GetContentInsertionFrame()->GetType();
|
||||
bool legendContent = aContent->IsHTML(nsGkAtoms::legend);
|
||||
|
@ -7106,7 +7083,7 @@ nsCSSFrameConstructor::ContentRangeInserted(nsIContent* aContainer,
|
|||
// fieldsets have multiple insertion points.
|
||||
NS_ASSERTION(isSingleInsert || frameType != nsGkAtoms::fieldSetFrame,
|
||||
"Unexpected parent");
|
||||
if (IsFrameForFieldSet(parentFrame, frameType) &&
|
||||
if (frameType == nsGkAtoms::fieldSetFrame &&
|
||||
aStartChild->Tag() == nsGkAtoms::legend) {
|
||||
// Just reframe the parent, since figuring out whether this
|
||||
// should be the new legend and then handling it is too complex.
|
||||
|
|
|
@ -2807,8 +2807,7 @@ static int32_t gNoiseIndent = 0;
|
|||
/* static */ nscoord
|
||||
nsLayoutUtils::IntrinsicForContainer(nsRenderingContext *aRenderingContext,
|
||||
nsIFrame *aFrame,
|
||||
IntrinsicWidthType aType,
|
||||
uint32_t aFlags)
|
||||
IntrinsicWidthType aType)
|
||||
{
|
||||
NS_PRECONDITION(aFrame, "null frame");
|
||||
NS_PRECONDITION(aType == MIN_WIDTH || aType == PREF_WIDTH, "bad type");
|
||||
|
@ -2902,17 +2901,15 @@ nsLayoutUtils::IntrinsicForContainer(nsRenderingContext *aRenderingContext,
|
|||
// fall through
|
||||
}
|
||||
case NS_STYLE_BOX_SIZING_PADDING: {
|
||||
if (!(aFlags & IGNORE_PADDING)) {
|
||||
const nsStylePadding* stylePadding = aFrame->StylePadding();
|
||||
nscoord pad;
|
||||
if (GetAbsoluteCoord(stylePadding->mPadding.GetTop(), pad) ||
|
||||
GetPercentHeight(stylePadding->mPadding.GetTop(), aFrame, pad)) {
|
||||
heightTakenByBoxSizing += pad;
|
||||
}
|
||||
if (GetAbsoluteCoord(stylePadding->mPadding.GetBottom(), pad) ||
|
||||
GetPercentHeight(stylePadding->mPadding.GetBottom(), aFrame, pad)) {
|
||||
heightTakenByBoxSizing += pad;
|
||||
}
|
||||
const nsStylePadding* stylePadding = aFrame->StylePadding();
|
||||
nscoord pad;
|
||||
if (GetAbsoluteCoord(stylePadding->mPadding.GetTop(), pad) ||
|
||||
GetPercentHeight(stylePadding->mPadding.GetTop(), aFrame, pad)) {
|
||||
heightTakenByBoxSizing += pad;
|
||||
}
|
||||
if (GetAbsoluteCoord(stylePadding->mPadding.GetBottom(), pad) ||
|
||||
GetPercentHeight(stylePadding->mPadding.GetBottom(), aFrame, pad)) {
|
||||
heightTakenByBoxSizing += pad;
|
||||
}
|
||||
// fall through
|
||||
}
|
||||
|
@ -2963,22 +2960,18 @@ nsLayoutUtils::IntrinsicForContainer(nsRenderingContext *aRenderingContext,
|
|||
// percentages do not operate linearly.
|
||||
// Doing this is ok because although percentages aren't handled
|
||||
// linearly, they are handled monotonically.
|
||||
nscoord coordOutsideWidth = 0;
|
||||
float pctOutsideWidth = 0;
|
||||
nscoord coordOutsideWidth = offsets.hPadding;
|
||||
float pctOutsideWidth = offsets.hPctPadding;
|
||||
|
||||
float pctTotal = 0.0f;
|
||||
|
||||
if (!(aFlags & IGNORE_PADDING)) {
|
||||
coordOutsideWidth += offsets.hPadding;
|
||||
pctOutsideWidth += offsets.hPctPadding;
|
||||
if (boxSizing == NS_STYLE_BOX_SIZING_PADDING) {
|
||||
min += coordOutsideWidth;
|
||||
result = NSCoordSaturatingAdd(result, coordOutsideWidth);
|
||||
pctTotal += pctOutsideWidth;
|
||||
|
||||
if (boxSizing == NS_STYLE_BOX_SIZING_PADDING) {
|
||||
min += coordOutsideWidth;
|
||||
result = NSCoordSaturatingAdd(result, coordOutsideWidth);
|
||||
pctTotal += pctOutsideWidth;
|
||||
|
||||
coordOutsideWidth = 0;
|
||||
pctOutsideWidth = 0.0f;
|
||||
}
|
||||
coordOutsideWidth = 0;
|
||||
pctOutsideWidth = 0.0f;
|
||||
}
|
||||
|
||||
coordOutsideWidth += offsets.hBorder;
|
||||
|
|
|
@ -988,13 +988,9 @@ public:
|
|||
* and margin.
|
||||
*/
|
||||
enum IntrinsicWidthType { MIN_WIDTH, PREF_WIDTH };
|
||||
enum {
|
||||
IGNORE_PADDING = 0x01
|
||||
};
|
||||
static nscoord IntrinsicForContainer(nsRenderingContext* aRenderingContext,
|
||||
nsIFrame* aFrame,
|
||||
IntrinsicWidthType aType,
|
||||
uint32_t aFlags = 0);
|
||||
IntrinsicWidthType aType);
|
||||
|
||||
/*
|
||||
* Convert nsStyleCoord to nscoord when percentages depend on the
|
||||
|
|
|
@ -15,7 +15,6 @@
|
|||
#include "nsStyleConsts.h"
|
||||
#include "nsDisplayList.h"
|
||||
#include "nsRenderingContext.h"
|
||||
#include "nsIScrollableFrame.h"
|
||||
#include "mozilla/Likely.h"
|
||||
|
||||
using namespace mozilla;
|
||||
|
@ -79,10 +78,6 @@ public:
|
|||
return nsContainerFrame::IsFrameOfType(aFlags &
|
||||
~nsIFrame::eCanContainOverflowContainers);
|
||||
}
|
||||
virtual nsIScrollableFrame* GetScrollTargetFrame() MOZ_OVERRIDE
|
||||
{
|
||||
return do_QueryFrame(GetInner());
|
||||
}
|
||||
|
||||
#ifdef ACCESSIBILITY
|
||||
virtual mozilla::a11y::AccType AccessibleType() MOZ_OVERRIDE;
|
||||
|
@ -361,14 +356,10 @@ nsFieldSetFrame::GetIntrinsicWidth(nsRenderingContext* aRenderingContext,
|
|||
}
|
||||
|
||||
if (nsIFrame* inner = GetInner()) {
|
||||
// Ignore padding on the inner, since the padding will be applied to the
|
||||
// outer instead, and the padding computed for the inner is wrong
|
||||
// for percentage padding.
|
||||
contentWidth =
|
||||
nsLayoutUtils::IntrinsicForContainer(aRenderingContext, inner, aType,
|
||||
nsLayoutUtils::IGNORE_PADDING);
|
||||
nsLayoutUtils::IntrinsicForContainer(aRenderingContext, inner, aType);
|
||||
}
|
||||
|
||||
|
||||
return std::max(legendWidth, contentWidth);
|
||||
}
|
||||
|
||||
|
@ -453,10 +444,7 @@ nsFieldSetFrame::Reflow(nsPresContext* aPresContext,
|
|||
|
||||
// We don't allow fieldsets to break vertically. If we did, we'd
|
||||
// need logic here to push and pull overflow frames.
|
||||
// Since we're not applying our padding in this frame, we need to add it here
|
||||
// to compute the available width for our children.
|
||||
nsSize availSize(aReflowState.ComputedWidth() + aReflowState.mComputedPadding.LeftRight(),
|
||||
NS_UNCONSTRAINEDSIZE);
|
||||
nsSize availSize(aReflowState.ComputedWidth(), NS_UNCONSTRAINEDSIZE);
|
||||
NS_ASSERTION(!inner ||
|
||||
nsLayoutUtils::IntrinsicForContainer(aReflowState.rendContext,
|
||||
inner,
|
||||
|
@ -471,7 +459,8 @@ nsFieldSetFrame::Reflow(nsPresContext* aPresContext,
|
|||
"Bogus availSize.width; should be bigger");
|
||||
|
||||
// get our border and padding
|
||||
nsMargin border = aReflowState.mComputedBorderPadding - aReflowState.mComputedPadding;
|
||||
const nsMargin &borderPadding = aReflowState.mComputedBorderPadding;
|
||||
nsMargin border = borderPadding - aReflowState.mComputedPadding;
|
||||
|
||||
// Figure out how big the legend is if there is one.
|
||||
// get the legend's margin
|
||||
|
@ -492,7 +481,7 @@ nsFieldSetFrame::Reflow(nsPresContext* aPresContext,
|
|||
legendMargin = legend->GetUsedMargin();
|
||||
mLegendRect.width = legendDesiredSize.width + legendMargin.left + legendMargin.right;
|
||||
mLegendRect.height = legendDesiredSize.height + legendMargin.top + legendMargin.bottom;
|
||||
mLegendRect.x = 0;
|
||||
mLegendRect.x = borderPadding.left;
|
||||
mLegendRect.y = 0;
|
||||
|
||||
nscoord oldSpace = mLegendSpace;
|
||||
|
@ -524,22 +513,16 @@ nsFieldSetFrame::Reflow(nsPresContext* aPresContext,
|
|||
// reflow the content frame only if needed
|
||||
if (reflowInner) {
|
||||
nsHTMLReflowState kidReflowState(aPresContext, aReflowState, inner,
|
||||
availSize, -1, -1, nsHTMLReflowState::CALLER_WILL_INIT);
|
||||
// Override computed padding, in case it's percentage padding
|
||||
kidReflowState.Init(aPresContext, -1, -1, nullptr,
|
||||
&aReflowState.mComputedPadding);
|
||||
availSize);
|
||||
// Our child is "height:100%" but we actually want its height to be reduced
|
||||
// by the amount of content-height the legend is eating up, unless our
|
||||
// height is unconstrained (in which case the child's will be too).
|
||||
if (aReflowState.ComputedHeight() != NS_UNCONSTRAINEDSIZE) {
|
||||
kidReflowState.SetComputedHeight(
|
||||
std::max(0, aReflowState.ComputedHeight() - mLegendSpace));
|
||||
kidReflowState.SetComputedHeight(std::max(0, aReflowState.ComputedHeight() - mLegendSpace));
|
||||
}
|
||||
|
||||
if (aReflowState.mComputedMinHeight > 0) {
|
||||
kidReflowState.mComputedMinHeight =
|
||||
std::max(0, aReflowState.mComputedMinHeight - mLegendSpace);
|
||||
}
|
||||
kidReflowState.mComputedMinHeight =
|
||||
std::max(0, aReflowState.mComputedMinHeight - mLegendSpace);
|
||||
|
||||
if (aReflowState.mComputedMaxHeight != NS_UNCONSTRAINEDSIZE) {
|
||||
kidReflowState.mComputedMaxHeight =
|
||||
|
@ -550,7 +533,7 @@ nsFieldSetFrame::Reflow(nsPresContext* aPresContext,
|
|||
// Reflow the frame
|
||||
NS_ASSERTION(kidReflowState.mComputedMargin == nsMargin(0,0,0,0),
|
||||
"Margins on anonymous fieldset child not supported!");
|
||||
nsPoint pt(border.left, border.top + mLegendSpace);
|
||||
nsPoint pt(borderPadding.left, borderPadding.top + mLegendSpace);
|
||||
ReflowChild(inner, aPresContext, kidDesiredSize, kidReflowState,
|
||||
pt.x, pt.y, 0, aStatus);
|
||||
|
||||
|
@ -559,45 +542,37 @@ nsFieldSetFrame::Reflow(nsPresContext* aPresContext,
|
|||
NS_FRAME_TRACE_REFLOW_OUT("FieldSet::Reflow", aStatus);
|
||||
}
|
||||
|
||||
nsRect contentRect;
|
||||
nsRect contentRect(0,0,0,0);
|
||||
if (inner) {
|
||||
// We don't support margins on inner, so our content rect is just the
|
||||
// inner's border-box.
|
||||
// We don't support margins on inner, so our "content rect" is just
|
||||
// its rect.
|
||||
contentRect = inner->GetRect();
|
||||
}
|
||||
|
||||
// Our content rect must fill up the available width
|
||||
if (availSize.width > contentRect.width) {
|
||||
contentRect.width = availSize.width;
|
||||
// use the computed width if the inner content does not fill it
|
||||
if (aReflowState.ComputedWidth() > contentRect.width) {
|
||||
contentRect.width = aReflowState.ComputedWidth();
|
||||
}
|
||||
|
||||
if (legend) {
|
||||
// the legend is postioned horizontally within the inner's content rect
|
||||
// (so that padding on the fieldset affects the legend position).
|
||||
nsRect innerContentRect = contentRect;
|
||||
innerContentRect.Deflate(aReflowState.mComputedPadding);
|
||||
// if the inner content rect is larger than the legend, we can align the legend
|
||||
if (innerContentRect.width > mLegendRect.width) {
|
||||
// if the content rect is larger then the legend we can align the legend
|
||||
if (contentRect.width > mLegendRect.width) {
|
||||
int32_t align = static_cast<nsLegendFrame*>
|
||||
(legend->GetContentInsertionFrame())->GetAlign();
|
||||
|
||||
switch (align) {
|
||||
switch(align) {
|
||||
case NS_STYLE_TEXT_ALIGN_RIGHT:
|
||||
mLegendRect.x = innerContentRect.XMost() - mLegendRect.width;
|
||||
mLegendRect.x = contentRect.width - mLegendRect.width + borderPadding.left;
|
||||
break;
|
||||
case NS_STYLE_TEXT_ALIGN_CENTER:
|
||||
// Note: rounding removed; there doesn't seem to be any need
|
||||
mLegendRect.x = innerContentRect.width / 2 - mLegendRect.width / 2 + innerContentRect.x;
|
||||
break;
|
||||
default:
|
||||
mLegendRect.x = innerContentRect.x;
|
||||
mLegendRect.x = contentRect.width / 2 - mLegendRect.width / 2 + borderPadding.left;
|
||||
break;
|
||||
}
|
||||
|
||||
} else {
|
||||
// otherwise make place for the legend
|
||||
mLegendRect.x = innerContentRect.x;
|
||||
innerContentRect.width = mLegendRect.width;
|
||||
contentRect.width = mLegendRect.width + aReflowState.mComputedPadding.LeftRight();
|
||||
contentRect.width = mLegendRect.width;
|
||||
}
|
||||
// place the legend
|
||||
nsRect actualLegendRect(mLegendRect);
|
||||
|
@ -619,16 +594,16 @@ nsFieldSetFrame::Reflow(nsPresContext* aPresContext,
|
|||
// Return our size and our result
|
||||
if (aReflowState.ComputedHeight() == NS_INTRINSICSIZE) {
|
||||
aDesiredSize.height = mLegendSpace +
|
||||
border.TopBottom() +
|
||||
(inner ? inner->GetRect().height : 0);
|
||||
borderPadding.TopBottom() +
|
||||
contentRect.height;
|
||||
} else {
|
||||
nscoord min = border.TopBottom() + mLegendRect.height;
|
||||
nscoord min = borderPadding.TopBottom() + mLegendRect.height;
|
||||
aDesiredSize.height =
|
||||
aReflowState.ComputedHeight() + aReflowState.mComputedBorderPadding.TopBottom();
|
||||
aReflowState.ComputedHeight() + borderPadding.TopBottom();
|
||||
if (aDesiredSize.height < min)
|
||||
aDesiredSize.height = min;
|
||||
}
|
||||
aDesiredSize.width = contentRect.width + border.LeftRight();
|
||||
aDesiredSize.width = contentRect.width + borderPadding.LeftRight();
|
||||
aDesiredSize.SetOverflowAreasToDesiredBounds();
|
||||
if (legend)
|
||||
ConsiderChildOverflow(aDesiredSize.mOverflowAreas, legend);
|
||||
|
@ -706,6 +681,9 @@ nsFieldSetFrame::ReparentFrameList(const nsFrameList& aFrameList)
|
|||
nscoord
|
||||
nsFieldSetFrame::GetBaseline() const
|
||||
{
|
||||
// We know inner is a block, so calling GetBaseline() on it will do
|
||||
// the right thing (that being to return the baseline of the last line).
|
||||
nsIFrame* inner = GetInner();
|
||||
NS_ASSERTION(nsLayoutUtils::GetAsBlock(inner), "Unexpected inner");
|
||||
return inner->GetPosition().y + inner->GetBaseline();
|
||||
}
|
||||
|
|
|
@ -1,24 +0,0 @@
|
|||
<!DOCTYPE HTML>
|
||||
<html>
|
||||
<head>
|
||||
<style>
|
||||
fieldset {
|
||||
background:pink;
|
||||
overflow:hidden;
|
||||
height:100px;
|
||||
}
|
||||
legend::after { content:"legend"; }
|
||||
p {
|
||||
background:lime;
|
||||
height:20px;
|
||||
}
|
||||
</style>
|
||||
</head>
|
||||
<body>
|
||||
<fieldset id="f1"><legend></legend><p></p></fieldset>
|
||||
<br>
|
||||
<fieldset id="f2"><legend></legend><p></p></fieldset>
|
||||
<br>
|
||||
<fieldset id="f3"><legend></legend></fieldset>
|
||||
</body>
|
||||
</html>
|
|
@ -1,33 +0,0 @@
|
|||
<!DOCTYPE HTML>
|
||||
<html class="reftest-wait">
|
||||
<head>
|
||||
<style>
|
||||
fieldset {
|
||||
background:pink;
|
||||
overflow:hidden;
|
||||
height:100px;
|
||||
}
|
||||
legend::after { content:"legend"; }
|
||||
p {
|
||||
background:lime;
|
||||
height:20px;
|
||||
}
|
||||
</style>
|
||||
</head>
|
||||
<body>
|
||||
<fieldset id="f1"><p></p></fieldset>
|
||||
<br>
|
||||
<fieldset id="f2"><p></p></fieldset>
|
||||
<br>
|
||||
<fieldset id="f3"></fieldset>
|
||||
<script>
|
||||
function doTest() {
|
||||
f1.appendChild(document.createElement('legend'));
|
||||
f2.insertBefore(document.createElement('legend'), f2.firstChild);
|
||||
f3.appendChild(document.createElement('legend'));
|
||||
document.documentElement.removeAttribute("class");
|
||||
}
|
||||
window.addEventListener("MozReftestInvalidate", doTest);
|
||||
</script>
|
||||
</body>
|
||||
</html>
|
|
@ -1,21 +0,0 @@
|
|||
<!DOCTYPE HTML>
|
||||
<html>
|
||||
<body>
|
||||
<fieldset style="width:200px; height:200px; padding:0">
|
||||
<legend>Legend</legend>
|
||||
<div style="overflow:hidden; height:100%;">
|
||||
<p>Hello Kitty
|
||||
<p>Hello Kitty
|
||||
<p>Hello Kitty
|
||||
<p>Hello Kitty
|
||||
<p>Hello Kitty
|
||||
<p>Hello Kitty
|
||||
<p>Hello Kitty
|
||||
<p>Hello Kitty
|
||||
<p>Hello Kitty
|
||||
<p>Hello Kitty
|
||||
<p>Hello Kitty
|
||||
</div>
|
||||
</fieldset>
|
||||
</body>
|
||||
</html>
|
|
@ -1,19 +0,0 @@
|
|||
<!DOCTYPE HTML>
|
||||
<html>
|
||||
<body>
|
||||
<fieldset style="overflow:hidden; width:200px; height:200px; padding:0">
|
||||
<legend>Legend</legend>
|
||||
<p>Hello Kitty
|
||||
<p>Hello Kitty
|
||||
<p>Hello Kitty
|
||||
<p>Hello Kitty
|
||||
<p>Hello Kitty
|
||||
<p>Hello Kitty
|
||||
<p>Hello Kitty
|
||||
<p>Hello Kitty
|
||||
<p>Hello Kitty
|
||||
<p>Hello Kitty
|
||||
<p>Hello Kitty
|
||||
</fieldset>
|
||||
</body>
|
||||
</html>
|
|
@ -1,8 +0,0 @@
|
|||
<!DOCTYPE HTML>
|
||||
<html>
|
||||
<body>
|
||||
<fieldset style="width:0; padding:0;">
|
||||
<div style="width:400px; height:200px;"></div>
|
||||
</fieldset>
|
||||
</body>
|
||||
</html>
|
|
@ -1,8 +0,0 @@
|
|||
<!DOCTYPE HTML>
|
||||
<html>
|
||||
<body>
|
||||
<fieldset style="padding:50px; float:left;">
|
||||
<div style="width:300px; height:100px;"></div>
|
||||
</fieldset>
|
||||
</body>
|
||||
</html>
|
|
@ -1,52 +0,0 @@
|
|||
<!DOCTYPE HTML>
|
||||
<html><head>
|
||||
<meta charset="utf-8">
|
||||
<title>Testcase for bug 261037</title>
|
||||
<style type="text/css">
|
||||
fieldset, div {
|
||||
background:pink;
|
||||
overflow:auto;
|
||||
height:100px;
|
||||
margin:0; padding:0; border:0;
|
||||
}
|
||||
p {
|
||||
background:blue;
|
||||
height:100px;
|
||||
margin:0; padding:0;
|
||||
}
|
||||
.overflow {
|
||||
height:110px;
|
||||
}
|
||||
.abs {
|
||||
position:absolute;
|
||||
width:100px;
|
||||
top:250px;
|
||||
}
|
||||
p.abs {
|
||||
top:0;left:0;
|
||||
}
|
||||
.b { border:10px solid black; }
|
||||
.p { padding: 7px 0; }
|
||||
.p p { height:114px; }
|
||||
</style>
|
||||
</head>
|
||||
<body>
|
||||
|
||||
<div><p></p></div>
|
||||
<br>
|
||||
<div><p class="overflow"></p></div>
|
||||
<br>
|
||||
<div class="abs"><p class="abs"></p></div>
|
||||
<br>
|
||||
<div class="abs" style="left:120px"><p class="abs overflow"></p></div>
|
||||
<br>
|
||||
<div class="abs b" style="left:240px"><p class="abs"></p></div>
|
||||
<br>
|
||||
<div class="abs b" style="left:370px"><p class="abs overflow"></p></div>
|
||||
<br>
|
||||
<div class="abs b p" style="left:510px"><p class="abs"></p></div>
|
||||
<br>
|
||||
<div class="abs b p" style="left:640px"><p class="abs overflow"></p></div>
|
||||
|
||||
</body>
|
||||
</html>
|
|
@ -1,52 +0,0 @@
|
|||
<!DOCTYPE HTML>
|
||||
<html><head>
|
||||
<meta charset="utf-8">
|
||||
<title>Testcase for bug 261037</title>
|
||||
<style type="text/css">
|
||||
fieldset, div {
|
||||
background:pink;
|
||||
overflow:auto;
|
||||
height:100px;
|
||||
margin:0; padding:0; border:0;
|
||||
}
|
||||
p {
|
||||
background:blue;
|
||||
height:100px;
|
||||
margin:0; padding:0;
|
||||
}
|
||||
.overflow {
|
||||
height:110px;
|
||||
}
|
||||
.abs {
|
||||
position:absolute;
|
||||
width:100px;
|
||||
top:250px;
|
||||
}
|
||||
p.abs {
|
||||
top:0;left:0;
|
||||
}
|
||||
.b { border:10px solid black; }
|
||||
.p { padding: 7px 0; }
|
||||
.p p { height:114px; }
|
||||
</style>
|
||||
</head>
|
||||
<body>
|
||||
|
||||
<fieldset><p></p></fieldset>
|
||||
<br>
|
||||
<fieldset><p class="overflow"></p></fieldset>
|
||||
<br>
|
||||
<fieldset class="abs"><p class="abs"></p></fieldset>
|
||||
<br>
|
||||
<fieldset class="abs" style="left:120px"><p class="abs overflow"></p></fieldset>
|
||||
<br>
|
||||
<fieldset class="abs b" style="left:240px"><p class="abs"></p></fieldset>
|
||||
<br>
|
||||
<fieldset class="abs b" style="left:370px"><p class="abs overflow"></p></fieldset>
|
||||
<br>
|
||||
<fieldset class="abs b p" style="left:510px"><p class="abs"></p></fieldset>
|
||||
<br>
|
||||
<fieldset class="abs b p" style="left:640px"><p class="abs overflow"></p></fieldset>
|
||||
|
||||
</body>
|
||||
</html>
|
|
@ -1,19 +0,0 @@
|
|||
<!DOCTYPE HTML>
|
||||
<html>
|
||||
<body>
|
||||
<div style="width:700px; border:2px solid green; overflow:hidden">
|
||||
<fieldset style="padding:140px; width:400px;">
|
||||
<legend>Legend</legend>
|
||||
TextTextTextTextTextText
|
||||
</fieldset>
|
||||
<fieldset style="padding:140px; display:inline;">
|
||||
<legend>Legend</legend>
|
||||
TextTextTextTextTextText
|
||||
</fieldset>
|
||||
<fieldset style="padding:140px; float:left;">
|
||||
<legend>Legend</legend>
|
||||
TextTextTextTextTextText
|
||||
</fieldset>
|
||||
</div>
|
||||
</body>
|
||||
</html>
|
|
@ -1,19 +0,0 @@
|
|||
<!DOCTYPE HTML>
|
||||
<html>
|
||||
<body>
|
||||
<div style="width:700px; border:2px solid green; overflow:hidden">
|
||||
<fieldset style="padding:20%; width:400px;">
|
||||
<legend>Legend</legend>
|
||||
TextTextTextTextTextText
|
||||
</fieldset>
|
||||
<fieldset style="padding:20%; display:inline;">
|
||||
<legend>Legend</legend>
|
||||
TextTextTextTextTextText
|
||||
</fieldset>
|
||||
<fieldset style="padding:20%; float:left;">
|
||||
<legend>Legend</legend>
|
||||
TextTextTextTextTextText
|
||||
</fieldset>
|
||||
</div>
|
||||
</body>
|
||||
</html>
|
|
@ -1,9 +0,0 @@
|
|||
<!DOCTYPE HTML>
|
||||
<html>
|
||||
<body>
|
||||
<fieldset style="width:200px; height:200px; padding:0">
|
||||
<legend>Legend</legend>
|
||||
<div style="overflow:scroll; height:100%">
|
||||
</fieldset>
|
||||
</body>
|
||||
</html>
|
|
@ -1,8 +0,0 @@
|
|||
<!DOCTYPE HTML>
|
||||
<html>
|
||||
<body>
|
||||
<fieldset style="overflow:scroll; width:200px; height:200px; padding:0">
|
||||
<legend>Legend</legend>
|
||||
</fieldset>
|
||||
</body>
|
||||
</html>
|
|
@ -1,24 +0,0 @@
|
|||
<!DOCTYPE HTML>
|
||||
<html>
|
||||
<body>
|
||||
<fieldset style="width:200px; height:200px; padding:0">
|
||||
<legend style="overflow:hidden">Legend</legend>
|
||||
<div id="d" style="overflow:hidden; height:100%;">
|
||||
<p>Hello Kitty
|
||||
<p>Hello Kitty
|
||||
<p>Hello Kitty
|
||||
<p>Hello Kitty
|
||||
<p>Hello Kitty
|
||||
<p>Hello Kitty
|
||||
<p>Hello Kitty
|
||||
<p>Hello Kitty
|
||||
<p>Hello Kitty
|
||||
<p>Hello Kitty
|
||||
<p>Hello Kitty
|
||||
</div>
|
||||
</fieldset>
|
||||
<script>
|
||||
d.scrollTop = 20;
|
||||
</script>
|
||||
</body>
|
||||
</html>
|
|
@ -1,27 +0,0 @@
|
|||
<!DOCTYPE HTML>
|
||||
<html class="reftest-wait">
|
||||
<body>
|
||||
<fieldset id="f" style="overflow:hidden; width:200px; height:200px; padding:0">
|
||||
<legend style="overflow:hidden">Legend</legend>
|
||||
<p>Hello Kitty
|
||||
<p>Hello Kitty
|
||||
<p>Hello Kitty
|
||||
<p>Hello Kitty
|
||||
<p>Hello Kitty
|
||||
<p>Hello Kitty
|
||||
<p>Hello Kitty
|
||||
<p>Hello Kitty
|
||||
<p>Hello Kitty
|
||||
<p>Hello Kitty
|
||||
<p>Hello Kitty
|
||||
</fieldset>
|
||||
<script>
|
||||
f.scrollTop = 0;
|
||||
function doTest() {
|
||||
f.scrollTop = 20;
|
||||
document.documentElement.removeAttribute("class");
|
||||
}
|
||||
window.addEventListener("MozReftestInvalidate", doTest);
|
||||
</script>
|
||||
</body>
|
||||
</html>
|
|
@ -1,11 +0,0 @@
|
|||
<!DOCTYPE HTML>
|
||||
<html>
|
||||
<body>
|
||||
<fieldset style="position:relative; overflow:hidden; width:500px; height:500px;">
|
||||
<legend>Legend</legend>
|
||||
<div style="height:1000px;">
|
||||
<div style="position:absolute; left:20px; top:20px; background:yellow;">Abs-pos</div>
|
||||
</div>
|
||||
</fieldset>
|
||||
</body>
|
||||
</html>
|
|
@ -1,14 +0,0 @@
|
|||
<!DOCTYPE HTML>
|
||||
<html>
|
||||
<body>
|
||||
<fieldset id="f" style="position:relative; overflow:hidden; width:500px; height:500px;">
|
||||
<legend>Legend</legend>
|
||||
<div style="height:1000px;">
|
||||
<div style="position:absolute; left:20px; top:50px; background:yellow;">Abs-pos</div>
|
||||
</div>
|
||||
</fieldset>
|
||||
<script>
|
||||
f.scrollTop = 30;
|
||||
</script>
|
||||
</body>
|
||||
</html>
|
|
@ -1,8 +0,0 @@
|
|||
== dynamic-legend-scroll-1.html dynamic-legend-scroll-1-ref.html
|
||||
== fieldset-hidden-1.html fieldset-hidden-1-ref.html
|
||||
== fieldset-intrinsic-width-1.html fieldset-intrinsic-width-1-ref.html
|
||||
== fieldset-percentage-padding-1.html fieldset-percentage-padding-1-ref.html
|
||||
== fieldset-scroll-1.html fieldset-scroll-1-ref.html
|
||||
== fieldset-scrolled-1.html fieldset-scrolled-1-ref.html
|
||||
== fieldset-overflow-auto-1.html fieldset-overflow-auto-1-ref.html
|
||||
== positioned-container-1.html positioned-container-1-ref.html
|
|
@ -6,9 +6,6 @@ include button/reftest.list
|
|||
# legend element
|
||||
include legend/reftest.list
|
||||
|
||||
# fieldset element
|
||||
include fieldset/reftest.list
|
||||
|
||||
# placeholder
|
||||
include placeholder/reftest.list
|
||||
|
||||
|
|
|
@ -14,8 +14,6 @@
|
|||
display: block;
|
||||
unicode-bidi: inherit;
|
||||
text-overflow: inherit;
|
||||
overflow: inherit;
|
||||
padding: inherit;
|
||||
height: 100%; /* Need this so percentage heights of kids work right */
|
||||
}
|
||||
|
||||
|
|
Загрузка…
Ссылка в новой задаче