chromium/third_party/blink/renderer/core/editing/commands/insert_list_command_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/commands/insert_list_command.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/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"
#include "third_party/blink/renderer/core/editing/visible_position.h"
#include "third_party/blink/renderer/core/editing/visible_units.h"
#include "third_party/blink/renderer/core/frame/local_frame.h"

namespace blink {

class InsertListCommandTest : public EditingTestBase {};

TEST_F(InsertListCommandTest, ShouldCleanlyRemoveSpuriousTextNode) {}

// Refer https://crbug.com/794356
TEST_F(InsertListCommandTest, UnlistifyParagraphCrashOnVisuallyEmptyParagraph) {}

TEST_F(InsertListCommandTest, UnlistifyParagraphCrashOnNonLi) {}

// Refer https://crbug.com/798176
TEST_F(InsertListCommandTest, CleanupNodeSameAsDestinationNode) {}

TEST_F(InsertListCommandTest, InsertListOnEmptyHiddenElements) {}

// Refer https://crbug.com/797520
TEST_F(InsertListCommandTest, InsertListWithCollapsedVisibility) {}

// Refer https://crbug.com/1183158
TEST_F(InsertListCommandTest, UnlistifyParagraphWithNonEditable) {}

// Refer https://crbug.com/1188327
TEST_F(InsertListCommandTest, NestedSpansJustInsideBody) {}

TEST_F(InsertListCommandTest, ListifyInputInTableCell) {}

TEST_F(InsertListCommandTest, ListifyInputInTableCell1) {}

// Refer https://crbug.com/1295037
TEST_F(InsertListCommandTest, NonCanonicalVisiblePosition) {}

// Refer https://crbug.com/1316041
TEST_F(InsertListCommandTest, TimeAndMeterInRoot) {}

// Refer https://crbug.com/1312348
TEST_F(InsertListCommandTest, PreservedNewline) {}

// Refer https://crbug.com/1343673
TEST_F(InsertListCommandTest, EmptyInlineBlock) {}

// Refer https://crbug.com/1350571
TEST_F(InsertListCommandTest, SelectionFromEndOfTableToAfterTable) {}

// Refer https://crbug.com/1366749
TEST_F(InsertListCommandTest, ListItemWithSpace) {}
}