chromium/third_party/blink/renderer/core/editing/selection_modifier_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 "third_party/blink/renderer/core/editing/selection_modifier.h"

#include "third_party/blink/renderer/core/editing/editing_behavior.h"
#include "third_party/blink/renderer/core/editing/editor.h"
#include "third_party/blink/renderer/core/editing/frame_selection.h"
#include "third_party/blink/renderer/core/editing/testing/editing_test_base.h"
#include "third_party/blink/renderer/core/editing/visible_position.h"
#include "third_party/blink/renderer/core/frame/local_frame.h"
#include "third_party/blink/renderer/core/frame/settings.h"
#include "third_party/blink/renderer/core/html/shadow/shadow_element_names.h"

namespace blink {

class SelectionModifierTest : public EditingTestBase {};

TEST_F(SelectionModifierTest, ExtendForwardByWordNone) {}

TEST_F(SelectionModifierTest, MoveForwardByWordNone) {}

// http://crbug.com/1300781
TEST_F(SelectionModifierTest, MoveByLineBlockInInline) {}

TEST_F(SelectionModifierTest, MoveByLineHorizontal) {}

TEST_F(SelectionModifierTest, MoveByLineMultiColumnSingleText) {}

TEST_F(SelectionModifierTest, MoveByLineVertical) {}

TEST_F(SelectionModifierTest, PreviousLineWithDisplayNone) {}

// For http://crbug.com/1104582
TEST_F(SelectionModifierTest, PreviousSentenceWithNull) {}

// For http://crbug.com/1100971
TEST_F(SelectionModifierTest, StartOfSentenceWithNull) {}

TEST_F(SelectionModifierTest, MoveCaretWithShadow) {}

// For https://crbug.com/1155342 and https://crbug.com/1155309
TEST_F(SelectionModifierTest, PreviousParagraphOfObject) {}

// For https://crbug.com/1177295
TEST_F(SelectionModifierTest, PositionDisconnectedInFlatTree1) {}

// For https://crbug.com/1177295
TEST_F(SelectionModifierTest, PositionDisconnectedInFlatTree2) {}

// For https://crbug.com/1312704
TEST_F(SelectionModifierTest, OptgroupAndTable) {}

TEST_F(SelectionModifierTest, EditableVideo) {}

}  // namespace blink