2014-07-23 06:08:01 +04:00
|
|
|
/* -*- Mode: C++; tab-width: 2; indent-tabs-mode: nil; c-basic-offset: 2 -*- */
|
|
|
|
/* vim: set ts=2 et sw=2 tw=80: */
|
|
|
|
/* This Source Code is subject to the terms of the Mozilla Public License
|
|
|
|
* version 2.0 (the "License"). You can obtain a copy of the License at
|
|
|
|
* http://mozilla.org/MPL/2.0/. */
|
|
|
|
|
|
|
|
/* rendering object for CSS "display: ruby" */
|
|
|
|
#include "nsRubyFrame.h"
|
2014-08-15 21:34:20 +04:00
|
|
|
#include "nsLineLayout.h"
|
2014-07-23 06:08:01 +04:00
|
|
|
#include "nsPresContext.h"
|
|
|
|
#include "nsStyleContext.h"
|
2014-08-15 21:34:20 +04:00
|
|
|
#include "WritingModes.h"
|
2014-12-29 03:14:53 +03:00
|
|
|
#include "RubyUtils.h"
|
2014-08-15 21:34:20 +04:00
|
|
|
#include "nsRubyBaseContainerFrame.h"
|
|
|
|
#include "nsRubyTextContainerFrame.h"
|
|
|
|
|
|
|
|
using namespace mozilla;
|
2014-07-23 06:08:01 +04:00
|
|
|
|
|
|
|
//----------------------------------------------------------------------
|
|
|
|
|
|
|
|
// Frame class boilerplate
|
|
|
|
// =======================
|
|
|
|
|
|
|
|
NS_QUERYFRAME_HEAD(nsRubyFrame)
|
|
|
|
NS_QUERYFRAME_ENTRY(nsRubyFrame)
|
2015-01-15 12:02:11 +03:00
|
|
|
NS_QUERYFRAME_TAIL_INHERITING(nsRubyFrameSuper)
|
2014-07-23 06:08:01 +04:00
|
|
|
|
|
|
|
NS_IMPL_FRAMEARENA_HELPERS(nsRubyFrame)
|
|
|
|
|
|
|
|
nsContainerFrame*
|
|
|
|
NS_NewRubyFrame(nsIPresShell* aPresShell,
|
|
|
|
nsStyleContext* aContext)
|
|
|
|
{
|
|
|
|
return new (aPresShell) nsRubyFrame(aContext);
|
|
|
|
}
|
|
|
|
|
|
|
|
//----------------------------------------------------------------------
|
|
|
|
|
|
|
|
// nsRubyFrame Method Implementations
|
|
|
|
// ==================================
|
|
|
|
|
|
|
|
nsIAtom*
|
|
|
|
nsRubyFrame::GetType() const
|
|
|
|
{
|
|
|
|
return nsGkAtoms::rubyFrame;
|
|
|
|
}
|
|
|
|
|
2014-08-15 21:34:20 +04:00
|
|
|
/* virtual */ bool
|
2014-07-23 06:08:01 +04:00
|
|
|
nsRubyFrame::IsFrameOfType(uint32_t aFlags) const
|
|
|
|
{
|
2015-01-15 12:02:11 +03:00
|
|
|
if (aFlags & eBidiInlineContainer) {
|
|
|
|
return false;
|
|
|
|
}
|
|
|
|
return nsRubyFrameSuper::IsFrameOfType(aFlags);
|
2014-07-23 06:08:01 +04:00
|
|
|
}
|
|
|
|
|
|
|
|
#ifdef DEBUG_FRAME_DUMP
|
|
|
|
nsresult
|
|
|
|
nsRubyFrame::GetFrameName(nsAString& aResult) const
|
|
|
|
{
|
|
|
|
return MakeFrameName(NS_LITERAL_STRING("Ruby"), aResult);
|
|
|
|
}
|
|
|
|
#endif
|
2014-08-15 21:34:20 +04:00
|
|
|
|
2014-11-26 07:52:48 +03:00
|
|
|
/**
|
|
|
|
* This enumerator enumerates each segment.
|
|
|
|
*/
|
|
|
|
class MOZ_STACK_CLASS SegmentEnumerator
|
|
|
|
{
|
|
|
|
public:
|
2014-12-11 01:47:09 +03:00
|
|
|
explicit SegmentEnumerator(nsRubyFrame* aRubyFrame);
|
2014-11-26 07:52:48 +03:00
|
|
|
|
|
|
|
void Next();
|
|
|
|
bool AtEnd() const { return !mBaseContainer; }
|
|
|
|
|
|
|
|
nsRubyBaseContainerFrame* GetBaseContainer() const
|
|
|
|
{
|
|
|
|
return mBaseContainer;
|
|
|
|
}
|
|
|
|
|
|
|
|
private:
|
|
|
|
nsRubyBaseContainerFrame* mBaseContainer;
|
|
|
|
};
|
|
|
|
|
|
|
|
SegmentEnumerator::SegmentEnumerator(nsRubyFrame* aRubyFrame)
|
|
|
|
{
|
|
|
|
nsIFrame* frame = aRubyFrame->GetFirstPrincipalChild();
|
|
|
|
MOZ_ASSERT(!frame ||
|
|
|
|
frame->GetType() == nsGkAtoms::rubyBaseContainerFrame);
|
|
|
|
mBaseContainer = static_cast<nsRubyBaseContainerFrame*>(frame);
|
|
|
|
}
|
|
|
|
|
|
|
|
void
|
|
|
|
SegmentEnumerator::Next()
|
|
|
|
{
|
|
|
|
MOZ_ASSERT(mBaseContainer);
|
|
|
|
nsIFrame* frame = mBaseContainer->GetNextSibling();
|
|
|
|
while (frame && frame->GetType() != nsGkAtoms::rubyBaseContainerFrame) {
|
|
|
|
frame = frame->GetNextSibling();
|
|
|
|
}
|
|
|
|
mBaseContainer = static_cast<nsRubyBaseContainerFrame*>(frame);
|
|
|
|
}
|
|
|
|
|
2014-08-15 21:34:20 +04:00
|
|
|
/* virtual */ void
|
|
|
|
nsRubyFrame::AddInlineMinISize(nsRenderingContext *aRenderingContext,
|
|
|
|
nsIFrame::InlineMinISizeData *aData)
|
|
|
|
{
|
|
|
|
nscoord max = 0;
|
2014-11-26 07:52:48 +03:00
|
|
|
for (SegmentEnumerator e(this); !e.AtEnd(); e.Next()) {
|
|
|
|
max = std::max(max, e.GetBaseContainer()->GetMinISize(aRenderingContext));
|
2014-08-15 21:34:20 +04:00
|
|
|
}
|
|
|
|
aData->currentLine += max;
|
|
|
|
}
|
|
|
|
|
|
|
|
/* virtual */ void
|
|
|
|
nsRubyFrame::AddInlinePrefISize(nsRenderingContext *aRenderingContext,
|
|
|
|
nsIFrame::InlinePrefISizeData *aData)
|
|
|
|
{
|
|
|
|
nscoord sum = 0;
|
2014-11-26 07:52:48 +03:00
|
|
|
for (SegmentEnumerator e(this); !e.AtEnd(); e.Next()) {
|
|
|
|
sum += e.GetBaseContainer()->GetPrefISize(aRenderingContext);
|
2014-08-15 21:34:20 +04:00
|
|
|
}
|
|
|
|
aData->currentLine += sum;
|
|
|
|
}
|
|
|
|
|
|
|
|
/* virtual */ void
|
|
|
|
nsRubyFrame::Reflow(nsPresContext* aPresContext,
|
|
|
|
nsHTMLReflowMetrics& aDesiredSize,
|
|
|
|
const nsHTMLReflowState& aReflowState,
|
|
|
|
nsReflowStatus& aStatus)
|
|
|
|
{
|
|
|
|
DO_GLOBAL_REFLOW_COUNT("nsRubyFrame");
|
|
|
|
DISPLAY_REFLOW(aPresContext, this, aReflowState, aDesiredSize, aStatus);
|
|
|
|
|
|
|
|
if (!aReflowState.mLineLayout) {
|
|
|
|
NS_ASSERTION(aReflowState.mLineLayout,
|
|
|
|
"No line layout provided to RubyFrame reflow method.");
|
|
|
|
aStatus = NS_FRAME_COMPLETE;
|
|
|
|
return;
|
|
|
|
}
|
|
|
|
|
2014-11-26 07:52:50 +03:00
|
|
|
// Grab overflow frames from prev-in-flow and its own.
|
|
|
|
MoveOverflowToChildList();
|
|
|
|
|
2015-01-08 08:02:41 +03:00
|
|
|
// Clear leadings
|
|
|
|
mBStartLeading = mBEndLeading = 0;
|
|
|
|
|
2014-08-15 21:34:20 +04:00
|
|
|
// Begin the span for the ruby frame
|
|
|
|
WritingMode frameWM = aReflowState.GetWritingMode();
|
|
|
|
WritingMode lineWM = aReflowState.mLineLayout->GetWritingMode();
|
|
|
|
LogicalMargin borderPadding = aReflowState.ComputedLogicalBorderPadding();
|
2014-11-26 07:52:49 +03:00
|
|
|
nscoord startEdge = borderPadding.IStart(frameWM);
|
|
|
|
nscoord endEdge = aReflowState.AvailableISize() - borderPadding.IEnd(frameWM);
|
|
|
|
NS_ASSERTION(aReflowState.AvailableISize() != NS_UNCONSTRAINEDSIZE,
|
2014-08-15 21:34:20 +04:00
|
|
|
"should no longer use available widths");
|
|
|
|
aReflowState.mLineLayout->BeginSpan(this, &aReflowState,
|
2014-11-26 07:52:49 +03:00
|
|
|
startEdge, endEdge, &mBaseline);
|
2014-08-15 21:34:20 +04:00
|
|
|
|
|
|
|
aStatus = NS_FRAME_COMPLETE;
|
2014-11-26 07:52:48 +03:00
|
|
|
for (SegmentEnumerator e(this); !e.AtEnd(); e.Next()) {
|
2014-11-26 07:52:50 +03:00
|
|
|
ReflowSegment(aPresContext, aReflowState, e.GetBaseContainer(), aStatus);
|
2014-11-26 07:52:50 +03:00
|
|
|
|
|
|
|
if (NS_INLINE_IS_BREAK(aStatus)) {
|
|
|
|
// A break occurs when reflowing the segment.
|
|
|
|
// Don't continue reflowing more segments.
|
|
|
|
break;
|
|
|
|
}
|
2014-08-15 21:34:20 +04:00
|
|
|
}
|
|
|
|
|
2014-11-26 07:52:50 +03:00
|
|
|
ContinuationTraversingState pullState(this);
|
|
|
|
while (aStatus == NS_FRAME_COMPLETE) {
|
|
|
|
nsRubyBaseContainerFrame* baseContainer = PullOneSegment(pullState);
|
|
|
|
if (!baseContainer) {
|
|
|
|
// No more continuations after, finish now.
|
|
|
|
break;
|
|
|
|
}
|
|
|
|
ReflowSegment(aPresContext, aReflowState, baseContainer, aStatus);
|
|
|
|
}
|
|
|
|
// We never handle overflow in ruby.
|
|
|
|
MOZ_ASSERT(!NS_FRAME_OVERFLOW_IS_INCOMPLETE(aStatus));
|
|
|
|
|
2014-08-15 21:34:20 +04:00
|
|
|
aDesiredSize.ISize(lineWM) = aReflowState.mLineLayout->EndSpan(this);
|
2015-01-15 12:02:11 +03:00
|
|
|
nsLayoutUtils::SetBSizeFromFontMetrics(this, aDesiredSize,
|
2014-08-15 21:34:20 +04:00
|
|
|
borderPadding, lineWM, frameWM);
|
|
|
|
}
|
2014-11-26 07:52:50 +03:00
|
|
|
|
2014-12-17 11:42:32 +03:00
|
|
|
#ifdef DEBUG
|
|
|
|
static void
|
|
|
|
SanityCheckRubyPosition(int8_t aRubyPosition)
|
|
|
|
{
|
|
|
|
uint8_t horizontalPosition = aRubyPosition &
|
|
|
|
(NS_STYLE_RUBY_POSITION_LEFT | NS_STYLE_RUBY_POSITION_RIGHT);
|
|
|
|
MOZ_ASSERT(horizontalPosition == NS_STYLE_RUBY_POSITION_LEFT ||
|
|
|
|
horizontalPosition == NS_STYLE_RUBY_POSITION_RIGHT);
|
|
|
|
uint8_t verticalPosition = aRubyPosition &
|
|
|
|
(NS_STYLE_RUBY_POSITION_OVER | NS_STYLE_RUBY_POSITION_UNDER |
|
|
|
|
NS_STYLE_RUBY_POSITION_INTER_CHARACTER);
|
|
|
|
MOZ_ASSERT(verticalPosition == NS_STYLE_RUBY_POSITION_OVER ||
|
|
|
|
verticalPosition == NS_STYLE_RUBY_POSITION_UNDER ||
|
|
|
|
verticalPosition == NS_STYLE_RUBY_POSITION_INTER_CHARACTER);
|
|
|
|
}
|
|
|
|
#endif
|
|
|
|
|
2014-11-26 07:52:50 +03:00
|
|
|
void
|
|
|
|
nsRubyFrame::ReflowSegment(nsPresContext* aPresContext,
|
|
|
|
const nsHTMLReflowState& aReflowState,
|
|
|
|
nsRubyBaseContainerFrame* aBaseContainer,
|
|
|
|
nsReflowStatus& aStatus)
|
|
|
|
{
|
|
|
|
WritingMode lineWM = aReflowState.mLineLayout->GetWritingMode();
|
|
|
|
LogicalSize availSize(lineWM, aReflowState.AvailableISize(),
|
|
|
|
aReflowState.AvailableBSize());
|
|
|
|
|
2014-11-26 07:52:50 +03:00
|
|
|
nsAutoTArray<nsRubyTextContainerFrame*, RTC_ARRAY_SIZE> textContainers;
|
2014-12-29 03:14:53 +03:00
|
|
|
for (RubyTextContainerIterator iter(aBaseContainer); !iter.AtEnd(); iter.Next()) {
|
2014-11-26 07:52:50 +03:00
|
|
|
textContainers.AppendElement(iter.GetTextContainer());
|
|
|
|
}
|
|
|
|
const uint32_t rtcCount = textContainers.Length();
|
|
|
|
|
2014-11-26 07:52:50 +03:00
|
|
|
nsHTMLReflowMetrics baseMetrics(aReflowState);
|
|
|
|
bool pushedFrame;
|
2014-11-26 07:52:50 +03:00
|
|
|
aReflowState.mLineLayout->ReflowFrame(aBaseContainer, aStatus,
|
2014-11-26 07:52:50 +03:00
|
|
|
&baseMetrics, pushedFrame);
|
|
|
|
|
2014-11-26 07:52:50 +03:00
|
|
|
if (NS_INLINE_IS_BREAK_BEFORE(aStatus)) {
|
|
|
|
if (aBaseContainer != mFrames.FirstChild()) {
|
|
|
|
// Some segments may have been reflowed before, hence it is not
|
|
|
|
// a break-before for the ruby container.
|
|
|
|
aStatus = NS_INLINE_LINE_BREAK_AFTER(NS_FRAME_NOT_COMPLETE);
|
|
|
|
PushChildren(aBaseContainer, aBaseContainer->GetPrevSibling());
|
|
|
|
aReflowState.mLineLayout->SetDirtyNextLine();
|
|
|
|
}
|
|
|
|
// This base container is not placed at all, we can skip all
|
|
|
|
// text containers paired with it.
|
|
|
|
return;
|
|
|
|
}
|
|
|
|
if (NS_FRAME_IS_NOT_COMPLETE(aStatus)) {
|
|
|
|
// It always promise that if the status is incomplete, there is a
|
|
|
|
// break occurs. Break before has been processed above. However,
|
|
|
|
// it is possible that break after happens with the frame reflow
|
|
|
|
// completed. It happens if there is a force break at the end.
|
|
|
|
MOZ_ASSERT(NS_INLINE_IS_BREAK_AFTER(aStatus));
|
|
|
|
// Find the previous sibling which we will
|
|
|
|
// insert new continuations after.
|
|
|
|
nsIFrame* lastChild;
|
|
|
|
if (rtcCount > 0) {
|
|
|
|
lastChild = textContainers.LastElement();
|
|
|
|
} else {
|
|
|
|
lastChild = aBaseContainer;
|
|
|
|
}
|
|
|
|
|
|
|
|
// Create continuations for the base container
|
2014-12-02 09:03:57 +03:00
|
|
|
nsIFrame* newBaseContainer = CreateNextInFlow(aBaseContainer);
|
2014-11-26 07:52:50 +03:00
|
|
|
// newBaseContainer is null if there are existing next-in-flows.
|
|
|
|
// We only need to move and push if there were not.
|
|
|
|
if (newBaseContainer) {
|
|
|
|
// Move the new frame after all the text containers
|
|
|
|
mFrames.RemoveFrame(newBaseContainer);
|
|
|
|
mFrames.InsertFrame(nullptr, lastChild, newBaseContainer);
|
|
|
|
|
|
|
|
// Create continuations for text containers
|
|
|
|
nsIFrame* newLastChild = newBaseContainer;
|
|
|
|
for (uint32_t i = 0; i < rtcCount; i++) {
|
2014-12-02 09:03:57 +03:00
|
|
|
nsIFrame* newTextContainer = CreateNextInFlow(textContainers[i]);
|
2014-11-26 07:52:50 +03:00
|
|
|
MOZ_ASSERT(newTextContainer, "Next-in-flow of rtc should not exist "
|
|
|
|
"if the corresponding rbc does not");
|
|
|
|
mFrames.RemoveFrame(newTextContainer);
|
|
|
|
mFrames.InsertFrame(nullptr, newLastChild, newTextContainer);
|
|
|
|
newLastChild = newTextContainer;
|
|
|
|
}
|
2015-01-07 04:47:09 +03:00
|
|
|
}
|
|
|
|
if (lastChild != mFrames.LastChild()) {
|
|
|
|
// Always push the next frame after the last child in this segment.
|
|
|
|
// It is possible that we pulled it back before our next-in-flow
|
|
|
|
// drain our overflow.
|
|
|
|
PushChildren(lastChild->GetNextSibling(), lastChild);
|
2014-11-26 07:52:50 +03:00
|
|
|
aReflowState.mLineLayout->SetDirtyNextLine();
|
|
|
|
}
|
|
|
|
} else {
|
|
|
|
// If the ruby base container is reflowed completely, the line
|
|
|
|
// layout will remove the next-in-flows of that frame. But the
|
|
|
|
// line layout is not aware of the ruby text containers, hence
|
|
|
|
// it is necessary to remove them here.
|
|
|
|
for (uint32_t i = 0; i < rtcCount; i++) {
|
|
|
|
nsIFrame* nextRTC = textContainers[i]->GetNextInFlow();
|
|
|
|
if (nextRTC) {
|
|
|
|
nextRTC->GetParent()->DeleteNextInFlowChild(nextRTC, true);
|
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2015-01-07 04:47:09 +03:00
|
|
|
nscoord segmentISize = baseMetrics.ISize(lineWM);
|
2014-11-26 07:52:50 +03:00
|
|
|
nsRect baseRect = aBaseContainer->GetRect();
|
2014-12-17 11:42:32 +03:00
|
|
|
// We need to position our rtc frames on one side or the other of the
|
|
|
|
// base container's rect, using a coordinate space that's relative to
|
|
|
|
// the ruby frame. Right now, the base container's rect's block-axis
|
|
|
|
// position is relative to the block container frame containing the
|
|
|
|
// lines, so we use 0 instead. (i.e. we assume that the base container
|
|
|
|
// is adjacent to the ruby frame's block-start edge.)
|
|
|
|
// XXX We may need to add border/padding here. See bug 1055667.
|
|
|
|
(lineWM.IsVertical() ? baseRect.x : baseRect.y) = 0;
|
|
|
|
// The rect for offsets of text containers.
|
|
|
|
nsRect offsetRect = baseRect;
|
2014-11-26 07:52:50 +03:00
|
|
|
for (uint32_t i = 0; i < rtcCount; i++) {
|
|
|
|
nsRubyTextContainerFrame* textContainer = textContainers[i];
|
2014-11-26 07:52:50 +03:00
|
|
|
nsReflowStatus textReflowStatus;
|
|
|
|
nsHTMLReflowMetrics textMetrics(aReflowState);
|
|
|
|
nsHTMLReflowState textReflowState(aPresContext, aReflowState,
|
|
|
|
textContainer, availSize);
|
2014-11-26 07:52:50 +03:00
|
|
|
// FIXME We probably shouldn't be using the same nsLineLayout for
|
|
|
|
// the text containers. But it should be fine now as we are
|
|
|
|
// not actually using this line layout to reflow something,
|
|
|
|
// but just read the writing mode from it.
|
2014-11-26 07:52:50 +03:00
|
|
|
textReflowState.mLineLayout = aReflowState.mLineLayout;
|
|
|
|
textContainer->Reflow(aPresContext, textMetrics,
|
|
|
|
textReflowState, textReflowStatus);
|
2014-11-26 07:52:50 +03:00
|
|
|
// Ruby text containers always return NS_FRAME_COMPLETE even when
|
|
|
|
// they have continuations, because the breaking has already been
|
|
|
|
// handled when reflowing the base containers.
|
2014-11-26 07:52:50 +03:00
|
|
|
NS_ASSERTION(textReflowStatus == NS_FRAME_COMPLETE,
|
2014-11-26 07:52:50 +03:00
|
|
|
"Ruby text container must not break itself inside");
|
2015-01-07 04:47:09 +03:00
|
|
|
nscoord isize = textMetrics.ISize(lineWM);
|
|
|
|
nscoord bsize = textMetrics.BSize(lineWM);
|
|
|
|
textContainer->SetSize(LogicalSize(lineWM, isize, bsize));
|
|
|
|
|
|
|
|
nscoord reservedISize = RubyUtils::GetReservedISize(textContainer);
|
|
|
|
segmentISize = std::max(segmentISize, isize + reservedISize);
|
2014-12-17 11:42:32 +03:00
|
|
|
|
2014-11-26 07:52:50 +03:00
|
|
|
nscoord x, y;
|
2014-12-17 11:42:32 +03:00
|
|
|
uint8_t rubyPosition = textContainer->StyleText()->mRubyPosition;
|
|
|
|
#ifdef DEBUG
|
|
|
|
SanityCheckRubyPosition(rubyPosition);
|
|
|
|
#endif
|
2014-11-26 07:52:50 +03:00
|
|
|
if (lineWM.IsVertical()) {
|
2014-12-17 11:42:32 +03:00
|
|
|
// writing-mode is vertical, so bsize is the annotation's *width*
|
|
|
|
if (rubyPosition & NS_STYLE_RUBY_POSITION_LEFT) {
|
|
|
|
x = offsetRect.X() - bsize;
|
|
|
|
offsetRect.SetLeftEdge(x);
|
|
|
|
} else {
|
|
|
|
x = offsetRect.XMost();
|
|
|
|
offsetRect.SetRightEdge(x + bsize);
|
|
|
|
}
|
|
|
|
y = offsetRect.Y();
|
2014-11-26 07:52:50 +03:00
|
|
|
} else {
|
2014-12-17 11:42:32 +03:00
|
|
|
// writing-mode is horizontal, so bsize is the annotation's *height*
|
|
|
|
x = offsetRect.X();
|
|
|
|
if (rubyPosition & NS_STYLE_RUBY_POSITION_OVER) {
|
|
|
|
y = offsetRect.Y() - bsize;
|
|
|
|
offsetRect.SetTopEdge(y);
|
|
|
|
} else if (rubyPosition & NS_STYLE_RUBY_POSITION_UNDER) {
|
|
|
|
y = offsetRect.YMost();
|
|
|
|
offsetRect.SetBottomEdge(y + bsize);
|
|
|
|
} else {
|
|
|
|
// XXX inter-character support in bug 1055672
|
|
|
|
MOZ_ASSERT_UNREACHABLE("Unsupported ruby-position");
|
2014-12-24 08:29:32 +03:00
|
|
|
y = offsetRect.Y();
|
2014-12-17 11:42:32 +03:00
|
|
|
}
|
2014-11-26 07:52:50 +03:00
|
|
|
}
|
|
|
|
FinishReflowChild(textContainer, aPresContext, textMetrics,
|
|
|
|
&textReflowState, x, y, 0);
|
|
|
|
}
|
2015-01-07 04:47:09 +03:00
|
|
|
|
|
|
|
nscoord deltaISize = segmentISize - baseMetrics.ISize(lineWM);
|
|
|
|
if (deltaISize <= 0) {
|
|
|
|
RubyUtils::ClearReservedISize(aBaseContainer);
|
|
|
|
} else {
|
|
|
|
RubyUtils::SetReservedISize(aBaseContainer, deltaISize);
|
|
|
|
aReflowState.mLineLayout->AdvanceICoord(deltaISize);
|
|
|
|
}
|
2015-01-08 08:02:41 +03:00
|
|
|
|
|
|
|
// Set block leadings of the base container
|
|
|
|
LogicalMargin leadings(lineWM, offsetRect - baseRect);
|
|
|
|
NS_ASSERTION(leadings.BStart(lineWM) >= 0 && leadings.BEnd(lineWM) >= 0,
|
|
|
|
"Leadings should be non-negative (because adding "
|
|
|
|
"ruby annotation can only increase the size)");
|
|
|
|
mBStartLeading = std::max(mBStartLeading, leadings.BStart(lineWM));
|
|
|
|
mBEndLeading = std::max(mBEndLeading, leadings.BEnd(lineWM));
|
2014-11-26 07:52:50 +03:00
|
|
|
}
|
2014-11-26 07:52:50 +03:00
|
|
|
|
|
|
|
nsRubyBaseContainerFrame*
|
|
|
|
nsRubyFrame::PullOneSegment(ContinuationTraversingState& aState)
|
|
|
|
{
|
|
|
|
// Pull a ruby base container
|
|
|
|
nsIFrame* baseFrame = PullNextInFlowChild(aState);
|
|
|
|
if (!baseFrame) {
|
|
|
|
return nullptr;
|
|
|
|
}
|
|
|
|
MOZ_ASSERT(baseFrame->GetType() == nsGkAtoms::rubyBaseContainerFrame);
|
|
|
|
|
|
|
|
// Pull all ruby text containers following the base container
|
|
|
|
nsIFrame* nextFrame;
|
|
|
|
while ((nextFrame = GetNextInFlowChild(aState)) != nullptr &&
|
|
|
|
nextFrame->GetType() == nsGkAtoms::rubyTextContainerFrame) {
|
|
|
|
PullNextInFlowChild(aState);
|
|
|
|
}
|
|
|
|
|
|
|
|
return static_cast<nsRubyBaseContainerFrame*>(baseFrame);
|
|
|
|
}
|