#include "third_party/blink/renderer/core/editing/commands/replace_selection_command.h"
#include "testing/gtest/include/gtest/gtest.h"
#include "third_party/blink/renderer/core/dom/document.h"
#include "third_party/blink/renderer/core/dom/document_fragment.h"
#include "third_party/blink/renderer/core/dom/parser_content_policy.h"
#include "third_party/blink/renderer/core/dom/text.h"
#include "third_party/blink/renderer/core/editing/frame_selection.h"
#include "third_party/blink/renderer/core/editing/position.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/visible_selection.h"
#include "third_party/blink/renderer/core/frame/local_frame.h"
#include "third_party/blink/renderer/core/frame/local_frame_view.h"
#include "third_party/blink/renderer/core/frame/settings.h"
#include "third_party/blink/renderer/core/html_names.h"
#include "third_party/blink/renderer/core/layout/layout_view.h"
#include "third_party/blink/renderer/core/testing/dummy_page_holder.h"
#include "third_party/blink/renderer/platform/bindings/exception_state.h"
#include <memory>
namespace blink {
class ReplaceSelectionCommandTest : public EditingTestBase { … };
TEST_F(ReplaceSelectionCommandTest, pastingEmptySpan) { … }
TEST_F(ReplaceSelectionCommandTest, pasteSpanInText) { … }
bool SetTextAutosizingMultiplier(Document* document, float multiplier) { … }
TEST_F(ReplaceSelectionCommandTest, TextAutosizingDoesntInflateText) { … }
TEST_F(ReplaceSelectionCommandTest, TrailingNonVisibleTextCrash) { … }
TEST_F(ReplaceSelectionCommandTest, CrashWithNoSelection) { … }
TEST_F(ReplaceSelectionCommandTest, SmartPlainTextPaste) { … }
TEST_F(ReplaceSelectionCommandTest, TableAndImages) { … }
TEST_F(ReplaceSelectionCommandTest, InsertImageAfterEmptyBlockInInline) { … }
TEST_F(ReplaceSelectionCommandTest, InsertImageAfterWhiteSpace) { … }
TEST_F(ReplaceSelectionCommandTest, InsertImageInNonEditableBlock1) { … }
TEST_F(ReplaceSelectionCommandTest, InsertImageInNonEditableBlock2) { … }
}