chromium/pdf/input_utils_unittest.cc

// Copyright 2024 The Chromium Authors
// Use of this source code is governed by a BSD-style license that can be
// found in the LICENSE file.

#include "pdf/input_utils.h"

#include "build/build_config.h"
#include "pdf/test/mouse_event_builder.h"
#include "testing/gtest/include/gtest/gtest.h"
#include "third_party/blink/public/common/input/web_input_event.h"
#include "third_party/blink/public/common/input/web_mouse_event.h"
#include "third_party/blink/public/common/input/web_pointer_properties.h"

namespace chrome_pdf {

namespace {

void CheckNormalizeMouseEventIsNoOp(const blink::WebMouseEvent& event) {}

}  // namespace

TEST(InputUtilsTest, NormalizeMouseEventLeftMouseDown) {}

TEST(InputUtilsTest, NormalizeMouseEventMiddleMouseDown) {}

TEST(InputUtilsTest, NormalizeMouseEventRightMouseDown) {}

TEST(InputUtilsTest, NormalizeMouseEventLeftMouseUp) {}

TEST(InputUtilsTest, NormalizeMouseEventMiddleMouseUp) {}

TEST(InputUtilsTest, NormalizeMouseEventRightMouseUp) {}

TEST(InputUtilsTest, NormalizeMouseEventCtrlLeftMouseDown) {}

TEST(InputUtilsTest, NormalizeMouseEventCtrlLefttMouseUp) {}

}  // namespace chrome_pdf