#include "third_party/blink/renderer/core/editing/commands/insert_text_command.h"
#include "build/buildflag.h"
#include "third_party/blink/renderer/core/editing/frame_selection.h"
#include "third_party/blink/renderer/core/editing/selection_template.h"
#include "third_party/blink/renderer/core/editing/testing/editing_test_base.h"
#include "third_party/blink/renderer/core/editing/testing/selection_sample.h"
namespace blink {
class InsertTextCommandTest : public EditingTestBase { … };
TEST_F(InsertTextCommandTest, WithTypingStyle) { … }
TEST_F(InsertTextCommandTest, InsertChar) { … }
TEST_F(InsertTextCommandTest, InsertCharToWhiteSpacePre) { … }
TEST_F(InsertTextCommandTest, InsertSpace) { … }
TEST_F(InsertTextCommandTest, InsertSpaceToWhiteSpacePre) { … }
TEST_F(InsertTextCommandTest, InsertTab) { … }
TEST_F(InsertTextCommandTest, InsertTabToWhiteSpacePre) { … }
TEST_F(InsertTextCommandTest, WhitespaceFixupBeforeParagraph) { … }
TEST_F(InsertTextCommandTest, WhitespaceFixupAfterParagraph) { … }
TEST_F(InsertTextCommandTest, NoVisibleSelectionAfterDeletingSelection) { … }
TEST_F(InsertTextCommandTest, CheckTabSpanElementNoCrash) { … }
TEST_F(InsertTextCommandTest, AnchorElementWithBlockCrash) { … }
TEST_F(InsertTextCommandTest, MultilineSelectionCrash) { … }
}