chromium/third_party/blink/renderer/core/input/mouse_event_manager_test.cc

// Copyright 2022 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/input/mouse_event_manager.h"

#include "testing/gtest/include/gtest/gtest.h"
#include "third_party/blink/public/common/input/web_keyboard_event.h"
#include "third_party/blink/public/common/input/web_mouse_event.h"
#include "third_party/blink/renderer/core/css/properties/longhands.h"
#include "third_party/blink/renderer/core/events/keyboard_event.h"
#include "third_party/blink/renderer/core/input/event_handler.h"
#include "third_party/blink/renderer/core/scroll/scroll_animator.h"
#include "third_party/blink/renderer/core/testing/core_unit_test_helper.h"
#include "third_party/blink/renderer/core/testing/sim/sim_request.h"
#include "third_party/blink/renderer/core/testing/sim/sim_test.h"
#include "third_party/blink/renderer/platform/keyboard_codes.h"

namespace blink {

namespace {
// Long enough to ensure scroll animation should be complete.
const double kScrollAnimationDuration =;
}  // namespace

class MouseEventManagerTest : public SimTest {};

// TODO(crbug.com/1325058): Re-enable this test
TEST_F(MouseEventManagerTest, DISABLED_MousePressNodeRemoved) {}

TEST_F(MouseEventManagerTest, HoverEffectAfterNav) {}

}  // namespace blink