chromium/third_party/blink/renderer/core/editing/editor_test.cc

// Copyright 2016 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/editor.h"

#include "third_party/blink/renderer/core/clipboard/system_clipboard.h"
#include "third_party/blink/renderer/core/dom/text.h"
#include "third_party/blink/renderer/core/editing/commands/editor_command.h"
#include "third_party/blink/renderer/core/editing/commands/undo_stack.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/frame/local_frame.h"
#include "third_party/blink/renderer/core/html/forms/html_input_element.h"
#include "third_party/blink/renderer/platform/testing/unit_test_helpers.h"

namespace blink {

class EditorTest : public EditingTestBase {};

TEST_F(EditorTest, CanCopyCrossingShadowBoundary) {}

TEST_F(EditorTest, copyGeneratedPassword) {}

TEST_F(EditorTest, CopyVisibleSelection) {}

TEST_F(EditorTest, DontCopyHiddenSelections) {}

TEST_F(EditorTest, ReplaceSelection) {}

// http://crbug.com/263819
TEST_F(EditorTest, RedoWithDisconnectedEditable) {}

// http://crbug.com/263819
TEST_F(EditorTest, RedoWithDisconnectedInput) {}

// http://crbug.com/263819
TEST_F(EditorTest, UndoWithDisconnectedEditable) {}

// http://crbug.com/263819
TEST_F(EditorTest, UndoWithDisconnectedInput) {}

// http://crbug.com/873037
TEST_F(EditorTest, UndoWithInvalidSelection) {}

}  // namespace blink