chromium/third_party/blink/renderer/core/layout/forms/layout_text_control_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/layout/forms/layout_text_control.h"

#include "build/build_config.h"
#include "third_party/blink/renderer/core/html/forms/text_control_element.h"
#include "third_party/blink/renderer/core/layout/hit_test_location.h"
#include "third_party/blink/renderer/core/layout/layout_text.h"
#include "third_party/blink/renderer/core/testing/core_unit_test_helper.h"

namespace blink {

namespace {

class LayoutTextControlTest : public RenderingTest {};

TEST_F(LayoutTextControlTest,
       ChangingPseudoSelectionStyleShouldInvalidateSelectionSingle) {}

TEST_F(LayoutTextControlTest,
       ChangingPseudoSelectionStyleShouldInvalidateSelectionMulti) {}

TEST_F(LayoutTextControlTest,
       AddingPseudoSelectionStyleShouldInvalidateSelectionSingle) {}

TEST_F(LayoutTextControlTest,
       AddingPseudoSelectionStyleShouldInvalidateSelectionMulti) {}

TEST_F(LayoutTextControlTest,
       RemovingPseudoSelectionStyleShouldInvalidateSelectionSingle) {}

TEST_F(LayoutTextControlTest,
       RemovingPseudoSelectionStyleShouldInvalidateSelectionMulti) {}

TEST_F(LayoutTextControlTest, HitTestSearchInput) {}

}  // anonymous namespace

}  // namespace blink