#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 { … };
TEST_F(ApplyStyleCommandTest, RemoveRedundantBlocksWithStarEditableStyle) { … }
TEST_F(ApplyStyleCommandTest, JustifyRightDetachesDestination) { … }
TEST_F(ApplyStyleCommandTest, FontSizeDeltaWithSpanElement) { … }
TEST_F(ApplyStyleCommandTest, JustifyRightWithSVGForeignObject) { … }
TEST_F(ApplyStyleCommandTest, JustifyCenterWithNonEditable) { … }
TEST_F(ApplyStyleCommandTest, StyledInlineElementIsActuallyABlock) { … }
TEST_F(ApplyStyleCommandTest, ItalicCrossingIgnoredContentBoundary) { … }
TEST_F(ApplyStyleCommandTest, RemoveEmptyItalic) { … }
}