#include "third_party/blink/renderer/core/dom/document.h"
#include "third_party/blink/renderer/core/dom/qualified_name.h"
#include "third_party/blink/renderer/core/editing/commands/format_block_command.h"
#include "third_party/blink/renderer/core/editing/commands/indent_outdent_command.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/testing/selection_sample.h"
#include "third_party/blink/renderer/core/editing/visible_selection.h"
#include "third_party/blink/renderer/core/html/html_head_element.h"
#include "third_party/blink/renderer/core/html_names.h"
#include "third_party/blink/renderer/platform/bindings/exception_state.h"
#include <memory>
namespace blink {
class ApplyBlockElementCommandTest : public EditingTestBase { … };
TEST_F(ApplyBlockElementCommandTest, selectionCrossingOverBody) { … }
TEST_F(ApplyBlockElementCommandTest, visibilityChangeDuringCommand) { … }
TEST_F(ApplyBlockElementCommandTest, IndentHeadingIntoBlockquote) { … }
TEST_F(ApplyBlockElementCommandTest, InsertPlaceHolderAtDisconnectedPosition) { … }
TEST_F(ApplyBlockElementCommandTest, FormatBlockCrossingUserModifyBoundary) { … }
TEST_F(ApplyBlockElementCommandTest,
FormatBlockWithTableCrossingUserModifyBoundary) { … }
TEST_F(ApplyBlockElementCommandTest, FormatBlockWithDirectChildrenOfRoot) { … }
TEST_F(ApplyBlockElementCommandTest, OutdentEmptyBlockquote) { … }
TEST_F(ApplyBlockElementCommandTest, IndentSVGWithTable) { … }
TEST_F(ApplyBlockElementCommandTest, IndentOutdentLinesDoubleBr) { … }
TEST_F(ApplyBlockElementCommandTest, IndentOutdentLinesCrash) { … }
TEST_F(ApplyBlockElementCommandTest, IndentOutdentLinesWithJunkCrash) { … }
TEST_F(ApplyBlockElementCommandTest, SplitTextNodeWithJustNewline) { … }
}