chromium/third_party/blink/renderer/platform/fonts/cursor_position_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 "base/test/task_environment.h"
#include "testing/gtest/include/gtest/gtest.h"
#include "third_party/blink/public/platform/file_path_conversion.h"
#include "third_party/blink/public/platform/web_string.h"
#include "third_party/blink/renderer/platform/fonts/font.h"
#include "third_party/blink/renderer/platform/fonts/font_description.h"
#include "third_party/blink/renderer/platform/testing/font_test_base.h"
#include "third_party/blink/renderer/platform/testing/font_test_helpers.h"
#include "third_party/blink/renderer/platform/testing/unit_test_helpers.h"

CreateTestFont;

namespace blink {

class CursorPositionTest : public FontTestBase {};

TEST_F(CursorPositionTest, LTRMouse) {}

TEST_F(CursorPositionTest, LTRLigatureMouse) {}

TEST_F(CursorPositionTest, RTLMouse) {}

TEST_F(CursorPositionTest, RTLLigatureMouse) {}

TEST_F(CursorPositionTest, LTRText) {}

TEST_F(CursorPositionTest, LTRLigature) {}

TEST_F(CursorPositionTest, RTLText) {}

TEST_F(CursorPositionTest, RTLLigature) {}

}  // namespace blink