chromium/third_party/blink/renderer/core/animation/scroll_timeline_util_test.cc

// Copyright 2018 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/animation/scroll_timeline_util.h"

#include "testing/gtest/include/gtest/gtest.h"
#include "third_party/blink/renderer/bindings/core/v8/v8_scroll_timeline_options.h"
#include "third_party/blink/renderer/core/animation/animation_test_helpers.h"
#include "third_party/blink/renderer/core/animation/document_timeline.h"
#include "third_party/blink/renderer/core/animation/scroll_timeline.h"
#include "third_party/blink/renderer/core/css/resolver/style_resolver.h"
#include "third_party/blink/renderer/core/html/html_div_element.h"
#include "third_party/blink/renderer/core/testing/core_unit_test_helper.h"
#include "third_party/blink/renderer/core/testing/null_execution_context.h"
#include "third_party/blink/renderer/platform/heap/garbage_collected.h"

namespace blink {

namespace scroll_timeline_util {

ScrollTimelineUtilTest;

// This test covers only the basic conversions for element id, time range,
// and orientation. Complex orientation conversions are tested in the
// GetOrientation* tests.
TEST_F(ScrollTimelineUtilTest, ToCompositorScrollTimeline) {}

TEST_F(ScrollTimelineUtilTest, ToCompositorScrollTimelineNullParameter) {}

TEST_F(ScrollTimelineUtilTest,
       ToCompositorScrollTimelineDocumentTimelineParameter) {}

TEST_F(ScrollTimelineUtilTest, ToCompositorScrollTimelineNullSource) {}

TEST_F(ScrollTimelineUtilTest, ToCompositorScrollTimelineNullLayoutBox) {}

TEST_F(ScrollTimelineUtilTest, ConvertOrientationPhysicalCases) {}

TEST_F(ScrollTimelineUtilTest, ConvertOrientationLogical) {}

TEST_F(ScrollTimelineUtilTest, ConvertOrientationNullStyle) {}

TEST_F(ScrollTimelineUtilTest, GetCompositorScrollElementIdNullNode) {}

TEST_F(ScrollTimelineUtilTest, GetCompositorScrollElementIdNullLayoutObject) {}

TEST_F(ScrollTimelineUtilTest, GetCompositorScrollElementIdNoUniqueId) {}

}  // namespace scroll_timeline_util

}  // namespace blink