blob: 29147feba57cc92e277688d1f297f25f69af64f9 [file] [log] [blame]
// Copyright 2020 The Chromium Authors. All rights reserved.
// Use of this source code is governed by a BSD-style license that can be
// found in the LICENSE file.
#include "third_party/blink/renderer/core/mathml/mathml_fraction_element.h"
#include "third_party/blink/renderer/core/style/computed_style.h"
namespace blink {
MathMLFractionElement::MathMLFractionElement(Document& doc)
: MathMLElement(mathml_names::kMfracTag, doc) {}
void MathMLFractionElement::AddMathFractionBarThicknessIfNeeded(
ComputedStyle& style,
const CSSToLengthConversionData& conversion_data) {
if (auto length_or_percentage_value = AddMathLengthToComputedStyle(
conversion_data, mathml_names::kLinethicknessAttr))
style.SetMathFractionBarThickness(std::move(*length_or_percentage_value));
}
} // namespace blink