chromium/third_party/blink/renderer/core/layout/relative_utils_test.cc

// Copyright 2017 The Chromium Authors
// 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/layout/relative_utils.h"

#include "testing/gtest/include/gtest/gtest.h"
#include "third_party/blink/renderer/core/layout/geometry/physical_offset.h"
#include "third_party/blink/renderer/core/layout/geometry/physical_size.h"
#include "third_party/blink/renderer/core/style/computed_style.h"
#include "third_party/blink/renderer/platform/testing/task_environment.h"

namespace blink {
namespace {

const LayoutUnit kLeft{};
const LayoutUnit kRight{};
const LayoutUnit kTop{};
const LayoutUnit kBottom{};
const LayoutUnit kAuto{};
const LayoutUnit kZero{};

class RelativeUtilsTest : public testing::Test {};

TEST_F(RelativeUtilsTest, HorizontalTB) {}

TEST_F(RelativeUtilsTest, VerticalRightLeft) {}

TEST_F(RelativeUtilsTest, VerticalLeftRight) {}

}  // namespace
}  // namespace blink