replaced by .editorconfig Differential Revision: https://phabricator.services.mozilla.com/D287852
29 lines
902 B
C++
29 lines
902 B
C++
/* This Source Code Form is subject to the terms of the Mozilla Public
|
|
* License, v. 2.0. If a copy of the MPL was not distributed with this
|
|
* file, You can obtain one at http://mozilla.org/MPL/2.0/. */
|
|
|
|
/* base class for ruby rendering objects that directly contain content */
|
|
|
|
#include "nsRubyContentFrame.h"
|
|
|
|
#include "mozilla/ComputedStyle.h"
|
|
#include "nsPresContext.h"
|
|
|
|
using namespace mozilla;
|
|
|
|
//----------------------------------------------------------------------
|
|
|
|
// nsRubyContentFrame Method Implementations
|
|
// ======================================
|
|
|
|
bool nsRubyContentFrame::IsIntraLevelWhitespace() const {
|
|
auto pseudoType = Style()->GetPseudoType();
|
|
if (pseudoType != PseudoStyleType::MozRubyBase &&
|
|
pseudoType != PseudoStyleType::MozRubyText) {
|
|
return false;
|
|
}
|
|
|
|
nsIFrame* child = mFrames.OnlyChild();
|
|
return child && child->GetContent()->TextIsOnlyWhitespace();
|
|
}
|