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

#include "build/build_config.h"
#include "third_party/blink/renderer/core/css/css_property_value_set.h"
#include "third_party/blink/renderer/core/dom/document.h"
#include "third_party/blink/renderer/core/editing/editing_style.h"
#include "third_party/blink/renderer/core/editing/editing_utilities.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/execution_context/security_context.h"
#include "third_party/blink/renderer/core/frame/local_dom_window.h"
#include "third_party/blink/renderer/core/frame/local_frame.h"
#include "third_party/blink/renderer/core/keywords.h"
#include "third_party/blink/renderer/platform/heap/garbage_collected.h"

namespace blink {

class ApplyStyleCommandTest : public EditingTestBase {};

// This is a regression test for https://crbug.com/675727
TEST_F(ApplyStyleCommandTest, RemoveRedundantBlocksWithStarEditableStyle) {}

// This is a regression test for https://crbug.com/761280
TEST_F(ApplyStyleCommandTest, JustifyRightDetachesDestination) {}

// This is a regression test for https://crbug.com/726992
TEST_F(ApplyStyleCommandTest, FontSizeDeltaWithSpanElement) {}

// This is a regression test for https://crbug.com/1172007
TEST_F(ApplyStyleCommandTest, JustifyRightWithSVGForeignObject) {}

// This is a regression test for https://crbug.com/1188946
TEST_F(ApplyStyleCommandTest, JustifyCenterWithNonEditable) {}

// This is a regression test for https://crbug.com/1199902
TEST_F(ApplyStyleCommandTest, StyledInlineElementIsActuallyABlock) {}

// This is a regression test for https://crbug.com/1239729
TEST_F(ApplyStyleCommandTest, ItalicCrossingIgnoredContentBoundary) {}

// This is a regression test for https://crbug.com/1246190
TEST_F(ApplyStyleCommandTest, RemoveEmptyItalic) {}
}  // namespace blink