chromium/third_party/blink/renderer/core/editing/commands/set_character_data_command_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/commands/set_character_data_command.h"

#include "third_party/blink/renderer/core/dom/text.h"
#include "third_party/blink/renderer/core/editing/commands/editing_state.h"
#include "third_party/blink/renderer/core/editing/testing/editing_test_base.h"
#include "third_party/blink/renderer/core/layout/layout_block_flow.h"
#include "third_party/blink/renderer/core/layout/layout_text.h"

namespace blink {

class SetCharacterDataCommandTest : public EditingTestBase {};

TEST_F(SetCharacterDataCommandTest, replaceTextWithSameLength) {}

TEST_F(SetCharacterDataCommandTest, replaceTextWithLongerText) {}

TEST_F(SetCharacterDataCommandTest, replaceTextWithShorterText) {}

TEST_F(SetCharacterDataCommandTest, insertTextIntoEmptyNode) {}

TEST_F(SetCharacterDataCommandTest, insertTextAtEndOfNonEmptyNode) {}

TEST_F(SetCharacterDataCommandTest, replaceEntireNode) {}

TEST_F(SetCharacterDataCommandTest, CombinedText) {}

}  // namespace blink