2015-01-08 10:28:09 +03: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/. */
|
|
|
|
|
|
|
|
/* base class for ruby rendering objects that directly contain content */
|
|
|
|
|
|
|
|
#include "nsRubyContentFrame.h"
|
|
|
|
#include "nsPresContext.h"
|
|
|
|
#include "nsStyleContext.h"
|
2015-01-08 10:28:09 +03:00
|
|
|
#include "nsCSSAnonBoxes.h"
|
2015-01-08 10:28:09 +03:00
|
|
|
|
|
|
|
using namespace mozilla;
|
|
|
|
|
2015-10-20 02:21:44 +03:00
|
|
|
//----------------------------------------------------------------------
|
|
|
|
|
|
|
|
// nsRubyContentFrame Method Implementations
|
|
|
|
// ======================================
|
|
|
|
|
2015-01-08 10:28:09 +03:00
|
|
|
/* virtual */ bool
|
|
|
|
nsRubyContentFrame::IsFrameOfType(uint32_t aFlags) const
|
|
|
|
{
|
|
|
|
if (aFlags & eBidiInlineContainer) {
|
|
|
|
return false;
|
|
|
|
}
|
2016-04-18 09:06:23 +03:00
|
|
|
return nsInlineFrame::IsFrameOfType(aFlags);
|
2015-01-08 10:28:09 +03:00
|
|
|
}
|
2015-01-08 10:28:09 +03:00
|
|
|
|
|
|
|
bool
|
|
|
|
nsRubyContentFrame::IsIntraLevelWhitespace() const
|
|
|
|
{
|
2017-10-03 01:05:19 +03:00
|
|
|
nsAtom* pseudoType = StyleContext()->GetPseudo();
|
2015-01-08 10:28:09 +03:00
|
|
|
if (pseudoType != nsCSSAnonBoxes::rubyBase &&
|
|
|
|
pseudoType != nsCSSAnonBoxes::rubyText) {
|
|
|
|
return false;
|
|
|
|
}
|
|
|
|
|
|
|
|
nsIFrame* child = mFrames.OnlyChild();
|
|
|
|
return child && child->GetContent()->TextIsOnlyWhitespace();
|
|
|
|
}
|