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

#include "third_party/blink/renderer/core/dom/text.h"
#include "third_party/blink/renderer/core/editing/ephemeral_range.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"

namespace blink {

class InsertParagraphSeparatorCommandTest : public EditingTestBase {};

// http://crbug.com/777378
TEST_F(InsertParagraphSeparatorCommandTest,
       CrashWithAppearanceStyleOnEmptyColgroup) {}

// http://crbug.com/777378
TEST_F(InsertParagraphSeparatorCommandTest,
       CrashWithAppearanceStyleOnEmptyColumn) {}

// https://crbug.com/835020
TEST_F(InsertParagraphSeparatorCommandTest, CrashWithCaptionBeforeBody) {}

// http://crbug.com/1345989
TEST_F(InsertParagraphSeparatorCommandTest, CrashWithObject) {}

// http://crbug.com/1357082
TEST_F(InsertParagraphSeparatorCommandTest, CrashWithObjectWithFloat) {}

// crbug.com/1420675
TEST_F(InsertParagraphSeparatorCommandTest, PhrasingContent) {}

}  // namespace blink