#include "third_party/blink/renderer/core/editing/commands/typing_command.h"
#include "testing/gtest/include/gtest/gtest.h"
#include "third_party/blink/renderer/core/dom/document.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/loader/empty_clients.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 TypingCommandTest : public EditingTestBase { … };
class MockChromeClient : public EmptyChromeClient { … };
TEST_F(TypingCommandTest, DeleteInsignificantText) { … }
TEST_F(TypingCommandTest, insertLineBreakWithIllFormedHTML) { … }
TEST_F(TypingCommandTest,
DontCrashWhenReplaceSelectionCommandLeavesBadSelection) { … }
TEST_F(TypingCommandTest, ForwardDeleteInvalidatesSelection) { … }
TEST_F(TypingCommandTest, ForwardDeleteAtTableEnd) { … }
TEST_F(TypingCommandTest, TypedCharactersInContentEditable) { … }
TEST_F(TypingCommandTest, FirstTypedCharactersInContentEditable) { … }
}