blob: be6cab4cab10900c853517278cf30917bc946d45 [file] [log] [blame]
// Copyright 2016 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 "core/layout/ng/ng_exclusion.h"
#include "platform/wtf/text/WTFString.h"
namespace blink {
bool NGExclusion::operator==(const NGExclusion& other) const {
return std::tie(other.rect, other.type) == std::tie(rect, type);
}
String NGExclusion::ToString() const {
return String::Format("Rect: %s Type: %d", rect.ToString().Ascii().data(),
type);
}
bool NGExclusion::MaybeCombineWith(const NGExclusion& other) {
if (other.rect.BlockEndOffset() < rect.BlockEndOffset())
return false;
if (other.type != type)
return false;
switch (other.type) {
case NGExclusion::kFloatLeft: {
if (other.rect.offset == rect.LineEndBlockStartOffset()) {
rect.size = {other.rect.InlineSize() + rect.InlineSize(),
other.rect.BlockSize()};
return true;
}
}
case NGExclusion::kFloatRight: {
if (rect.offset == other.rect.LineEndBlockStartOffset()) {
rect.offset = other.rect.offset;
rect.size = {other.rect.InlineSize() + rect.InlineSize(),
other.rect.BlockSize()};
return true;
}
}
default:
return false;
}
}
std::ostream& operator<<(std::ostream& stream, const NGExclusion& value) {
return stream << value.ToString();
}
} // namespace blink