#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) { … }
}
}